:root {
  --bg: #f4f0ea;
  --bg-soft: #f5f5f3;
  --bg-warm: linear-gradient(180deg, #fff4eb 0%, #ffe0c8 100%);
  --text: #171717;
  --text-muted: #666666;
  --nav: #101010;
  --line: rgba(23, 23, 23, 0.08);
  --accent: #fc7a1a;
  --accent-deep: #db5e02;
  --shadow: 0 30px 80px rgba(35, 26, 18, 0.12);
  --shadow-soft: 0 18px 40px rgba(35, 26, 18, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
  --section-space: clamp(88px, 10vw, 144px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 20;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  max-width: 1260px;
  padding: 0 30px;
  border-radius: 999px;
  background: rgba(8, 12, 14, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd4ab 0%, var(--accent) 100%);
  color: #111;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a,
.nav-cta {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 18px;
}

.nav-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-auth:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 22px rgba(0, 0, 0, 0.12);
}

.nav-auth.is-user {
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.25s ease, color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: #fff1e7;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 22px rgba(0, 0, 0, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.button-primary {
  color: #111;
  background: linear-gradient(135deg, #ff9a4d 0%, #ff6721 100%);
  box-shadow: 0 18px 30px rgba(252, 122, 26, 0.28);
}

.button-primary:hover {
  box-shadow: 0 22px 40px rgba(252, 122, 26, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: min(940px, calc(100svh - 12px));
  margin: 12px;
  border-radius: 26px;
  padding: 88px 0 64px;
  background: #0d1418;
  box-shadow: 0 30px 100px rgba(10, 14, 18, 0.18);
}

.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.74);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 12, 0.18) 0%, rgba(3, 8, 12, 0.38) 50%, rgba(3, 8, 12, 0.74) 100%),
    radial-gradient(circle at 50% 42%, rgba(10, 16, 18, 0.12), rgba(10, 16, 18, 0.55) 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 220px);
  text-align: center;
  padding-top: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero .eyebrow {
  color: rgba(255, 239, 227, 0.88);
}

.hero-copy h1,
.section-copy h2,
.preview-copy h2,
.conversion-copy h2,
.section-heading h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-copy h2,
.preview-copy h2,
.conversion-copy h2,
.section-heading h2 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  max-width: 10ch;
  color: #fff;
}

.hero-text,
.section-text {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero-copy-centered {
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-copy-centered .hero-text {
  color: rgba(255, 255, 255, 0.86);
  max-width: 34ch;
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  justify-content: center;
}

.hero-auth-row {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.google-auth-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.google-auth-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.google-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
  padding: 18px 22px;
  max-width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(4, 8, 12, 0.22);
  color: #fff;
}

.trust-score,
.trust-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  letter-spacing: 0.18em;
  color: #ff9a4d;
}

.section {
  padding: var(--section-space) 0;
}

.section-light {
  background: #fffdf9;
}

.section-muted {
  background: var(--bg-soft);
}

.split-layout,
.preview-layout,
.conversion-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

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

.preview-layout {
  align-items: stretch;
}

.section-copy,
.preview-copy,
.conversion-copy {
  display: grid;
  align-content: start;
}

.conversion-copy {
  height: 100%;
  grid-template-rows: auto auto auto 1fr;
}

.section-note {
  margin-top: 28px;
  padding: 16px 20px;
  max-width: 38rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 242, 231, 0.95), rgba(255, 248, 242, 0.88));
  border: 1px solid rgba(252, 122, 26, 0.12);
  color: #6f4d31;
  font-weight: 600;
}

.value-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.value-points article {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fff9f4 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.value-points strong,
.feature-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.mini-stats div {
  padding-top: 18px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.mini-stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.mini-stats span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.value-points p,
.chapter-note,
.feature-card p,
.price-label,
.form-note,
.payment-text,
.status-message {
  color: var(--text-muted);
}

.media-panel img,
.conversion-media img,
.image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.media-panel {
  display: grid;
  gap: 18px;
}

.media-caption {
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.chapter-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100%;
  padding: 42px 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, #0d1013 0%, #161a1f 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.chapter-card h3 {
  margin: 0 0 28px;
  font-size: 2rem;
}

.chapter-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.chapter-card li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.chapter-card li span,
.feature-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffb26f 0%, var(--accent) 100%);
  color: #111;
  font-weight: 800;
}

.chapter-note {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
}

.image-pair {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.preview-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.preview-highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: #4f4f4f;
  font-size: 0.92rem;
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.feature-card {
  padding: 34px 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #fff7f0 100%);
  border: 1px solid rgba(252, 122, 26, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.conversion-band {
  background: var(--bg-warm);
}

.conversion-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.conversion-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 23, 23, 0.06);
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.conversion-media {
  align-self: stretch;
  display: flex;
  margin-top: 28px;
}

.conversion-media img {
  width: 100%;
  min-height: 100%;
}

.price-row h3 {
  margin: 4px 0 0;
  font-size: 3rem;
  line-height: 1;
}

.price-tag {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(252, 122, 26, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
}

.lead-form,
.payment-panel {
  display: grid;
  gap: 18px;
}

.lead-form label,
.payment-panel {
  width: 100%;
}

.lead-form span {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
}

input,
textarea,
#card-container {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(252, 122, 26, 0.65);
  box-shadow: 0 0 0 4px rgba(252, 122, 26, 0.12);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.payment-panel {
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  background: #fff8f2;
  border: 1px solid rgba(252, 122, 26, 0.16);
}

.payment-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.payment-panel-header h3 {
  margin: 6px 0 0;
  font-size: 1.6rem;
}

.text-button {
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
}

.hosted-checkout-note {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(252, 122, 26, 0.12);
}

.hosted-checkout-note strong {
  display: block;
  margin-bottom: 6px;
}

.hosted-checkout-note p {
  margin: 0;
  color: var(--text-muted);
}

.payment-text.is-error {
  color: #b42318;
}

.button.is-disabled,
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hidden {
  display: none;
}

.status-message {
  margin-top: 18px;
  min-height: 28px;
  font-weight: 600;
}

.status-message.is-error {
  color: #b42318;
}

.status-message.is-success {
  color: #0f8a4b;
}

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.82);
  padding: 42px 0;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-shell h3 {
  margin: 0 0 8px;
  color: #fff;
}

.footer-shell p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links.is-open {
    position: absolute;
    top: 88px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
    padding: 18px;
    border-radius: 20px;
    background: #111;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .nav-links.is-open + .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split-layout,
  .preview-layout,
  .conversion-grid,
  .feature-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .value-points,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: calc(100svh - 220px);
    padding-top: 72px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 14px;
  }

  .nav-shell {
    min-height: 72px;
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
    margin: 8px;
    padding: 88px 0 52px;
    border-radius: 22px;
  }

  .hero-actions,
  .trust-strip,
  .price-row,
  .payment-panel-header,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-frame,
  .conversion-card,
  .chapter-card {
    border-radius: 28px;
  }

  .hero-copy h1 {
    max-width: 9ch;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img:nth-child(2) {
    margin-top: 0;
  }

  .chapter-card,
  .conversion-card {
    padding: 24px;
  }
}
