
/* ================================================================
   TOKENS
   ================================================================ */
:root {
  --bg: #E8FFFF;
  --bg-deep: #d4f0f0;
  --paper: #f2ffff;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --ink: #2e2d2a;
  --ink-soft: #615F59;
  --muted: #8e8c84;
  --faint: #ACCCD8;
  --line: rgba(46,45,42,0.14);
  --line-strong: rgba(46,45,42,0.30);
  --accent: #D93C16;
  --accent-deep: #ba2b0c;
  --accent-soft: rgba(217, 60, 22, 0.12);
  --accent-line: rgba(217, 60, 22, 0.32);
  --ok: #5DA2CA;
  --ok-soft: rgba(93,162,202,0.14);
  --warn: #968F3D;
  --warn-soft: rgba(150,143,61,0.12);
  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 38px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px -4px rgba(25,21,16,0.12);
  --shadow-md: 0 24px 60px -28px rgba(25,21,16,0.26);
  --shadow-lift: 0 44px 90px -38px rgba(25,21,16,0.40);
  /* Liquid glass */
  --glass-bg: linear-gradient(150deg, rgba(255,254,250,0.74) 0%, rgba(246,242,233,0.48) 100%);
  --glass-bg-strong: linear-gradient(150deg, rgba(255,254,250,0.92) 0%, rgba(248,244,236,0.70) 100%);
  --glass-blur: blur(22px) saturate(165%);
  --glass-border: rgba(255,255,255,0.62);
  --glass-rim: inset 0 1px 0 rgba(255,255,255,0.92), inset 0 0 0 1px rgba(255,255,255,0.14), inset 0 -14px 28px -18px rgba(25,21,16,0.10);
  --glass-shadow: 0 22px 54px -26px rgba(25,21,16,0.32);
  --maxw: 1320px;
  --gutter: clamp(22px, 5.2vw, 88px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Archivo", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --body: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;
  /* brutalist display axes — expanded + black */
  --vf-expand: "wdth" 125;
  --vf-normal: "wdth" 100;
}

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes maskUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(8px); opacity: 1; }
}
@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background-color: var(--bg);
  background-image:
    radial-gradient(42vw 42vw at 8% 4%, rgba(150,143,61,0.12), transparent 60%),
    radial-gradient(48vw 48vw at 94% 12%, rgba(172,204,216,0.22), transparent 62%),
    radial-gradient(54vw 54vw at 74% 98%, rgba(93, 162, 202, 0.08), transparent 60%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 440;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-variation-settings: var(--vf-normal);
}

/* Warm paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: multiply;
}

main { flex: 1 0 auto; width: 100%; }

a { color: inherit; text-decoration: none; }
a.text-link {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
a.text-link:hover { color: var(--ink); }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--display);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-variation-settings: var(--vf-expand);
}

::selection { background: var(--accent); color: var(--paper); }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--line-strong); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ================================================================
   LAYOUT
   ================================================================ */
.wrap, main > section, main > article {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

main > section { padding-block: clamp(56px, 9vw, 132px); }
main > section + section { padding-top: 0; }

/* Section that carries a top hairline divider */
.home-why, .home-process, .product-list, .simulasi-intro,
.quote-request, .kontak, .faq, .article-list, .order-tracking {
  border-top: 1px solid var(--line);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ================================================================
   EDITORIAL PRIMITIVES — kicker, plate number, section head
   ================================================================ */
.section-kicker, .hero-eyebrow, .product-card-category, .breadcrumb,
.article-meta {
  font-family: var(--mono);
}

.section-kicker {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(36px, 5vw, 64px);
  align-items: end;
}
@media (min-width: 860px) {
  .section-head { grid-template-columns: 1.4fr 0.9fr; gap: 40px; }
  .section-head .section-head-aside { text-align: right; padding-bottom: 6px; }
}

.section-title,
.home-products h2, .product-list > h1, .simulasi-intro h1,
.quote-request h1, .kontak h1, .faq h1, .article-list-title,
.order-tracking h1 {
  font-family: var(--display);
  font-size: clamp(38px, 6.5vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-transform: uppercase;
  font-variation-settings: var(--vf-expand);
  text-wrap: balance;
}
.section-title em, .hero-title em { font-style: normal; color: var(--accent); }

.section-head-aside p { color: var(--muted); font-size: 15px; max-width: 34ch; margin-left: auto; }

/* ================================================================
   HEADER / NAV
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px var(--gutter);
  background: linear-gradient(180deg, rgba(255,254,250,0.82), rgba(247,244,236,0.62));
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(255,254,250,0.9), rgba(247,244,236,0.7));
  padding-block: 13px;
}
.site-header:has(.site-nav--open) {
  background: linear-gradient(180deg, rgba(255,254,250,0.95), rgba(247,244,236,0.9));
}

.site-brand {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-variation-settings: var(--vf-normal);
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
.site-header.is-scrolled .site-brand,
.site-header:has(.site-nav--open) .site-brand {
  color: var(--ink);
}
.site-brand::before {
  content: "";
  align-self: center;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

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

.nav-link {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 8px 13px;
  border-radius: 999px;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 5px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link--active { color: var(--accent-deep); }
.nav-link--active::after { transform: scaleX(1); }

.site-header.is-scrolled .nav-link,
.site-header:has(.site-nav--open) .nav-link {
  color: var(--ink-soft);
}
.site-header.is-scrolled .nav-link:hover,
.site-header:has(.site-nav--open) .nav-link:hover {
  color: var(--ink);
}
.site-header.is-scrolled .nav-link--active,
.site-header:has(.site-nav--open) .nav-link--active {
  color: var(--accent-deep);
}

[data-nav-toggle] {
  display: none;
  background: none;
  border: none;
  font: 600 20px/1 var(--mono);
  color: var(--ink);
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.4s var(--ease);
}
.site-header.is-scrolled [data-nav-toggle],
.site-header:has(.site-nav--open) [data-nav-toggle] {
  color: var(--ink);
}

@media (max-width: 768px) {
  .site-header { flex-wrap: wrap; }
  [data-nav-toggle] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
  }
  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }
  .site-nav--open { display: flex; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary, .btn-secondary, .product-card-cta, .product-card-detail,
.btn-quote, .wa-cta, .order-tracking-form button, .quote-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--ink);
  transition: transform 0.4s var(--ease), background 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.4s var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary, .btn-quote, .order-tracking-form button, .quote-form button[type="submit"] {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover, .btn-quote:hover,
.order-tracking-form button:hover, .quote-form button[type="submit"]:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  color: var(--ink);
  border-color: var(--glass-border);
  box-shadow: var(--glass-rim), var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: var(--glass-rim), var(--shadow-md);
}

.wa-cta {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.wa-cta::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  animation: blinkDot 2.2s ease-in-out infinite;
}
.wa-cta:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

@media (max-width: 768px) {
  .wa-cta--sticky {
    position: sticky;
    bottom: 16px;
    z-index: 5;
    box-shadow: var(--shadow-md);
  }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: clamp(12px, 2vh, 32px);
  overflow: hidden;
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding-inline: 0 !important;
}

/* Centered marquee eyebrow */
.hero-eyebrow-container {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(20px, 3.5vh, 40px);
  animation: fadeIn 1s var(--ease) both;
  position: relative;
  z-index: 2;
}
.hero-marquee-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.hero-marquee-eyebrow::before,
.hero-marquee-eyebrow::after {
  content: "•";
  color: var(--accent);
  margin-inline: 12px;
  animation: blinkDot 2.4s ease-in-out infinite;
}

/* Full-bleed stage: SVG scene + overlaid copy */
.hero-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: clamp(480px, 70vh, 760px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f1e8d6;
  animation: fadeIn 1.2s var(--ease) both;
  z-index: 0;
}
.hero-scene-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay removed to keep background clear */

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 30px);
  padding-inline: var(--gutter);
  max-width: 520px;
}

/* Accessible h1 — the visible headline is painted on the billboard */
.hero-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 960px) {
  .hero-stage {
    display: block;
    min-height: clamp(440px, 64vh, 760px);
  }
  /* Gradient overlay removed to keep background clear */
  .hero-overlay {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    left: calc(max((100vw - var(--maxw)) / 2, 0px) + var(--gutter));
    max-width: min(440px, 42vw);
    padding-inline: 0;
  }
}

.hero-subtitle {
  font-size: clamp(16px, 1.85vw, 19.5px);
  color: var(--ink);
  line-height: 1.58;
  max-width: 42ch;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
  width: 100%;
}
@media (max-width: 480px) {
  .hero-actions {
    gap: 8px;
  }
  .hero-actions a {
    padding: 12px 14px;
    font-size: 10.5px;
    flex: 1;
  }
}

.wa-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.012 2c-5.506 0-9.989 4.478-9.99 9.984a9.96 9.96 0 0 0 1.333 4.993L2 22l5.233-1.371a9.936 9.936 0 0 0 4.777 1.22h.005c5.505 0 9.989-4.478 9.99-9.985A9.998 9.998 0 0 0 12.012 2zm5.722 13.91c-.246.696-1.442 1.31-1.996 1.393-.505.076-1.168.106-3.414-.823-2.871-1.187-4.726-4.116-4.869-4.307-.143-.191-1.157-1.537-1.157-2.93 0-1.393.73-2.074.99-2.35.26-.275.571-.344.761-.344.19 0 .381.002.548.01.173.008.406-.065.635.49.23.555.787 1.916.853 2.052.066.136.11.295.02.477-.09.182-.136.295-.271.455-.136.159-.286.356-.409.478-.136.137-.28.286-.12.56.162.274.721 1.189 1.547 1.922.827.734 1.523 1.026 1.802 1.144.28.118.441.1.605-.09.164-.191.705-.823.896-1.107.191-.285.381-.239.643-.142.261.096 1.66.783 1.946.925.286.142.476.213.547.337.072.124.072.72-.174 1.417z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.012 2c-5.506 0-9.989 4.478-9.99 9.984a9.96 9.96 0 0 0 1.333 4.993L2 22l5.233-1.371a9.936 9.936 0 0 0 4.777 1.22h.005c5.505 0 9.989-4.478 9.99-9.985A9.998 9.998 0 0 0 12.012 2zm5.722 13.91c-.246.696-1.442 1.31-1.996 1.393-.505.076-1.168.106-3.414-.823-2.871-1.187-4.726-4.116-4.869-4.307-.143-.191-1.157-1.537-1.157-2.93 0-1.393.73-2.074.99-2.35.26-.275.571-.344.761-.344.19 0 .381.002.548.01.173.008.406-.065.635.49.23.555.787 1.916.853 2.052.066.136.11.295.02.477-.09.182-.136.295-.271.455-.136.159-.286.356-.409.478-.136.137-.28.286-.12.56.162.274.721 1.189 1.547 1.922.827.734 1.523 1.026 1.802 1.144.28.118.441.1.605-.09.164-.191.705-.823.896-1.107.191-.285.381-.239.643-.142.261.096 1.66.783 1.946.925.286.142.476.213.547.337.072.124.072.72-.174 1.417z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

/* SVG scene atmosphere */
.hero-cloud {
  will-change: transform;
}
.hero-cloud--a {
  animation: heroCloudDrift 26s ease-in-out infinite;
}
.hero-cloud--b {
  animation: heroCloudDrift 34s ease-in-out infinite reverse;
}
@keyframes heroCloudDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(46px); }
}

.hero-billboard-line {
  font-family: var(--display);
  font-weight: 800;
  font-size: 54px;
  letter-spacing: -0.012em;
}
.hero-billboard-beams {
  transform-origin: center;
  animation: heroBeamPulse 3.2s ease-in-out infinite;
}
@keyframes heroBeamPulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.55; }
}

/* Animated traffic receding up the road */
.hero-car {
  offset-path: path('M 624 760 C 616 600 624 474 620 394');
  offset-rotate: 0deg;
  transform-box: fill-box;
  transform-origin: center;
  will-change: offset-distance, transform, opacity;
}
.hero-car--silver {
  animation: heroDriveSilver 9s cubic-bezier(0.45, 0.05, 0.3, 1) infinite;
}
.hero-car--orange {
  animation: heroDriveOrange 11s cubic-bezier(0.45, 0.05, 0.3, 1) infinite;
}
@keyframes heroDriveSilver {
  0% { offset-distance: 0%; transform: scale(1); opacity: 0; }
  6% { opacity: 1; }
  86% { opacity: 1; }
  100% { offset-distance: 100%; transform: scale(0.14); opacity: 0; }
}
@keyframes heroDriveOrange {
  0% { offset-distance: 26%; transform: scale(0.58); opacity: 0; }
  9% { opacity: 1; }
  84% { opacity: 1; }
  100% { offset-distance: 100%; transform: scale(0.1); opacity: 0; }
}
.hero-car-brake {
  transform-box: fill-box;
  transform-origin: center;
  animation: heroBrake 4.2s ease-in-out infinite;
}
@keyframes heroBrake {
  0%, 68%, 100% { opacity: 0; }
  76%, 90% { opacity: 1; }
}

/* Honor reduced-motion: park the cars on the road, freeze drift */
@media (prefers-reduced-motion: reduce) {
  .hero-cloud--a,
  .hero-cloud--b,
  .hero-billboard-beams,
  .hero-car--silver,
  .hero-car--orange,
  .hero-car-brake {
    animation: none !important;
  }
  .hero-car--silver {
    offset-distance: 28%;
    transform: scale(0.72);
    opacity: 1;
  }
  .hero-car--orange {
    offset-distance: 60%;
    transform: scale(0.34);
    opacity: 1;
  }
  .hero-car-brake {
    opacity: 0;
  }
}

.hero-scroll {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 12px;
  margin-top: clamp(20px, 3vh, 36px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeIn 1s 1s both;
}
.hero-scroll::after {
  content: "↓";
  font-family: var(--body);
  font-size: 15px;
  color: var(--accent);
  animation: scrollNudge 1.8s ease-in-out infinite;
}

/* ================================================================
   MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid var(--ink);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--display);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: -0.01em;
  color: var(--paper);
  flex-shrink: 0;
  font-variation-settings: var(--vf-expand);
}
.marquee-item:nth-child(even) {
  font-style: normal;
  font-family: var(--mono);
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: center;
}

/* ================================================================
   CATEGORIES — editorial index
   ================================================================ */
.home-category-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  display: grid;
  gap: 12px;
  counter-reset: cat;
}
.home-category {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: clamp(20px, 2.4vw, 30px) clamp(22px, 2.4vw, 32px);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  font-family: var(--display);
  font-size: clamp(24px, 3.6vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-variation-settings: var(--vf-expand);
  color: var(--ink);
  position: relative;
  transition: transform 0.45s var(--ease), color 0.3s var(--ease), background 0.4s var(--ease), box-shadow 0.45s var(--ease);
}
.home-category::before {
  counter-increment: cat;
  content: counter(cat, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  transform: translateY(-0.35em);
  transition: color 0.3s var(--ease);
}
.home-category::after {
  content: "↗";
  margin-left: auto;
  font-family: var(--body);
  font-size: 0.6em;
  color: var(--accent);
  opacity: 0;
  transform: translate(-8px, 0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.home-category:hover {
  transform: translateY(-4px);
  color: var(--accent);
  background: var(--glass-bg-strong);
  box-shadow: var(--glass-rim), var(--shadow-lift);
}
.home-category:hover::before { color: var(--accent); }
.home-category:hover::after { opacity: 1; transform: translate(0,0); }

.home-products-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 48px);
}

/* ================================================================
   FEATURES — editorial spec entries
   ================================================================ */
.feature-grid {
  display: grid;
  gap: 16px;
  margin-top: 8px;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  counter-reset: feat;
}
.feature-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  padding: clamp(26px, 3vw, 40px) clamp(24px, 2.4vw, 32px);
  position: relative;
  transition: transform 0.45s var(--ease), background 0.4s var(--ease), box-shadow 0.45s var(--ease);
  counter-increment: feat;
}
.feature-card::after {
  content: "(" counter(feat, decimal-leading-zero) ")";
  position: absolute;
  top: clamp(22px, 2.4vw, 30px);
  right: clamp(22px, 2.2vw, 30px);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
}
.feature-card:hover { background: var(--glass-bg-strong); transform: translateY(-5px); box-shadow: var(--glass-rim), var(--shadow-lift); }
.feature-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--ink);
}
.feature-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 32ch; }
.feature-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--accent);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  margin-bottom: 22px;
}

/* ================================================================
   PROCESS — numbered editorial steps
   ================================================================ */
.process-grid {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  counter-reset: step;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .process-grid { grid-template-columns: repeat(5, 1fr); }
}
.process-step {
  position: relative;
  padding: clamp(22px, 2.4vw, 30px) clamp(18px, 1.8vw, 24px) clamp(26px, 2.6vw, 34px);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.45s var(--ease);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: clamp(40px, 6vw, 90px);
}
.process-step h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.process-step p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.process-step:hover { transform: translateY(-4px); box-shadow: var(--glass-rim), var(--shadow-lift); }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  margin-block: 0;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(44px, 7vw, 96px);
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "↗";
  position: absolute;
  right: -2%;
  bottom: -28%;
  font-size: clamp(180px, 30vw, 420px);
  line-height: 1;
  color: var(--accent);
  opacity: 0.14;
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4.6vw, 60px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: uppercase;
  font-variation-settings: var(--vf-expand);
  max-width: 18ch;
  color: var(--paper);
  position: relative;
  z-index: 1;
}
.cta-band h2 em { font-style: normal; color: var(--accent); }
.cta-band .btn-primary {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.cta-band .btn-primary:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }

/* ================================================================
   PRODUCT GRID + CARDS
   ================================================================ */
.product-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 24px;
}
.product-toolbar input[type="search"] {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font: inherit;
  color: var(--ink);
}
.product-toolbar input[type="search"]:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}
.product-count {
  font: 600 12px/1 var(--mono);
  letter-spacing: .5px;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 40px;
}
.category-filter {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-rim), var(--shadow-sm);
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.category-filter:hover { color: var(--ink); transform: translateY(-2px); background: var(--glass-bg-strong); box-shadow: var(--glass-rim), var(--shadow-md); }
.category-filter--active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.product-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), background 0.4s var(--ease), box-shadow 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.product-card-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.96) contrast(1.02);
}
.product-card:hover .product-card-media img { transform: scale(1.04); filter: none; }
.product-card-media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg) 100%);
}
.product-card-media-placeholder {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: 0.18;
  text-transform: uppercase;
}
.product-card-body {
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.product-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.product-card:hover { background: var(--glass-bg-strong); transform: translateY(-6px); box-shadow: var(--glass-rim), var(--shadow-lift); }
.product-card:hover::before { transform: scaleX(1); }

.product-card-category {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-card-name {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.product-card-price {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.product-card-tags { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.product-card-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.product-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.product-card-cta {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  flex: 1;
  padding: 13px 18px;
  font-size: 12px;
}
.product-card-cta:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.product-card-detail {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
  padding: 13px 18px;
  font-size: 12px;
}
.product-card-detail:hover { border-color: var(--ink); transform: translateY(-2px); }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 64px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: clamp(28px, 4vw, 44px);
}
.breadcrumb a { color: var(--accent-deep); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ink); }

/* ================================================================
   PDP — sticky configurator + scroll story
   ================================================================ */
.pdp { padding-bottom: clamp(56px, 9vw, 132px); }

.pdp-hero {
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(24px, 4vw, 44px);
}
.pdp-kicker {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.pdp-title {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  font-weight: 900;
  font-variation-settings: var(--vf-expand);
  text-transform: uppercase;
}
.pdp-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 14px;
}

.pdp-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
}
.pdp-gallery-options, .pdp-story-details {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}
.pdp-config { display: block; }
.config-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  padding: clamp(18px, 2vw, 24px);
}
.config-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.config-price-tag {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.config-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  margin-bottom: 12px;
}

/* When embedded inside the config card, the simulator becomes lean: no
   outer grid, smaller title, no glass shell of its own (the card already
   provides one). */
.config-card .simulator { padding-block: 0; }
.config-card .simulator--bare .simulator-panel {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}
/* Inside the config card the page hero already shouts the product name.
   The card's title is a small contextual label that should never wrap
   more than 2 lines — keep it modest. */
.config-card .simulator-title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  font-variation-settings: var(--vf-normal);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
/* Tighten the form internals when embedded in the card */
.config-card .simulator-panel {
  gap: 10px;
  padding: 0;
}
.config-card .simulator-fields { border-top: 1px solid var(--line); }
.config-card .sim-field { padding: 9px 0; gap: 6px; }
.config-card .sim-result { margin-top: 2px; }
.config-card .simulator-cta { gap: 6px; }
/* Hide the redundant char-count line in the card — it duplicates the breakdown */
.config-card .sim-text-counter [data-char-count],
.config-card .sim-text-counter .sim-counter-label { display: none; }

@media (min-width: 960px) {
  .pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    grid-template-rows: auto auto;
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
  }
  .pdp-gallery-options {
    grid-column: 1;
    grid-row: 1;
  }
  .pdp-story-details {
    grid-column: 1;
    grid-row: 2;
  }
  .pdp-config {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: sticky;
    /* 9px gap below the 65px sticky site header — keeps the configurator
       card snug under the nav so its full breakdown + CTA fit in a 900px
       viewport without overflowing. */
    top: 74px;
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* PDP — gallery */
.pdp-gallery { display: flex; flex-direction: column; gap: 14px; }
.pdp-gallery-featured {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.pdp-gallery-featured-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pdp-gallery-featured:hover .pdp-gallery-featured-img {
  transform: scale(1.02);
}
.pdp-gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pdp-gallery-thumb {
  position: relative;
  display: block;
  width: 96px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.pdp-gallery-thumb input { position: absolute; opacity: 0; pointer-events: none; }
.pdp-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-gallery-thumb:hover { border-color: var(--accent-line); transform: translateY(-1px); }
.pdp-gallery-thumb:has(input:checked) {
  border-color: var(--accent);
  outline: 2px solid var(--accent-soft);
  outline-offset: 1px;
}
.pdp-gallery--empty .pdp-gallery-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* PDP — process band */
.pdp-process { display: flex; flex-direction: column; gap: 22px; }
.section-kicker {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-deep);
}
.pdp-process-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .pdp-process-row { grid-template-columns: repeat(4, 1fr); }
  .pdp-process-step + .pdp-process-step { border-left: 1px solid var(--line); padding-left: 22px; }
}
.pdp-process-num {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}
.pdp-process-label {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.pdp-process-detail { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* PDP — trust strip */
.pdp-trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
}
@media (min-width: 720px) {
  .pdp-trust-row { grid-template-columns: repeat(3, 1fr); gap: 36px; }
}
.pdp-trust-label {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pdp-trust-detail { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* PDP — FAQ teaser */
.pdp-faq { display: flex; flex-direction: column; gap: 16px; }
.pdp-faq-list { display: flex; flex-direction: column; gap: 6px; }
.pdp-faq-item {
  border-top: 1px solid var(--line);
  padding-block: 14px;
}
.pdp-faq-item:last-child { border-bottom: 1px solid var(--line); }
.pdp-faq-item summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.005em;
  position: relative;
  padding-right: 36px;
  list-style: none;
}
.pdp-faq-item summary::-webkit-details-marker { display: none; }
.pdp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.2s var(--ease);
}
.pdp-faq-item[open] summary::after { content: "−"; }
.pdp-faq-item p { padding-top: 10px; color: var(--ink-soft); line-height: 1.6; }
.pdp-faq-more { align-self: start; }

/* PDP — mobile sticky CTA bar */
.pdp-mobile-cta { display: none; }
@media (max-width: 959.98px) {
  .pdp-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    padding: 12px clamp(14px, 4vw, 22px) calc(12px + env(safe-area-inset-bottom));
    background: var(--ink);
    color: var(--paper);
    z-index: 50;
    box-shadow: 0 -20px 40px -16px rgba(25,21,16,0.45);
  }
  .pdp-mobile-cta-kicker {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--faint);
  }
  .pdp-mobile-cta-price {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--paper);
  }
  .pdp-mobile-cta-btn {
    background: var(--accent);
    color: var(--paper);
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
  }
  /* Pad the article so the sticky bar doesn't cover the last section */
  .pdp { padding-bottom: 96px; }
}

/* PDP — related products */
.pdp-related { display: flex; flex-direction: column; gap: 18px; }
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 720px) {
  .pdp-related-grid { grid-template-columns: repeat(4, 1fr); }
}
.pdp-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.pdp-related-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.pdp-related-card-media {
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: var(--bg-deep);
}
.pdp-related-card-media img { width: 100%; height: 100%; object-fit: cover; }
.pdp-related-card-placeholder {
  width: 100%; height: 100%;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 24px 24px;
}
.pdp-related-card-name {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.pdp-related-card-price {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
}

/* PDP — categories inline list */
.pdp-categories { border-top: 1px solid var(--line); padding-top: 24px; }
.pdp-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  margin-top: 6px;
}
.pdp-categories-link { color: var(--accent-deep); transition: color 0.2s; }
.pdp-categories-link:hover { color: var(--ink); }
.pdp-categories-sep { color: var(--faint); }

/* PDP — options */
.pdp-options { display: flex; flex-direction: column; gap: 20px; }
.pdp-options-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.pdp-options-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* ================================================================
   SIMULATOR
   ================================================================ */
.product-detail { padding-bottom: clamp(56px, 9vw, 120px); }
.product-hero {
  margin: 0 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.product-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.simulator { padding-block: clamp(28px, 4vw, 48px) 0; }

.simulator-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 960px) {
  .simulator-grid { grid-template-columns: 1fr 0.92fr; align-items: start; gap: 56px; }
}

.simulator-gallery {
  border-radius: var(--radius-xl);
  min-height: 380px;
  position: sticky;
  top: 104px;
  background: var(--ink);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--ink);
}
.simulator-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.25;
}
.simulator-gallery-placeholder {
  font-family: var(--display);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(28px, 4.5vw, 52px);
  text-align: center;
  padding: 36px;
  z-index: 1;
  letter-spacing: -0.03em;
  font-variation-settings: var(--vf-expand);
  position: relative;
}
.simulator-gallery-placeholder::after {
  content: "PRATINJAU";
  display: block;
  margin-top: 18px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.simulator-panel {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.simulator-title {
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: uppercase;
  font-variation-settings: var(--vf-expand);
}

.simulator-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.sim-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.sim-field label {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.sim-field input[type="text"],
.sim-field textarea,
.quote-form input,
.quote-form textarea,
.quote-form select,
.order-tracking-form input {
  font-family: var(--body);
  font-size: 16px;
  padding: 15px 17px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,254,250,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 3px rgba(25,21,16,0.07), inset 0 1px 0 rgba(255,255,255,0.7);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.sim-field input:focus,
.sim-field textarea:focus,
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus,
.order-tracking-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,254,250,0.72);
  box-shadow: 0 0 0 3px var(--accent-soft), inset 0 1px 3px rgba(25,21,16,0.05);
}

.sim-dimension-controls { display: flex; align-items: center; gap: 16px; }
.sim-dimension-controls input[type="range"] {
  flex: 1;
  accent-color: var(--accent);
  height: 2px;
  background: var(--line-strong);
  border-radius: 999px;
  -webkit-appearance: none;
  appearance: none;
}
.sim-dimension-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.sim-dimension-controls input[type="number"] {
  width: 104px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,254,250,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 3px rgba(25,21,16,0.07), inset 0 1px 0 rgba(255,255,255,0.7);
  color: var(--ink);
}
.sim-dimension-unit { font-family: var(--mono); color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.sim-char-count, .text-counter-count { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

.sim-hint {
  color: var(--muted);
  font-size: 14px;
  padding: 18px 20px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
}

/* ================================================================
   PRICE BREAKDOWN
   ================================================================ */
.sim-result { margin-top: 4px; }
.price-breakdown {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  color: var(--ink-soft);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-rim), var(--shadow-sm);
  position: relative;
}
.price-breakdown-line, .pb-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--line);
}
.price-breakdown-label { color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; }
.price-breakdown-value { font-weight: 700; }

.price-breakdown-total, .pb-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  border-bottom: none;
}
.price-breakdown-total .price-breakdown-label { font-family: var(--mono); }
.price-breakdown-total .price-breakdown-value, .pb-total {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.03em;
  color: var(--accent);
  font-variation-settings: var(--vf-expand);
}

.price-disclaimer { margin-top: 16px; font-size: 12.5px; color: var(--muted); line-height: 1.55; }

.price-breakdown--custom {
  background: var(--warn-soft);
  color: var(--warn);
  border: 1px solid rgba(154,107,30,0.28);
}
.price-breakdown--custom p { color: var(--warn); font-family: var(--body); font-size: 15px; }

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

/* ================================================================
   SIMULASI INDEX / LISTS
   ================================================================ */
.simulasi-product-list, .kontak-list {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.simulasi-product-list li, .kontak-list li {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.simulasi-product-list li a, .kontak-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 30px);
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.simulasi-product-list li a::after { content: "↗"; font-family: var(--body); font-size: 0.6em; color: var(--accent); opacity: 0; transition: opacity 0.3s var(--ease); }
.simulasi-product-list li:hover { transform: translateY(-4px); background: var(--glass-bg-strong); box-shadow: var(--glass-rim), var(--shadow-lift); }
.simulasi-product-list li:hover a { color: var(--accent); }
.simulasi-product-list li:hover a::after { opacity: 1; }
.kontak-list li { padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 30px); font-family: var(--body); font-size: 16px; letter-spacing: normal; }
.kontak-list a { color: var(--accent-deep); }

.simulasi-intro p, .kontak > p, .order-tracking > p {
  color: var(--ink-soft);
  max-width: 54ch;
  margin-top: 18px;
  font-size: clamp(16px, 1.6vw, 18px);
}

/* ================================================================
   REDESIGNED MINTA PENAWARAN (FIT TO SCREEN)
   ================================================================ */
/* Common quote request typography & layout styles */
.quote-request-lead {
  color: var(--ink-soft);
  max-width: 48ch;
  margin-top: 20px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
}

/* Premium Checklist / Benefits Layout */
.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-block: 28px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease);
}
.benefit-item:hover {
  transform: translateX(6px);
}
.benefit-icon {
  font-size: 18px;
  color: var(--accent);
  line-height: 1.2;
  flex-shrink: 0;
}
.benefit-text h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2px;
}
.benefit-text p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.quote-left-footer {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quote-left-footer a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.quote-left-footer a:hover {
  color: var(--ink);
}

/* Form Grid & Input Fields Styling */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.quote-form textarea[name="installAddress"] {
  height: 52px;
  min-height: 52px;
  resize: none;
  padding: 12px 14px;
}

.quote-form textarea[name="notes"] {
  height: 90px;
  min-height: 90px;
  resize: none;
  padding: 12px 14px;
}

.quote-form select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232e2d2a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%;
  padding-right: 40px !important;
}

/* Success & Error Banners Placement */
.quote-request-right .quote-success,
.quote-request-right .quote-error {
  margin-bottom: 24px;
  animation: fadeIn 0.3s var(--ease);
}

/* Responsive splits & viewport control for fit-to-screen */
@media (min-width: 1024px) {
  body:has(.quote-request) .site-footer {
    display: none;
  }
  
  body:has(.quote-request) {
    overflow: hidden;
    height: 100vh;
  }
  
  main:has(.quote-request) {
    height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .quote-request {
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    gap: clamp(24px, 3vw, 48px);
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-block: 0 !important;
    border-top: none !important;
  }

  .quote-request-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 12px;
  }

  .quote-request-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    padding-block: 20px;
  }

  .quote-request-right .quote-form {
    max-height: calc(100vh - 140px);
    max-width: none;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--line-strong) transparent;
    margin-top: 0;
  }
}

/* ================================================================
   FORMS (quote, order tracking)
   ================================================================ */
.quote-form, .ot-form {
  display: grid;
  gap: 20px;
  max-width: 560px;
  margin-top: 36px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  padding: clamp(28px, 4vw, 44px);
}
.quote-form button[type="submit"] { margin-top: 6px; }

.quote-result { margin-top: 20px; }
.quote-success {
  background: var(--ok-soft);
  color: var(--ok);
  padding: 18px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  border: 1px solid rgba(63,125,82,0.28);
}
.quote-error {
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 18px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  border: 1px solid var(--accent-line);
}
.quote-status { color: var(--muted); font-family: var(--mono); font-size: 13px; }

.order-tracking { padding-top: clamp(56px, 9vw, 132px); }
.order-tracking-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  max-width: 540px;
  margin-top: 30px;
}
.order-tracking-form label { flex: 1; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); display: flex; flex-direction: column; gap: 9px; }

.order-tracking-panel {
  margin-top: 36px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  padding: clamp(28px, 4vw, 40px);
  max-width: 700px;
}
.order-tracking-number {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-variation-settings: var(--vf-expand);
}

/* Progress Stepper Timeline */
.order-progress-stepper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}
@media (min-width: 600px) {
  .order-progress-stepper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }
}
.stepper-step {
  display: flex;
  gap: 14px;
  flex: 1;
  position: relative;
}
@media (min-width: 600px) {
  .stepper-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  /* Stepper connecting line */
  .stepper-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15px;
    left: calc(50% + 18px);
    width: calc(100% - 36px);
    height: 2px;
    background: var(--line-strong);
    z-index: 1;
    transition: background 0.3s var(--ease);
  }
  .stepper-step.step--completed:not(:last-child)::after {
    background: var(--accent);
  }
}
.stepper-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  z-index: 2;
  transition: all 0.3s var(--ease);
}
.step--completed .stepper-node {
  background: var(--accent);
  color: var(--paper);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.step--active .stepper-node {
  background: var(--paper);
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}
.step--pending .stepper-node {
  background: var(--bg-deep);
  color: var(--muted);
  border: 1px solid var(--line-strong);
}
.stepper-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stepper-label {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step--pending .stepper-label {
  color: var(--muted);
}
.stepper-desc {
  font-size: 11px;
  color: var(--ink-soft);
}
.step--pending .stepper-desc {
  color: var(--faint);
}
.order-timeline-cancelled {
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--accent-line);
  margin: 24px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Payment Box Details */
.order-payment-box {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-block: 24px;
  box-shadow: var(--shadow-sm);
}
.payment-box-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
.payment-box-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 14px;
}
.payment-bank-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-deep);
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.bank-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bank-name {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.bank-account {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.bank-holder {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.btn-copy-acc {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-copy-acc:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.order-tracking-items-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.order-tracking-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 24px;
  margin: 24px 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.order-tracking-status dt { font-family: var(--mono); color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.order-tracking-status dd { font-family: var(--mono); font-weight: 700; margin: 0; color: var(--ink); font-size: 14px; }
.order-tracking-items {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 15px;
}
.order-tracking-empty { color: var(--muted); padding: 16px 0; font-family: var(--mono); font-size: 13px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq { display: grid; gap: 12px; }
.faq h1 { margin-bottom: clamp(28px, 4vw, 48px); }
.faq-item {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-rim), var(--shadow-sm);
  padding: 0 clamp(20px, 2.4vw, 30px);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.faq-item[open] { background: var(--glass-bg-strong); box-shadow: var(--glass-rim), var(--shadow-md); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(19px, 2.4vw, 27px);
  letter-spacing: -0.015em;
  padding: clamp(22px, 2.6vw, 30px) 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--body);
  color: var(--accent);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding: 0 0 clamp(24px, 3vw, 32px); line-height: 1.7; max-width: 62ch; font-size: 16px; }

/* ================================================================
   BLOG / ARTICLES
   ================================================================ */
.article-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  margin-top: 36px;
}
.article-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-rim), var(--glass-shadow);
  padding: clamp(28px, 3vw, 40px);
  transition: transform 0.45s var(--ease), background 0.4s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.article-card:hover { background: var(--glass-bg-strong); transform: translateY(-6px); box-shadow: var(--glass-rim), var(--shadow-lift); }
.article-card h3, .article-card-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: auto;
}
.article-card a { transition: color 0.25s var(--ease); }
.article-card a:hover { color: var(--accent-deep); }
.article-card-excerpt { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.article-meta { color: var(--muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

.article-detail { max-width: 760px; }
.article-detail .article-title {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 76px);
  margin: 18px 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.9;
  font-variation-settings: var(--vf-expand);
  text-wrap: balance;
}
.article-content {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.article-content::first-letter {
  font-family: var(--display);
  font-size: 3.4em;
  font-weight: 900;
  float: left;
  line-height: 0.78;
  margin: 4px 14px 0 0;
  padding: 8px 12px;
  color: var(--paper);
  background: var(--accent);
  font-variation-settings: var(--vf-normal);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  flex-shrink: 0;
  margin-top: clamp(64px, 10vw, 120px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px var(--gutter);
  background: var(--ink);
  color: var(--paper);
}
.site-footer a { color: var(--paper); transition: color 0.25s var(--ease); }
.site-footer a:hover { color: var(--accent); }
.footer-brand {
  font: 900 18px/1.2 var(--display);
  letter-spacing: -.5px;
  display: block;
  margin: 0 0 8px;
  color: var(--paper);
}
.footer-primary p { margin: 0; color: var(--faint); font-size: 14px; line-height: 1.6; }
.footer-nap {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--faint);
}
.footer-nap a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--paper);
  font: 600 12px/1.4 var(--mono);
  letter-spacing: .5px;
  text-transform: uppercase;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--accent); }
.footer-meta {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font: 400 12px/1 var(--mono);
  color: var(--muted);
}
@media (max-width: 768px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px var(--gutter);
  }
}

/* ================================================================
   ERROR STATES
   ================================================================ */
.error-state { padding: 64px 0; text-align: center; }
.not-found {
  text-align: center;
  padding: clamp(72px, 12vw, 160px) 0;
}
.error-state .error-kicker {
  font: 600 12px/1 var(--mono);
  letter-spacing: 1px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.error-state h1 {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.84;
  font-variation-settings: var(--vf-expand);
  font-style: normal;
  margin: 0 0 16px;
}
.not-found h1 {
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 120px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.84;
  font-variation-settings: var(--vf-expand);
  font-style: normal;
}
.error-state p, .not-found p { color: var(--muted); margin-top: 18px; font-size: 17px; }
.error-state .error-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.not-found .btn-primary { margin-top: 28px; }

/* ================================================================
   MOBILE STICKY SIMULATOR CTA
   ================================================================ */
@media (max-width: 959px) {
  .simulator-gallery { position: relative; top: 0; min-height: 240px; }
  .simulator-cta {
    position: sticky;
    bottom: 0;
    z-index: 30;
    margin: 0 calc(-1 * var(--gutter)) calc(-1 * clamp(56px, 9vw, 120px));
    padding: 16px var(--gutter);
    background: rgba(247,244,236,0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .site-header { gap: 12px; }
  .hero-eyebrow-container { margin-bottom: 20px; }
  .hero-marquee-eyebrow { font-size: 10px; letter-spacing: 0.12em; }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line > span { transform: none; }
  .marquee-track { animation: none; }
}
