/* === Storefront overrides ============================================== */
body > header, body > .header, body > nav.main-nav,
body > .navbar, body > .site-header, .header,
body > footer, body > .footer, body > .site-footer { display: none !important; }
main { padding-top: 0 !important; }
.scroll-progress { display: none; }
.back-to-top { display: none !important; }

:root {
  --ink: #08090c;
  --ink-2: #0e1014;
  --ink-3: #15181f;
  --ink-4: #1e222b;
  --bone: #f5efe1;
  --bone-soft: #d4ccba;
  --bone-dim: #8a8474;
  --muted: #5b574e;
  --rule: rgba(245, 239, 225, 0.08);
  --rule-bright: rgba(245, 239, 225, 0.18);

  --gold: #d4a574;
  --gold-soft: #e9c79b;
  --gold-deep: #b07e4d;
  --copper: #c87d52;
  --bronze: #8b6347;
  --rust: #b04829;

  --font-display: 'Fraunces', 'DM Serif Display', Georgia, serif;
  --font-body: 'Instrument Sans', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html, body { background: var(--ink); color: var(--bone); }
body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* === Grain overlay ====================================================== */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 100; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* === Scroll progress rail =============================================== */
.l-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--rule); z-index: 60;
}
.l-progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--copper), var(--gold));
  width: 0%; transition: width 0.06s linear;
}

/* === Custom cursor ====================================================== */
.l-cursor {
  position: fixed; pointer-events: none; z-index: 99;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  mix-blend-mode: difference;
}
.l-cursor.is-hover {
  width: 60px; height: 60px;
  background: rgba(212, 165, 116, 0.15);
  border-color: var(--gold-soft);
}
@media (max-width: 900px) { .l-cursor { display: none; } }

/* === Container & helpers =============================================== */
.l-container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.l-container-wide { max-width: 1480px; margin: 0 auto; padding: 0 28px; }

.l-display {
  font-family: var(--font-display); font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.025em; line-height: 0.96;
}
.l-display em {
  font-family: var(--font-display);
  font-weight: 350; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.l-mono { font-family: var(--font-mono); }
.l-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 13px); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
}
.l-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: currentColor;
}

/* === Storefront nav ===================================================== */
.l-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.l-nav-inner { display: flex; justify-content: space-between; align-items: center; }
.l-nav-brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--bone);
  font-family: var(--font-display); font-size: 24px;
  letter-spacing: -0.02em; line-height: 1;
}
.l-nav-brand-mark {
  width: 36px; height: 36px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.l-nav-brand-mark svg { width: 100%; height: 100%; }
.l-nav-brand-mark::after {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%; border: 1px dashed var(--gold);
  animation: spin 14s linear infinite;
  opacity: 0.5;
}
@keyframes spin { to { transform: rotate(360deg); } }
.l-nav-brand:hover { color: var(--gold); }
.l-nav-links { display: flex; align-items: center; gap: 28px; }
.l-nav-links a {
  color: var(--bone-soft); font-size: 13px; transition: color 0.2s ease;
  font-family: var(--font-mono); letter-spacing: 0.05em;
}
.l-nav-links a:hover { color: var(--gold); }
.l-nav-cta {
  padding: 10px 18px; border-radius: 999px;
  background: var(--gold); color: var(--ink) !important;
  font-weight: 500; font-family: var(--font-body) !important;
  letter-spacing: 0 !important; font-size: 13px !important;
}
.l-nav-cta:hover { background: var(--gold-soft); color: var(--ink) !important; }
@media (max-width: 768px) { .l-nav-links a:not(.l-nav-cta) { display: none; } }

/* === Hero =============================================================== */
.l-hero { position: relative; min-height: 100vh; padding: 160px 0 100px; overflow: hidden; }
.l-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(212, 165, 116, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% 90%, rgba(176, 72, 41, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200, 125, 82, 0.05) 0%, transparent 70%),
    var(--ink);
}
.l-hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245, 239, 225, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 225, 0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 5%, transparent 70%);
}
.l-hero-orn { position: absolute; opacity: 0.55; pointer-events: none; color: var(--gold); }
.l-hero-orn-1 { top: 12%; right: 8%; width: 240px; animation: drift1 22s ease-in-out infinite; }
.l-hero-orn-2 { bottom: 14%; left: 4%; width: 180px; animation: drift2 28s ease-in-out infinite; }
.l-hero-orn-3 { top: 35%; right: 28%; width: 90px; animation: drift3 18s ease-in-out infinite; opacity: 0.7; }
@keyframes drift1 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-20px, 30px) rotate(8deg); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(25px, -20px) rotate(-6deg); } }
@keyframes drift3 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(15px, 15px) rotate(180deg); } }

.l-hero-inner { position: relative; z-index: 1; }
.l-hero-grid { display: none; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }

.l-hero-kicker {
  display: flex; align-items: center; gap: 12px; margin-bottom: 48px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bone-dim);
  opacity: 0; animation: fade-up 0.6s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.l-hero-kicker .dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #6cbf82; box-shadow: 0 0 10px rgba(108, 191, 130, 0.7);
  animation: pulse 2s ease-in-out infinite;
}
.l-hero-kicker-sep { opacity: 0.4; }

.l-hero-headline {
  font-size: clamp(64px, 10vw, 140px) !important;
  line-height: 0.9 !important;
  max-width: none !important;
  margin-bottom: 48px !important;
  letter-spacing: -0.03em;
}
.l-hero-headline em { font-variation-settings: "opsz" 144, "SOFT" 100; }

.l-hero h1 { font-size: clamp(54px, 8.5vw, 132px); margin: 0 0 36px; max-width: 14ch; }
.l-hero h1 .word {
  display: inline-block;
  opacity: 0; transform: translateY(40px) rotateX(-25deg);
  animation: word-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes word-in { to { opacity: 1; transform: translateY(0) rotateX(0); } }
.l-hero h1 .accent { color: var(--gold); font-style: italic; position: relative; }
.l-hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8%;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  animation: underline-grow 1.4s 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes underline-grow { to { transform: scaleX(1); } }

.l-hero-sub {
  font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55;
  color: var(--bone-soft); max-width: 58ch; margin-bottom: 44px;
  opacity: 0; transform: translateY(20px);
  animation: fade-up 0.8s 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

.l-hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  opacity: 0; transform: translateY(20px);
  animation: fade-up 0.8s 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.l-hero-live-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; color: var(--bone-dim);
  text-decoration: none; transition: color 0.2s ease;
  letter-spacing: 0.04em;
}
.l-hero-live-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #6cbf82; box-shadow: 0 0 10px rgba(108, 191, 130, 0.7);
  animation: pulse 2s ease-in-out infinite;
}
.l-hero-live-badge strong { color: var(--bone-soft); font-weight: 500; }
.l-hero-live-badge:hover { color: var(--bone); }

.l-hero-status {
  border: 1px solid var(--rule); border-radius: 18px;
  padding: 28px;
  background: linear-gradient(160deg, rgba(212, 165, 116, 0.05), rgba(8, 9, 12, 0.4));
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(20px);
  animation: fade-up 0.9s 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  position: relative; overflow: hidden;
}
.l-hero-status::before {
  content: ""; position: absolute; top: 0; right: 0; width: 60%; height: 60%;
  background: radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.15), transparent 70%);
  pointer-events: none;
}
.l-hero-status-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px dashed var(--rule);
}
.l-hero-status-head .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-dim); }
.l-hero-status-head .live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; color: #6cbf82; }
.l-hero-status-head .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; box-shadow: 0 0 10px currentColor;
  animation: pulse 2s ease-in-out infinite;
}
.l-hero-status-name { font-family: var(--font-display); font-size: 28px; margin-bottom: 6px; line-height: 1.1; letter-spacing: -0.02em; }
.l-hero-status-tag { color: var(--bone-dim); font-size: 13px; font-family: var(--font-mono); margin-bottom: 22px; }
.l-hero-status-stat { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; }
.l-hero-status-stat .k { color: var(--bone-dim); }
.l-hero-status-stat .v { color: var(--bone); font-family: var(--font-mono); }
.l-hero-status-link {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--rule);
  color: var(--gold); font-size: 13px;
}

/* === Buttons ============================================================ */
.l-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-weight: 500; font-size: 15px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent; cursor: pointer; line-height: 1;
  font-family: var(--font-body);
  position: relative; overflow: hidden;
}
.l-btn-primary {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 12px 30px -10px rgba(212, 165, 116, 0.5);
}
.l-btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); color: var(--ink); box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 18px 40px -12px rgba(212, 165, 116, 0.6); }
.l-btn-ghost { background: transparent; color: var(--bone); border-color: var(--rule-bright); }
.l-btn-ghost:hover { border-color: var(--bone-soft); color: var(--bone); transform: translateY(-2px); }
.l-btn .arrow { transition: transform 0.25s ease; }
.l-btn:hover .arrow { transform: translateX(4px); }

/* === Marquee ============================================================ */
.l-marquee { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 22px 0; overflow: hidden; background: var(--ink); position: relative; }
.l-marquee-track { display: flex; gap: 56px; white-space: nowrap; animation: marquee 38s linear infinite; will-change: transform; }
.l-marquee-item { display: inline-flex; align-items: center; gap: 12px; color: var(--bone-soft); font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.04em; flex-shrink: 0; }
.l-marquee-item .star { color: var(--gold); font-size: 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === Section scaffolding ================================================ */
.l-section { padding: 140px 0; position: relative; }
.l-section-head { max-width: 780px; margin-bottom: 80px; display: grid; grid-template-columns: 1fr; gap: 18px; }
.l-section-head h2 { font-size: clamp(40px, 5vw, 72px); margin: 0; }
.l-section-head p { color: var(--bone-soft); font-size: 18px; line-height: 1.65; max-width: 60ch; }
.l-section-num { position: absolute; top: 60px; right: 28px; font-family: var(--font-mono); font-size: 11px; color: var(--bone-dim); letter-spacing: 0.2em; display: flex; align-items: center; gap: 12px; }
.l-section-num::before { content: ""; width: 60px; height: 1px; background: var(--rule-bright); }

/* === How it works ======================================================= */
.l-how { background: var(--ink-2); }
.l-how-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.l-how-grid::before { content: ""; position: absolute; top: 80px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent); opacity: 0.4; }
.l-step { padding: 20px 32px 0 32px; position: relative; border-left: 1px solid var(--rule); overflow: hidden; }
.l-step:first-child { border-left: none; padding-left: 0; }
.l-step[data-num]::before {
  content: attr(data-num);
  position: absolute; top: -0.15em; right: -0.1em;
  font-family: var(--font-display); font-size: clamp(120px, 18vw, 200px);
  font-weight: 350; line-height: 1; color: var(--bone);
  opacity: 0.04; pointer-events: none; user-select: none;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.l-step h3 { position: relative; z-index: 1; }
.l-step p { position: relative; z-index: 1; }
.l-step-meta { position: relative; z-index: 1; }
.l-step-marker {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 26px; color: var(--gold);
  margin-bottom: 32px; position: relative;
}
.l-step-marker::after { content: ""; position: absolute; inset: -6px; border: 1px dashed var(--gold); border-radius: 50%; opacity: 0.4; }
.l-step h3 { font-family: var(--font-display); font-size: 28px; font-weight: 350; margin-bottom: 14px; letter-spacing: -0.015em; line-height: 1.1; }
.l-step p { color: var(--bone-soft); line-height: 1.7; font-size: 15px; }
.l-step-meta { margin-top: 24px; padding-top: 16px; border-top: 1px dashed var(--rule); font-family: var(--font-mono); font-size: 11px; color: var(--bone-dim); letter-spacing: 0.1em; text-transform: uppercase; }

/* === Packages =========================================================== */
.l-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.l-pack {
  border: 1px solid var(--rule); border-radius: 20px; padding: 40px 36px;
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; transform-style: preserve-3d;
}
.l-pack::after {
  content: ""; position: absolute; inset: -1px; border-radius: 20px; padding: 1px;
  background: linear-gradient(180deg, var(--gold), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.l-pack:hover { transform: translateY(-6px); }
.l-pack:hover::after { opacity: 1; }
.l-pack-orn { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; opacity: 0.5; color: var(--gold); transition: transform 0.5s ease, opacity 0.3s ease; }
.l-pack:hover .l-pack-orn { transform: rotate(90deg) scale(1.1); opacity: 0.85; }

.l-pack-featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(212, 165, 116, 0.08), var(--ink-2) 60%); }
.l-pack-featured::before {
  content: "Most chosen"; position: absolute; top: -1px; left: 36px;
  background: var(--gold); color: var(--ink); padding: 6px 14px;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
}
.l-pack h3 { font-family: var(--font-display); font-size: 38px; font-weight: 350; margin-bottom: 6px; letter-spacing: -0.02em; }
.l-pack-tag { color: var(--bone-soft); font-size: 14px; margin-bottom: 28px; line-height: 1.45; }
.l-pack-price-label { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; }
.l-pack-price-num { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--bone); margin-bottom: 6px; font-weight: 350; letter-spacing: -0.025em; }
.l-pack-sla { font-family: var(--font-mono); font-size: 11px; color: var(--bone-dim); margin-top: 12px; padding-top: 22px; border-top: 1px dashed var(--rule); letter-spacing: 0.1em; text-transform: uppercase; }
.l-pack-features { list-style: none; padding: 28px 0; flex: 1; }
.l-pack-features li { padding: 10px 0 10px 32px; position: relative; font-size: 14px; color: var(--bone-soft); line-height: 1.5; }
.l-pack-features li::before { content: ""; position: absolute; left: 0; top: 18px; width: 18px; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.l-pack-features li::after { content: ""; position: absolute; left: 0; top: 13px; width: 7px; height: 7px; border: 1px solid var(--gold); border-radius: 50%; background: var(--ink); transition: background 0.3s ease; }
.l-pack:hover .l-pack-features li::before { width: 24px; }
.l-pack:hover .l-pack-features li::after { background: var(--gold); }

/* === Package Strips ===================================================== */
.l-packages { display: flex; flex-direction: column; gap: 0; }
.l-pack-strip {
  display: grid;
  grid-template-columns: 28% 1fr 22%;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s ease, padding 0.3s ease;
}
.l-pack-strip:last-child { border-bottom: 1px solid var(--rule); }
.l-pack-strip::before {
  content: ""; position: absolute; left: -28px; top: 0; bottom: 0; width: 2px;
  background: var(--gold); transform: scaleY(0); transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.l-pack-strip:hover { background: rgba(212, 165, 116, 0.03); }
.l-pack-strip:hover::before { transform: scaleY(1); }
.l-pack-strip--featured { border-top-color: rgba(212, 165, 116, 0.35); }
.l-pack-strip--featured::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(212, 165, 116, 0.04), transparent 70%);
  pointer-events: none;
}
.l-pack-strip-badge {
  position: absolute; top: -12px; left: 0;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  background: var(--ink-3); padding: 4px 12px; border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 999px;
}
.l-pack-strip-name {
  display: flex; flex-direction: column; gap: 8px;
}
.l-pack-strip-name em {
  font-family: var(--font-display); font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 350; font-style: italic; line-height: 1;
  letter-spacing: -0.025em; color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.l-pack-strip-tagline {
  font-size: 13px; color: var(--bone-dim); font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
.l-pack-strip-features {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.l-pack-strip-features li {
  font-size: 14px; color: var(--bone-soft); line-height: 1.5;
  padding-left: 20px; position: relative;
}
.l-pack-strip-features li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px; background: var(--gold);
}
.l-pack-strip-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.l-pack-strip-num {
  font-family: var(--font-mono); font-size: clamp(32px, 3vw, 48px);
  font-weight: 500; color: var(--gold); line-height: 1;
  letter-spacing: -0.02em;
}
.l-pack-strip-sla {
  font-family: var(--font-mono); font-size: 11px; color: var(--bone-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.l-pack-strip-cta {
  margin-top: 8px; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(212, 165, 116, 0.3); padding: 8px 16px;
  border-radius: 999px; transition: background 0.2s ease, border-color 0.2s ease;
}
.l-pack-strip-cta:hover { background: rgba(212, 165, 116, 0.08); border-color: var(--gold); }

/* === Portfolio ========================================================== */
.l-portfolio-bg { background: var(--ink-2); }
.l-portfolio-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; grid-auto-rows: 1fr; }
.l-case { border-radius: 20px; overflow: hidden; position: relative; background: var(--ink-3); border: 1px solid var(--rule); transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease; aspect-ratio: 4/3; display: block; color: inherit; }
.l-case:hover { transform: translateY(-6px) scale(1.005); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6); }
.l-case-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.l-case-img-wrap img, .l-case-svg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.l-case:hover .l-case-img-wrap img, .l-case:hover .l-case-svg { transform: scale(1.06); }
.l-case-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 9, 12, 0.15) 0%, rgba(8, 9, 12, 0.45) 38%, rgba(8, 9, 12, 0.92) 78%, rgba(8, 9, 12, 0.97) 100%); z-index: 1; }
.l-case-meta { position: absolute; left: 32px; right: 32px; bottom: 28px; z-index: 2; transform: translateY(8px); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.l-case:hover .l-case-meta { transform: translateY(0); }
.l-case-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.l-case-title { font-family: var(--font-display); font-size: 36px; margin-bottom: 8px; line-height: 1; letter-spacing: -0.025em; font-weight: 350; }
.l-case-desc { color: var(--bone-soft); font-size: 14px; line-height: 1.55; max-width: 38ch; }
.l-case-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 16px; }
.l-case-status { position: absolute; top: 24px; right: 24px; z-index: 2; font-family: var(--font-mono); font-size: 10px; padding: 6px 12px; border-radius: 999px; background: rgba(8, 9, 12, 0.6); backdrop-filter: blur(10px); color: var(--gold); border: 1px solid rgba(212, 165, 116, 0.3); letter-spacing: 0.15em; text-transform: uppercase; }
.l-case-status.demo { color: var(--bone-dim); border-color: var(--rule-bright); }
.l-case-status.live::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #6cbf82; margin-right: 6px; vertical-align: middle; box-shadow: 0 0 8px #6cbf82; }

/* === Calculator ========================================================= */
.l-calc { background: var(--ink); position: relative; padding-bottom: 160px; }
.l-calc-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.l-form-card { background: linear-gradient(180deg, var(--ink-2), var(--ink-3)); border: 1px solid var(--rule); border-radius: 24px; padding: 48px 44px; position: relative; }
.l-form-card::before { content: ""; position: absolute; inset: 0; border-radius: 24px; background: radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.05), transparent 50%); pointer-events: none; }
.l-field-group { padding: 32px 0; border-bottom: 1px solid var(--rule); position: relative; }
.l-field-group:first-child { padding-top: 0; }
.l-field-group:last-child { border-bottom: none; padding-bottom: 0; }
.l-field-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: flex; align-items: center; gap: 12px; }
.l-field-label .num { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }
.l-field-help { font-size: 13px; color: var(--bone-dim); margin-bottom: 18px; padding-left: 34px; }

.l-radio-group { display: grid; gap: 10px; }
.l-radio { display: block; cursor: pointer; position: relative; padding: 20px 22px; border: 1px solid var(--rule); border-radius: 14px; transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease; background: rgba(8, 9, 12, 0.4); }
.l-radio input { position: absolute; opacity: 0; pointer-events: none; }
.l-radio:hover { border-color: rgba(212, 165, 116, 0.4); transform: translateX(2px); }
.l-radio.is-checked { border-color: var(--gold); background: linear-gradient(180deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.02)); }
.l-radio-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.l-radio-name { font-weight: 500; font-size: 16px; }
.l-radio-price { color: var(--gold); font-size: 13px; font-family: var(--font-mono); }
.l-radio-tag { color: var(--bone-dim); font-size: 13px; margin-top: 4px; }

.l-checkbox-group { display: grid; gap: 8px; }
.l-checkbox { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border: 1px solid var(--rule); border-radius: 12px; cursor: pointer; background: rgba(8, 9, 12, 0.4); transition: border-color 0.3s ease, background 0.3s ease; }
.l-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.l-checkbox:hover { border-color: rgba(212, 165, 116, 0.4); }
.l-checkbox.is-checked { border-color: var(--gold); background: rgba(212, 165, 116, 0.06); }
.l-checkbox-box { width: 18px; height: 18px; border-radius: 5px; border: 1px solid var(--bone-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; transition: background 0.2s ease, border-color 0.2s ease; }
.l-checkbox.is-checked .l-checkbox-box { background: var(--gold); border-color: var(--gold); }
.l-checkbox.is-checked .l-checkbox-box::after { content: "✓"; color: var(--ink); font-size: 12px; font-weight: 700; }
.l-checkbox-meta { flex: 1; }
.l-checkbox-name { font-weight: 500; font-size: 15px; display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.l-checkbox-name .price { color: var(--gold); font-size: 12px; font-family: var(--font-mono); }
.l-checkbox-desc { color: var(--bone-dim); font-size: 13px; margin-top: 4px; line-height: 1.5; }

.l-text-input { width: 100%; background: rgba(8, 9, 12, 0.4); border: 1px solid var(--rule); border-radius: 12px; padding: 16px 18px; color: var(--bone); font-size: 15px; font-family: inherit; transition: border-color 0.2s ease, background 0.2s ease; }
.l-text-input:focus { outline: none; border-color: var(--gold); background: rgba(212, 165, 116, 0.04); }
.l-text-input::placeholder { color: var(--bone-dim); }
textarea.l-text-input { resize: vertical; min-height: 120px; line-height: 1.55; }
.l-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }

.l-summary { position: sticky; top: 110px; background: linear-gradient(180deg, var(--ink-2), var(--ink-3)); border: 1px solid var(--rule); border-radius: 24px; padding: 40px 36px; overflow: hidden; }
.l-summary::before { content: ""; position: absolute; top: -50%; right: -30%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(212, 165, 116, 0.10), transparent 60%); pointer-events: none; }
.l-summary-eyebrow { position: relative; }
.l-summary-total { font-family: var(--font-display); font-weight: 350; font-size: clamp(56px, 5vw, 72px); line-height: 1; margin: 14px 0 8px; letter-spacing: -0.025em; position: relative; }
.l-summary-total .currency { font-size: 0.5em; vertical-align: 0.55em; color: var(--gold); margin-right: 4px; }
.l-summary-note { color: var(--bone-dim); font-size: 13px; line-height: 1.6; margin-bottom: 24px; position: relative; }
.l-summary-line { display: flex; justify-content: space-between; padding: 12px 0; font-size: 14px; border-top: 1px dashed var(--rule); }
.l-summary-line:first-of-type { border-top: 1px solid var(--rule); margin-top: 16px; padding-top: 16px; }
.l-summary-line .name { color: var(--bone-soft); }
.l-summary-line .val { color: var(--bone); font-family: var(--font-mono); font-size: 13px; }
.l-summary-hosting { padding: 14px 0; color: var(--bone-dim); font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.05em; }
.l-summary-cta { width: 100%; margin-top: 22px; justify-content: center; }
.l-summary-foot { margin-top: 18px; font-size: 12px; color: var(--bone-dim); text-align: center; line-height: 1.6; font-family: var(--font-mono); letter-spacing: 0.02em; }
.l-summary-empty { color: var(--bone-dim); font-size: 14px; line-height: 1.6; margin-top: 16px; padding: 16px 0; border-top: 1px dashed var(--rule); }

.l-status { margin-top: 20px; padding: 18px 20px; border-radius: 12px; border: 1px solid; font-size: 14px; line-height: 1.55; }
.l-status.success { border-color: rgba(108, 191, 130, 0.4); background: rgba(108, 191, 130, 0.08); color: #b9e3c2; }
.l-status.error { border-color: rgba(176, 72, 41, 0.4); background: rgba(176, 72, 41, 0.08); color: #f0b3a1; }

/* === FAQ ================================================================ */
.l-faq { background: var(--ink-2); }
.l-faq-list { max-width: 880px; }
.l-faq-item { border-top: 1px solid var(--rule); transition: background 0.3s ease; }
.l-faq-item:last-child { border-bottom: 1px solid var(--rule); }
.l-faq-item:hover { background: rgba(212, 165, 116, 0.02); }
.l-faq-q { width: 100%; text-align: left; padding: 32px 0; background: none; border: none; cursor: pointer; color: var(--bone); font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); font-weight: 350; font-style: italic; letter-spacing: -0.02em; display: flex; justify-content: space-between; align-items: center; gap: 28px; transition: color 0.2s ease; font-variation-settings: "opsz" 144, "SOFT" 40; }
.l-faq-q:hover { color: var(--gold); }
.l-faq-q-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--rule-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.2s ease, background 0.2s ease; color: var(--gold); position: relative; }
.l-faq-q-icon::before, .l-faq-q-icon::after { content: ""; position: absolute; background: currentColor; }
.l-faq-q-icon::before { width: 12px; height: 1px; }
.l-faq-q-icon::after { width: 1px; height: 12px; transition: transform 0.3s ease; }
.l-faq-q[aria-expanded="true"] .l-faq-q-icon { transform: rotate(135deg); border-color: var(--gold); background: rgba(212, 165, 116, 0.1); }
.l-faq-a { overflow: hidden; color: var(--bone-soft); line-height: 1.75; font-size: 16px; }
.l-faq-a-inner { padding-bottom: 32px; max-width: 65ch; }

/* === About ============================================================== */
.l-about-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 80px; align-items: center; }
.l-about-photo { aspect-ratio: 4/5; border-radius: 24px; border: 1px solid var(--rule); overflow: hidden; position: relative; background: radial-gradient(ellipse at 30% 20%, rgba(212, 165, 116, 0.20), transparent 60%), linear-gradient(135deg, var(--ink-3), var(--ink-2)); }
.l-about-photo svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.l-about-photo .monogram { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: clamp(120px, 16vw, 200px); font-weight: 350; color: var(--gold); letter-spacing: -0.05em; }
.l-about-photo .badge { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(8, 9, 12, 0.85); backdrop-filter: blur(10px); border: 1px solid var(--rule); border-radius: 12px; padding: 14px 18px; font-family: var(--font-mono); font-size: 11px; color: var(--bone-soft); letter-spacing: 0.05em; display: flex; justify-content: space-between; align-items: center; }
.l-about-photo .badge .v { color: var(--gold); }

.l-about h2 { font-size: clamp(40px, 4.5vw, 64px); margin-bottom: 32px; }
.l-about p { color: var(--bone-soft); font-size: 18px; line-height: 1.7; margin-bottom: 20px; }
.l-about p strong { color: var(--bone); font-weight: 500; }
.l-about-quote { margin-top: 36px; padding: 28px 32px; border-left: 2px solid var(--gold); background: linear-gradient(90deg, rgba(212, 165, 116, 0.05), transparent); font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--bone); }
.l-about-stack { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.l-about-stack span { font-family: var(--font-mono); font-size: 11px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--rule-bright); color: var(--bone-soft); letter-spacing: 0.05em; }

/* === Final CTA ========================================================== */
.l-final { text-align: center; padding: 180px 28px; position: relative; overflow: hidden; border-top: 1px solid var(--rule); background: radial-gradient(ellipse at 30% 80%, rgba(212, 165, 116, 0.12), transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(176, 72, 41, 0.08), transparent 60%), var(--ink-2); }
.l-final::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(245, 239, 225, 0.022) 1px, transparent 1px); background-size: 100% 80px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); }
.l-final-inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; }
.l-final h2 { font-size: clamp(48px, 7vw, 100px); margin-bottom: 30px; max-width: 18ch; margin-left: auto; margin-right: auto; }
.l-final p { color: var(--bone-soft); max-width: 50ch; margin: 0 auto 40px; font-size: 19px; line-height: 1.6; }
.l-final--light {
  background: var(--bone) !important; border-top: none;
  color: var(--ink);
}
.l-final--light .l-eyebrow { color: var(--ink); opacity: 0.45; }
.l-final--light h2 { color: var(--ink); }
.l-final--light h2 em { color: var(--gold-deep); }
.l-final--light p { color: rgba(8, 9, 12, 0.6); }
.l-final--light .l-btn-primary {
  background: var(--ink); color: var(--bone);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.l-final--light .l-btn-primary:hover { background: var(--ink-3); }

/* === Footer ============================================================ */
.l-foot { background: var(--ink); border-top: 1px solid var(--rule); padding: 60px 0 40px; }
.l-foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.l-foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 16px; }
.l-foot-col a, .l-foot-col p { display: block; color: var(--bone-soft); font-size: 14px; padding: 4px 0; transition: color 0.2s ease; }
.l-foot-col a:hover { color: var(--gold); }
.l-foot-brand { font-family: var(--font-display); font-size: 28px; margin-bottom: 12px; letter-spacing: -0.02em; }
.l-foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--rule); font-family: var(--font-mono); font-size: 11px; color: var(--bone-dim); letter-spacing: 0.05em; }

/* === Mobile ============================================================ */
@media (max-width: 900px) {
  .l-hero { padding: 120px 0 80px; min-height: auto; }
  .l-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .l-hero-headline { font-size: clamp(52px, 12vw, 90px) !important; }
  .l-hero-live-badge { display: none; }
  .l-section { padding: 90px 0; }
  .l-section-num { display: none; }
  .l-how-grid { grid-template-columns: 1fr; }
  .l-how-grid::before { display: none; }
  .l-step { border-left: none; border-top: 1px solid var(--rule); padding: 32px 0 0 0; margin-top: 32px; overflow: visible; }
  .l-step:first-child { border-top: none; padding-top: 0; margin-top: 0; }
  .l-step[data-num]::before { font-size: 100px; opacity: 0.05; }
  .l-pack-strip { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .l-pack-strip-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 12px; align-items: center; }
  .l-pack-strip::before { display: none; }
  .l-portfolio-grid { grid-template-columns: 1fr; }
  .l-calc-grid { grid-template-columns: 1fr; }
  .l-summary { position: relative; top: auto; }
  .l-form-card { padding: 28px 24px; }
  .l-input-row { grid-template-columns: 1fr; gap: 12px; }
  .l-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .l-about-photo { max-width: 360px; margin: 0 auto; }
  .l-foot-grid { grid-template-columns: 1fr 1fr; }
  .l-final--light { padding: 100px 28px; }
}

/* === Reveal-on-scroll =================================================== */
.l-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.l-reveal.is-visible { opacity: 1; transform: translateY(0); }
.l-reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.l-reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.l-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.l-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.l-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.l-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
