:root {
  --bg: #060a16;
  --bg2: #0a1020;
  --text: #f5f8ff;
  --muted: rgba(245, 248, 255, 0.74);
  --soft: rgba(245, 248, 255, 0.54);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --cyan: #66e7ff;
  --cyan-2: #34d9ff;
  --green: #54f2b5;
  --violet: #8d67ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(102, 231, 255, 0.14), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(141, 103, 255, 0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(84, 242, 181, 0.10), transparent 28%),
    linear-gradient(135deg, #060a16 0%, #0b1224 52%, #080c18 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

button,
input,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(100%, 1080px);
  margin: 0 auto;
  min-height: 100vh;
  padding: 28px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.page-section {
  display: none;
}

.page-section.active-page {
  display: block;
  animation: fadeInUp 220ms ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.glass-soft {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.main-card {
  padding: clamp(22px, 4vw, 42px);
  position: relative;
  overflow: hidden;
}

.main-card::after {
  content: "";
  position: absolute;
  inset: auto auto -90px -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 231, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(102, 231, 255, 0.28);
  background: rgba(102, 231, 255, 0.08);
  color: #ffffff;
  direction: ltr;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 0 28px rgba(102, 231, 255, 0.08);
}

.topbar-btn {
  cursor: pointer;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition: 180ms ease;
}

.topbar-btn:hover {
  border-color: rgba(102, 231, 255, 0.4);
  transform: translateY(-1px);
}

.hero {
  max-width: 760px;
  margin-bottom: 26px;
}

.hero.compact {
  max-width: 700px;
  margin-bottom: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #dffcff;
  background: rgba(102, 231, 255, 0.08);
  border: 1px solid rgba(102, 231, 255, 0.22);
  font-size: 13px;
  margin-bottom: 14px;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.hero-text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.8;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 16px;
}

.info-card,
.payment-intro,
.summary,
.mission-card {
  padding: 22px;
}

.card-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(245, 248, 255, 0.84);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  padding: 7px 11px;
  border-radius: 999px;
}

.card-label.accent {
  color: #041017;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-color: transparent;
}

.text-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
  font-size: 15.5px;
}

.mission-card {
  margin-top: 16px;
}

.mission-text {
  margin: 2px 0 10px;
  color: var(--soft);
  font-size: 15px;
}

.mission-card h2 {
  margin: 0;
  font-size: clamp(23px, 3.2vw, 32px);
  line-height: 1.55;
  letter-spacing: -0.5px;
}

.cta-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 22px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.plan-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 154px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plan-card:hover {
  transform: translateY(-2px);
  border-color: rgba(102, 231, 255, 0.4);
  box-shadow: 0 14px 35px rgba(102, 231, 255, 0.08);
}

.plan-card.active {
  border-color: rgba(102, 231, 255, 0.55);
  background:
    linear-gradient(145deg, rgba(102, 231, 255, 0.12), rgba(141, 103, 255, 0.09)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(102, 231, 255, 0.12), 0 18px 42px rgba(102, 231, 255, 0.10);
}

.plan-name {
  font-size: 15px;
  color: var(--muted);
}

.plan-price {
  margin-top: 10px;
  font-size: 42px;
  font-weight: 800;
}

.plan-desc {
  margin-top: auto;
  color: var(--soft);
  font-size: 14px;
}

.summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.summary-item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.16);
}

.summary-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--soft);
  font-size: 13px;
}

.summary-item strong {
  font-size: 18px;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.clean-actions {
  grid-template-columns: 1fr 1fr;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-btn {
  border: 0;
  color: #041018;
  background: linear-gradient(135deg, var(--cyan-2), var(--green));
  box-shadow: 0 20px 42px rgba(102, 231, 255, 0.14);
}

.secondary-btn {
  border: 1px solid rgba(141, 103, 255, 0.38);
  background: rgba(141, 103, 255, 0.12);
  color: var(--text);
}

.ghost-btn {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.status-message {
  min-height: 24px;
  margin: 14px 0 0;
  text-align: center;
  color: var(--green);
  font-size: 14px;
}

.status-message.error {
  color: #ff6c96;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 248, 255, 0.45);
  font-size: 13px;
  padding: 0 8px;
}

@media (max-width: 860px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-shell {
    padding: 16px 12px;
  }

  .main-card {
    padding: 18px;
    border-radius: 24px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .brand,
  .topbar-btn {
    width: 100%;
  }

  .plans,
  .summary,
  .actions {
    grid-template-columns: 1fr;
  }

  .primary-btn,
  .secondary-btn,
  .ghost-btn {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}


.single-message-wrap {
  margin-top: 10px;
}

.single-message-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 0 38px rgba(102, 231, 255, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.20);
}

.single-message-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 231, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.single-message-card::after {
  content: "";
  position: absolute;
  inset: auto -5% -45% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 103, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.inset-glow {
  border-color: rgba(255, 255, 255, 0.14);
}

.single-message-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-message-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
  font-size: 16px;
}

.single-message-text p:first-child {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
}

.single-message-highlight {
  margin-top: 4px !important;
  padding: 16px 18px;
  border-radius: 18px;
  color: #f8fbff !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(102, 231, 255, 0.16);
  box-shadow:
    inset 0 0 20px rgba(102, 231, 255, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

@media (max-width: 680px) {
  .single-message-card {
    padding: 18px;
  }

  .single-message-text p {
    font-size: 15px;
    line-height: 1.85;
  }

  .single-message-text p:first-child {
    font-size: 20px;
  }

  .single-message-highlight {
    padding: 14px 15px;
  }
}


.login-card {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 231, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.login-card::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 103, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.login-brand {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 10px 18px;
  border-radius: 999px;
  direction: ltr;
  font-weight: 900;
  color: #ffffff;
  border: 1px solid rgba(102, 231, 255, 0.28);
  background: rgba(102, 231, 255, 0.08);
  box-shadow: 0 0 32px rgba(102, 231, 255, 0.12);
}

.login-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 24px;
}

.login-hero .eyebrow {
  margin-inline: auto;
}

.login-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 7vw, 54px);
}

.login-hero p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15.5px;
}

.login-google-btn {
  cursor: pointer;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: #ffffff;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: 180ms ease;
}

.login-google-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(102, 231, 255, 0.45);
  box-shadow: 0 18px 38px rgba(102, 231, 255, 0.10);
}

.login-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--soft);
  font-size: 13px;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
}

.login-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 12px;
}

.login-form input {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 17px;
  outline: none;
  padding: 0 16px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
  direction: ltr;
  text-align: left;
}

.login-form input:focus {
  border-color: rgba(102, 231, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(102, 231, 255, 0.10);
}

.login-action-btn {
  cursor: pointer;
  min-height: 56px;
  border: 0;
  border-radius: 17px;
  color: #041018;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-2), var(--green));
  box-shadow: 0 16px 36px rgba(102, 231, 255, 0.14);
}

.login-action-btn.purple {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(141, 103, 255, 0.98), rgba(102, 231, 255, 0.95));
}

.login-message {
  position: relative;
  z-index: 1;
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--soft);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.login-message.success {
  color: var(--green);
}

.login-message.error {
  color: #ff6c96;
}

@media (max-width: 680px) {
  .login-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .login-form {
    grid-template-columns: 1fr;
  }

  .login-action-btn {
    width: 100%;
  }
}


/* Email verification login */
.login-card {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 231, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.login-card::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 103, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.login-brand {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  border: 1px solid rgba(102, 231, 255, 0.28);
  background: rgba(102, 231, 255, 0.08);
  box-shadow: 0 0 32px rgba(102, 231, 255, 0.12);
}

.login-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 24px;
}

.login-hero .eyebrow {
  margin-inline: auto;
}

.login-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 7vw, 54px);
}

.login-hero p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15.5px;
}

.email-only-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 155px;
  gap: 12px;
}

.email-only-form input {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 17px;
  outline: none;
  padding: 0 16px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
  direction: ltr;
  text-align: left;
}

.email-only-form input:focus {
  border-color: rgba(102, 231, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(102, 231, 255, 0.10);
}

.login-action-btn {
  cursor: pointer;
  min-height: 56px;
  border: 0;
  border-radius: 17px;
  color: #041018;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-2), var(--green));
  box-shadow: 0 16px 36px rgba(102, 231, 255, 0.14);
}

.login-action-btn.purple {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(141, 103, 255, 0.98), rgba(102, 231, 255, 0.95));
}

.login-message {
  position: relative;
  z-index: 1;
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--soft);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.login-message.success {
  color: var(--green);
}

.login-message.error {
  color: #ff6c96;
}

.login-message strong {
  color: var(--green);
}

@media (max-width: 680px) {
  .email-only-form {
    grid-template-columns: 1fr;
  }

  .login-action-btn {
    width: 100%;
  }
}

/* Professional verification status */
.login-message.success {
  display: block;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(84, 242, 181, 0.24);
  background: rgba(84, 242, 181, 0.08);
  color: #8fffd0;
  box-shadow: inset 0 0 22px rgba(84, 242, 181, 0.04);
}

.login-message.error {
  display: block;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 108, 150, 0.26);
  background: rgba(255, 108, 150, 0.08);
  color: #ff8fb0;
}


/* =========================================================
   DMLY ORANGE / RED THEME OVERRIDE
   Whole site warm orange-red theme.
   ========================================================= */

:root {
  --bg: #070202 !important;
  --bg-2: #120505 !important;
  --panel: rgba(42, 15, 12, 0.72) !important;
  --panel-2: rgba(24, 8, 6, 0.84) !important;
  --text: #fff7f2 !important;
  --muted: rgba(255, 228, 214, 0.78) !important;
  --soft: rgba(255, 214, 195, 0.58) !important;
  --line: rgba(255, 98, 47, 0.18) !important;
  --line-strong: rgba(255, 98, 47, 0.34) !important;
  --cyan: #ff6b35 !important;
  --cyan-2: #ff7a32 !important;
  --green: #ffcf70 !important;
  --violet: #ff3d1f !important;
  --orange: #ff7a32 !important;
  --red: #ff3d1f !important;
  --gold: #ffcf70 !important;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55) !important;
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 122, 50, 0.18), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(255, 61, 31, 0.18), transparent 32%),
    radial-gradient(circle at 50% 110%, rgba(255, 140, 70, 0.13), transparent 38%),
    linear-gradient(135deg, #070202 0%, #110505 50%, #080101 100%) !important;
  color: var(--text) !important;
}

body::before {
  opacity: 0.22 !important;
  background-image:
    linear-gradient(rgba(255, 122, 50, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 50, 0.10) 1px, transparent 1px) !important;
}

.glass,
.main-card,
.login-card {
  border-color: rgba(255, 98, 47, 0.34) !important;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 122, 50, 0.12), transparent 34%),
    radial-gradient(circle at 92% 96%, rgba(255, 61, 31, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 122, 50, 0.045)),
    rgba(28, 9, 7, 0.78) !important;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(255, 98, 47, 0.10) !important;
}

.glass-soft,
.payment-intro,
.summary,
.single-message-card {
  border-color: rgba(255, 98, 47, 0.22) !important;
  background:
    linear-gradient(145deg, rgba(255, 122, 50, 0.08), rgba(255, 61, 31, 0.04)),
    rgba(12, 4, 3, 0.42) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 28px rgba(255, 98, 47, 0.06) !important;
}

.brand,
.login-brand {
  color: #ffffff !important;
  border-color: rgba(255, 122, 50, 0.40) !important;
  background:
    linear-gradient(135deg, rgba(255, 122, 50, 0.14), rgba(255, 61, 31, 0.08)) !important;
  box-shadow:
    0 0 28px rgba(255, 122, 50, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.eyebrow,
.card-label,
.accent {
  color: #ffcf70 !important;
  border-color: rgba(255, 122, 50, 0.36) !important;
  background: rgba(255, 122, 50, 0.10) !important;
  box-shadow: 0 0 24px rgba(255, 122, 50, 0.10) !important;
}

h1,
.hero h1,
.login-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 0 28px rgba(255, 122, 50, 0.12) !important;
}

p,
.hero-text,
.text-stack p,
.single-message-text p,
.login-hero p {
  color: var(--muted) !important;
}

.primary-btn,
.login-action-btn,
button.primary-btn,
a.primary-btn {
  color: #1b0704 !important;
  background:
    linear-gradient(135deg, #ffcf70 0%, #ff7a32 48%, #ff3d1f 100%) !important;
  border: 0 !important;
  box-shadow:
    0 18px 42px rgba(255, 98, 47, 0.18),
    0 0 28px rgba(255, 122, 50, 0.14) !important;
}

.primary-btn:hover,
.login-action-btn:hover,
button.primary-btn:hover,
a.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(255, 98, 47, 0.26),
    0 0 38px rgba(255, 122, 50, 0.20) !important;
}

.secondary-btn,
.login-action-btn.purple,
.topbar-btn,
.ghost-btn {
  color: #fff7f2 !important;
  border: 1px solid rgba(255, 98, 47, 0.32) !important;
  background:
    linear-gradient(135deg, rgba(255, 61, 31, 0.18), rgba(255, 122, 50, 0.10)),
    rgba(12, 4, 3, 0.45) !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(255, 98, 47, 0.08) !important;
}

.secondary-btn:hover,
.login-action-btn.purple:hover,
.topbar-btn:hover,
.ghost-btn:hover {
  border-color: rgba(255, 122, 50, 0.55) !important;
  box-shadow:
    0 18px 40px rgba(255, 98, 47, 0.14),
    0 0 30px rgba(255, 122, 50, 0.14) !important;
}

input,
textarea,
select,
.email-only-form input,
.login-form input {
  color: #fff7f2 !important;
  border-color: rgba(255, 98, 47, 0.22) !important;
  background: rgba(8, 2, 2, 0.52) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 214, 195, 0.46) !important;
}

input:focus,
textarea:focus,
select:focus,
.email-only-form input:focus,
.login-form input:focus {
  border-color: rgba(255, 122, 50, 0.68) !important;
  box-shadow:
    0 0 0 4px rgba(255, 98, 47, 0.12),
    0 0 28px rgba(255, 122, 50, 0.10) !important;
}

.plan-card {
  border-color: rgba(255, 98, 47, 0.24) !important;
  background:
    linear-gradient(145deg, rgba(255, 122, 50, 0.07), rgba(255, 61, 31, 0.035)),
    rgba(12, 4, 3, 0.38) !important;
}

.plan-card:hover,
.plan-card.active {
  border-color: rgba(255, 122, 50, 0.72) !important;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 122, 50, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(255, 122, 50, 0.13), rgba(255, 61, 31, 0.06)),
    rgba(17, 5, 4, 0.66) !important;
  box-shadow:
    0 18px 42px rgba(255, 98, 47, 0.14),
    inset 0 0 30px rgba(255, 122, 50, 0.045) !important;
}

.plan-price,
.summary strong,
.single-message-highlight,
.login-message strong {
  color: #ff7a32 !important;
  text-shadow: 0 0 18px rgba(255, 122, 50, 0.24) !important;
}

.login-message.success {
  border-color: rgba(255, 122, 50, 0.30) !important;
  background:
    linear-gradient(135deg, rgba(255, 122, 50, 0.12), rgba(255, 61, 31, 0.08)) !important;
  color: #ffd2bf !important;
  box-shadow:
    inset 0 0 24px rgba(255, 98, 47, 0.05),
    0 0 24px rgba(255, 98, 47, 0.08) !important;
}

.login-message.error,
.status-message.error {
  border-color: rgba(255, 80, 60, 0.35) !important;
  background: rgba(255, 61, 31, 0.10) !important;
  color: #ff9c85 !important;
}

.status-message {
  color: #ffcf70 !important;
}

.site-footer {
  color: rgba(255, 214, 195, 0.46) !important;
}

a {
  color: #ffb08a !important;
}

::-selection {
  background: rgba(255, 122, 50, 0.35);
  color: #ffffff;
}


/* Cleaned home page spacing after removing extra intro/highlight texts */
.hero {
  margin-bottom: 20px;
}

.single-message-text p:last-child {
  margin-bottom: 0;
}


/* Removed requested top badges/buttons */
#homeToPaymentTopBtn,
.login-brand,
.topbar .brand,
.hero > .eyebrow:first-child {
  display: none !important;
}

.topbar {
  justify-content: center !important;
}

.hero {
  text-align: center;
}

.main-card {
  padding-top: clamp(24px, 4vw, 44px);
}


/* Hide requested extra texts / footer */
.site-footer,
footer,
#loginMessage:empty {
  display: none !important;
}

.login-hero p {
  display: none !important;
}

.login-hero {
  margin-bottom: 26px !important;
}

.login-message {
  margin-top: 0 !important;
}


/* Payment page clean title spacing */
#paymentPage .hero.compact .hero-text {
  display: none !important;
}

#paymentPage .hero.compact {
  margin-bottom: 22px !important;
}


/* Final cleanup: hide removed home button if browser cache keeps old markup */
#paymentToHomeBtn {
  display: none !important;
}


/* Remove requested dmly message tag */
.single-message-card .card-label.accent {
  display: none !important;
}


/* =========================================================
   Telegram payment + mobile polish
   ========================================================= */

#paymentBtn::before {
  content: "✈";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  font-size: 17px;
}

.clean-actions {
  gap: 12px;
}

@media (max-width: 820px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .site-shell {
    width: 100%;
    min-height: 100svh;
    padding: 16px 12px 18px !important;
    justify-content: flex-start !important;
  }

  .page-section {
    width: 100%;
  }

  .login-card,
  .main-card,
  .glass {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 24px !important;
  }

  .login-card,
  .main-card {
    padding: 22px 14px !important;
  }

  .login-hero h1,
  .hero h1 {
    font-size: clamp(32px, 11vw, 48px) !important;
    line-height: 1.08 !important;
    word-break: keep-all;
  }

  .hero,
  .login-hero {
    text-align: center;
    margin-bottom: 20px !important;
  }

  .email-only-form {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .email-only-form input,
  .login-action-btn,
  .primary-btn,
  .secondary-btn,
  .topbar-btn {
    width: 100% !important;
    min-height: 54px !important;
    font-size: 15px !important;
  }

  .single-message-card,
  .payment-intro,
  .summary {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .single-message-text p,
  .text-stack p {
    font-size: 14.5px !important;
    line-height: 1.85 !important;
    text-align: center;
  }

  .plans {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .plan-card {
    width: 100% !important;
    min-height: 116px !important;
    text-align: center !important;
  }

  .plan-price {
    font-size: 40px !important;
  }

  .summary {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .summary-item {
    align-items: center !important;
    text-align: center !important;
  }

  .actions,
  .clean-actions,
  .cta-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .site-footer {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .site-shell {
    padding: 10px 8px 14px !important;
  }

  .login-card,
  .main-card {
    padding: 18px 12px !important;
    border-radius: 20px !important;
  }

  .login-hero h1,
  .hero h1 {
    font-size: 34px !important;
  }

  .plan-price {
    font-size: 36px !important;
  }
}


/* Payment button text only, no extra Telegram icon */
#paymentBtn::before {
  content: none !important;
  display: none !important;
}
