@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-bold.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-bold-italic.woff") format("woff");
  font-display: swap;
  font-style: italic;
  font-weight: 700;
}

@font-face {
  font-family: "Raleway";
  src: url("/assets/fonts/raleway-regular.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Raleway";
  src: url("/assets/fonts/raleway-semibold.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --cream: #fff8f0;
  --cream-deep: #f6e9dc;
  --paper: #fffdf9;
  --terracotta: #a44226;
  --terracotta-bright: #cd6f4e;
  --terracotta-soft: #ead1c4;
  --clay-dark: #64301f;
  --charcoal: #251f1c;
  --brown: #44352f;
  --muted: #71655f;
  --sage: #6f7864;
  --sage-light: #dbe0d4;
  --line: rgba(68, 53, 47, 0.16);
  --white-line: rgba(255, 248, 240, 0.18);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Raleway", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(67, 39, 29, 0.14);
  --shadow-small: 0 14px 36px rgba(67, 39, 29, 0.11);
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --shell: 1200px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #dd8a68;
  outline-offset: 4px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 240, 0.91);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(67, 39, 29, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(103, 43, 25, 0.2);
  object-fit: cover;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.primary-navigation a {
  position: relative;
  color: var(--brown);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-status {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(164, 66, 38, 0.3);
  border-radius: 999px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-navigation a[aria-current="page"] {
  color: var(--terracotta);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 118px) 0 clamp(84px, 10vw, 140px);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -260px;
  left: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(164, 66, 38, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #fff;
}

.hero h1,
.section-heading h2,
.plans-copy h2,
.faq-intro h2,
.final-cta h2,
.professional-inner h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(3.45rem, 6.1vw, 6.3rem);
}

.hero h1::first-line {
  color: var(--terracotta);
}

.hero-lead {
  max-width: 630px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.prelaunch-cta {
  display: inline-flex;
  min-width: 210px;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 22px;
  border: 1px solid var(--terracotta);
  border-radius: 18px;
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 14px 28px rgba(164, 66, 38, 0.2);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.05;
}

.prelaunch-cta small {
  display: block;
  margin-bottom: 5px;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.8;
  text-transform: uppercase;
}

.play-symbol {
  font-size: 1.35rem;
}

.text-link {
  color: var(--terracotta);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 180ms ease;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.75rem;
  list-style: none;
}

.hero-notes li::before {
  margin-right: 8px;
  color: var(--sage);
  content: "●";
  font-size: 0.55em;
  vertical-align: 0.18em;
}

.hero-art {
  position: relative;
  min-height: 650px;
}

.terracotta-orbit {
  position: absolute;
  top: 5%;
  right: -10%;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  border-radius: 50%;
  background: var(--terracotta-bright);
}

.terracotta-orbit::after {
  position: absolute;
  right: 9%;
  bottom: -18%;
  width: 68%;
  height: 42%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50% 50% 0 0;
  content: "";
  transform: rotate(-12deg);
}

.device-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 8%;
  width: min(79%, 360px);
  min-height: 640px;
  padding: 18px 19px 24px;
  border: 8px solid var(--charcoal);
  border-radius: 48px;
  background: #fffaf4;
  box-shadow: 0 42px 74px rgba(52, 31, 24, 0.3);
  transform: rotate(-3.2deg);
}

.device-top {
  display: flex;
  justify-content: space-between;
  padding: 0 7px 17px;
  font-size: 0.6rem;
  font-weight: 600;
}

.device-greeting > span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.device-greeting strong {
  display: block;
  margin: 7px 0 19px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.04;
}

.device-greeting em {
  color: var(--terracotta);
}

.device-card {
  position: relative;
  overflow: hidden;
  min-height: 388px;
  border-radius: 30px;
  box-shadow: var(--shadow-small);
}

.device-card::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(30, 22, 18, 0.86));
  content: "";
}

.device-card img {
  width: 100%;
  height: 388px;
  object-fit: cover;
}

.device-card div {
  position: absolute;
  z-index: 1;
  right: 23px;
  bottom: 24px;
  left: 23px;
  color: #fff;
}

.device-card small,
.device-card strong {
  display: block;
}

.device-card small {
  margin-bottom: 5px;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.device-card strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.1;
}

.device-actions {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.58rem;
}

.device-actions b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 1rem;
}

.floating-note {
  position: absolute;
  z-index: 3;
  max-width: 190px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 17px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-small);
  color: var(--brown);
  font-size: 0.72rem;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.floating-note span {
  display: block;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.note-top {
  top: 90px;
  right: -15px;
}

.note-bottom {
  right: 10px;
  bottom: 70px;
}

.manifesto-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255, 248, 240, 0.18);
  background: var(--terracotta);
  color: var(--cream);
}

.manifesto-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.manifesto-inner p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(0.96rem, 1.35vw, 1.16rem);
  font-weight: 700;
  white-space: nowrap;
}

.manifesto-inner span {
  color: #efbda9;
}

.section {
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading h2,
.plans-copy h2,
.faq-intro h2 {
  font-size: clamp(2.65rem, 5.1vw, 5.2rem);
}

.section-heading h2 em,
.plans-copy h2 em,
.faq-intro h2 em {
  color: var(--terracotta);
}

.capabilities .section-heading h2 em {
  color: #f2c9b8;
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.62fr);
}

.split-heading > p,
.centered-heading > p,
.plans-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
}

.steps-grid {
  display: grid;
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid li {
  position: relative;
  min-height: 310px;
  padding: 34px 34px 30px;
  border-right: 1px solid var(--line);
}

.steps-grid li:first-child {
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  color: var(--terracotta);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 42px 0 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--terracotta);
  font-size: 1.35rem;
}

.steps-grid h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.1;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.capabilities {
  background: var(--charcoal);
  color: var(--cream);
}

.centered-heading {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

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

.centered-heading h2 {
  margin-bottom: 24px;
}

.centered-heading > p {
  max-width: 650px;
  margin-inline: auto;
  color: #bdb1a9;
}

.capability-grid {
  display: grid;
  gap: 18px;
  grid-auto-rows: 315px;
  grid-template-columns: repeat(2, 1fr);
}

.capability-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #3a302b;
}

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

.capability-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.capability-card:hover img {
  transform: scale(1.025);
}

.capability-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 15, 13, 0.82));
  content: "";
}

.capability-overlay {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 30px;
  left: 32px;
}

.capability-overlay > span,
.editorial-index {
  display: block;
  margin-bottom: 9px;
  color: #e8b39c;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.editorial-index {
  color: #fff;
}

.capability-overlay h3,
.editorial-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  line-height: 1;
}

.capability-overlay p {
  max-width: 420px;
  margin: 14px 0 0;
  color: #e3d9d3;
  font-size: 0.88rem;
}

.editorial-card {
  padding: 38px;
  background: var(--terracotta);
}

.editorial-card::after {
  display: none;
}

.editorial-card p {
  max-width: 510px;
  margin: 18px 0 22px;
  color: #f4dcd2;
}

.editorial-card ul {
  display: grid;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
}

.editorial-card li::before {
  margin-right: 8px;
  content: "—";
}

.gallery-section {
  background: var(--paper);
}

.gallery-heading {
  margin-bottom: 70px;
}

.editorial-gallery {
  display: grid;
  gap: 22px;
  grid-auto-flow: dense;
  grid-auto-rows: 275px;
  grid-template-columns: repeat(3, 1fr);
}

.editorial-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--cream-deep);
}

.editorial-gallery .gallery-tall {
  grid-row: span 2;
}

.editorial-gallery .gallery-wide {
  grid-column: span 2;
}

.editorial-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.editorial-gallery figure:hover img {
  transform: scale(1.025);
}

.editorial-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 50px 24px 22px;
  background: linear-gradient(transparent, rgba(28, 21, 18, 0.86));
  color: #fff;
}

.editorial-gallery strong,
.editorial-gallery span {
  display: block;
}

.editorial-gallery strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.editorial-gallery span {
  margin-top: 6px;
  font-size: 0.7rem;
  opacity: 0.8;
}

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

.plans-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
}

.plans-copy > p:last-child {
  max-width: 520px;
  margin-top: 30px;
}

.plan-cards {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
}

.plan-card {
  min-height: 470px;
  padding: 42px 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.plan-card:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.plan-card:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pro-card {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-18px);
}

.plan-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--terracotta);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pro-card .plan-label {
  color: #fff;
}

.plan-card h3 {
  min-height: 86px;
  margin: 25px 0 26px;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.15;
}

.plan-card ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.pro-card ul {
  color: #f4dcd2;
}

.plan-card li {
  position: relative;
  padding-left: 21px;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--terracotta);
  content: "✓";
  font-weight: 600;
}

.pro-card li::before {
  color: #fff;
}

.plan-card small {
  display: block;
  margin-top: 26px;
  color: #fff;
  font-size: 0.66rem;
}

.professional-note {
  padding: 80px 0;
  background: var(--sage);
  color: #fff;
}

.professional-inner {
  display: grid;
  align-items: center;
  gap: 42px;
  grid-template-columns: auto minmax(0, 1.25fr) minmax(260px, 0.75fr);
}

.note-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
}

.professional-inner .eyebrow {
  margin-bottom: 13px;
}

.professional-inner h2 {
  max-width: 650px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.professional-inner > p {
  margin: 0;
  color: #fff;
  font-size: 0.84rem;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:last-child {
  max-width: 430px;
  margin-top: 28px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

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

.faq-list details p {
  max-width: 650px;
  margin: -8px 54px 30px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--terracotta);
  color: #fff;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -260px;
  left: -160px;
  width: 560px;
  height: 560px;
}

.final-cta::after {
  right: -220px;
  bottom: -330px;
  width: 680px;
  height: 680px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.prelaunch-cta.inverse {
  margin-top: 38px;
  border-color: #fff;
  background: #fff;
  color: var(--terracotta);
  box-shadow: none;
}

.prelaunch-cta.inverse small {
  color: var(--terracotta);
  opacity: 1;
}

.site-footer {
  padding: 76px 0 26px;
  background: var(--charcoal);
  color: #d7cec8;
}

.footer-main {
  display: grid;
  gap: 60px;
  padding-bottom: 70px;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, minmax(130px, 0.65fr));
}

.brand-footer {
  color: #fff;
}

.brand-footer .brand-mark {
  width: 48px;
  height: 48px;
}

.footer-brand p {
  max-width: 350px;
  margin: 20px 0 0;
  color: #a99e97;
  font-size: 0.82rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #a99e97;
  font-size: 0.78rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--white-line);
  color: #b8ada7;
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  position: static;
}

.legal-hero {
  padding: 82px 0 68px;
  background: var(--cream-deep);
  text-align: center;
}

.legal-hero .eyebrow {
  justify-content: center;
}

.legal-hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.6rem);
}

.legal-hero .updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-main {
  padding: 76px 0 110px;
}

.legal-card {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.legal-card > p:first-child {
  margin-top: 0;
  color: var(--brown);
  font-size: 1.04rem;
}

.legal-card h2 {
  margin: 54px 0 14px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.2;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-card a {
  color: var(--terracotta);
  font-weight: 600;
}

.legal-card ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.legal-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  margin: 10px 0 4px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff !important;
  text-decoration: none;
}

.notice {
  margin-top: 42px;
  padding: 24px;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--cream-deep);
  color: var(--brown);
}

.legal-footer {
  padding: 32px 0;
  background: var(--charcoal);
  color: #a99e97;
  font-size: 0.75rem;
  text-align: center;
}

.legal-footer a {
  color: #fff;
}

@media (max-width: 1040px) {
  .primary-navigation {
    gap: 20px;
  }

  .hero-grid {
    gap: 35px;
  }

  .note-top {
    right: -5px;
  }

  .plans-grid {
    gap: 55px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
  }
}

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

  .header-inner {
    min-height: 74px;
    flex-wrap: wrap;
    padding-block: 14px;
  }

  .header-status {
    display: none;
  }

  .has-js .header-inner {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .has-js .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4.25px) rotate(-45deg);
  }

  .primary-navigation {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .has-js .primary-navigation {
    position: fixed;
    z-index: -1;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    align-content: start;
    gap: 0;
    width: auto;
    min-height: calc(100dvh - 74px);
    padding: 36px 28px;
    background: var(--cream);
    overflow: visible;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .has-js .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .has-js .primary-navigation a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .has-js .primary-navigation a::after {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .plans-grid,
  .faq-grid,
  .professional-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-art {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .terracotta-orbit {
    right: -4%;
    width: 420px;
    height: 420px;
  }

  .manifesto-inner {
    justify-content: flex-start;
    overflow: hidden;
  }

  .manifesto-inner p:nth-of-type(3),
  .manifesto-inner span:nth-of-type(2) {
    display: none;
  }

  .split-heading {
    gap: 28px;
  }

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

  .steps-grid li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .capability-grid {
    grid-auto-rows: 330px;
  }

  .editorial-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-wide {
    grid-column: span 1 !important;
  }

  .plans-grid,
  .faq-grid {
    gap: 60px;
  }

  .plans-copy {
    text-align: center;
  }

  .plans-copy .eyebrow {
    justify-content: center;
  }

  .plans-copy > p:last-child {
    margin-inline: auto;
  }

  .professional-inner {
    justify-items: center;
    gap: 24px;
    text-align: center;
  }

  .professional-inner .eyebrow {
    justify-content: center;
  }

  .professional-inner > p {
    max-width: 600px;
  }

  .faq-intro {
    position: static;
    text-align: center;
  }

  .faq-intro .eyebrow {
    justify-content: center;
  }

  .faq-intro > p:last-child {
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 80px;
  }

  .brand {
    font-size: 1.02rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.5rem);
  }

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

  .prelaunch-cta {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .hero-notes {
    align-items: center;
    flex-direction: column;
  }

  .hero-art {
    min-height: 580px;
  }

  .device-frame {
    left: 4%;
    width: 84%;
    min-height: 564px;
    border-width: 6px;
    border-radius: 42px;
  }

  .device-card {
    min-height: 320px;
  }

  .device-card img {
    height: 320px;
  }

  .terracotta-orbit {
    top: 8%;
    right: -15%;
    width: 330px;
    height: 330px;
  }

  .floating-note {
    max-width: 145px;
    padding: 12px 14px;
    font-size: 0.62rem;
  }

  .floating-note span {
    font-size: 1.25rem;
  }

  .note-top {
    top: 70px;
  }

  .note-bottom {
    right: 0;
    bottom: 25px;
  }

  .manifesto-inner {
    gap: 18px;
  }

  .manifesto-inner p:nth-of-type(2),
  .manifesto-inner span {
    display: none;
  }

  .section-heading h2,
  .plans-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .steps-grid {
    border-top: 0;
    grid-template-columns: 1fr;
  }

  .steps-grid li,
  .steps-grid li:first-child,
  .steps-grid li:nth-child(3) {
    min-height: 0;
    padding: 28px 4px 30px 86px;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .step-icon {
    position: absolute;
    top: 35px;
    left: 6px;
    margin: 0;
  }

  .step-number {
    margin-bottom: 7px;
  }

  .capability-grid {
    grid-auto-rows: 365px;
    grid-template-columns: 1fr;
  }

  .capability-card.feature-large {
    grid-row: span 1;
  }

  .capability-overlay {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .editorial-card {
    min-height: 390px;
    padding: 30px 24px;
  }

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

  .editorial-gallery {
    grid-auto-rows: 380px;
    grid-template-columns: 1fr;
  }

  .editorial-gallery .gallery-tall {
    grid-row: span 1;
  }

  .plan-cards {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .plan-card,
  .plan-card:first-child,
  .plan-card:last-child {
    min-height: 0;
    border-radius: var(--radius-md);
  }

  .pro-card {
    transform: none;
  }

  .plan-card h3 {
    min-height: 0;
  }

  .note-mark {
    width: 58px;
    height: 58px;
  }

  .professional-inner h2 {
    font-size: 2.35rem;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 1.08rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta h2 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .footer-main {
    gap: 42px 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }

  .legal-hero {
    padding: 60px 0 54px;
  }

  .legal-main {
    padding-top: 54px;
  }

  .legal-card {
    width: min(calc(100% - 32px), 820px);
  }
}

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

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