:root {
  --canvas: #f7f3e8;
  --canvas-deep: #eee8d9;
  --paper: #fffdf8;
  --brand: #2b7569;
  --brand-dark: #173e39;
  --brand-deep: #102e2a;
  --brand-soft: #dfeee8;
  --orange: #f2a037;
  --orange-soft: #fae4c4;
  --ink: #142522;
  --muted: #66736f;
  --line: rgba(20, 62, 56, .12);
  --shadow: 0 28px 80px rgba(20, 62, 56, .12);
  --radius-large: 36px;
  --radius-card: 26px;
  --section: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  border: 0;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.block-section {
  padding: 128px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  padding-top: max(12px, env(safe-area-inset-top));
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(247, 243, 232, .82);
  border-bottom: 1px solid rgba(20, 62, 56, .08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(1240px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(23, 62, 57, .14);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transition: right .25s ease;
}

.desktop-nav a:hover {
  color: var(--brand-dark);
}

.desktop-nav a:hover::after {
  right: 0;
}

.nav-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.lang-switch button {
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.lang-switch button[aria-current="true"] {
  color: #fff;
  background: var(--brand-dark);
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 13px;
  font-size: 14px;
}

.button-dark {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(23, 62, 57, .18);
}

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 18px 36px rgba(43, 117, 105, .24);
}

.button-secondary {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.button-light {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 18px 36px rgba(6, 31, 27, .16);
}

.apple-logo {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.apple-logo.dark {
  color: var(--brand-dark);
}

.hero {
  min-height: 920px;
  padding-top: 150px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .09em;
}

.eyebrow span {
  width: 27px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

.hero h1 {
  margin: 24px 0 26px;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 1.08;
  letter-spacing: -.07em;
  font-weight: 850;
}

.hero h1 em {
  color: var(--brand);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 4px;
  right: -8px;
  bottom: 4px;
  height: 16px;
  background: var(--orange-soft);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  color: var(--orange);
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.trust-list {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 2.5;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(208, 231, 221, .95), rgba(223, 238, 232, .35) 58%, transparent 70%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(43, 117, 105, .15);
  border-radius: 50%;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(242, 160, 55, .12);
}

.orbit-one {
  width: 540px;
  height: 540px;
  animation: rotate 22s linear infinite;
}

.orbit-one::before {
  top: 40px;
  right: 84px;
}

.orbit-two {
  width: 660px;
  height: 660px;
  border-style: dashed;
  animation: rotate 34s linear infinite reverse;
}

.orbit-two::before {
  left: 40px;
  bottom: 142px;
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(43, 117, 105, .10);
}

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

.phone-frame {
  position: relative;
  z-index: 3;
  width: 374px;
  padding: 12px;
  border-radius: 56px;
  background: #112c28;
  box-shadow: 0 50px 100px rgba(18, 57, 51, .24), inset 0 0 0 2px rgba(255,255,255,.16);
  transform: rotate(2deg);
}

.phone-screen {
  position: relative;
  min-height: 744px;
  padding: 16px 18px 82px;
  overflow: hidden;
  border-radius: 45px;
  background: #f8f5ec;
}

.phone-screen::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 112px;
  height: 30px;
  border-radius: 20px;
  background: #112c28;
  transform: translateX(-50%);
}

.phone-status {
  height: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 800;
}

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

.phone-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px 18px;
}

.phone-brand {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
}

.phone-title-row h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -.05em;
}

.phone-title-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.phone-title-row button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 28px;
  line-height: 1;
}

.phone-summary {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  padding: 15px 4px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
}

.phone-summary div {
  display: grid;
  place-items: center;
  gap: 3px;
}

.phone-summary strong {
  color: var(--brand);
  font-size: 19px;
}

.phone-summary strong.amber {
  color: var(--orange);
}

.phone-summary span {
  color: var(--muted);
  font-size: 9px;
}

.phone-summary i {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 3px 10px;
  font-size: 13px;
}

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

.lesson-card {
  display: grid;
  grid-template-columns: 48px 3px 1fr;
  gap: 11px;
  padding: 14px 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(43, 117, 105, .1);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 20px rgba(20, 62, 56, .05);
}

.lesson-time {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 3px;
}

.lesson-time strong {
  font-size: 12px;
}

.lesson-time span {
  color: var(--muted);
  font-size: 9px;
}

.lesson-line {
  border-radius: 3px;
  background: var(--orange-soft);
}

.completed .lesson-line {
  background: var(--brand-soft);
}

.lesson-info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lesson-info strong {
  font-size: 12px;
}

.tag {
  padding: 4px 7px;
  color: #9e6112;
  border-radius: 10px;
  background: #fdf0d9;
  font-size: 8px;
  font-weight: 800;
}

.completed .tag {
  color: var(--brand);
  background: var(--brand-soft);
}

.lesson-info p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 9px;
}

.lesson-info button {
  padding: 0;
  color: var(--brand);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
}

.phone-tabs {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 13px;
  height: 60px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(20, 62, 56, .08);
  border-radius: 23px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 32px rgba(20, 62, 56, .10);
}

.phone-tabs span {
  display: grid;
  place-items: center;
  gap: 1px;
  color: var(--ink);
  border-radius: 17px;
  font-size: 15px;
  font-weight: 800;
}

.phone-tabs span.active {
  color: var(--brand);
  background: #efede4;
}

.phone-tabs small {
  font-size: 7px;
}

.floating-pill {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--brand-dark);
  border: 1px solid rgba(43, 117, 105, .10);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 36px rgba(23, 62, 57, .12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 750;
}

.floating-pill svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 160, 55, .13);
}

.pill-top {
  top: 118px;
  right: -8px;
  animation: float 5s ease-in-out infinite;
}

.pill-bottom {
  left: -10px;
  bottom: 125px;
  animation: float 6s 1s ease-in-out infinite;
}

@keyframes float {
  50% { transform: translateY(-10px); }
}

.value-strip {
  padding: 34px 0;
  color: #fff;
  background: var(--brand-dark);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-grid div {
  padding: 8px 42px;
  display: grid;
  gap: 5px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.value-grid div:first-child {
  padding-left: 0;
}

.value-grid div:last-child {
  border: 0;
}

.value-grid strong {
  font-size: 19px;
}

.value-grid span {
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

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

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin: 20px 0 18px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.18;
  letter-spacing: -.055em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.features {
  background: var(--paper);
}

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

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fbfaf5;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 117, 105, .22);
  box-shadow: var(--shadow);
}

.feature-card.feature-large {
  grid-column: span 2;
  min-height: 370px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 34px;
  background: var(--brand-soft);
}

.feature-card.feature-wide {
  grid-column: span 3;
  min-height: 230px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  background: linear-gradient(120deg, #fbf7ed, #f6ead4);
}

.feature-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  color: var(--brand);
  border-radius: 17px;
  background: var(--brand-soft);
}

.feature-large > div:first-of-type,
.feature-wide .feature-icon {
  margin: 0;
}

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

.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -.035em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.mini-calendar {
  padding: 22px;
  border: 1px solid rgba(43, 117, 105, .10);
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 22px 40px rgba(43, 117, 105, .10);
  transform: rotate(2deg);
}

.mini-calendar .week,
.mini-calendar .days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.mini-calendar .week {
  color: var(--muted);
  font-size: 10px;
}

.mini-calendar .days {
  margin: 12px 0 18px;
}

.mini-calendar i {
  width: 34px;
  height: 34px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

.mini-calendar i.selected {
  color: #fff;
  background: var(--brand);
}

.calendar-event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 13px;
  color: var(--brand-dark);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  background: #fff;
  font-size: 11px;
}

.workflow {
  position: relative;
  overflow: hidden;
}

.workflow::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -230px;
  right: -180px;
  border-radius: 50%;
  background: var(--brand-soft);
}

.steps {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
}

.steps::before {
  content: "";
  position: absolute;
  top: 63px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--orange), transparent);
}

.steps li {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.step-number {
  display: block;
  color: rgba(43, 117, 105, .35);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
}

.step-dot {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  margin: 22px auto 25px;
  border: 9px solid var(--canvas);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px rgba(43, 117, 105, .22);
}

.steps li:last-child .step-dot {
  background: var(--orange);
}

.steps h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.statement {
  padding-top: 0;
}

.statement-card {
  position: relative;
  min-height: 450px;
  padding: 80px;
  display: grid;
  align-content: center;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-large);
  background: var(--brand-dark);
  box-shadow: 0 36px 80px rgba(16, 46, 42, .20);
}

.statement-card::after {
  content: "♫";
  position: absolute;
  right: 7%;
  bottom: -130px;
  color: rgba(255,255,255,.045);
  font-size: 420px;
  font-weight: 900;
}

.statement-mark {
  position: absolute;
  top: 18px;
  left: 52px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 1;
  opacity: .75;
}

.statement-card > p {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 780;
  line-height: 1.35;
  letter-spacing: -.045em;
}

.statement-card em {
  color: #f8c279;
  font-style: normal;
}

.statement-signature {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.statement-signature img {
  border-radius: 13px;
}

.statement-signature div {
  display: grid;
  gap: 3px;
}

.statement-signature strong {
  font-size: 14px;
}

.statement-signature span {
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.pricing {
  background: var(--paper);
}

.pricing-grid {
  max-width: 910px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.price-card {
  position: relative;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fbfaf5;
}

.price-card.featured {
  color: #fff;
  border-color: transparent;
  background: var(--brand);
  box-shadow: 0 30px 70px rgba(43, 117, 105, .24);
}

.recommended {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 11px;
  color: var(--brand-dark);
  border-radius: 999px;
  background: var(--orange-soft);
  font-size: 10px;
  font-weight: 800;
}

.plan-label {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.featured .plan-label {
  color: #c9e6dc;
}

.price-card h3 {
  min-height: 58px;
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.price {
  min-height: 77px;
  margin: 26px 0;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.price strong {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.05em;
}

.price span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.featured .price span {
  color: rgba(255,255,255,.65);
}

.price-copy {
  display: grid;
  align-content: end;
  gap: 8px;
}

.price-copy strong {
  font-size: 30px;
}

.price-copy span {
  padding: 0;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
  padding: 24px 0 32px;
  margin: 0;
  border-top: 1px solid var(--line);
}

.featured ul {
  border-color: rgba(255,255,255,.17);
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.price-card li svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 2.4;
}

.featured li svg {
  stroke: #fff;
}

.price-card .button {
  width: 100%;
}

.featured .button-primary {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: none;
}

.privacy-band {
  padding: 76px 0;
  color: #fff;
  background: #153d37;
}

.privacy-content {
  display: grid;
  grid-template-columns: auto 1fr minmax(320px, .8fr);
  align-items: center;
  gap: 28px;
}

.privacy-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
}

.privacy-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
}

.privacy-content span {
  color: #a9d5c6;
  font-size: 12px;
  font-weight: 700;
}

.privacy-content h2 {
  margin: 7px 0 0;
  font-size: 28px;
  letter-spacing: -.04em;
}

.privacy-content p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.8;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 140px;
  margin: 0;
}

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

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

.faq-list summary {
  list-style: none;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--brand);
  font-size: 23px;
  font-weight: 400;
  transition: transform .25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -5px 45px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.download {
  padding: 30px 0 110px;
}

.download-card {
  position: relative;
  min-height: 250px;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-large);
  background: var(--brand);
  box-shadow: 0 30px 80px rgba(43, 117, 105, .24);
}

.download-card > * {
  position: relative;
  z-index: 2;
}

.download-glow {
  position: absolute;
  z-index: 1;
  width: 430px;
  height: 430px;
  right: -150px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,160,55,.55), transparent 68%);
}

.download-card img {
  border-radius: 27px;
  box-shadow: 0 20px 35px rgba(16, 46, 42, .22);
}

.download-card span {
  color: #cce7de;
  font-size: 12px;
  font-weight: 700;
}

.download-card h2 {
  margin: 7px 0 6px;
  font-size: 32px;
  letter-spacing: -.04em;
}

.download-card p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
}

.site-footer {
  padding: 28px 0 max(28px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-inner .brand {
  font-size: 17px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 11px;
}

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

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: max(26px, env(safe-area-inset-bottom));
  padding: 13px 18px;
  color: #fff;
  border-radius: 14px;
  background: rgba(16, 46, 42, .94);
  box-shadow: 0 16px 42px rgba(16, 46, 42, .24);
  transform: translate(-50%, 120px);
  opacity: 0;
  transition: .35s ease;
  font-size: 13px;
  font-weight: 650;
  pointer-events: none;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal {
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

html.js-reveal .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}

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

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

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: .9fr 1.1fr;
    gap: 25px;
  }

  .phone-frame {
    width: 350px;
  }

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

  .hero-visual::before,
  .orbit-one {
    width: 500px;
    height: 500px;
  }

  .orbit-two {
    width: 580px;
    height: 580px;
  }

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

  .download-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .section-shell {
    width: min(100% - 32px, var(--section));
  }

  .block-section {
    padding: 88px 0;
  }

  .nav-shell {
    width: calc(100% - 28px);
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .lang-switch button {
    min-width: 30px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-copy {
    padding: 0;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(50px, 12vw, 72px);
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 790px;
  }

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

  .value-grid div,
  .value-grid div:first-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    text-align: center;
  }

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

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

  .feature-card.feature-large,
  .feature-card.feature-wide {
    grid-column: span 2;
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 0;
  }

  .steps::before {
    display: none;
  }

  .statement-card {
    padding: 60px 42px;
  }

  .privacy-content {
    grid-template-columns: auto 1fr;
  }

  .privacy-content > p {
    grid-column: 2;
  }

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

  .faq-layout .section-heading {
    position: static;
  }

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

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header .brand img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .site-header .brand span {
    font-size: 18px;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(45px, 13vw, 61px);
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

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

  .trust-list {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 680px;
    margin-top: 5px;
  }

  .hero-visual::before {
    width: 430px;
    height: 430px;
  }

  .orbit-one {
    width: 410px;
    height: 410px;
  }

  .orbit-two {
    width: 470px;
    height: 470px;
  }

  .phone-frame {
    width: 304px;
    border-radius: 48px;
    transform: rotate(1.5deg) scale(.91);
  }

  .phone-screen {
    min-height: 650px;
    border-radius: 38px;
  }

  .phone-title-row h2 {
    font-size: 28px;
  }

  .floating-pill {
    font-size: 10px;
    padding: 10px 12px;
  }

  .pill-top {
    top: 90px;
    right: -5px;
  }

  .pill-bottom {
    left: -4px;
    bottom: 94px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 37px;
  }

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

  .feature-card,
  .feature-card.feature-large,
  .feature-card.feature-wide {
    grid-column: span 1;
    min-height: 0;
    padding: 26px;
  }

  .feature-card.feature-wide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
    text-align: left;
  }

  .steps .step-number {
    grid-column: 1;
    grid-row: 1;
  }

  .steps .step-dot {
    grid-column: 1;
    grid-row: 2 / 4;
    margin: 10px 0 0;
  }

  .steps h3,
  .steps p {
    grid-column: 2;
  }

  .steps h3 {
    grid-row: 1 / 3;
    align-self: center;
  }

  .statement-card {
    min-height: 410px;
    padding: 55px 28px 40px;
    border-radius: 28px;
  }

  .statement-mark {
    left: 22px;
  }

  .statement-card > p {
    font-size: 34px;
  }

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

  .price-card {
    padding: 30px 26px;
  }

  .privacy-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .privacy-icon {
    margin-inline: auto;
  }

  .privacy-content > p {
    grid-column: 1;
  }

  .download {
    padding-bottom: 70px;
  }

  .download-card {
    padding: 38px 26px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .download-card .button {
    grid-column: 1;
    justify-self: stretch;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-inner .brand,
  .footer-links {
    justify-self: center;
  }

  .footer-inner p {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }

  html.js-reveal .reveal:not(.visible) {
    opacity: 1;
    transform: none;
  }
}
