@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter/InterVariable.woff2") format("woff2");
}

:root {
  --navy: #071b36;
  --blue: #0a69d8;
  --blue-soft: #dbeeff;
  --cream: #fff7e4;
  --cream-deep: #f3dfb4;
  --gold: #dca43b;
  --gold-bright: #ffc857;
  --ink: #122033;
  --muted: #637083;
  --line: rgba(18, 32, 51, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 27, 54, 0.18);
  --success: #12a36f;
  --recommended: #ffe08a;
  --surface-highlight: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 200, 87, 0.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(10, 105, 216, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f7fbff 48%, #fff7e4 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.22);
  border-bottom: 1px solid rgba(7, 27, 54, 0.04);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark {
  width: clamp(190px, 18vw, 300px);
  height: 96px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: #263a54;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(7, 27, 54, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  grid-column: 1;
  grid-row: 1;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--navy);
  background: var(--gold-bright);
  border: 1px solid rgba(7, 27, 54, 0.16);
  border-radius: 999px;
}

.hero-section {
  max-width: 1320px;
  margin: 0 auto;
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
  row-gap: 0;
  column-gap: clamp(32px, 6vw, 86px);
  padding: clamp(2px, 1.2vw, 18px) clamp(18px, 6vw, 86px) 34px;
  overflow: hidden;
}

.hero-logo-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: clamp(-34px, -2.4vw, -18px);
}

.hero-copy {
  max-width: 780px;
  width: 100%;
  align-self: start;
  padding-top: clamp(8px, 1.6vw, 24px);
}

.hero-logo {
  width: min(820px, 82vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 22px 34px rgba(7, 27, 54, 0.22));
}

.eyebrow {
  margin: 0 0 12px;
  color: #9a6b10;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.45rem, 5.6vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

#dynamic-word {
  display: inline-block;
  color: var(--blue);
  text-shadow: 0 10px 30px rgba(10, 105, 216, 0.2);
}

.dynamic-line {
  min-height: 1.8em;
  margin: -6px 0 18px;
  color: #223b59;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.35;
}

.hero-text,
.page-hero p,
.checkout-copy p {
  max-width: 680px;
  color: #40526a;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 42px rgba(220, 164, 59, 0.28);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.hero-proof {
  margin-top: 22px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(10, 105, 216, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #31506f;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  padding-top: clamp(2px, 1.1vw, 18px);
}

.hero-visual-desktop {
  width: min(46vw, 860px);
  justify-self: center;
}

.hero-visual-mobile {
  display: none;
}

.hero-phones-image {
  width: 100%;
  max-width: 860px;
  height: auto;
  display: block;
  transform: translateY(clamp(-34px, -2.8vw, -14px));
  border-radius: 18px;
  filter: drop-shadow(0 26px 58px rgba(7, 27, 54, 0.22));
}

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

.phone {
  position: absolute;
  width: 282px;
  height: 570px;
  padding: 14px;
  border: 10px solid #061528;
  border-radius: 42px;
  background: #061528;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-main {
  top: 18px;
  right: 64px;
  transform: rotate(3deg);
}

.phone-side {
  left: 18px;
  bottom: 34px;
  width: 210px;
  height: 430px;
  transform: rotate(-10deg);
  opacity: 0.94;
}

.phone-speaker {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 6px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #203851;
}

.phone-shot {
  width: 100%;
  height: calc(100% - 16px);
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
}

.app-screen {
  min-height: 500px;
  padding: 18px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #fbf6e7, #dcecff 54%, #0c2444 55%);
}

.phone-side .app-screen {
  min-height: 360px;
  background: linear-gradient(180deg, #0b2344, #0a69d8);
}

.app-topbar,
.collection-card,
.stat-grid,
.item-list article {
  display: flex;
  align-items: center;
}

.app-topbar {
  justify-content: space-between;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.app-topbar strong {
  color: #7d550c;
}

.collection-card {
  gap: 14px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0b5fc4);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--navy);
  background: var(--gold-bright);
}

.collection-card p {
  margin-bottom: 4px;
  color: #bcd6f7;
  font-size: 0.78rem;
}

.collection-card h2 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.stat-grid {
  gap: 12px;
  margin: 16px 0;
}

.stat-grid div {
  flex: 1;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

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

.item-list {
  display: grid;
  gap: 10px;
}

.item-list article {
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.item-list small {
  display: block;
  color: var(--muted);
}

.item-thumb {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.gold { background: linear-gradient(135deg, #ffd76c, #b77612); }
.blue { background: linear-gradient(135deg, #7fc5ff, #0a4fa2); }
.cream { background: linear-gradient(135deg, #fff8df, #d6b46d); }

.scan-card {
  display: grid;
  place-items: center;
  min-height: 150px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.scan-card span {
  width: 78px;
  height: 78px;
  border: 8px solid var(--gold-bright);
  border-radius: 22px;
}

.scan-card p {
  margin: 12px 0 0;
  font-weight: 900;
}

.mini-row {
  height: 16px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.mini-row.short {
  width: 68%;
}

.mock-button {
  width: 100%;
  height: 42px;
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold-bright);
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 6vw, 86px);
}

.section > .section-heading,
.section > .feature-grid,
.section > .screen-gallery,
.section > .comparison-grid,
.section > .access-grid,
.section > .checkout-copy,
.section > .checkout-card,
.section > .feature-list,
.section > .feature-showcase,
.section > .news-grid,
.section > .faq-list {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section.feature-list,
.section.feature-showcase,
.section.news-grid,
.section.faq-list {
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.section.faq-list {
  max-width: 920px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: 880px;
  text-align: center;
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading h2,
.page-hero h1 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.intro-band {
  background: var(--navy);
  color: var(--white);
}

.intro-band h2 {
  color: var(--white);
}

.intro-band .eyebrow,
.intro-band p {
  color: #f7d88f;
}

.feature-grid,
.plans-grid,
.comparison-grid,
.news-grid,
.feature-list,
.screen-gallery,
.app-flow-grid,
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article,
.comparison-panel,
.plan-card,
.news-grid article,
.feature-list article,
.screen-gallery article,
.app-flow-card,
.free-card,
.cloud-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 36px rgba(7, 27, 54, 0.08);
}

.feature-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.feature-grid h3,
.feature-grid p {
  color: var(--white);
}

.app-flow-section {
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(255, 247, 228, 0.78));
}

.app-flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-flow-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
}

.app-flow-card picture,
.app-flow-card img {
  display: block;
}

.app-flow-card img {
  width: 100%;
  aspect-ratio: 1.44 / 1;
  object-fit: cover;
  object-position: center;
  margin-bottom: 18px;
  border: 1px solid rgba(7, 27, 54, 0.12);
  border-radius: 8px;
  background: #eef6fb;
}

.app-flow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 12px;
  color: var(--navy);
  background: var(--recommended);
  border: 1px solid rgba(7, 27, 54, 0.12);
  border-radius: 999px;
  font-weight: 950;
}

.app-flow-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.app-flow-card p {
  color: #41536a;
  line-height: 1.55;
}

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

.comparison-panel,
.plan-card,
.news-grid article,
.feature-list article,
.screen-gallery article {
  padding: clamp(22px, 3vw, 32px);
}

.app-gallery-section {
  background: #f7fbff;
}

.screen-gallery article {
  overflow: hidden;
}

.screen-gallery img {
  width: 100%;
  aspect-ratio: 9 / 13;
  display: block;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 18px;
  border: 1px solid rgba(7, 27, 54, 0.12);
  border-radius: 8px;
  background: #eef6fb;
}

.access-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
}

.free-card,
.cloud-card {
  padding: clamp(24px, 4vw, 42px);
}

.free-card {
  background: rgba(255, 255, 255, 0.78);
}

.free-card h3,
.cloud-card h3 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.free-card p {
  max-width: 720px;
  color: #41536a;
  line-height: 1.7;
}

.limit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.limit-grid div {
  padding: 16px;
  border: 1px solid rgba(7, 27, 54, 0.12);
  border-radius: 8px;
  background: #f7fbff;
}

.limit-grid strong,
.limit-grid span {
  display: block;
}

.limit-grid strong {
  margin-bottom: 8px;
  color: var(--navy);
}

.limit-grid span {
  color: #52657d;
  line-height: 1.45;
}

.cloud-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(155deg, var(--navy), #0a4f9e);
  box-shadow: 0 24px 70px rgba(7, 27, 54, 0.22);
  border-color: rgba(255, 255, 255, 0.22);
}

.cloud-card h3,
.cloud-card li,
.cloud-card .price,
.cloud-card .coffee-note,
.cloud-card .monthly-note,
.cloud-card .plan-reassurance {
  color: var(--white);
}

.recommended-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--recommended);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.cloud-card .price {
  margin-bottom: 8px;
}

.monthly-note {
  margin: 0 0 10px;
  font-weight: 900;
}

.coffee-note {
  color: #dbe8f8;
  font-weight: 900;
  line-height: 1.5;
}

.checked-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.checked-list li {
  position: relative;
  padding-left: 30px;
}

.checked-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--success), #4fd99a);
}

.checked-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.46em;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(42deg);
}

.cloud-card .button {
  width: 100%;
  margin-top: 22px;
}

.plan-reassurance {
  margin: 16px 0 0;
  color: #dbe8f8;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.feature-showcase {
  display: grid;
  gap: 24px;
  padding-top: 0;
}

.feature-showcase article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(7, 27, 54, 0.08);
}

.feature-showcase article:nth-child(even) {
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
}

.feature-showcase article:nth-child(even) div {
  order: 2;
}

.feature-showcase img {
  width: 100%;
  max-height: 560px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border: 10px solid #061528;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.comparison-panel.positive {
  border-color: rgba(220, 164, 59, 0.42);
  background: linear-gradient(180deg, #fff8e7, #ffffff);
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 10px 0;
  color: #3f5066;
  line-height: 1.55;
}

.plan-card {
  position: relative;
}

.plan-card.featured {
  color: var(--white);
  background: linear-gradient(155deg, var(--navy), #0b4f9f);
  transform: translateY(-12px);
}

.plan-card.featured h3,
.plan-card.featured li,
.plan-card.featured .price {
  color: var(--white);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin: 16px 0 20px;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 950;
}

.price span {
  font-size: 1rem;
  font-weight: 800;
}

.checkout-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 460px);
  gap: 32px;
  align-items: start;
  background: linear-gradient(135deg, #fff7e4, #e8f4ff);
}

.checkout-section > .checkout-copy,
.checkout-section > .checkout-card {
  margin-left: 0;
  margin-right: 0;
}

.checkout-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(7, 27, 54, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.checkout-cta-card {
  align-content: center;
}

.checkout-cta-card .button {
  width: 100%;
}

.checkout-cta-card .button[aria-disabled="true"] {
  cursor: default;
}

.payment-note {
  margin: 0;
  color: #41536a;
  font-weight: 850;
  line-height: 1.5;
  text-align: center;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(7, 27, 54, 0.2);
  border-radius: 8px;
  font: inherit;
}

.note,
.form-feedback {
  color: #6a521f;
  font-size: 0.94rem;
}

.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.page-main,
.legal-page {
  min-height: 70vh;
}

.page-hero,
.legal-page {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 6vw, 86px) 36px;
}

.page-hero {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

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

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--navy);
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
  color: #465a72;
  line-height: 1.65;
}

.news-grid article time {
  color: #8a6519;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 86px);
  color: #dbe8f8;
  background: var(--navy);
}

.site-footer p {
  margin: 8px 0 0;
  color: #aebed2;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 980px) {
  .hero-section,
  .checkout-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    justify-items: center;
  }

  .hero-copy {
    max-width: 820px;
    text-align: center;
  }

  h1,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    max-width: 780px;
    margin: 0 auto;
  }

  .phone-main {
    right: 12%;
  }

  .feature-grid,
  .plans-grid,
  .comparison-grid,
  .news-grid,
  .feature-list,
  .screen-gallery,
  .app-flow-grid,
  .access-grid,
  .limit-grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase article,
  .feature-showcase article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-showcase article:nth-child(even) div {
    order: 0;
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding: 6px 18px;
  }

  .brand-link {
    justify-content: flex-start;
    min-width: 0;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 10px;
    font-size: 0.82rem;
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease;
  }

  .site-header.nav-open .main-nav {
    max-height: 260px;
    padding: 8px 0 10px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    display: flex;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid rgba(7, 27, 54, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
  }

  .main-nav .nav-cta {
    background: var(--gold-bright);
  }

  .brand-mark {
    width: min(230px, 62vw);
    height: 64px;
  }
}

@media (max-width: 680px) {
  .hero-section {
    justify-items: center;
    gap: 0;
    padding-top: 0;
    text-align: center;
  }

  .hero-logo-wrap {
    margin-bottom: -12px;
  }

  .hero-visual-desktop {
    display: none;
  }

  .hero-visual-mobile {
    display: flex;
  }

  .hero-logo {
    width: min(100%, 330px);
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    font-size: clamp(1.72rem, 8.2vw, 2.18rem);
    line-height: 1;
  }

  .dynamic-line {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .hero-text {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero-proof {
    gap: 8px;
    margin-top: 12px;
  }

  .hero-proof span {
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .hero-visual {
    margin-top: 4px;
    margin-bottom: 14px;
    padding-top: 0;
  }

  .hero-phones-image {
    width: min(100%, 390px);
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-8px);
    border-radius: 12px;
  }

  .phone {
    width: 238px;
    height: 456px;
    padding: 10px;
    border-width: 8px;
  }

  .phone-main {
    right: 0;
    top: 0;
  }

  .phone-side {
    width: 174px;
    height: 328px;
    left: 0;
    bottom: 0;
  }

  .phone-speaker {
    width: 54px;
    height: 5px;
    margin-bottom: 8px;
  }

  .phone-shot {
    height: calc(100% - 13px);
    border-radius: 22px;
  }

  .app-screen {
    min-height: 420px;
    padding: 14px;
  }

  .phone-side .app-screen {
    min-height: 294px;
  }

  .site-footer {
    flex-direction: column;
  }

  .screen-gallery img {
    aspect-ratio: 9 / 11;
  }

  .app-flow-card {
    padding: 14px;
  }

  .free-card,
  .cloud-card,
  .checkout-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-enabled .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
