:root {
  color-scheme: dark;
  --ink: #f5f2ed;
  --ink-soft: #c6c6d9;
  --midnight: #090b14;
  --navy: #0f1221;
  --navy-soft: #15192d;
  --line: rgba(231, 230, 255, 0.14);
  --line-strong: rgba(231, 230, 255, 0.24);
  --lavender: #a99dff;
  --lavender-soft: #d3cdff;
  --gold: #d9b36c;
  --paper: #f1eee8;
  --paper-ink: #171724;
  --paper-muted: #646271;
  --content: 1180px;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--midnight);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 78% -4%, rgba(139, 123, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 8% 24%, rgba(217, 179, 108, 0.07), transparent 24rem);
  content: "";
  pointer-events: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--paper-ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(9, 11, 20, 0.78);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
}

.nav-shell {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 24px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  display: grid;
  min-height: calc(100svh - 74px);
  padding-block: 64px 82px;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(44px, 7vw, 104px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--lavender-soft);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--gold);
  content: "";
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7.4vw, 102px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 610;
  letter-spacing: -0.015em;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--paper-ink);
}

.button-primary:hover {
  background: white;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.hero-note {
  display: flex;
  margin: 25px 0 0;
  align-items: center;
  gap: 9px;
  color: #9ea0b9;
  font-size: 13px;
}

.hero-note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78ca9f;
  box-shadow: 0 0 0 5px rgba(120, 202, 159, 0.1);
  content: "";
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 11% -7% -8% 14%;
  border-radius: 50%;
  background: rgba(139, 123, 255, 0.2);
  filter: blur(60px);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.floating-label {
  position: absolute;
  right: -18px;
  bottom: 30px;
  max-width: 210px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(20, 23, 40, 0.76);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-label strong,
.floating-label span {
  display: block;
}

.floating-label strong {
  font-size: 14px;
  font-weight: 640;
}

.floating-label span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.section {
  padding-block: 112px;
}

.section-heading {
  display: grid;
  margin-bottom: 54px;
  align-items: end;
  grid-template-columns: 1fr minmax(260px, 0.65fr);
  gap: 40px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

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

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

.paper-section .eyebrow {
  color: #70638e;
}

.paper-section .section-heading p {
  color: var(--paper-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(23, 23, 36, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.53);
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  grid-column: span 7;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-number {
  display: inline-flex;
  width: 37px;
  height: 37px;
  margin-bottom: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 23, 36, 0.14);
  border-radius: 50%;
  color: #615b74;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.feature-card p {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--paper-muted);
  font-size: 15px;
}

.gallery-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}

.poster-card {
  margin: 0;
  grid-column: span 4;
}

.poster-card:nth-child(2) {
  margin-top: 84px;
}

.poster-card:nth-child(4) {
  margin-top: -52px;
}

.poster-card:nth-child(5) {
  margin-top: 30px;
}

.poster-frame {
  padding: clamp(10px, 1.6vw, 18px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.poster-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
}

.poster-card figcaption {
  display: flex;
  padding: 13px 4px 0;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

.poster-card figcaption span:last-child {
  color: #8789a2;
}

.interior-grid {
  display: grid;
  margin-top: 92px;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
}

.interior-grid img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.interior-stack {
  display: grid;
  align-content: start;
  gap: 24px;
}

.privacy-panel {
  position: relative;
  padding: clamp(38px, 6vw, 80px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 86% 18%, rgba(169, 157, 255, 0.18), transparent 30rem),
    var(--navy-soft);
  overflow: hidden;
}

.privacy-panel h2 {
  max-width: 790px;
}

.privacy-panel > p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 18px;
}

.privacy-points {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
}

.privacy-points li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(4, 6, 13, 0.26);
}

.privacy-points strong,
.privacy-points span {
  display: block;
}

.privacy-points strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.privacy-points span {
  color: var(--ink-soft);
  font-size: 13px;
}

.purchase-list {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.purchase-group {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.035);
}

.purchase-group p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.purchase-group h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.closing {
  padding-block: 118px;
  text-align: center;
}

.closing h2 {
  max-width: 760px;
  margin-inline: auto;
}

.closing p {
  max-width: 590px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

.centered-eyebrow,
.centered-actions {
  justify-content: center;
}

.site-footer {
  padding-block: 28px;
  border-top: 1px solid var(--line);
  color: #8e90a9;
  font-size: 13px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  text-decoration: none;
}

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

.page-hero {
  padding-block: 112px 74px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero .lead {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.content-section {
  padding-block: 78px 112px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(44px, 8vw, 120px);
}

.support-aside {
  align-self: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.support-aside p {
  color: var(--ink-soft);
  font-size: 14px;
}

.support-aside .button {
  width: 100%;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 580;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 3px;
  color: var(--lavender-soft);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 720px;
  padding: 0 42px 22px 0;
  color: var(--ink-soft);
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(44px, 9vw, 130px);
}

.legal-nav {
  position: sticky;
  top: 108px;
  align-self: start;
}

.legal-nav p {
  margin-bottom: 12px;
  color: #8e90a9;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding-block: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

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

.legal-copy {
  max-width: 770px;
}

.legal-copy section {
  padding-bottom: 45px;
  scroll-margin-top: 110px;
}

.legal-copy h2 {
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy a {
  color: var(--lavender-soft);
}

.not-found {
  display: grid;
  min-height: calc(100svh - 150px);
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(74px, 15vw, 160px);
}

.not-found .hero-copy {
  margin-inline: auto;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

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

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .privacy-points,
  .purchase-list {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 30px), var(--content));
  }

  .nav-shell {
    min-height: 66px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 15px;
    left: 15px;
    display: grid;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 18, 33, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .hero {
    padding-block: 56px 72px;
    gap: 42px;
  }

  h1 {
    font-size: clamp(50px, 17vw, 76px);
  }

  .hero-visual img,
  .privacy-panel {
    border-radius: 26px;
  }

  .floating-label {
    right: 12px;
    bottom: 12px;
  }

  .section,
  .closing {
    padding-block: 80px;
  }

  .feature-card,
  .feature-card:nth-child(n) {
    min-height: 235px;
    grid-column: 1 / -1;
  }

  .feature-number {
    margin-bottom: 38px;
  }

  .poster-card,
  .poster-card:nth-child(n) {
    margin-top: 0;
    grid-column: span 6;
  }

  .interior-grid {
    margin-top: 62px;
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-block: 74px 58px;
  }

  .content-section {
    padding-block: 58px 84px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 50px;
  }

  .poster-card,
  .poster-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .floating-label {
    display: none;
  }
}

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

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