:root {
  color-scheme: light;
  --navy-950: #031016;
  --navy-900: #071c24;
  --navy-850: #0a2731;
  --navy-800: #0d3440;
  --ink: #101b2d;
  --muted: #5e6b7d;
  --muted-light: #b4c3cb;
  --emerald: #12d4a0;
  --emerald-dark: #087d67;
  --emerald-soft: #dffaf1;
  --amber: #f5a524;
  --cream: #f5f4ed;
  --paper: #ffffff;
  --line: #dfe6e7;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --shadow: 0 24px 80px rgba(4, 31, 38, 0.15);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--paper);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--paper);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  box-shadow: 0 8px 28px rgba(12, 224, 174, 0.16);
}

.header-inner nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c2d1d6;
  font-size: 0.9rem;
  font-weight: 650;
}

.header-inner nav a,
.footer-links a {
  transition: color 180ms ease;
}

.header-inner nav a:hover,
.header-inner nav a:focus-visible {
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.93rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(18, 212, 160, 0.5);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 13px;
  font-size: 0.83rem;
}

.button-light {
  color: var(--navy-950);
  background: var(--paper);
}

.button-primary {
  color: #03251d;
  background: var(--emerald);
  box-shadow: 0 14px 40px rgba(18, 212, 160, 0.24);
}

.button-primary:hover {
  box-shadow: 0 18px 48px rgba(18, 212, 160, 0.32);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 76% 52%, rgba(11, 207, 158, 0.13), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 58%, #0a2b32);
  background-size: 68px 68px, 68px 68px, auto, auto;
}

.hero::after {
  position: absolute;
  right: -7%;
  bottom: -155px;
  left: -7%;
  height: 240px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 830px;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 54px;
  padding-top: 108px;
  padding-bottom: 98px;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--emerald-dark);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(105deg, #ffffff 8%, #b8fff0 56%, var(--emerald) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: #c2d1d6;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #95aab2;
  font-size: 0.8rem;
  font-weight: 650;
  list-style: none;
}

.hero-notes li::before {
  margin-right: 8px;
  color: var(--emerald);
  content: "✓";
}

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

.hero-glow-one {
  top: 17%;
  right: 2%;
  width: 520px;
  height: 520px;
  background: rgba(3, 186, 143, 0.07);
}

.hero-glow-two {
  bottom: 3%;
  left: 12%;
  width: 300px;
  height: 300px;
  background: rgba(245, 165, 36, 0.04);
}

.hero-product {
  position: relative;
  min-height: 640px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 8px solid #172a30;
  border-radius: 44px;
  background: #e9eef0;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
}

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

.phone-front {
  z-index: 3;
  top: 20px;
  right: 30px;
  width: 326px;
  aspect-ratio: 9 / 16;
  transform: rotate(2deg);
  animation: phone-float 7s ease-in-out infinite;
}

.phone-back {
  z-index: 1;
  top: 128px;
  left: 14px;
  width: 260px;
  aspect-ratio: 9 / 16;
  opacity: 0.74;
  transform: rotate(-9deg);
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 9px;
  left: 50%;
  width: 84px;
  height: 20px;
  border-radius: 999px;
  background: #071014;
  transform: translateX(-50%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(18, 212, 160, 0.16);
  border-radius: 50%;
}

.orbit-one {
  top: 43px;
  right: -74px;
  width: 520px;
  height: 520px;
}

.orbit-two {
  top: 120px;
  right: 8px;
  width: 360px;
  height: 360px;
}

.earned-card {
  position: absolute;
  z-index: 5;
  right: 4px;
  bottom: 58px;
  display: flex;
  max-width: 268px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: #dbe8ea;
  background: rgba(7, 28, 36, 0.86);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  font-size: 0.82rem;
  line-height: 1.35;
  backdrop-filter: blur(14px);
}

.earned-card strong {
  display: block;
  color: var(--paper);
}

.earned-icon {
  color: var(--amber);
  font-size: 1.6rem;
}

.quick-proof {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}

.proof-grid {
  display: grid;
  padding: 26px 30px;
  border: 1px solid #dbe5e5;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid > div {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 15px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid strong {
  color: var(--navy-900);
  font-size: 1.65rem;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 120px 0;
}

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

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

.section-heading h2,
.download-card h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5.4vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-how {
  padding-top: 130px;
  background: var(--paper);
}

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

.step-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #ffffff, #f5faf8);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.step-card:hover {
  border-color: #b5e8d9;
  box-shadow: 0 24px 65px rgba(5, 87, 69, 0.1);
  transform: translateY(-5px);
}

.step-number {
  color: #98a8ac;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 44px;
  place-items: center;
  border-radius: 18px;
  color: var(--emerald-dark);
  background: var(--emerald-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.3rem;
  font-weight: 900;
}

.step-card h3,
.feature-copy h3,
.plan-card h3 {
  margin: 22px 0 10px;
  font-size: 1.5rem;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.step-card p,
.feature-copy p {
  margin: 0;
  color: var(--muted);
}

.section-inside {
  background: var(--cream);
}

.feature-row {
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
}

.feature-row + .feature-row {
  margin-top: 110px;
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-row-reverse .screen-stage {
  order: 1;
}

.feature-copy {
  max-width: 500px;
}

.feature-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--emerald-dark);
  background: #dff6ee;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin-top: 22px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.feature-copy > p {
  font-size: 1.02rem;
  line-height: 1.75;
}

.check-list,
.plan-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plan-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: #425063;
}

.check-list li::before,
.plan-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--emerald-dark);
  background: var(--emerald-soft);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.screen-stage {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border: 1px solid rgba(11, 101, 81, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 40%, rgba(18, 212, 160, 0.16), transparent 38%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.screen-stage::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.phone-feature {
  border-width: 7px;
  border-radius: 38px;
}

.phone-feature-back {
  z-index: 1;
  top: 130px;
  left: 8%;
  width: 265px;
  aspect-ratio: 9 / 16;
  opacity: 0.7;
  transform: rotate(-7deg);
}

.phone-feature-front {
  z-index: 2;
  top: 54px;
  right: 9%;
  width: 300px;
  aspect-ratio: 9 / 16;
  transform: rotate(4deg);
}

.phone-feature-single {
  z-index: 2;
  top: 44px;
  left: 50%;
  width: 330px;
  aspect-ratio: 9 / 16;
  transform: translateX(-50%) rotate(-2deg);
}

.section-plans {
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 20%, rgba(18, 212, 160, 0.11), transparent 25%),
    linear-gradient(150deg, var(--navy-950), var(--navy-900));
}

.section-plans .section-heading > p:last-child {
  color: var(--muted-light);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.plan-card {
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.plan-free {
  color: var(--ink);
  background: #f7f9f8;
}

.plan-pro {
  border-color: rgba(18, 212, 160, 0.38);
  background:
    linear-gradient(145deg, rgba(18, 212, 160, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
}

.plan-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.plan-label {
  color: var(--emerald-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-pro .plan-label {
  color: var(--emerald);
}

.plan-card h3 {
  margin: 9px 0 0;
  font-size: 2rem;
}

.plan-pill {
  padding: 7px 11px;
  border-radius: 999px;
  color: #55616d;
  background: #e8edeb;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-pro .plan-pill {
  color: #aaffea;
  background: rgba(18, 212, 160, 0.14);
}

.plan-pro .plan-list li {
  color: #d4e2e5;
}

.subscription-note {
  max-width: 850px;
  margin: 30px auto 0;
  color: #91a7ae;
  font-size: 0.8rem;
  text-align: center;
}

.section-download {
  padding-bottom: 40px;
  background: var(--paper);
}

.download-card {
  display: grid;
  align-items: center;
  padding: clamp(34px, 6vw, 70px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 25%, rgba(18, 212, 160, 0.2), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
}

.download-card h2 {
  max-width: 720px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.download-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: #b4c6cb;
}

.download-actions {
  display: flex;
  min-width: 250px;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
  text-align: center;
}

.download-actions > span {
  color: #8fa5ac;
  font-size: 0.72rem;
}

.section-faq {
  padding-top: 96px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--emerald-dark);
  background: var(--emerald-soft);
  content: "+";
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: -4px 0 26px;
  padding-right: 36px;
  color: var(--muted);
}

.site-footer {
  padding: 70px 0 30px;
  color: #b0c1c6;
  background: var(--navy-950);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  color: var(--paper);
}

.footer-grid p {
  margin: 18px 0 0;
  color: #82979e;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--emerald);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #657d85;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

@keyframes phone-float {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-10px);
  }
}

@media (max-width: 1050px) {
  .header-inner nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7.7vw, 6rem);
  }

  .hero-product {
    transform: scale(0.9);
    transform-origin: center right;
  }

  .feature-row {
    gap: 44px;
  }

  .phone-feature-front {
    right: 5%;
  }

  .phone-feature-back {
    left: 3%;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 90px 0;
  }

  .hero {
    min-height: 1230px;
  }

  .hero::after {
    bottom: -185px;
  }

  .hero-grid {
    display: block;
    min-height: auto;
    padding-top: 150px;
  }

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

  .hero h1 {
    font-size: clamp(4rem, 13vw, 6.5rem);
  }

  .hero-product {
    width: min(520px, 100%);
    min-height: 640px;
    margin: 42px auto 0;
    transform: none;
  }

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

  .proof-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }

  .steps,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 280px;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .feature-row-reverse .feature-copy,
  .feature-row-reverse .screen-stage {
    order: initial;
  }

  .feature-copy {
    max-width: 650px;
  }

  .screen-stage {
    min-height: 650px;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .download-actions {
    min-width: 0;
    align-items: flex-start;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 1120px;
  }

  .hero-grid {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

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

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

  .hero-notes {
    display: grid;
  }

  .hero-product {
    min-height: 520px;
    margin-top: 30px;
  }

  .phone-front {
    right: 0;
    width: min(270px, 72vw);
  }

  .phone-back {
    top: 110px;
    left: -12px;
    width: min(220px, 58vw);
  }

  .earned-card {
    right: -4px;
    bottom: 18px;
    max-width: 230px;
  }

  .quick-proof {
    margin-top: -28px;
  }

  .proof-grid {
    padding: 12px 18px;
  }

  .proof-grid > div {
    min-height: 74px;
    padding: 0 6px;
  }

  .section-heading h2,
  .download-card h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .step-card {
    min-height: 260px;
    padding: 25px;
  }

  .step-icon {
    margin-top: 30px;
  }

  .feature-row + .feature-row {
    margin-top: 82px;
  }

  .screen-stage {
    min-height: 520px;
    border-radius: 28px;
  }

  .phone-feature-back {
    top: 110px;
    left: -12px;
    width: 215px;
  }

  .phone-feature-front {
    top: 38px;
    right: -8px;
    width: 245px;
  }

  .phone-feature-single {
    top: 34px;
    width: 260px;
  }

  .plan-card {
    border-radius: 24px;
  }

  .plan-topline {
    display: block;
  }

  .plan-pill {
    display: inline-flex;
    margin-top: 16px;
  }

  .download-card {
    border-radius: 28px;
  }

  .download-actions {
    align-items: stretch;
  }

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

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@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;
  }
}
