:root {
  --navy: #152933;
  --steel: #305066;
  --line: rgba(177, 145, 100, 0.18);
  --line-strong: rgba(177, 145, 100, 0.34);
  --gold: #b19164;
  --paper: #fffbf5;
  --sand: #cfc8b6;
  --bg-deep: #0f2028;
  --surface: rgba(18, 34, 42, 0.74);
  --surface-soft: rgba(255, 251, 245, 0.04);
  --text: var(--sand);
  --muted: rgba(207, 200, 182, 0.76);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(48, 80, 102, 0.18), transparent 26%),
    radial-gradient(circle at 85% 8%, rgba(177, 145, 100, 0.08), transparent 18%),
    linear-gradient(180deg, #11232c 0%, var(--navy) 44%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 251, 245, 0.02) 1px, transparent 1px);
  background-size: 100% 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 78%);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--paper);
}

p {
  margin: 0;
}

.site-nav,
.site-footer,
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.site-nav.is-visible,
.site-footer.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%) translateY(28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(207, 200, 182, 0.1);
  border-radius: 999px;
  background: rgba(13, 25, 31, 0.54);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.site-nav.is-visible {
  transform: translateX(-50%) translateY(0);
}

.nav-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sand);
  text-decoration: none;
}

.nav-brand span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.footer-links a,
.footer-links span {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.section {
  padding: 120px 0;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-kicker,
.hero-subtle {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    radial-gradient(circle at 50% 18%, rgba(69, 104, 127, 0.24), transparent 30%),
    radial-gradient(circle at 78% 62%, rgba(177, 145, 100, 0.08), transparent 22%),
    linear-gradient(180deg, #132730 0%, #10212a 42%, #0f2028 100%);
}

.hero-media img {
  position: absolute;
  right: -4%;
  bottom: -10%;
  width: min(72vw, 980px);
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.72) brightness(0.7) contrast(1.04) blur(1px);
  transform: rotate(-7deg);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 18, 24, 0.18) 0%, rgba(10, 18, 24, 0.42) 100%),
    radial-gradient(circle at 50% 40%, rgba(21, 41, 51, 0.06), rgba(10, 18, 24, 0.72) 72%),
    linear-gradient(90deg, rgba(10, 18, 24, 0.48) 0%, rgba(10, 18, 24, 0.16) 34%, rgba(10, 18, 24, 0.4) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(15, 32, 40, 0), rgba(15, 32, 40, 0.94));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 120px 24px 72px;
}

.hero-mark {
  width: clamp(56px, 8vw, 78px);
  margin-bottom: 28px;
  opacity: 0.95;
}

.hero h1 {
  font-size: clamp(4.8rem, 12vw, 9rem);
}

.hero-tagline {
  margin-top: 18px;
  color: var(--sand);
  font-size: clamp(1.08rem, 2.4vw, 1.6rem);
  letter-spacing: 0.04em;
}

.scroll-indicator {
  margin-top: 40px;
  display: inline-grid;
  justify-items: center;
  gap: 10px;
  color: var(--sand);
  text-decoration: none;
}

.scroll-indicator span {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(207, 200, 182, 0.18), var(--gold));
  animation: drift 1.8s ease-in-out infinite;
}

.scroll-indicator small {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.statement-section {
  padding-top: 132px;
}

.statement-shell {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.statement-shell h2,
.story-shell h2,
.section-heading h2,
.waitlist-shell h2,
.teaser-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.statement-shell h2 {
  max-width: 12ch;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 10ch;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.system-card,
.teaser-product-frame,
.lifestyle-card,
.waitlist-shell,
.story-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(19, 35, 43, 0.96), rgba(34, 57, 71, 0.84)),
    var(--surface);
  box-shadow: var(--shadow);
}

.system-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  border-radius: 28px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  overflow: hidden;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.system-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 145, 100, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.system-card:hover,
.system-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.32);
}

.system-card:hover::before,
.system-card:focus-within::before {
  opacity: 1;
}

.system-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(177, 145, 100, 0.2);
  background: rgba(255, 251, 245, 0.03);
  color: var(--gold);
}

.system-icon svg {
  width: 24px;
  height: 24px;
}

.system-card h3 {
  font-size: 2rem;
}

.system-card p,
.teaser-copy p,
.story-paragraph,
.waitlist-shell p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.teaser-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.teaser-copy {
  display: grid;
  gap: 18px;
}

.teaser-copy h2 {
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.teaser-product-frame {
  position: relative;
  min-height: 520px;
  padding: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}

.teaser-product-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(177, 145, 100, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.02), rgba(255, 251, 245, 0));
  pointer-events: none;
}

.teaser-product-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.92);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.lifestyle-card {
  position: relative;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  grid-column: span 4;
}

.lifestyle-card-wide {
  grid-column: span 8;
}

.lifestyle-card-tall {
  min-height: 580px;
  grid-column: span 4;
}

.lifestyle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 18, 24, 0.08), rgba(10, 18, 24, 0.72)),
    radial-gradient(circle at top left, rgba(255, 251, 245, 0.08), transparent 30%);
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.lifestyle-card:hover img,
.lifestyle-card:focus-within img {
  transform: scale(1.06);
}

.lifestyle-card span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-shell,
.waitlist-shell {
  max-width: 860px;
  padding: 56px;
  border-radius: var(--radius);
}

.story-shell {
  display: grid;
  gap: 22px;
}

.story-shell h2 {
  max-width: 12ch;
}

.story-paragraph {
  max-width: 46ch;
}

.waitlist-shell {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.waitlist-shell h2 {
  font-size: clamp(3rem, 5.5vw, 5.4rem);
}

.waitlist-shell > p {
  max-width: 34ch;
}

.waitlist-form {
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin-top: 16px;
}

.waitlist-form input,
.waitlist-form button {
  min-height: 56px;
  border-radius: 999px;
  font: inherit;
}

.waitlist-form input {
  border: 1px solid rgba(177, 145, 100, 0.16);
  background: rgba(255, 251, 245, 0.04);
  color: var(--sand);
  padding: 0 22px;
}

.waitlist-form input::placeholder {
  color: rgba(207, 200, 182, 0.44);
}

.waitlist-form input:focus {
  outline: 2px solid rgba(177, 145, 100, 0.18);
  border-color: rgba(177, 145, 100, 0.44);
}

.waitlist-form button {
  border: 1px solid rgba(177, 145, 100, 0.24);
  background:
    linear-gradient(180deg, rgba(177, 145, 100, 0.24), rgba(177, 145, 100, 0.12)),
    rgba(255, 251, 245, 0.04);
  color: var(--paper);
  padding: 0 26px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(177, 145, 100, 0.44);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.18);
}

.form-note {
  min-height: 1.72em;
  color: rgba(207, 200, 182, 0.72);
  font-size: 0.88rem;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.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;
}

.nav-links a:focus-visible,
.scroll-indicator:focus-visible,
.footer-links a:focus-visible,
.waitlist-form input:focus-visible,
.waitlist-form button:focus-visible {
  outline-offset: 4px;
}

@keyframes drift {
  0%,
  100% {
    transform: scaleY(0.84);
    opacity: 0.6;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-nav {
    width: min(100% - 24px, 1180px);
    border-radius: 28px;
    padding: 14px 16px;
  }

  .site-nav,
  .site-footer,
  .nav-links,
  .footer-links,
  .teaser-shell,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .site-footer {
    display: grid;
  }

  .nav-links,
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 20px;
  }

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

  .lifestyle-card,
  .lifestyle-card-wide,
  .lifestyle-card-tall {
    grid-column: span 1;
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 88px 0;
  }

  .site-nav {
    top: 14px;
  }

  .hero-content {
    padding-top: 136px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 6rem);
  }

  .hero-media img {
    right: -20%;
    bottom: -2%;
    width: 120vw;
    opacity: 0.14;
  }

  .statement-shell h2,
  .story-shell h2,
  .section-heading h2,
  .waitlist-shell h2,
  .teaser-copy h2 {
    max-width: none;
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .system-grid,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .system-card,
  .story-shell,
  .waitlist-shell,
  .teaser-product-frame {
    border-radius: 24px;
  }

  .story-shell,
  .waitlist-shell {
    padding: 34px 24px;
  }

  .waitlist-form {
    display: grid;
    grid-template-columns: 1fr;
  }
}
