:root {
  --bg: #f5f1ea;
  --bg-alt: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-soft: #f3eee6;
  --line: rgba(24, 44, 71, 0.10);
  --line-strong: rgba(24, 44, 71, 0.16);
  --text: #16263c;
  --text-soft: #506177;
  --brand: #385f93;
  --brand-strong: #213f68;
  --accent: #c99b62;
  --accent-soft: rgba(201, 155, 98, 0.16);
  --shadow-lg: 0 28px 80px rgba(27, 42, 65, 0.10);
  --shadow-md: 0 16px 42px rgba(27, 42, 65, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 155, 98, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(56, 95, 147, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf8f3 0%, #f5f1ea 54%, #f1ece4 100%);
}

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

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

.page-shell {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #fff;
  font-family: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__copy strong,
h1,
h2,
h3 {
  font-family: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
}

.brand__copy strong {
  font-size: 1rem;
}

.brand__copy span {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.topnav a {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--brand-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.92rem;
}

.button--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 16px 34px rgba(56, 95, 147, 0.22);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

.button--subtle {
  background: rgba(34, 58, 90, 0.06);
  color: var(--brand-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 22px;
  align-items: start;
}

.hero__copy,
.hero__aside,
.value-card,
.card,
.plan,
.download-banner,
.support-banner,
.timeline__item,
.hero-shot,
.hero-card,
.shot {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero__copy {
  padding: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 245, 239, 0.92));
}

.hero__aside {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.hero-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 241, 233, 0.88));
}

.hero-card__top {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #8e5b1e;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-card__copy,
.section-copy,
.lede,
.card p,
.plan p,
.value-card p,
.download-banner p,
.timeline__item p,
.shot figcaption,
.footer,
.feature-list,
.brand__copy span,
.topnav a {
  line-height: 1.7;
}

.hero-card__copy,
.section-copy,
.lede,
.card p,
.plan p,
.value-card p,
.download-banner p,
.timeline__item p,
.shot figcaption,
.footer,
.feature-list {
  color: var(--text-soft);
}

.hero-shot,
.shot {
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.hero-shot img,
.shot img {
  border-radius: 16px;
  border: 1px solid rgba(24, 44, 71, 0.08);
}

.hero-shot figcaption,
.shot figcaption {
  margin-top: 12px;
  font-size: 0.94rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 5.5vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero__facts article,
.support-banner__note {
  padding: 16px 18px;
  border: 1px solid rgba(24, 44, 71, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
}

.label {
  display: block;
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__facts strong,
.value-card strong,
.support-banner__note strong {
  color: var(--text);
}

.value-strip,
.grid,
.gallery,
.timeline,
.bullet-grid {
  display: grid;
  gap: 18px;
}

.value-strip,
.grid--three,
.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-strip {
  margin: 24px 0 8px;
}

.value-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 34px 0;
}

.section__header {
  max-width: 840px;
  margin-bottom: 18px;
}

.card,
.plan {
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: center;
}

.showcase__copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

.showcase__shot {
  margin: 0;
}

.bullet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.bullet-grid article {
  padding: 18px;
  border: 1px solid rgba(24, 44, 71, 0.08);
  border-radius: var(--radius-md);
  background: rgba(250, 246, 239, 0.92);
}

.bullet-grid strong {
  display: block;
  margin-bottom: 8px;
}

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

.timeline__item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.timeline__step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), #b98546);
  color: #fff;
  font-weight: 800;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan__label {
  margin-bottom: 0;
  color: var(--brand);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.plan--featured {
  background:
    linear-gradient(180deg, rgba(233, 241, 252, 0.96), rgba(255, 255, 255, 0.96));
  border-color: rgba(56, 95, 147, 0.16);
}

.feature-list {
  padding-left: 18px;
  margin: 10px 0 0;
}

.feature-list--compact {
  line-height: 1.65;
}

.download-banner,
.support-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 237, 0.9));
}

.download-banner__copy {
  max-width: 700px;
}

.download-banner__links {
  display: grid;
  gap: 12px;
  min-width: 250px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-strong);
  font-weight: 700;
}

.download-link:hover,
.download-link:focus-visible {
  background: rgba(232, 239, 249, 0.96);
}

.section--faq .grid {
  align-items: stretch;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.footer p {
  margin-bottom: 0;
}

.footer span {
  margin: 0 8px;
  color: rgba(80, 97, 119, 0.45);
}

.footer a,
.section-copy a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-decoration-color: rgba(33, 63, 104, 0.24);
}

@media (max-width: 1120px) {
  .hero,
  .showcase,
  .value-strip,
  .grid--three,
  .gallery,
  .timeline,
  .bullet-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .topbar,
  .download-banner,
  .support-banner,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav,
  .hero__actions {
    justify-content: flex-start;
  }

  .hero,
  .value-strip,
  .grid--three,
  .gallery,
  .timeline,
  .showcase,
  .bullet-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero__aside,
  .card,
  .plan,
  .value-card,
  .download-banner,
  .support-banner,
  .hero-card,
  .showcase__copy,
  .timeline__item,
  .hero-shot,
  .shot {
    border-radius: 22px;
  }

  .hero__copy,
  .download-banner,
  .support-banner,
  .showcase__copy {
    padding: 24px;
  }

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

  h1 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 4rem);
  }
}
