:root {
  --bg: #020705;
  --bg-2: #06130f;
  --panel: rgba(8, 24, 18, 0.82);
  --panel-strong: rgba(11, 35, 26, 0.94);
  --text: #f2fff8;
  --muted: #a9c2b5;
  --soft: #6f8b7c;
  --line: rgba(146, 255, 197, 0.18);
  --accent: #45f298;
  --accent-2: #00bd7d;
  --warm: #f5c451;
  --danger: #ff6a4d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --max: 1180px;
  --header-h: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(69, 242, 152, 0.08), transparent 32%),
    linear-gradient(180deg, #020705 0%, #04130e 44%, #020705 100%);
  min-height: 100vh;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 242, 152, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 242, 152, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -2;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
select {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #e4ff75);
  z-index: 100;
  box-shadow: 0 0 18px rgba(69, 242, 152, 0.72);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 14px 18px auto;
  min-height: 58px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(213, 255, 232, 0.16);
  background: rgba(1, 7, 5, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.site-header.is-scrolled {
  background: rgba(1, 7, 5, 0.9);
  border-color: rgba(69, 242, 152, 0.28);
}

.brand,
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.brand-mark img {
  width: 142px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(69, 242, 152, 0.18));
}

.brand span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.nav-links,
.header-actions,
.site-footer nav,
.hero-actions,
.thanks-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  color: #cce8d8;
  font-size: 14px;
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer nav a:hover {
  color: var(--accent);
}

.market-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.market-switcher span {
  color: var(--soft);
  font-size: 12px;
}

.market-switcher select {
  color: var(--text);
  background: rgba(11, 31, 23, 0.92);
  border: 1px solid rgba(213, 255, 232, 0.16);
  border-radius: 8px;
  min-height: 40px;
  padding: 0 32px 0 12px;
}

.button {
  border: 1px solid rgba(213, 255, 232, 0.16);
  border-radius: 8px;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #00180d;
  border-color: rgba(120, 255, 180, 0.7);
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(0, 189, 125, 0.28);
}

.button.ghost {
  background: rgba(15, 37, 29, 0.54);
  color: #d9ffea;
}

.button.small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 13px;
}

.button.large {
  min-height: 56px;
  padding: 0 22px;
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.24) contrast(1.08);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 5, 0.98) 0%, rgba(2, 7, 5, 0.82) 42%, rgba(2, 7, 5, 0.42) 100%),
    linear-gradient(180deg, transparent 0%, rgba(2, 7, 5, 0.88) 100%);
}

.hero-grid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 58px 36px 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  gap: 56px;
  align-items: center;
}

.product-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.product-lockup img {
  width: 176px;
}

.product-lockup span,
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.14;
}

.hero-lede,
.section-heading p,
.ad-copy p,
.closing-offer p,
.included-copy > p {
  color: #c6ded0;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.6;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.5;
}

.fine-print {
  margin: 12px 0 20px;
  color: var(--muted);
  line-height: 1.5;
}

.fine-print strong {
  color: var(--text);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 660px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-facts div {
  min-height: 94px;
  padding: 18px;
  background: rgba(2, 10, 7, 0.82);
}

.hero-facts strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--accent);
}

.hero-facts span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-stage {
  position: relative;
  min-height: 500px;
}

.browser-frame,
.phone-frame,
.launch-badge,
.price-card,
.video-card,
.case-item,
.workflow,
.thanks-panel {
  border: 1px solid rgba(213, 255, 232, 0.16);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.browser-frame {
  border-radius: 8px;
  overflow: hidden;
}

.browser-top {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #06110d;
  border-bottom: 1px solid rgba(213, 255, 232, 0.12);
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
  opacity: 0.76;
}

.browser-top span:nth-child(2) {
  background: var(--warm);
}

.browser-top span:nth-child(3) {
  background: var(--danger);
}

.browser-top em {
  margin-left: 8px;
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
}

.hero-browser {
  transform: rotate(-2deg);
}

.hero-browser img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.phone-frame {
  position: absolute;
  right: 4px;
  bottom: 18px;
  width: 180px;
  border-radius: 28px;
  padding: 12px;
  background: #050a08;
  transform: rotate(5deg);
}

.phone-top {
  width: 68px;
  height: 8px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(213, 255, 232, 0.16);
}

.phone-frame img {
  height: 304px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.launch-badge {
  position: absolute;
  left: 12px;
  bottom: 6px;
  width: 255px;
  border-radius: 8px;
  padding: 15px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(3, 14, 10, 0.92);
}

.launch-badge img {
  max-height: 70px;
  object-fit: contain;
}

.launch-badge span {
  color: #d6ffea;
  font-size: 13px;
  line-height: 1.35;
}

.trust-band {
  border-block: 1px solid rgba(213, 255, 232, 0.12);
  background: rgba(1, 8, 5, 0.72);
}

.trust-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 128px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 132px repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 18px;
}

.trust-logo {
  max-height: 90px;
  width: 100%;
  object-fit: contain;
}

.trust-pill {
  min-height: 78px;
  padding: 15px;
  border-left: 1px solid rgba(213, 255, 232, 0.14);
}

.trust-pill strong,
.workflow-row strong,
.case-item strong,
.video-card strong {
  display: block;
}

.trust-pill span,
.workflow-row span,
.case-item span,
.video-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.trust-link {
  color: #06130f;
  background: var(--accent);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

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

.price-card {
  position: relative;
  border-radius: 8px;
  padding: 26px;
  min-height: 100%;
}

.price-card.featured {
  background:
    linear-gradient(135deg, rgba(69, 242, 152, 0.16), rgba(5, 41, 27, 0.94)),
    var(--panel-strong);
  border-color: rgba(69, 242, 152, 0.42);
}

.card-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: #06130f;
  background: var(--accent);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.price-card p,
.price-card li,
.faq p,
.next-steps li {
  color: var(--muted);
  line-height: 1.55;
}

.price-line {
  margin: 26px 0 4px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.price-line span,
.total-line {
  color: var(--soft);
  font-size: 13px;
}

.price-line strong {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  color: var(--accent);
}

.total-line {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.price-card ul {
  min-height: 238px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 9px 0 9px 25px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(69, 242, 152, 0.8);
}

.included-grid,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-list div {
  padding: 24px;
  background: rgba(5, 18, 13, 0.86);
}

.feature-list span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 900;
}

.feature-list strong {
  display: block;
  font-size: 18px;
}

.feature-list p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.workflow {
  position: sticky;
  top: 112px;
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
}

.workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(69, 242, 152, 0.18), transparent 42%);
  pointer-events: none;
}

.workflow-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-row:last-of-type {
  border-bottom: 0;
}

.workflow img {
  width: 96px;
  margin: 34px 0 0 auto;
  opacity: 0.92;
}

.showcase {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: start;
}

.showcase-sticky {
  position: sticky;
  top: 112px;
}

.mockup-stack {
  display: grid;
  gap: 20px;
}

.mockup-item {
  min-height: 390px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(213, 255, 232, 0.16);
  background: rgba(5, 18, 13, 0.78);
}

.mockup-item img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.mockup-item div {
  padding: 22px;
}

.mockup-item strong {
  font-size: 21px;
}

.mockup-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  gap: 18px;
}

.video-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 242, 152, 0.46);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.video-card.portrait iframe {
  aspect-ratio: 9 / 16;
}

.video-card div {
  padding: 18px;
}

.client-strip {
  margin: 34px 0;
  padding: 18px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  background: rgba(5, 18, 13, 0.64);
}

.client-strip img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

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

.case-item {
  border-radius: 8px;
  overflow: hidden;
}

.case-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.case-item div {
  padding: 20px;
}

.ad-ready {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compliance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.compliance-list div {
  padding: 22px;
  background: rgba(5, 18, 13, 0.88);
}

.compliance-list strong {
  display: block;
  color: var(--accent);
  margin-bottom: 7px;
}

.compliance-list span {
  color: var(--muted);
  line-height: 1.45;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
}

.closing-offer {
  border: 1px solid rgba(213, 255, 232, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.closing-offer img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.closing-offer div {
  padding: 28px;
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer nav a {
  color: var(--muted);
}

.checkout-status {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid rgba(213, 255, 232, 0.18);
  border-radius: 8px;
  background: rgba(2, 10, 7, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.checkout-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thank-you-page {
  min-height: 100vh;
}

.thank-you {
  width: min(980px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  align-content: center;
  gap: 34px;
}

.thanks-panel {
  border-radius: 8px;
  padding: clamp(28px, 6vw, 58px);
}

.thanks-panel h1 {
  font-size: clamp(42px, 7vw, 80px);
}

.thanks-panel p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.thanks-grid {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.thanks-grid div {
  padding: 18px;
  background: rgba(2, 10, 7, 0.84);
}

.thanks-grid span {
  display: block;
  color: var(--soft);
  font-size: 13px;
}

.thanks-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  color: var(--accent);
}

.next-steps {
  margin: 0 0 30px;
  padding-left: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 108px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .trust-inner,
  .pricing-grid,
  .video-grid,
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-link {
    grid-column: 1 / -1;
  }

  .included-grid,
  .showcase,
  .ad-ready,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .workflow,
  .showcase-sticky {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 104px;
  }

  .site-header {
    inset: 10px 10px auto;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .brand {
    justify-content: space-between;
  }

  .brand img {
    width: 132px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .market-switcher {
    flex: 1;
  }

  .market-switcher select {
    width: 100%;
  }

  .header-actions .button {
    min-width: 118px;
  }

  .hero-grid {
    padding: 132px 18px 46px;
    gap: 32px;
  }

  .product-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .thanks-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-facts,
  .trust-inner,
  .pricing-grid,
  .video-grid,
  .client-strip,
  .case-grid,
  .compliance-list,
  .thanks-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 420px;
  }

  .phone-frame {
    width: 155px;
    right: 0;
  }

  .phone-frame img {
    height: 250px;
  }

  .launch-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
    width: 100%;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 72px 0;
  }

  .price-card ul {
    min-height: auto;
  }

  .mockup-item {
    min-height: 310px;
  }

  .mockup-item img {
    height: 220px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
