:root {
  --page: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.13);
  --link: #0066cc;
  --soft: rgba(255, 255, 255, 0.76);
  --deep: #101014;
  --finish-a: #c78a4c;
  --finish-b: #6a3f24;
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { background: var(--page); scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--page);
  letter-spacing: 0;
  overflow-x: hidden;
}
::selection { background: rgba(0, 102, 204, 0.18); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; letter-spacing: 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  border-radius: var(--radius);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.showcase-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(245, 245, 247, 0.88);
  background: rgba(8, 8, 10, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: saturate(160%) blur(24px);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}
.showcase-nav.is-scrolled {
  color: rgba(29, 29, 31, 0.84);
  background: rgba(245, 245, 247, 0.82);
  border-color: rgba(29, 29, 31, 0.08);
}
.showcase-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.showcase-brand img {
  width: auto;
  height: 30px;
  object-fit: contain;
}
.showcase-nav nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.showcase-nav a { transition: color 200ms ease; }
.showcase-nav a:hover { color: #fff; }
.showcase-nav.is-scrolled a:hover { color: #000; }
.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--link);
  font-size: 13px;
  font-weight: 650;
}
.showcase-nav.is-scrolled .nav-cta:hover,
.nav-cta:hover { color: #fff; }

.section-kicker,
.eyebrow {
  margin: 0 0 13px;
  color: var(--link);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 760;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
.primary-action,
.secondary-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 680;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}
.primary-action { background: var(--link); color: #fff; }
.secondary-action { background: rgba(255, 255, 255, 0.92); color: var(--link); border-color: rgba(0, 102, 204, 0.28); }
.primary-action:hover,
.secondary-action:hover { transform: translateY(-2px); }

.showcase-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 118px 20px 72px;
  color: #fff;
  overflow: hidden;
  background: #0b0b0d;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(calc(1.05 + (var(--hero-progress, 0) * 0.05)));
}
.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.74;
  filter: saturate(0.92) contrast(1.02);
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.64)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0) 46%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  text-align: center;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.hero-copy .eyebrow { color: rgba(255, 255, 255, 0.74); }
.hero-copy h1 {
  margin: 0 auto 22px;
  font-size: 78px;
  line-height: 1.02;
  font-weight: 780;
  text-wrap: balance;
}
.hero-copy h1 span {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.js body.is-ready .hero-copy h1 span {
  animation: word-rise 820ms cubic-bezier(.2, .72, .16, 1) forwards;
}
.js body.is-ready .hero-copy h1 span:nth-child(2) { animation-delay: 130ms; }
.hero-lede {
  max-width: 710px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
  line-height: 1.5;
  text-wrap: balance;
  opacity: 1;
  transform: translateY(0);
}
.js body.is-ready .hero-lede {
  animation: word-rise 760ms cubic-bezier(.2, .72, .16, 1) 270ms forwards;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  opacity: 1;
  transform: translateY(0);
}
.js body.is-ready .hero-actions {
  animation: word-rise 760ms cubic-bezier(.2, .72, .16, 1) 380ms forwards;
}

.intro-statement {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 112px;
  text-align: center;
}
.intro-statement h2,
.finish-copy h2,
.profile-copy h2,
.distinction-copy h2,
.install-head h2,
.final-copy h2 {
  margin-bottom: 20px;
  font-size: 58px;
  line-height: 1.06;
  font-weight: 780;
  text-wrap: balance;
}
.intro-statement p:last-child,
.finish-copy p,
.profile-copy p,
.distinction-copy p,
.final-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.story-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 58px;
  align-items: start;
}
.story-visual {
  position: sticky;
  top: 82px;
  min-width: 0;
}
.story-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #151515;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.17);
  transform:
    perspective(1000px)
    rotateX(calc(var(--tilt-y, 0) * 1deg))
    rotateY(calc(var(--tilt-x, 0) * 1deg));
  transition: transform 200ms ease-out;
}
.story-frame img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transform: scale(calc(1.02 + (var(--story-progress, 0) * 0.04)));
}
.rib-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(calc(-80% + (var(--story-progress, 0) * 180%)));
  mix-blend-mode: screen;
  opacity: 0.42;
}
.story-copy {
  display: grid;
  gap: 38px;
  padding-top: 44px;
}
.story-panel {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
}
.story-panel h2 {
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 760;
  text-wrap: balance;
}
.story-panel p:last-child {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.finish-section {
  padding: 118px max(20px, calc((100vw - var(--max)) / 2));
  background: #fff;
}
.finish-copy {
  max-width: 910px;
  margin: 0 auto 54px;
  text-align: center;
}
.finish-stage {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  gap: 28px;
  align-items: stretch;
}
.finish-preview {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5f5f7;
}
.finish-preview img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 44%;
  transition: transform 520ms cubic-bezier(.2, .72, .16, 1), filter 320ms ease;
}
.finish-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(0,0,0,0.08));
}
.finish-stage.is-changing .finish-preview img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
}
.finish-meta {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 32px;
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #f5f5f7;
  transition: border-color 320ms ease, box-shadow 320ms ease;
}
.finish-meta::before {
  content: "";
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--finish-a), var(--finish-b));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16), 0 18px 36px rgba(0, 0, 0, 0.08);
}
.finish-texture {
  position: relative;
  width: 100%;
  margin-top: 22px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8e5df;
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.12);
}
.finish-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 420ms cubic-bezier(.2, .72, .16, 1);
}
.finish-stage.is-changing .finish-texture img {
  opacity: 0.92;
  transform: scale(1.025);
}
.finish-meta strong {
  display: block;
  margin-top: auto;
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.05;
}
.finish-meta span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}
.finish-controls {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.finish-controls button {
  position: relative;
  min-height: 54px;
  padding: 12px 14px 12px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.finish-controls button::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--swatch-a), var(--swatch-b));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.13);
}
.finish-controls button:hover,
.finish-controls button[aria-pressed="true"] {
  border-color: rgba(0, 102, 204, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.profile-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
}
.profile-copy { max-width: 900px; margin: 0 auto 58px; text-align: center; }
.profile-diagram {
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: #15964d;
}
.profile-diagram img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.spec-strip div {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
}
.spec-strip strong {
  font-size: 44px;
  line-height: 1;
}
.spec-strip span {
  color: var(--muted);
  line-height: 1.4;
}

.distinction-section {
  padding: 112px max(20px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: #111114;
}
.distinction-copy {
  max-width: 920px;
  margin-bottom: 50px;
}
.distinction-copy p:last-child {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.68);
}
.distinction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}
.distinction-grid div {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    #18181b;
}
.distinction-grid span {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}
.distinction-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.05;
}
.distinction-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.install-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0;
}
.install-head {
  max-width: 850px;
  margin-bottom: 48px;
}
.install-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.install-flow article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: #fff;
}
.install-flow span {
  color: var(--link);
  font-size: 13px;
  font-weight: 760;
}
.install-flow h3 {
  margin: auto 0 12px;
  font-size: 25px;
  line-height: 1.1;
}
.install-flow p {
  min-height: 104px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
}

.final-cta {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 92px 20px;
  overflow: hidden;
  color: #fff;
  background: #111;
}
.final-image {
  position: absolute;
  inset: 0;
}
.final-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.68;
}
.final-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.72));
}
.final-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}
.final-copy .section-kicker { color: rgba(255, 255, 255, 0.72); }
.final-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.showcase-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.showcase-footer img { width: auto; height: 34px; }
.showcase-footer p { margin: 0; }
.showcase-footer nav {
  display: flex;
  gap: 18px;
  color: var(--ink);
}

.js .motion-in {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms cubic-bezier(.2, .72, .16, 1), transform 760ms cubic-bezier(.2, .72, .16, 1);
}
.js .motion-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .install-flow .motion-in:nth-child(2),
.js .finish-controls.motion-in { transition-delay: 90ms; }
.js .install-flow .motion-in:nth-child(3) { transition-delay: 170ms; }
.js .install-flow .motion-in:nth-child(4) { transition-delay: 250ms; }

@keyframes word-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 980px) {
  .showcase-nav {
    grid-template-columns: 1fr auto;
    height: 56px;
  }
  .showcase-nav nav { display: none; }
  .nav-cta { justify-self: end; }
  .hero-copy h1 { font-size: 58px; }
  .hero-lede { font-size: 20px; }
  .intro-statement h2,
  .finish-copy h2,
  .profile-copy h2,
  .distinction-copy h2,
  .install-head h2,
  .final-copy h2 { font-size: 45px; }
  .story-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .story-visual {
    position: relative;
    top: auto;
  }
  .story-frame,
  .story-frame img { min-height: 460px; }
  .story-panel { min-height: auto; padding: 52px 0; }
  .finish-stage { grid-template-columns: 1fr; }
  .finish-preview,
  .finish-preview img { min-height: 350px; }
  .finish-controls { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-strip,
  .install-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .showcase-nav {
    padding: 0 14px;
  }
  .showcase-brand span { display: none; }
  .showcase-hero { padding: 96px 18px 58px; min-height: 760px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-lede { font-size: 18px; }
  .hero-actions { align-items: stretch; }
  .hero-actions a { width: 100%; }
  .intro-statement { padding: 92px 0 78px; }
  .intro-statement h2,
  .finish-copy h2,
  .profile-copy h2,
  .distinction-copy h2,
  .install-head h2,
  .final-copy h2 { font-size: 36px; }
  .intro-statement p:last-child,
  .finish-copy p,
  .profile-copy p,
  .distinction-copy p,
  .final-copy p { font-size: 18px; }
  .story-section,
  .profile-section,
  .install-section {
    width: min(100% - 28px, var(--max));
  }
  .story-frame,
  .story-frame img { min-height: 390px; }
  .story-panel h2 { font-size: 34px; }
  .finish-section,
  .distinction-section { padding-left: 14px; padding-right: 14px; }
  .finish-preview,
  .finish-preview img { min-height: 280px; }
  .finish-meta { padding: 24px; }
  .finish-meta strong { font-size: 34px; }
  .finish-controls { grid-template-columns: 1fr; }
  .spec-strip,
  .distinction-grid,
  .install-flow { grid-template-columns: 1fr; }
  .spec-strip div,
  .install-flow article { min-height: 180px; }
  .install-flow p { min-height: 0; }
  .final-cta { min-height: 620px; }
  .showcase-footer {
    width: min(100% - 28px, var(--max));
  }
  .showcase-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js .motion-in,
  .hero-copy h1 span,
  .hero-lede,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
  }
}
