/* ==========================================================================
   Gardex — clinical-luxury landing page
   ========================================================================== */

:root{
  --navy-950: #060d20;
  --navy-900: #0a1630;
  --navy-800: #0f1e42;
  --navy-700: #16295c;
  --silver: #c7ceda;
  --silver-bright: #eef1f7;
  --blue-accent: #4f7cff;
  --blue-soft: #7fa0ff;
  --paper: #f5f6f9;
  --paper-2: #eceef4;
  --ink: #0d1428;
  --ink-soft: #45506b;
  --line: rgba(13,20,40,0.09);
  --line-dark: rgba(255,255,255,0.12);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "IBM Plex Sans", -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.68,.16,1);
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap{
  width:100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* subtle grain overlay across the whole page */
.noise-overlay{
  position: fixed; inset:0; pointer-events:none; z-index: 999;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- reveal-on-scroll ----------
   Visible by default (no-JS / slow-JS safe). JS arms the hidden state
   just before animating in, so a script error never leaves content blank. */
.js-reveal-ready .reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.reveal-delay-1.is-visible{ transition-delay: .12s; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: absolute; top:0; left:0; right:0; z-index: 100;
  background: rgba(6,13,32,0.22);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height: 96px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color: var(--silver-bright);
}
.brand-mark{
  height: 34px; width:34px; object-fit:contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.25));
}
.brand-text{
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 450;
  letter-spacing: .01em;
  display:flex; flex-direction:column; line-height:1.05;
}
.brand-sub{
  font-family: var(--font-body);
  font-size: .58rem; letter-spacing:.22em; text-transform:uppercase;
  color: var(--silver); font-weight:500; margin-top:2px;
}
.nav{ display:flex; gap: 36px; }
.nav a{
  color: var(--silver);
  text-decoration:none;
  font-size:.92rem; font-weight:500;
  position:relative;
  transition: color .25s;
}
.nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:-8px; height:1px;
  background: var(--blue-soft); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover{ color: var(--silver-bright); }
.nav a:hover::after{ transform: scaleX(1); }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; background:none; border:none; cursor:pointer;
}
.nav-toggle span{ height:1.5px; background: var(--silver-bright); width:100%; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  background: radial-gradient(120% 140% at 78% 0%, var(--navy-700) 0%, var(--navy-900) 46%, var(--navy-950) 100%);
  color: var(--silver-bright);
  padding: 168px 0 120px;
  overflow:hidden;
}
.hero-glow{
  position:absolute; top:-10%; right:-10%; width:65%; height:78%;
  background: radial-gradient(circle, rgba(79,124,255,0.4), transparent 72%);
  filter: blur(10px);
  pointer-events:none;
}
.hero-inner{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items:center;
  position:relative; z-index:1;
}
.eyebrow{
  font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  color: var(--blue-soft); font-weight:600; margin-bottom: 22px;
}
.hero h1{
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height:1.12;
  letter-spacing:-.01em;
  margin-bottom: 22px;
}
.hero-sub{
  font-size: 1.05rem; line-height:1.6;
  color: var(--silver);
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-perks{
  list-style:none;
  display:grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 28px;
  margin-bottom: 34px;
  max-width: 520px;
}
.hero-perks li{
  display:flex; align-items:center; gap:9px;
  font-size:.9rem; color: var(--silver-bright);
}
.hero-perk-icon{ font-size:.85rem; line-height:1; flex-shrink:0; }

.feature-row{
  list-style:none;
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}
.feature-row li{
  display:flex; flex-direction:column; gap:14px;
  padding: 18px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  font-size: .84rem; line-height:1.35; color: var(--silver-bright);
  transition: background .3s, transform .3s;
}
.feature-row li:hover{ background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.feature-icon{
  width:36px; height:36px; color: var(--blue-soft);
}
.feature-icon svg{ width:100%; height:100%; }

.info-plate{
  display:flex; gap:14px; align-items:flex-start;
  padding: 16px 20px;
  background: rgba(79,124,255,0.1);
  border: 1px solid rgba(79,124,255,0.28);
  border-radius: 12px;
  max-width: 560px;
}
.info-plate-icon{ width:20px; height:20px; flex-shrink:0; margin-top:2px; color: var(--blue-soft); }
.info-plate p{ font-size:.88rem; line-height:1.5; color: var(--silver-bright); }

/* hero product art */
.hero-art{
  position:relative; height: 580px;
  display:flex; align-items:center; justify-content:flex-end;
  padding-right: 2%;
}
.hero-art-glow{
  position:absolute; left:50%; top:50%;
  width:680px; height:680px; border-radius:50%;
  background: radial-gradient(circle, rgba(120,155,255,0.46), rgba(120,155,255,0.14) 45%, transparent 72%);
  filter: blur(4px);
  transform: translate(-50%,-50%);
}
.hero-float{
  position:relative;
  width: 420px; height: 480px;
  display:flex; align-items:flex-end; justify-content:center;
  animation: heroFloat 3.4s ease-in-out infinite;
}
@keyframes heroFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}
.hero-box{
  position:absolute;
  bottom: 40px;
  width: 220px;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 30px 26px rgba(0,0,0,0.55));
  opacity: 1;
  transform-origin: bottom center;
  transition: transform .5s var(--ease), filter .5s var(--ease);
  pointer-events:none;
}
.hero-box:hover{ filter: drop-shadow(0 36px 30px rgba(0,0,0,0.65)); }
.hero-box[data-hero-box="0"]{ transform: translateX(-130px) rotate(-18deg); z-index: 10; }
.hero-box[data-hero-box="1"]{ transform: translateX(-78px) rotate(-11deg); z-index: 20; }
.hero-box[data-hero-box="2"]{ transform: translateX(-26px) rotate(-4deg); z-index: 30; }
.hero-box[data-hero-box="3"]{ transform: translateX(26px) rotate(4deg); z-index: 40; }
.hero-box[data-hero-box="4"]{ transform: translateX(78px) rotate(11deg); z-index: 50; }
.hero-box[data-hero-box="5"]{ transform: translateX(130px) rotate(18deg); z-index: 60; }
.hero-float-shadow{
  position:absolute;
  bottom: 6px; left:50%;
  width: 260px; height: 34px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.55), transparent 72%);
  transform: translateX(-50%);
  animation: heroShadow 3.4s ease-in-out infinite;
}
@keyframes heroShadow{
  0%, 100%{ transform: translateX(-50%) scale(1); opacity:.65; }
  50%{ transform: translateX(-50%) scale(.92); opacity:.5; }
}

/* ==========================================================================
   Section shared
   ========================================================================== */
.section-title{
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  text-align:center;
  margin-bottom: 56px;
  position:relative;
  color: var(--ink);
}
.section-title::after{
  content:'';
  display:block;
  width:52px; height:2px;
  background: var(--blue-accent);
  margin: 18px auto 0;
}

/* ==========================================================================
   Production
   ========================================================================== */
.production{ padding: 108px 0; background: var(--paper); }

.process-timeline{
  display:flex; flex-direction:column;
  max-width: 920px; margin: 0 auto;
}
.process-stage{
  position:relative;
  padding: 4px 0 48px 76px;
  overflow:hidden;
}
.process-stage:last-child{ padding-bottom: 0; }
.process-stage::before{
  content:'';
  position:absolute;
  left: 23px; top: 52px; bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, rgba(79,124,255,0.45), rgba(79,124,255,0.06));
}
.process-stage:last-child::before{ display:none; }
.process-stage::after{
  content: attr(data-step);
  position:absolute;
  right: -6px; top: -34px;
  font-family: var(--font-display); font-weight:600;
  font-size: 6.4rem; line-height:1;
  color: rgba(13,20,40,0.045);
  letter-spacing:-.02em;
  pointer-events:none;
  z-index:0;
}
.process-stage-head{
  position:relative;
  min-height: 48px;
  display:flex; align-items:center; gap:12px;
  margin-bottom: 20px;
  z-index:1;
}
.process-num{
  position:absolute; left:-76px; top:0;
  width: 48px; height:48px; border-radius:50%;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  color: var(--silver-bright);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight:600;
  flex-shrink:0; z-index:1;
  box-shadow: 0 8px 20px rgba(10,22,48,0.28), 0 0 0 4px rgba(79,124,255,0.1);
}
.process-stage-icon{
  font-size: 1.25rem;
  line-height:1;
  filter: saturate(1.1);
}
.process-stage-head h3{
  font-family: var(--font-display); font-weight:500;
  font-size: 1.28rem; color: var(--ink);
}
.process-items{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  position:relative; z-index:1;
}
.process-item{
  position:relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 20px 18px;
  box-shadow: 0 10px 24px rgba(13,20,40,0.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.process-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(13,20,40,0.1);
  border-color: rgba(79,124,255,0.35);
}
.process-item h4{
  font-size:.92rem; font-weight:600; margin-bottom:6px; color: var(--ink);
}
.process-item p{
  font-size:.82rem; line-height:1.5; color: var(--ink-soft);
}

/* ==========================================================================
   Cinematic video
   ========================================================================== */
.cinema{
  position:relative;
  padding: 100px 0 110px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(79,124,255,0.10), transparent 60%),
    var(--navy-950);
  overflow:hidden;
}
.cinema-frame{
  position:relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.cinema-glow{
  position:absolute;
  left:50%; top:50%;
  width: 90%; height: 130%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse at center, rgba(79,124,255,0.28), transparent 68%);
  filter: blur(30px);
  pointer-events:none;
}
.cinema-video{
  position:relative;
  display:block;
  width:100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 18px;
  background:#000;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}
.cinema-vignette{
  position:absolute; inset: 0 32px;
  border-radius: 18px;
  pointer-events:none;
  box-shadow: inset 0 0 90px rgba(0,0,0,0.65);
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.32) 100%);
}
.cinema-play{
  position:absolute;
  left:50%; top:50%; transform: translate(-50%,-50%);
  width: 92px; height:92px; border-radius:50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), opacity .3s var(--ease);
}
.cinema-play svg{ width:30px; height:30px; margin-left:4px; }
.cinema-play:hover{ transform: translate(-50%,-50%) scale(1.08); background: rgba(255,255,255,0.24); }
.cinema-play.is-hidden{ opacity:0; pointer-events:none; transform: translate(-50%,-50%) scale(.9); }
.cinema-copy{ max-width: 640px; text-align:center; margin:0 auto 44px; }
.cinema-eyebrow{
  font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  color: var(--blue-soft); font-weight:600; margin-bottom: 14px;
}
.cinema-title{
  font-family: var(--font-display); font-weight:450;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--silver-bright); margin-bottom: 14px;
}
.cinema-sub{ font-size:.96rem; line-height:1.6; color: var(--silver); }

/* ==========================================================================
   Quality / Trust
   ========================================================================== */
.quality{ padding: 108px 0; background: var(--paper-2); }

.trust-grid{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.trust-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.trust-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13,20,40,0.08);
}
.trust-icon{
  width:44px; height:44px; color: var(--blue-accent);
  margin-bottom: 18px; display:block;
}
.trust-icon svg{ width:100%; height:100%; }
.trust-card h3{ font-size:1.02rem; font-weight:600; margin-bottom:10px; color: var(--ink); }
.trust-card p{ font-size:.88rem; line-height:1.55; color: var(--ink-soft); }

.factory-strip-label{
  font-size:.78rem; letter-spacing:.1em; text-transform:uppercase;
  color: var(--ink-soft); font-weight:600; margin-bottom:18px; text-align:center;
}

.reels{ margin-bottom: 20px; }
.reels-track{
  display:flex; gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 14px;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.reels-track::-webkit-scrollbar{ display:none; }
.reel-card{
  flex: 0 0 220px;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  background: var(--navy-950);
  box-shadow: 0 18px 36px rgba(13,20,40,0.16);
  border: 1px solid var(--line);
}
.reel-card img, .reel-media{
  width:100%; height:100%; object-fit:cover;
  display:block;
  transition: transform .5s var(--ease);
}
.reel-card:hover img, .reel-card:hover .reel-media{ transform: scale(1.05); }
.reel-card-video{ border-color: rgba(79,124,255,0.4); }

/* ==========================================================================
   Lineup shared bits (check-list, CTA, request-list — used inside .catalog-footer)
   ========================================================================== */
.soon-badge{
  font-size:.68rem; text-transform:uppercase; letter-spacing:.08em;
  color: var(--silver-bright); background: rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.3);
  padding:4px 10px; border-radius:999px; font-weight:700;
}

.check-list{ list-style:none; margin-bottom: 32px; }
.check-list li{
  position:relative; padding-left: 30px;
  font-size:.96rem; color: var(--ink); margin-bottom:12px;
}
.check-list li::before{
  content:''; position:absolute; left:0; top:3px; width:18px; height:18px;
  border-radius:50%;
  background: var(--blue-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/60% no-repeat;
}

.btn-primary{
  display:inline-flex; align-items:center; gap:10px;
  background: var(--navy-900); color: var(--silver-bright);
  padding: 15px 28px; border-radius: 999px;
  font-size:.94rem; font-weight:600; text-decoration:none;
  margin-bottom: 40px;
  transition: background .25s, transform .25s;
}
.btn-primary svg{ width:19px; height:19px; }
.btn-primary:hover{ background: var(--blue-accent); transform: translateY(-2px); }
.hero-cta{
  background: var(--blue-accent);
  margin-top: 6px; margin-bottom: 0;
  width: max-content;
}
.hero-cta:hover{ background: var(--silver-bright); color: var(--navy-900); }

.request-list-title{ font-weight:600; font-size:.92rem; margin-bottom:16px; color: var(--ink); }
.request-list ul{ list-style:none; display:flex; flex-direction:column; gap:12px; }
.request-list li{
  display:flex; align-items:center; gap:10px;
  font-size:.88rem; color: var(--ink-soft);
}
.request-list li svg{ width:18px; height:18px; color: var(--blue-accent); flex-shrink:0; }

/* ==========================================================================
   Catalog carousel
   ========================================================================== */
.catalog{
  background: radial-gradient(120% 160% at 15% 0%, var(--navy-700) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
  padding-bottom: 108px;
}

.catalog-banner{
  padding: 72px 0 56px;
}
.catalog-eyebrow{
  font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  color: var(--blue-soft); font-weight:600; margin-bottom: 14px; text-align:center;
}
.catalog-title{
  font-family: var(--font-display); font-weight:450;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: var(--silver-bright); text-align:center;
}

.catalog-carousel-wrap{
  position:relative;
  display:flex; align-items:center; justify-content:center; gap: 14px;
  max-width: 1440px;
}
.carousel-track{
  display:flex; gap: 22px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 12px 4px 28px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar{ display:none; }

.catalog-card{
  scroll-snap-align: start;
  flex: 0 0 260px;
  padding: 0 4px 24px;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  transition: transform .35s var(--ease);
}
.catalog-card:hover{ transform: translateY(-6px); }

.catalog-card-art{
  height: 280px; width:100%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
  position:relative;
}
.catalog-card-art img{
  max-height: 100%; width:auto;
  position:relative; z-index:1;
  filter: drop-shadow(0 26px 20px rgba(0,0,0,0.5));
  transition: transform .35s var(--ease);
  animation: catalogFloat 3.6s ease-in-out infinite;
}
.catalog-card:nth-child(even) .catalog-card-art img{ animation-delay: -1.8s; }
@keyframes catalogFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.catalog-card:hover .catalog-card-art img{ transform: translateY(-4px) scale(1.03); }
.catalog-card-art-soon{
  border-radius: 16px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 10px, rgba(255,255,255,0.02) 10px 20px);
  border: 1px dashed rgba(255,255,255,0.25);
}
.catalog-card-art-soon .soon-badge{
  position:relative; z-index:1;
}
.catalog-card-art > .catalog-card-art-soon{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
}
.catalog-card-art.has-photo > .catalog-card-art-soon{ display:none; }

.catalog-card h3{
  font-size: .98rem; font-weight:600; color: var(--silver-bright);
  margin-bottom: 16px; line-height:1.35; min-height: 42px;
}

.pack-pills{ display:flex; gap:8px; margin-bottom: 20px; }
.pack-pill{
  font-family: inherit;
  font-size:.78rem; font-weight:600;
  padding: 7px 14px; border-radius:999px;
  border: 1px solid rgba(127,160,255,0.4);
  background: rgba(127,160,255,0.1);
  color: var(--silver-bright);
  text-shadow: 0 0 12px rgba(127,160,255,0.55);
  cursor: default;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
button.pack-pill{ cursor: pointer; }
button.pack-pill:hover:not(.is-active){
  border-color: var(--blue-soft);
  background: rgba(127,160,255,0.18);
  box-shadow: 0 0 16px rgba(127,160,255,0.3);
}
.pack-pill.is-active{
  background: var(--silver-bright); color: var(--navy-900); border-color: var(--silver-bright);
  text-shadow: none;
}
.pack-pill.is-soon{
  background: rgba(127,160,255,0.1); color: var(--silver-bright); border-color: rgba(127,160,255,0.4);
  text-shadow: 0 0 12px rgba(127,160,255,0.55);
  cursor: default;
}

.btn-pill{
  display:inline-block;
  background: var(--blue-accent); color: #fff;
  font-size:.84rem; font-weight:600; letter-spacing:.03em;
  text-decoration:none; text-transform:uppercase;
  padding: 11px 26px; border-radius: 999px;
  transition: background .25s, transform .25s;
}
.btn-pill:hover{ background: var(--navy-900); transform: translateY(-2px); }

.carousel-arrow{
  flex-shrink:0;
  width: 46px; height:46px; border-radius:50%;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  box-shadow: 0 12px 24px rgba(13,20,40,0.1);
  transition: background .25s, color .25s, transform .25s;
}
.carousel-arrow svg{ width:20px; height:20px; }
.carousel-arrow:hover{ background: var(--blue-accent); color:#fff; transform: scale(1.06); }

.carousel-dots{
  display:flex; justify-content:center; gap:8px; margin-top: 8px; margin-bottom: 64px;
}
.carousel-dot{
  width:8px; height:8px; border-radius:50%;
  background: rgba(255,255,255,0.25); border:none; cursor:pointer; padding:0;
  transition: background .25s, transform .25s;
}
.carousel-dot.is-active{ background: var(--blue-accent); transform: scale(1.3); }

.catalog-footer{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap: 8px;
}
.check-list-row{
  display:flex; flex-wrap:wrap; justify-content:center; gap: 10px 22px;
  margin-bottom: 30px;
}
.check-list-row li{ padding-left:26px; margin-bottom:0; }
.catalog-footer .check-list li{ color: var(--silver-bright); }

.catalog-footer .btn-primary{
  margin-bottom: 40px;
  background: var(--blue-accent);
}
.catalog-footer .btn-primary:hover{ background: var(--silver-bright); color: var(--navy-900); }
.catalog-footer .request-list-title{ color: var(--silver-bright); }
.catalog-footer .request-list li{ color: var(--silver); }
.catalog-footer .request-list ul{
  flex-direction:row; flex-wrap:wrap; justify-content:center; gap: 24px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--navy-950);
  color: var(--silver);
  padding: 56px 0 30px;
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:flex-start;
  flex-wrap:wrap; gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 24px;
}
.footer-mail-icon{ font-size:1.1rem; margin-right:8px; }
.footer-contact a{
  color: var(--silver-bright); text-decoration:none; font-size:1.15rem; font-weight:600;
}
.footer-contact a:hover{ color: var(--blue-soft); }
.footer-contact-label{ font-size:.82rem; color: var(--silver); margin-top:8px; max-width:280px; }

.footer-facts{ display:flex; gap: 44px; }
.footer-facts > div{ display:flex; flex-direction:column; gap:6px; }
.footer-fact-label{ font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color: #7c88a8; }
.footer-fact-value{ font-size:.95rem; font-weight:600; color: var(--silver-bright); }

.footer-disclaimer{ font-size:.78rem; color:#7c88a8; text-align:center; }
.footer-fineprint{
  font-size:.72rem; color:#5c6786; text-align:center;
  max-width:560px; margin:10px auto 0; line-height:1.5;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-art{ height: 320px; order:-1; justify-content:center; padding-right:0; }
  .hero-float{ width: 260px; height: 300px; }
  .hero-box{ width: 130px; max-height: 280px; bottom: 24px; }
  .hero-box[data-hero-box="0"]{ transform: translateX(-80px) rotate(-18deg); }
  .hero-box[data-hero-box="1"]{ transform: translateX(-48px) rotate(-11deg); }
  .hero-box[data-hero-box="2"]{ transform: translateX(-16px) rotate(-4deg); }
  .hero-box[data-hero-box="3"]{ transform: translateX(16px) rotate(4deg); }
  .hero-box[data-hero-box="4"]{ transform: translateX(48px) rotate(11deg); }
  .hero-box[data-hero-box="5"]{ transform: translateX(80px) rotate(18deg); }
  .hero-art-glow{ width:460px; height:460px; }
  .feature-row{ grid-template-columns: repeat(2, 1fr); }
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ flex-direction:column; }
  .catalog-card{ flex-basis: 230px; }
  .carousel-track{
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    flex: 1;
    width: auto !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  }
}

@media (max-width: 640px){
  .nav{
    position:absolute; top:76px; left:0; right:0;
    background: var(--navy-950);
    flex-direction:column; padding: 20px 32px 28px; gap:18px;
    border-bottom:1px solid var(--line-dark);
    display:none;
  }
  .nav.is-open{ display:flex; }
  .nav-toggle{ display:flex; }
  .feature-row{ grid-template-columns: 1fr 1fr; }
  .hero-perks{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: 1fr; }
  .wrap{ padding: 0 20px; }
  .hero{ padding: 76px 0 90px; }
  .footer-facts{ flex-wrap:wrap; gap: 24px; }
  .catalog-carousel-wrap{ gap: 8px; }
  .carousel-arrow{ width:38px; height:38px; }
  .catalog-card{ flex-basis: 210px; padding: 0 4px 20px; }
  .catalog-banner{ padding: 56px 0 80px; }
  .reel-card{ flex-basis: 170px; }
  .hero-art{ justify-content:center; padding-right:0; }
  .process-stage{ padding-left: 56px; padding-bottom: 36px; }
  .process-num{ left:-56px; width:40px; height:40px; font-size:1rem; }
  .process-stage::before{ left:19px; }
  .process-stage-head{ min-height: 40px; }
  .process-stage-head h3{ font-size: 1.1rem; }
  .process-items{ grid-template-columns: 1fr; }
  .cinema{ padding: 70px 0 80px; }
  .cinema-frame{ padding: 0 20px; }
  .cinema-vignette{ inset: 0 20px; }
  .cinema-play{ width: 68px; height:68px; }
  .cinema-play svg{ width:22px; height:22px; }
  .cinema-copy{ padding: 0 20px; margin-bottom: 32px; }
}
