/* ---------- base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #0E2A35;
  color: #E8E4D5;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::selection { background: #C8D6CE; color: #0A1F28; }

/* ---------- typography ---------- */
.hero__display,
.section__title,
.closer__title {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.012em;
}

/* ---------- top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 36px;
  background: rgba(14, 42, 53, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(232, 228, 213, 0.08);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #E8E4D5;
}
.wordmark__glyph {
  display: inline-block;
  color: #C8D6CE;
  font-size: 13px;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}
.wordmark:hover .wordmark__glyph { transform: rotate(135deg); }
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 12px;
  color: #B6C4BC;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: #C8D6CE;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav a:hover { color: #E8E4D5; }
.nav a:hover::after { transform: scaleX(1); }
.topbar__cta { display: flex; gap: 10px; align-items: center; }

/* ---------- pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.3s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  background: transparent;
  color: #E8E4D5;
}
.pill:hover { transform: translateY(-1px); }
.pill--ghost {
  border-color: rgba(232, 228, 213, 0.22);
  background: transparent;
}
.pill--ghost:hover {
  background: rgba(232, 228, 213, 0.06);
  border-color: rgba(232, 228, 213, 0.42);
}
.pill--solid {
  background: #E8E4D5;
  color: #0A1F28;
  font-weight: 500;
  border-color: #E8E4D5;
}
.pill--solid:hover {
  background: #fff;
  box-shadow: 0 8px 22px -8px rgba(232, 228, 213, 0.5);
}
.pill--lg {
  padding: 14px 26px;
  font-size: 13.5px;
  letter-spacing: 0.08em;
}
.arrow {
  display: inline-block;
  transition: transform 0.22s ease;
}
.pill:hover .arrow { transform: translateX(4px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 130px 36px 110px;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(31, 74, 90, 0.85) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(200, 214, 206, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(31, 74, 90, 0.4) 0%, transparent 55%),
    linear-gradient(180deg, #11343F 0%, #0A1F28 100%);
}
.hero__halo {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 214, 206, 0.18) 0%, transparent 55%);
  filter: blur(40px);
  z-index: -1;
  animation: hero-breathe 8s ease-in-out infinite;
}
@keyframes hero-breathe {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(200, 214, 206, 0.07) 1px, transparent 1.2px);
  background-size: 3px 3px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero__chapter {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #9FB0A8;
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__chapter-mark {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #C8D6CE;
  letter-spacing: 0;
}
.hero__tag {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #B6C4BC;
  margin: 0 0 30px;
}
.plus {
  display: inline-block;
  color: #C8D6CE;
  margin: 0 8px;
  font-weight: 300;
  font-size: 13px;
}
.hero__display {
  font-size: clamp(48px, 8.4vw, 128px);
  font-style: italic;
  margin: 0 auto 40px;
  color: #E8E4D5;
  max-width: 1100px;
}
.hero__display em {
  font-style: italic;
  color: #C8D6CE;
}
.hero__sub {
  max-width: 580px;
  margin: 0 auto 38px;
  font-size: 16px;
  line-height: 1.6;
  color: #B6C4BC;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
}
.hero__cta {
  box-shadow: 0 14px 40px -10px rgba(200, 214, 206, 0.28);
}

/* hero scale */
.hero__scale {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(820px, 90%);
  height: 80px;
  pointer-events: none;
}
.scale__rail {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 214, 206, 0.4) 20%, rgba(200, 214, 206, 0.4) 80%, transparent 100%);
}
.scale__node {
  position: absolute;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #9FB0A8;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scale__node span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #C8D6CE;
  box-shadow: 0 0 12px rgba(200, 214, 206, 0.7);
  animation: pulse 2.6s ease-in-out infinite;
}
.scale__node em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #B6C4BC;
}
.scale__node--1 { left: 0%; }
.scale__node--1 span { animation-delay: 0s; }
.scale__node--2 { left: 25%; }
.scale__node--2 span { animation-delay: 0.25s; }
.scale__node--3 { left: 50%; }
.scale__node--3 span { animation-delay: 0.5s; }
.scale__node--4 { left: 75%; }
.scale__node--4 span { animation-delay: 0.75s; }
.scale__node--5 { left: calc(100% - 0px); transform: translateX(-100%); }
.scale__node--5 span { animation-delay: 1s; }
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 0.85; }
  50%      { transform: scale(1.5); opacity: 1;    box-shadow: 0 0 18px rgba(200, 214, 206, 1); }
}

.hero__scroll {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #9FB0A8;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll-line {
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, #C8D6CE, transparent);
  animation: scroll-drop 1.8s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- sections ---------- */
section { position: relative; padding: 110px 36px; max-width: 1320px; margin: 0 auto; isolation: isolate; }
.section__head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section__chapter {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #9FB0A8;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section__chapter-mark {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #C8D6CE;
  letter-spacing: 0;
}
.section__title {
  font-size: clamp(38px, 5.2vw, 68px);
  margin: 0 0 18px;
  font-style: italic;
  color: #E8E4D5;
}
.section__title em { color: #C8D6CE; }
.section__lede {
  font-size: 15px;
  color: #B6C4BC;
  margin: 0;
  line-height: 1.6;
}

/* curved section dividers */
section:not(.closer)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 36px;
  background: #0E2A35;
  clip-path: ellipse(72% 100% at 50% 100%);
  z-index: 3;
  pointer-events: none;
}

/* halftone decoration */
.halftone {
  position: absolute;
  top: 60px;
  width: 130px;
  height: 60%;
  background-image: radial-gradient(circle, rgba(200, 214, 206, 0.22) 1px, transparent 1.4px);
  background-size: 12px 12px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.halftone--left  { left: 0; mask-image: linear-gradient(90deg, #000 0%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 100%); }
.halftone--right { right: 0; mask-image: linear-gradient(270deg, #000 0%, transparent 100%); -webkit-mask-image: linear-gradient(270deg, #000 0%, transparent 100%); }

/* ---------- bento grid ---------- */
.bento { display: grid; gap: 18px; position: relative; z-index: 1; }
.bento--4 { grid-template-columns: repeat(4, 1fr); }
.bento--5 { grid-template-columns: repeat(5, 1fr); gap: 14px; }

/* ---------- card ---------- */
.card {
  position: relative;
  background: linear-gradient(155deg, rgba(200, 214, 206, 0.14) 0%, rgba(200, 214, 206, 0.04) 100%);
  border: 1px solid rgba(232, 228, 213, 0.1);
  border-radius: 20px;
  padding: 28px 24px 26px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s, background 0.3s, box-shadow 0.4s;
  cursor: pointer;
  min-height: 290px;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 228, 213, 0.32);
  background: linear-gradient(155deg, rgba(200, 214, 206, 0.2) 0%, rgba(200, 214, 206, 0.06) 100%);
  box-shadow: 0 20px 50px -22px rgba(0, 0, 0, 0.5);
}
.card__num {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: rgba(232, 228, 213, 0.09);
  pointer-events: none;
  z-index: 0;
  transition: color 0.3s;
}
.card:hover .card__num { color: rgba(232, 228, 213, 0.16); }
.card__kicker {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C8D6CE;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.16;
  margin: 0 0 14px;
  color: #E8E4D5;
  position: relative;
  z-index: 1;
}
.card__body {
  font-size: 13px;
  line-height: 1.6;
  color: #B6C4BC;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ---------- SKU cards (lineup) ---------- */
.card--sku {
  min-height: 460px;
  padding: 24px 22px 0;
}
.card--sku .card__body { font-size: 12.5px; }
.card__price {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: #E8E4D5;
  margin: 16px 0 12px;
  position: relative;
  z-index: 1;
}
.card__price span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9FB0A8;
  margin-top: 4px;
  font-weight: 400;
}
.card__view {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C8D6CE;
  margin-bottom: 18px;
  opacity: 0.7;
  transition: opacity 0.2s, gap 0.2s;
}
.card--sku:hover .card__view { opacity: 1; gap: 10px; }
.card--sku img {
  margin-top: auto;
  width: calc(100% + 44px);
  height: 200px;
  object-fit: cover;
  border-radius: 0 0 19px 19px;
  margin-left: -22px;
  margin-right: -22px;
  margin-bottom: -1px;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s;
  filter: saturate(0.92) brightness(0.95);
}
.card--sku:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }

/* per-SKU under-glow */
.card__glow {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 70px;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease, width 0.4s ease;
  pointer-events: none;
}
.card--sku:hover .card__glow { opacity: 0.75; width: 92%; }
.card--sku[data-sku="micro"]     .card__glow { background: #E8E4D5; }
.card--sku[data-sku="classic"]   .card__glow { background: #C8D6CE; }
.card--sku[data-sku="designer"]  .card__glow { background: #9FB0A8; }
.card--sku[data-sku="mega"]      .card__glow { background: #1F4A5A; }
.card--sku[data-sku="architect"] .card__glow { background: #C8D6CE; }

/* floating image motion */
@keyframes float-img {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.card--sku:hover img { animation: float-img 4s ease-in-out infinite; }

/* lineup caption */
.lineup__caption {
  text-align: center;
  margin: 40px 0 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9FB0A8;
}

/* ---------- how section tinted band ---------- */
.how { border-radius: 32px; }
.how .section__head { position: relative; z-index: 1; }

/* ---------- steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
  position: relative;
  z-index: 1;
}
.step {
  position: relative;
  padding: 32px 24px 28px;
  background: linear-gradient(160deg, rgba(200, 214, 206, 0.1) 0%, rgba(200, 214, 206, 0.03) 100%);
  border: 1px solid rgba(232, 228, 213, 0.1);
  border-radius: 18px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  text-align: left;
}
.step:hover {
  transform: translateY(-4px);
  background: linear-gradient(160deg, rgba(200, 214, 206, 0.16) 0%, rgba(200, 214, 206, 0.05) 100%);
  border-color: rgba(232, 228, 213, 0.28);
}
.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-style: italic;
  color: rgba(232, 228, 213, 0.14);
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}
.step__kicker {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C8D6CE;
  margin: 0 0 10px;
}
.step__title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 12px;
  color: #E8E4D5;
  line-height: 1.18;
}
.step__body {
  font-size: 13px;
  line-height: 1.6;
  color: #B6C4BC;
  margin: 0;
}
.custom { text-align: center; }
.custom__cta { margin: 8px auto 0; display: inline-flex; box-shadow: 0 16px 40px -12px rgba(200, 214, 206, 0.28); }

/* ---------- closer ---------- */
.closer {
  text-align: center;
  padding: 150px 36px 130px;
  position: relative;
  isolation: isolate;
  max-width: 100%;
  margin: 0;
  border-top: 1px solid rgba(232, 228, 213, 0.05);
  border-bottom: 1px solid rgba(232, 228, 213, 0.05);
}
.closer__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 50% 35%, rgba(200, 214, 206, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(31, 74, 90, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, #0E2A35 0%, #1F4A5A 100%);
}
.closer__halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 214, 206, 0.14) 0%, transparent 55%);
  filter: blur(50px);
  z-index: -1;
  animation: hero-breathe 9s ease-in-out infinite;
}
.closer__chapter {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #B6C4BC;
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.closer__chapter-mark {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #C8D6CE;
  letter-spacing: 0;
}
.closer__title {
  font-size: clamp(48px, 7.6vw, 104px);
  font-style: italic;
  margin: 0 0 24px;
  color: #E8E4D5;
  position: relative;
  z-index: 1;
}
.closer__title em { color: #C8D6CE; }
.closer__sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: #B6C4BC;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.closer__cta {
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 44px -10px rgba(200, 214, 206, 0.32);
}
.closer__meta {
  margin-top: 22px;
  font-size: 11px;
  color: #9FB0A8;
  letter-spacing: 0.06em;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---------- footer ---------- */
.footer {
  background: #1F4A5A;
  padding: 70px 36px 40px;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 56px;
  border-top: 1px solid rgba(232, 228, 213, 0.06);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(200, 214, 206, 0.05), transparent 60%);
  pointer-events: none;
}
.wordmark--footer { font-size: 13px; }
.footer__line {
  color: #B6C4BC;
  font-size: 13px;
  max-width: 320px;
  margin: 14px 0 0;
  line-height: 1.55;
}
.footer__line em { color: #E8E4D5; font-family: 'Playfair Display', serif; font-size: 15px; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-content: start;
  position: relative;
}
.footer__nav a {
  font-size: 12.5px;
  color: #E8E4D5;
  letter-spacing: 0.06em;
  transition: color 0.2s, letter-spacing 0.2s;
}
.footer__nav a:hover { color: #fff; letter-spacing: 0.1em; }
.footer__small {
  grid-column: 1 / -1;
  font-size: 11px;
  line-height: 1.65;
  color: #9FB0A8;
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 228, 213, 0.12);
  letter-spacing: 0.02em;
  position: relative;
}

/* ---------- focus ---------- */
:focus-visible {
  outline: 2px solid #C8D6CE;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- mobile ---------- */
@media (max-width: 1080px) {
  .bento--5 { grid-template-columns: repeat(3, 1fr); }
  .card--sku { min-height: 420px; }
  .card--sku img { height: 180px; }
}
@media (max-width: 860px) {
  .bento--4 { grid-template-columns: repeat(2, 1fr); }
  .steps    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .topbar { padding: 14px 18px; gap: 12px; }
  .nav { display: none; }
  .topbar__cta .pill--ghost { display: none; }
  section { padding: 70px 18px; }
  .hero { padding: 90px 18px 80px; }
  .hero__scale { display: none; }
  .hero__scroll { display: none; }
  .footer { grid-template-columns: 1fr; padding: 48px 18px 32px; gap: 32px; }
  .bento--5 { grid-template-columns: repeat(2, 1fr); }
  .card--sku { min-height: 400px; }
  section:not(.closer)::after { height: 20px; }
}
@media (max-width: 480px) {
  .bento--4, .bento--5, .steps { grid-template-columns: 1fr; }
  .hero__pills .pill--ghost:nth-child(n+3) { display: none; }
}

/* ---------- reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* === coverage patch === */
.wordmark__text { display: inline-block; }
.lineup { display: block; position: relative; }
.why { display: block; position: relative; }
.audiences { display: block; position: relative; }
.footer__col { display: flex; flex-direction: column; }
