:root {
  color-scheme: dark;
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-850: #0a1728;
  --navy-800: #0e1b2e;
  --navy-700: #142844;
  --orange: #ff9f1c;
  --orange-light: #ffbf46;
  --orange-soft: rgba(255, 159, 28, 0.12);
  --green: #2bd67b;
  --blue: #5ba4f0;
  --red: #ff6577;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-muted: #edf1f7;
  --ink: #111a29;
  --ink-soft: #4d5d73;
  --ink-muted: #718096;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: #dfe5ef;
  --shadow: 0 28px 80px rgba(5, 11, 20, 0.14);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface-soft);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: var(--line-dark);
  background: rgba(5, 11, 20, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: linear-gradient(145deg, #163557, #09182a);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand > span:last-child {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.18s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.18s var(--ease), box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-button:focus-visible,
.feature-tab:focus-visible,
.benefit-filters button:focus-visible {
  outline: 3px solid rgba(255, 159, 28, 0.32);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #2e1b00;
  box-shadow: 0 10px 28px rgba(255, 159, 28, 0.25);
}

.button-primary:hover {
  box-shadow: 0 14px 34px rgba(255, 159, 28, 0.36);
}

.button-outline,
.button-outline-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-outline:hover,
.button-outline-light:hover {
  border-color: rgba(255, 159, 28, 0.5);
  background: rgba(255, 159, 28, 0.08);
}

.button-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-large {
  min-height: 50px;
  padding: 13px 20px;
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 142px 0 94px;
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(14, 32, 54, 0.98)),
    var(--navy-900);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -240px;
  right: -130px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.16), transparent 68%);
}

.hero-glow-two {
  bottom: -360px;
  left: -180px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(91, 164, 240, 0.1), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #c87000;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 159, 28, 0.13);
}

.hero h1 {
  max-width: 680px;
  margin: 20px 0 21px;
  color: var(--white);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  background: linear-gradient(120deg, var(--orange-light), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.store-link {
  display: inline-flex;
  min-width: 178px;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(2, 8, 18, 0.82);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s var(--ease), border-color 0.18s ease, background 0.18s ease;
}

.store-link:hover {
  border-color: rgba(255, 159, 28, 0.65);
  background: rgba(10, 22, 39, 0.98);
  transform: translateY(-2px);
}

.store-link:focus-visible {
  outline: 3px solid rgba(255, 159, 28, 0.32);
  outline-offset: 3px;
}

.store-link span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.store-link small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.store-link strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.store-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.apple-icon {
  fill: currentColor;
}

.play-blue {
  fill: #2d9bf0;
}

.play-green {
  fill: #31c76a;
}

.play-yellow {
  fill: #ffd23f;
}

.play-red {
  fill: #ff5d5d;
}

.hero-business-link {
  min-height: 54px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 650;
}

.hero-trust svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.app-stage {
  position: relative;
  display: flex;
  min-height: 580px;
  align-items: center;
  justify-content: center;
}

.app-stage::before {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.018),
    0 0 0 96px rgba(255, 255, 255, 0.012);
  content: "";
}

.phone {
  position: relative;
  z-index: 2;
  width: 286px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  background: #02060c;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.52);
  transform: rotate(1.5deg);
}

.phone::before {
  position: absolute;
  top: 110px;
  left: -4px;
  width: 3px;
  height: 56px;
  border-radius: 4px 0 0 4px;
  background: #283342;
  content: "";
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 76px;
  height: 21px;
  border-radius: 999px;
  background: #02060c;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  min-height: 568px;
  overflow: hidden;
  padding: 15px 14px 13px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 159, 28, 0.14), transparent 28%),
    #0a1627;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 700;
}

.phone-status-icons {
  letter-spacing: 2px;
}

.phone-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.phone-welcome small,
.phone-welcome strong {
  display: block;
}

.phone-welcome small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
}

.phone-welcome strong {
  margin-top: 1px;
  color: var(--white);
  font-size: 13px;
}

.phone-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--orange-light), var(--orange));
  color: #2e1b00;
  font-size: 12px;
  font-weight: 900;
}

.phone-search {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.34);
  font-size: 7.5px;
}

.phone-search > svg {
  width: 13px;
  height: 13px;
}

.phone-search > span {
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: auto;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 159, 28, 0.12);
  color: var(--orange);
}

.phone-search > span svg {
  width: 12px;
  height: 12px;
}

.phone-featured {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  padding: 14px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, #ffba46, #f28a00);
  color: #2c1900;
  box-shadow: 0 10px 25px rgba(255, 159, 28, 0.2);
}

.featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.featured-top span {
  padding: 3px 6px;
  border-radius: 5px;
  background: rgba(37, 21, 0, 0.16);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.featured-top small {
  font-size: 6px;
  font-weight: 700;
}

.phone-featured strong {
  display: block;
  font-size: 13px;
}

.phone-featured p {
  margin: 2px 0 9px;
  font-size: 7px;
}

.phone-featured button {
  padding: 6px 9px;
  border: 0;
  border-radius: 7px;
  background: #162338;
  color: var(--white);
  font-size: 6.5px;
  font-weight: 800;
}

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.phone-section-title strong {
  font-size: 10px;
}

.phone-section-title span {
  color: var(--orange);
  font-size: 6.5px;
}

.phone-categories {
  display: flex;
  gap: 5px;
  margin-top: 9px;
}

.phone-categories span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.42);
  font-size: 6px;
  font-weight: 700;
}

.phone-categories span.active {
  border-color: rgba(255, 159, 28, 0.28);
  background: rgba(255, 159, 28, 0.12);
  color: var(--orange-light);
}

.phone-place {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.place-image {
  position: relative;
  display: grid;
  width: 57px;
  height: 57px;
  flex: 0 0 57px;
  place-items: center;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 191, 70, 0.38), transparent 34%),
    linear-gradient(145deg, #283c55, #111e30);
  color: rgba(255, 255, 255, 0.5);
}

.place-image span {
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 2px 4px;
  border-radius: 4px;
  background: var(--orange);
  color: #2e1b00;
  font-size: 5px;
  font-weight: 900;
}

.place-image svg {
  width: 17px;
  height: 17px;
}

.place-copy {
  min-width: 0;
}

.place-copy strong,
.place-copy span,
.place-copy small {
  display: block;
}

.place-copy strong {
  overflow: hidden;
  color: var(--white);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.place-copy span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 6px;
}

.place-copy small {
  margin-top: 6px;
  color: var(--green);
  font-size: 5.5px;
}

.phone-nav {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  display: flex;
  height: 47px;
  align-items: center;
  justify-content: space-around;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(9, 19, 33, 0.94);
  backdrop-filter: blur(12px);
}

.phone-nav span {
  display: grid;
  gap: 2px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.34);
  font-size: 5px;
  font-weight: 700;
}

.phone-nav svg {
  width: 13px;
  height: 13px;
}

.phone-nav span.active {
  color: var(--orange);
}

.stage-note {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 185px;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(13, 27, 46, 0.86);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.stage-note-top {
  top: 72px;
  right: 0;
}

.stage-note-bottom {
  bottom: 88px;
  left: 0;
}

.stage-note > span:last-child {
  display: grid;
  line-height: 1.2;
}

.stage-note strong {
  color: var(--white);
  font-size: 9px;
}

.stage-note small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
}

.note-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
}

.note-icon svg {
  width: 16px;
  height: 16px;
}

.note-icon-orange {
  background: rgba(255, 159, 28, 0.14);
  color: var(--orange);
}

.note-icon-green {
  background: rgba(43, 214, 123, 0.12);
  color: var(--green);
}

.audience-bar {
  position: relative;
  z-index: 4;
  margin-top: -35px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.audience-grid > a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 19px 24px;
  transition: background 0.18s ease;
}

.audience-grid > a + a {
  border-left: 1px solid var(--line-light);
}

.audience-grid > a:hover {
  background: #fafbfe;
}

.audience-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--orange-soft);
  color: #cf7500;
}

.audience-grid > a:nth-child(2) .audience-icon {
  background: rgba(14, 27, 46, 0.08);
  color: var(--navy-700);
}

.audience-grid a > span:nth-child(2) {
  display: grid;
}

.audience-grid small {
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.audience-grid strong {
  margin-top: 2px;
  font-size: 14px;
}

.audience-arrow {
  color: var(--ink-muted);
  transition: transform 0.18s ease, color 0.18s ease;
}

.audience-grid a:hover .audience-arrow {
  color: var(--orange);
  transform: translateX(3px);
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.business-copy h2,
.affiliate-copy h2 {
  margin: 13px 0 14px;
  color: var(--ink);
  font-size: clamp(31px, 4.5vw, 50px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading p,
.business-copy > p,
.affiliate-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading-row > div {
  max-width: 700px;
}

.section-heading-row > p {
  max-width: 370px;
  padding-bottom: 5px;
}

.section-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.app-section {
  background:
    radial-gradient(circle at 0 30%, rgba(255, 159, 28, 0.06), transparent 26%),
    var(--surface-soft);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: stretch;
  gap: 22px;
}

.feature-tabs {
  display: grid;
  align-content: start;
  gap: 9px;
}

.feature-tab {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.feature-tab:hover {
  background: rgba(255, 255, 255, 0.58);
}

.feature-tab.active {
  border-color: var(--line-light);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 28, 47, 0.08);
  transform: translateX(5px);
}

.feature-tab-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: #e9eef5;
  color: var(--navy-700);
}

.feature-tab.active .feature-tab-icon {
  background: var(--orange-soft);
  color: #c87000;
}

.feature-tab > span:last-child {
  display: grid;
}

.feature-tab strong {
  color: var(--ink);
  font-size: 13px;
}

.feature-tab small {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.feature-preview {
  min-height: 480px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 159, 28, 0.15), transparent 30%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-dark);
  color: var(--white);
}

.feature-panel {
  display: none;
  height: 100%;
  animation: panelIn 0.28s var(--ease);
}

.feature-panel.active {
  display: block;
}

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

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-toolbar > span {
  display: flex;
  height: 45px;
  flex: 1;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.preview-toolbar button {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 159, 28, 0.3);
  border-radius: 13px;
  background: rgba(255, 159, 28, 0.1);
  color: var(--orange);
}

.preview-toolbar svg {
  width: 16px;
  height: 16px;
}

.preview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0 22px;
}

.preview-chips span {
  padding: 6px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 700;
}

.preview-chips span.active {
  border-color: rgba(255, 159, 28, 0.34);
  background: rgba(255, 159, 28, 0.12);
  color: var(--orange-light);
}

.preview-result {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 11px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
}

.result-art {
  height: 82px;
  border-radius: 12px;
}

.result-art-one {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 191, 70, 0.6), transparent 22%),
    linear-gradient(145deg, #5c3f2b, #1a2231);
}

.result-art-two {
  background:
    radial-gradient(circle at 65% 35%, rgba(255, 101, 119, 0.36), transparent 22%),
    linear-gradient(145deg, #4b2830, #182438);
}

.preview-result div:nth-child(2) {
  min-width: 0;
}

.preview-result small,
.preview-result strong,
.preview-result div:nth-child(2) > span {
  display: block;
}

.preview-result small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-result strong {
  margin-top: 3px;
  font-size: 13px;
}

.preview-result div:nth-child(2) > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
}

.result-badge {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--orange);
  color: #2e1b00;
  font-size: 8px;
  font-weight: 900;
}

.flash-panel {
  min-height: 260px;
  padding: 28px;
  border-radius: 21px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #ffbd4f, #f18700);
  color: #301c00;
}

.flash-label {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(48, 28, 0, 0.12);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flash-panel > strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: -0.04em;
}

.flash-panel p {
  margin: 5px 0 25px;
  font-size: 12px;
}

.countdown {
  display: flex;
  gap: 8px;
}

.countdown span {
  display: grid;
  min-width: 64px;
  padding: 9px;
  border-radius: 11px;
  background: rgba(48, 28, 0, 0.1);
  font-size: 7px;
  text-align: center;
}

.countdown b {
  font-size: 19px;
}

.today-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.today-list > span {
  display: grid;
  grid-template-columns: 8px 1fr;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.today-list i {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
}

.today-list strong,
.today-list small {
  grid-column: 2;
}

.today-list strong {
  font-size: 10px;
}

.today-list small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
}

.membership-card {
  min-height: 315px;
  padding: 27px;
  border: 1px solid rgba(255, 191, 70, 0.28);
  border-radius: 23px;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 191, 70, 0.25), transparent 28%),
    linear-gradient(145deg, #172b48, #091321);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.membership-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.membership-top span {
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.membership-top small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
}

.membership-card > strong {
  display: block;
  max-width: 330px;
  margin-top: 72px;
  font-size: clamp(25px, 4vw, 37px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.membership-card p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.membership-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.membership-meta b {
  color: var(--orange-light);
  font-size: 22px;
}

.membership-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.membership-actions span {
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.map-canvas {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 19px;
  background:
    linear-gradient(35deg, transparent 46%, rgba(255, 255, 255, 0.04) 47%, rgba(255, 255, 255, 0.04) 52%, transparent 53%),
    #111f31;
}

.map-road {
  position: absolute;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-right: 0;
  border-left: 0;
  transform: rotate(-18deg);
}

.road-one { top: 80px; left: -30px; width: 580px; height: 45px; }
.road-two { top: 205px; left: -45px; width: 620px; height: 30px; transform: rotate(12deg); }
.road-three { top: 120px; left: 210px; width: 320px; height: 24px; transform: rotate(68deg); }

.map-pin,
.map-user {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 5px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
  transform: rotate(-45deg);
}

.pin-one { top: 92px; left: 28%; }
.pin-two { top: 205px; right: 22%; }

.map-user {
  top: 52%;
  left: 52%;
  width: 16px;
  height: 16px;
  border: 4px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
  transform: none;
}

.map-user::after {
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(91, 164, 240, 0.4);
  border-radius: 50%;
  content: "";
}

.map-place {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
  padding: 11px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.map-place-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 159, 28, 0.12);
  color: var(--orange);
}

.map-place > span:nth-child(2) {
  display: grid;
}

.map-place strong {
  font-size: 10px;
}

.map-place small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
}

.benefit-section {
  background: var(--surface);
}

.benefit-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.benefit-filters button {
  padding: 9px 13px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  transition: all 0.18s ease;
}

.benefit-filters button:hover,
.benefit-filters button.active {
  border-color: rgba(255, 159, 28, 0.34);
  background: var(--orange-soft);
  color: #b76600;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 19px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(15, 28, 47, 0.055);
  transition: transform 0.22s var(--ease), box-shadow 0.22s ease, opacity 0.2s ease;
}

.benefit-card:hover {
  box-shadow: 0 20px 44px rgba(15, 28, 47, 0.11);
  transform: translateY(-5px);
}

.benefit-card.filtered-out {
  display: none;
}

.benefit-visual {
  position: relative;
  display: grid;
  min-height: 160px;
  place-items: center;
}

.benefit-visual svg {
  width: 54px;
  height: 54px;
  color: rgba(255, 255, 255, 0.86);
  stroke-width: 1.25;
}

.benefit-visual-food { background: linear-gradient(145deg, #bb572d, #572622); }
.benefit-visual-coffee { background: linear-gradient(145deg, #aa733b, #432c21); }
.benefit-visual-fun { background: linear-gradient(145deg, #6451ac, #242347); }
.benefit-visual-services { background: linear-gradient(145deg, #298c83, #163d46); }

.benefit-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 7px;
  border-radius: 7px;
  background: var(--orange);
  color: #2e1b00;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.benefit-copy {
  padding: 17px;
}

.benefit-copy small {
  color: #c87000;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.benefit-copy h3 {
  margin: 6px 0 7px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.benefit-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.55;
}

.business-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 159, 28, 0.12), transparent 28%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.business-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
}

.business-copy h2 {
  color: var(--white);
}

.business-copy > p {
  color: rgba(255, 255, 255, 0.57);
}

.business-points {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.business-points article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
}

.business-points article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 159, 28, 0.25);
  border-radius: 12px;
  background: rgba(255, 159, 28, 0.1);
  color: var(--orange);
}

.business-points strong {
  font-size: 12px;
}

.business-points p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9.5px;
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.portal-preview {
  perspective: 1300px;
}

.portal-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: #091321;
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.48);
  transform: rotateY(-5deg) rotateX(1deg);
}

.portal-topbar {
  display: flex;
  height: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid var(--line-dark);
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
}

.portal-brand img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.portal-top-actions {
  display: flex;
  gap: 5px;
}

.portal-top-actions span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.portal-body {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 390px;
}

.portal-body aside {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 15px 10px;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.018);
}

.portal-body aside span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 7px;
}

.portal-body aside span.active {
  background: rgba(255, 159, 28, 0.1);
  color: var(--orange-light);
}

.portal-body aside i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: currentColor;
}

.portal-content {
  padding: 18px;
}

.portal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portal-heading small,
.portal-heading strong {
  display: block;
}

.portal-heading small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 6px;
}

.portal-heading strong {
  margin-top: 2px;
  font-size: 13px;
}

.portal-heading button {
  padding: 7px 9px;
  border: 0;
  border-radius: 7px;
  background: var(--orange);
  color: #2e1b00;
  font-size: 6px;
  font-weight: 800;
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.portal-stats > span {
  display: grid;
  min-height: 62px;
  align-content: center;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.portal-stats small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 5.5px;
}

.portal-stats strong {
  margin-top: 5px;
  font-size: 15px;
}

.portal-stats b {
  width: fit-content;
  margin-top: 6px;
  padding: 3px 5px;
  border-radius: 5px;
  background: rgba(43, 214, 123, 0.1);
  color: var(--green);
  font-size: 6px;
}

.portal-chart {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
}

.chart-head small {
  color: rgba(255, 255, 255, 0.3);
}

.bars {
  display: flex;
  height: 90px;
  align-items: end;
  gap: 8px;
  margin-top: 12px;
  padding: 0 8px;
  border-bottom: 1px solid var(--line-dark);
}

.bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(255, 159, 28, 0.22), var(--orange));
}

.portal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.portal-list > span {
  display: grid;
  grid-template-columns: 7px 1fr;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.portal-list i {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green);
}

.portal-list b,
.portal-list small {
  grid-column: 2;
}

.portal-list b {
  font-size: 7px;
}

.portal-list small {
  color: rgba(255, 255, 255, 0.32);
  font-size: 5.5px;
}

.process-section {
  background: var(--surface-soft);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.journey-card {
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(15, 28, 47, 0.06);
}

.journey-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line-light);
}

.journey-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--orange-soft);
  color: #c87000;
}

.journey-business .journey-icon {
  background: rgba(14, 27, 46, 0.08);
  color: var(--navy-700);
}

.journey-head small,
.journey-head h3 {
  display: block;
  margin: 0;
}

.journey-head small {
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.journey-head h3 {
  margin-top: 2px;
  font-size: 18px;
}

.journey-card ol {
  display: grid;
  gap: 17px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.journey-card li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
}

.journey-card li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 159, 28, 0.28);
  border-radius: 9px;
  background: var(--orange-soft);
  color: #c87000;
  font-size: 10px;
  font-weight: 900;
}

.journey-business li > span {
  border-color: rgba(14, 27, 46, 0.12);
  background: rgba(14, 27, 46, 0.06);
  color: var(--navy-700);
}

.journey-card li strong {
  display: block;
  font-size: 12px;
}

.journey-card li p {
  margin: 3px 0 0;
  color: var(--ink-muted);
  font-size: 10px;
}

.journey-card > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b76600;
  font-size: 10px;
  font-weight: 800;
}

.journey-business > a {
  color: var(--navy-700);
}

.journey-card > a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.18s ease;
}

.journey-card > a:hover svg {
  transform: translateX(3px);
}

.affiliate-section {
  background: var(--surface);
}

.affiliate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  align-items: start;
  gap: clamp(45px, 7vw, 90px);
}

.affiliate-copy {
  position: sticky;
  top: 110px;
}

.affiliate-detail {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.affiliate-detail > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-soft);
  color: #c87000;
}

.affiliate-detail strong,
.affiliate-detail small {
  display: block;
}

.affiliate-detail strong {
  font-size: 11px;
}

.affiliate-detail small {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 9px;
  line-height: 1.45;
}

.affiliate-form-card {
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}

.form-heading span,
.form-heading h3 {
  display: block;
  margin: 0;
}

.form-heading > div > span {
  color: #c87000;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-top: 4px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.form-step {
  padding: 6px 9px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 700;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 13px;
}

.form-section-title > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--orange-soft);
  color: #c87000;
  font-size: 9px;
  font-weight: 900;
}

.form-section-title strong,
.form-section-title small {
  display: block;
}

.form-section-title strong {
  font-size: 11px;
}

.form-section-title small {
  margin-top: 1px;
  color: var(--ink-muted);
  font-size: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
}

.field em {
  color: var(--ink-muted);
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: 11px;
  outline: 0;
  background: #fafbfe;
  color: var(--ink);
  font-size: 11px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field input {
  height: 44px;
  padding: 0 12px;
}

.field textarea {
  min-height: 105px;
  padding: 11px 12px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a1aaba;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.12);
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 101, 119, 0.08);
}

.field-error {
  min-height: 12px;
  color: #d33b51;
  font-size: 8px;
}

.terms-field {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 18px;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 9px;
  line-height: 1.5;
}

.terms-field input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.terms-field a {
  color: #b76600;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 9.5px;
  line-height: 1.5;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  border: 1px solid rgba(43, 214, 123, 0.25);
  background: rgba(43, 214, 123, 0.08);
  color: #137a44;
}

.form-message.error {
  border: 1px solid rgba(255, 101, 119, 0.24);
  background: rgba(255, 101, 119, 0.08);
  color: #b12940;
}

.submit-button {
  width: 100%;
  margin-top: 15px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.submit-loading {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(46, 27, 0, 0.35);
  border-top-color: #2e1b00;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.submit-button.loading .submit-loading {
  display: block;
}

.submit-button.loading > svg {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-footnote {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 8px;
  text-align: center;
}

.final-cta {
  padding: 0 0 90px;
  background: var(--surface);
}

.final-cta-card {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  overflow: hidden;
  padding: 45px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 159, 28, 0.18), transparent 30%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.final-cta-card h2 {
  max-width: 700px;
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.final-actions {
  display: flex;
  width: 205px;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 9px;
}

.final-actions .store-link {
  width: 100%;
}

.site-footer {
  padding: 66px 0 26px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
}

.footer-main p {
  max-width: 320px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid,
  .business-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .stage-note {
    display: none;
  }

  .feature-layout {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .affiliate-grid {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 35px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: rgba(5, 11, 20, 0.98);
    opacity: 0;
    transition: max-height 0.28s var(--ease), opacity 0.2s ease;
  }

  .mobile-menu.open {
    max-height: calc(100vh - 76px);
    padding: 16px 20px 24px;
    border-top: 1px solid var(--line-dark);
    opacity: 1;
  }

  .mobile-menu a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 650;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid,
  .business-grid,
  .affiliate-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .app-stage {
    min-height: 620px;
  }

  .feature-layout {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-tab.active {
    transform: none;
  }

  .business-grid {
    gap: 58px;
  }

  .portal-preview {
    max-width: 700px;
    margin-inline: auto;
  }

  .affiliate-copy {
    position: static;
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 70px;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 59px);
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .store-link {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .app-stage {
    min-height: 590px;
  }

  .app-stage::before {
    width: 310px;
    height: 310px;
  }

  .phone {
    width: 266px;
  }

  .phone-screen {
    min-height: 535px;
  }

  .audience-bar {
    margin-top: -22px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid > a + a {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p {
    margin-top: 15px;
  }

  .feature-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 7px;
    scroll-snap-type: x mandatory;
  }

  .feature-tab {
    min-width: 245px;
    scroll-snap-align: start;
  }

  .feature-preview {
    min-height: 430px;
    padding: 15px;
  }

  .preview-result {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .preview-result .result-badge {
    display: none;
  }

  .today-list,
  .membership-actions {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .portal-window {
    transform: none;
  }

  .portal-body {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .portal-body aside span {
    justify-content: center;
    font-size: 0;
  }

  .portal-body aside i {
    width: 9px;
    height: 9px;
  }

  .portal-content {
    padding: 12px;
  }

  .portal-stats {
    grid-template-columns: 1fr 1fr;
  }

  .portal-stats > span:last-child {
    grid-column: 1 / -1;
  }

  .portal-list {
    grid-template-columns: 1fr;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .affiliate-form-card {
    padding: 20px 16px;
  }

  .final-cta-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 31px 24px;
  }

  .final-actions {
    width: 100%;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .nav-shell {
    min-height: 70px;
  }

  .brand small {
    display: none;
  }

  .mobile-menu {
    top: 70px;
  }

  .hero {
    padding-top: 102px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .phone {
    width: 248px;
    transform: none;
  }

  .phone-screen {
    min-height: 510px;
  }

  .phone-featured {
    padding: 12px;
  }

  .phone-place {
    padding: 7px;
  }

  .section-heading h2,
  .business-copy h2,
  .affiliate-copy h2 {
    font-size: 32px;
  }

  .feature-preview {
    min-height: 400px;
  }

  .flash-panel {
    padding: 20px;
  }

  .countdown span {
    min-width: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
