@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-semibold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-extrabold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  color-scheme: light;
  --bg: #edf5ef;
  --bg-deep: #e2eee6;
  --surface: #f6faf7;
  --surface-strong: #d7e8dc;
  --surface-glass: rgba(246, 250, 247, 0.78);
  --ink: #0a2114;
  --ink-soft: #365244;
  --ink-muted: #5c7365;
  --line: rgba(10, 33, 20, 0.13);
  --line-strong: rgba(10, 33, 20, 0.25);
  --accent: #177747;
  --accent-bright: #2c9b5f;
  --accent-soft: #cae8d5;
  --accent-ink: #f2fff7;
  --ambient-wash: rgba(237, 245, 239, 0.94);
  --shadow: 0 24px 70px rgba(26, 66, 43, 0.14);
  --shadow-soft: 0 12px 34px rgba(26, 66, 43, 0.09);
  --radius-card: 18px;
  --radius-small: 12px;
  --radius-pill: 999px;
  --shell: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --nav-height: 72px;
  --ease-premium: cubic-bezier(0.32, 0.72, 0, 1);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #06120b;
  --bg-deep: #0a1a11;
  --surface: #0c2015;
  --surface-strong: #12311f;
  --surface-glass: rgba(6, 18, 11, 0.8);
  --ink: #ecf8f0;
  --ink-soft: #b5cabc;
  --ink-muted: #829b8b;
  --line: rgba(223, 245, 230, 0.12);
  --line-strong: rgba(223, 245, 230, 0.25);
  --accent: #57d98b;
  --accent-bright: #76e7a3;
  --accent-soft: #143c26;
  --accent-ink: #05150b;
  --ambient-wash: rgba(6, 18, 11, 0.86);
  --shadow: 0 28px 84px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.24);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --bg: #06120b;
    --bg-deep: #0a1a11;
    --surface: #0c2015;
    --surface-strong: #12311f;
    --surface-glass: rgba(6, 18, 11, 0.8);
    --ink: #ecf8f0;
    --ink-soft: #b5cabc;
    --ink-muted: #829b8b;
    --line: rgba(223, 245, 230, 0.12);
    --line-strong: rgba(223, 245, 230, 0.25);
    --accent: #57d98b;
    --accent-bright: #76e7a3;
    --accent-soft: #143c26;
    --accent-ink: #05150b;
    --ambient-wash: rgba(6, 18, 11, 0.86);
    --shadow: 0 28px 84px rgba(0, 0, 0, 0.36);
    --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.24);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  position: relative;
  isolation: isolate;
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: transparent;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: radial-gradient(rgba(93, 143, 109, 0.38) 0.5px, transparent 0.5px);
  background-size: 5px 5px;
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(61, 176, 105, 0.12), transparent 34rem),
    linear-gradient(var(--ambient-wash), var(--ambient-wash)),
    url("assets/forest-canvas.webp") center / cover no-repeat;
  content: "";
  pointer-events: none;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3,
.brand-name,
.display-number {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.35rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 span {
  display: block;
}

h2 {
  max-width: 17ch;
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

p {
  color: var(--ink-soft);
}

strong {
  color: var(--ink);
  font-weight: 700;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform 220ms var(--ease-premium);
}

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

.shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-nav {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface-glass);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
}

.nav-inner {
  display: flex;
  min-height: var(--nav-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  box-shadow: 0 7px 20px rgba(5, 24, 14, 0.2);
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.nav-actions,
.nav-links,
.button-row {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 22px;
}

.nav-links {
  gap: 24px;
}

.nav-link {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 240ms var(--ease-premium), transform 240ms var(--ease-premium);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
}

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

.theme-toggle {
  position: relative;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition:
    border-color 240ms var(--ease-premium),
    color 240ms var(--ease-premium),
    transform 240ms var(--ease-premium);
}

.theme-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.22rem;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-18deg) scale(0.72);
  transition: opacity 240ms var(--ease-premium), transform 240ms var(--ease-premium);
}

.theme-toggle[data-next-theme="light"] .theme-icon-sun,
.theme-toggle[data-next-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0) scale(1);
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  color: var(--ink);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
  transform: translateZ(0);
  transition:
    background 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    color 260ms var(--ease-premium),
    transform 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium);
}

.button::after {
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.2), transparent 42%);
  content: "";
  opacity: 0.8;
  pointer-events: none;
}

.button-primary {
  border-color: color-mix(in srgb, var(--accent) 78%, white 22%);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 88%, white 12%),
    var(--accent)
  );
  color: var(--accent-ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(2, 33, 15, 0.26),
    0 12px 26px rgba(20, 105, 58, 0.22),
    0 2px 5px rgba(7, 52, 27, 0.14);
}

.button-secondary {
  border-color: color-mix(in srgb, var(--line-strong) 82%, var(--ink) 18%);
  background: color-mix(in srgb, var(--surface-glass) 88%, transparent);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 var(--line),
    0 9px 22px rgba(17, 55, 33, 0.08);
}

.button-secondary::after {
  opacity: 0.42;
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.82rem;
}

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

.button-primary:hover {
  border-color: color-mix(in srgb, var(--accent-bright) 74%, white 26%);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-bright) 88%, white 12%),
    color-mix(in srgb, var(--accent) 82%, var(--accent-bright) 18%)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(2, 33, 15, 0.24),
    0 16px 32px rgba(20, 105, 58, 0.28),
    0 3px 7px rgba(7, 52, 27, 0.16);
}

.button-secondary:hover {
  border-color: color-mix(in srgb, var(--ink) 56%, transparent);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 var(--line-strong),
    0 13px 28px rgba(17, 55, 33, 0.11);
}

.button:active,
.theme-toggle:active {
  transform: translateY(1px) scale(0.985);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 72%, white);
  outline-offset: 4px;
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  display: grid;
  min-height: calc(100dvh - var(--nav-height));
  align-items: center;
  padding-block: clamp(42px, 6vw, 76px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: var(--accent);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 span:last-child {
  color: var(--accent);
}

.hero-lede {
  max-width: 39ch;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.55;
}

.hero .button-row {
  margin-top: 32px;
}

.hero-stage {
  position: relative;
  min-height: min(690px, 76dvh);
  overflow: hidden;
  border: 1px solid rgba(146, 212, 168, 0.2);
  border-radius: var(--radius-card);
  background: #07160e url("assets/hero-atmosphere.webp") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 0 6px rgba(255, 255, 255, 0.035),
    var(--shadow);
  isolation: isolate;
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 7, 0.24), transparent 34%),
    linear-gradient(180deg, transparent 65%, rgba(2, 13, 7, 0.38));
  content: "";
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 64px);
  bottom: 28px;
  width: min(52%, 300px);
  height: calc(100% - 56px);
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.52));
  transform: rotate(0.4deg);
}

.hero-phone img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.hero-icon {
  position: absolute;
  z-index: 3;
  top: clamp(24px, 5vw, 58px);
  left: clamp(24px, 5vw, 56px);
  width: clamp(80px, 9vw, 112px);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 25%;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.32);
}

@media (min-width: 761px) and (prefers-reduced-motion: no-preference) {
  .hero-icon {
    animation: hero-icon-enter 760ms var(--ease-premium) both;
  }

  .hero-phone {
    animation: hero-phone-enter 880ms 80ms var(--ease-premium) both;
  }
}

@keyframes hero-icon-enter {
  from {
    opacity: 0;
    transform: translate3d(-12px, 12px, 0) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-phone-enter {
  from {
    opacity: 0;
    transform: translate3d(20px, 24px, 0) rotate(0.4deg) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0.4deg) scale(1);
  }
}

.hero-note {
  position: absolute;
  z-index: 3;
  top: clamp(132px, 19vw, 202px);
  left: clamp(24px, 5vw, 56px);
  max-width: 15ch;
  color: rgba(237, 255, 243, 0.82);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.proof-strip {
  border-block: 1px solid var(--line);
}

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

.proof-item {
  padding: 28px 32px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.proof-item span {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.section {
  padding-block: clamp(84px, 11vw, 148px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 7vw, 76px);
}

.section-heading p {
  max-width: 58ch;
  margin-top: 21px;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 68px);
}

.rhythm-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rhythm-list {
  margin-top: 38px;
}

.rhythm-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding-block: 23px;
  border-top: 1px solid var(--line);
}

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

.rhythm-time {
  color: var(--accent);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.rhythm-item p {
  margin-top: 6px;
  font-size: 0.94rem;
}

.phone-card {
  display: flex;
  min-height: 760px;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 50% 34%, rgba(68, 200, 117, 0.16), transparent 40%),
    var(--surface);
}

.phone-card img {
  width: min(100%, 390px);
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.34));
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(46px, 7vw, 80px);
  border-top: 1px solid var(--line);
}

.mode-item {
  padding: 34px clamp(18px, 4vw, 52px) 0 0;
}

.mode-item + .mode-item {
  padding-right: 0;
  padding-left: clamp(18px, 4vw, 52px);
  border-left: 1px solid var(--line);
}

.mode-item p {
  max-width: 40ch;
  margin-top: 10px;
}

.device-stage {
  position: relative;
  min-height: 720px;
}

.device-stage::before {
  position: absolute;
  inset: 5% 4% 4%;
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 18% 30%, rgba(62, 173, 101, 0.2), transparent 32%),
    var(--surface-strong);
  content: "";
}

.mac-shot,
.ipad-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mac-shot {
  top: 0;
  right: 0;
  width: 78%;
}

.ipad-shot {
  bottom: 0;
  left: 0;
  width: min(42%, 390px);
}

.device-caption {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 4%;
  max-width: 24ch;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
  background: rgba(4, 18, 10, 0.76);
  color: #e9f9ef;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.device-caption strong,
.device-caption span {
  display: block;
}

.device-caption span {
  margin-top: 5px;
  color: rgba(233, 249, 239, 0.7);
  font-size: 0.86rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: minmax(260px, auto) minmax(290px, auto);
  gap: 16px;
}

.feature-cell {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 0 5px color-mix(in srgb, var(--surface) 74%, transparent);
}

.feature-cell p {
  max-width: 34ch;
  margin-top: 12px;
  font-size: 0.94rem;
}

.feature-cell-large {
  grid-row: 1 / 3;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 50% 72%, rgba(50, 189, 101, 0.18), transparent 44%),
    var(--surface);
}

.feature-cell-large img {
  width: min(70%, 285px);
  margin: 30px auto 0;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.3));
}

.feature-cell-accent {
  background:
    linear-gradient(135deg, rgba(40, 146, 84, 0.2), transparent 56%),
    var(--surface-strong);
}

.feature-cell-icon {
  display: grid;
  grid-template-columns: 1fr 92px;
  align-items: end;
  gap: 20px;
}

.feature-cell-icon img {
  width: 92px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-cell-wide {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 24px;
}

.feature-cell-wide img {
  width: min(100%, 165px);
  justify-self: end;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.28));
}

.pricing-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 82px);
  border: 1px solid rgba(123, 231, 164, 0.18);
  border-radius: var(--radius-card);
  background:
    linear-gradient(110deg, rgba(2, 15, 8, 0.95), rgba(9, 46, 25, 0.84)),
    url("assets/hero-atmosphere.webp") center / cover no-repeat;
  color: #eefbf2;
  box-shadow: var(--shadow);
}

.pricing-panel::after {
  position: absolute;
  top: clamp(30px, 6vw, 70px);
  right: clamp(30px, 7vw, 90px);
  width: clamp(92px, 12vw, 150px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25%;
  background: url("assets/app-icon.webp") center / cover no-repeat;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  content: "";
}

.pricing-panel h2 {
  max-width: 12ch;
}

.pricing-panel > p {
  max-width: 48ch;
  margin-top: 19px;
  color: rgba(238, 251, 242, 0.74);
}

.pricing-panel .button-row {
  margin-top: 29px;
}

.pricing-panel .button-primary {
  color: var(--accent-ink);
}

.pricing-panel .button-secondary {
  border-color: rgba(238, 251, 242, 0.32);
  color: #eefbf2;
}

.pricing-panel .button-secondary:hover {
  border-color: #eefbf2;
  background: rgba(238, 251, 242, 0.08);
}

.plan-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-top: 48px;
  border-top: 1px solid rgba(238, 251, 242, 0.18);
}

.plan {
  padding: 22px 24px 0 0;
}

.plan + .plan {
  padding-left: 24px;
  border-left: 1px solid rgba(238, 251, 242, 0.18);
}

.plan strong,
.plan span {
  display: block;
}

.plan strong {
  color: #eefbf2;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
}

.plan span {
  margin-top: 4px;
  color: rgba(238, 251, 242, 0.62);
  font-size: 0.8rem;
}

.privacy-statement {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.privacy-copy {
  max-width: 62ch;
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  line-height: 1.48;
}

.privacy-copy p + p {
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(36px, 7vw, 96px);
}

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

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

.faq-item summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 35px;
  right: 8px;
  width: 16px;
  height: 2px;
  background: var(--accent);
  content: "";
  transition: transform 240ms var(--ease-premium);
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item p {
  max-width: 62ch;
  padding: 0 48px 25px 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px 30px;
  align-items: center;
}

.footer-grid > a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-grid > a img {
  display: block;
  width: 160px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

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

.footer-meta {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.footer-meta a:hover {
  color: var(--ink);
}

.footer-meta span {
  padding-inline: 6px;
}

.page-main {
  min-height: calc(100dvh - var(--nav-height));
  padding-block: clamp(66px, 9vw, 118px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: end;
  padding-bottom: clamp(44px, 7vw, 78px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-top: 17px;
}

.page-hero p {
  max-width: 48ch;
  margin-top: 22px;
  font-size: 1.1rem;
}

.page-hero .button-row {
  margin-top: 28px;
}

.page-icon {
  width: clamp(100px, 14vw, 150px);
  border: 1px solid var(--line);
  border-radius: 25%;
  box-shadow: var(--shadow);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(38px, 7vw, 94px);
  padding-top: clamp(54px, 8vw, 92px);
}

.contact-panel {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-panel p {
  margin-top: 11px;
  font-size: 0.93rem;
}

.contact-panel .button {
  width: 100%;
  margin-top: 22px;
}

.support-content h2,
.legal-content h2 {
  max-width: none;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.support-content > h2 {
  margin-bottom: 18px;
}

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

.support-list a {
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
  font-weight: 700;
}

.support-list + h2 {
  margin-top: 70px;
}

.support-note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.support-note p {
  margin-top: 9px;
  font-size: 0.9rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  justify-content: space-between;
  gap: clamp(50px, 8vw, 110px);
  padding-top: clamp(54px, 8vw, 92px);
}

.legal-nav {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  align-self: start;
}

.legal-nav strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding-block: 7px;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.legal-nav a:hover {
  color: var(--ink);
}

.legal-content {
  min-width: 0;
}

.legal-content > p:first-child {
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.52;
}

.legal-content h2 {
  margin-top: 48px;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.legal-content p,
.legal-content ul {
  margin-top: 14px;
}

.legal-content ul {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
}

.legal-meta {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.legal-callout {
  margin-top: 48px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.legal-callout p {
  margin-top: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal[data-delay="1"].is-visible {
  transition-delay: 90ms;
}

.js .reveal[data-delay="2"].is-visible {
  transition-delay: 180ms;
}

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

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

  .hero {
    min-height: auto;
  }

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

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

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

  .phone-card {
    min-height: 620px;
  }

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

  .feature-cell-large {
    grid-row: span 2;
  }

  .feature-cell-wide {
    grid-column: 1 / 3;
  }

  .pricing-panel::after {
    width: 106px;
  }

  .privacy-statement,
  .faq-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 64px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 13.5vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .shell {
    padding-inline: 20px;
  }

  .nav-inner {
    gap: 12px;
  }

  .nav-actions {
    gap: 9px;
  }

  .nav-actions > .button {
    display: none;
  }

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

  .theme-toggle {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .hero {
    padding-block: 42px 64px;
  }

  .hero-grid {
    gap: 42px;
  }

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

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

  .hero-phone {
    right: 18px;
    bottom: 24px;
    width: min(62%, 300px);
    height: calc(100% - 48px);
  }

  .hero-icon {
    width: 70px;
  }

  .hero-note {
    top: 126px;
    max-width: 12ch;
    font-size: 0.78rem;
  }

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

  .proof-item {
    padding: 20px 0;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 82px;
  }

  .rhythm-item {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .phone-card {
    min-height: 0;
    padding: 30px;
  }

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

  .mode-item {
    padding: 28px 0;
  }

  .mode-item + .mode-item {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .device-stage {
    display: grid;
    min-height: 0;
    gap: 18px;
  }

  .device-stage::before {
    display: none;
  }

  .mac-shot,
  .ipad-shot {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .ipad-shot {
    width: 72%;
    justify-self: start;
  }

  .device-caption {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    margin-top: 0;
    margin-left: auto;
  }

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

  .feature-cell-large,
  .feature-cell-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .feature-cell-large {
    min-height: 620px;
  }

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

  .feature-cell-wide img {
    width: min(74%, 250px);
    justify-self: center;
  }

  .feature-cell-icon {
    grid-template-columns: 1fr 74px;
  }

  .feature-cell-icon img {
    width: 74px;
    border-radius: 19px;
  }

  .pricing-panel {
    padding-top: 154px;
  }

  .pricing-panel::after {
    top: 32px;
    right: auto;
    left: 32px;
    width: 92px;
  }

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

  .plan {
    padding: 18px 0;
  }

  .plan + .plan {
    padding-left: 0;
    border-top: 1px solid rgba(238, 251, 242, 0.18);
    border-left: 0;
  }

  .faq-layout {
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-grid > a {
    justify-content: flex-start;
  }

  .site-footer {
    padding-block: 20px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-icon {
    grid-row: 1;
    width: 92px;
  }

  .support-note-grid {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

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

  .hero-phone {
    right: 12px;
  }

  .hero-icon {
    left: 16px;
    width: 64px;
  }

  .hero-note {
    left: 18px;
  }

  .phone-card {
    padding: 24px 18px;
  }

  .pricing-panel {
    margin-inline: -4px;
  }
}

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

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-nav,
  .device-caption {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-nav {
    background: var(--bg);
  }
}
