/* =============================================================
   JOBBOX — styles.css
   Dark premium · minimal · red accent
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:      #0b0b0c;
  --bg-2:    #111113;
  --bg-3:    #18181b;
  --field:   #0d0d0f;
  --ink:     #f4f1ec;
  --ink-2:   #d6d1c8;
  --mute:    #948f87;
  --dim:     #5f5b56;
  --red:     #e3121b;
  --red-2:   #b80d15;
  --red-brand: #cf0b0b;
  --red-glow: rgba(227, 18, 27, .38);
  --line:    rgba(244, 241, 236, .09);
  --line-2:  rgba(244, 241, 236, .17);
  --paper:   #f3efe8;
  --paper-2: #e6e0d6;
  --paper-ink: #121213;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  --gutter: clamp(16px, 4vw, 40px);
  --maxw: 1240px;
  --nav-h: 72px;
  --radius: 18px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  background: var(--bg);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
ul, ol { padding: 0; list-style: none; }
fieldset { border: 0; padding: 0; min-width: 0; }
address { font-style: normal; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.container { width: min(var(--maxw), 100% - 2 * var(--gutter)); margin-inline: auto; }
.mono { font-family: var(--mono); letter-spacing: .02em; }
.muted { color: var(--mute); }
.ta-r { text-align: right; }
.ic { width: 1.15em; height: 1.15em; flex: none; fill: currentColor; }

.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: 11.5px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--mute);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--red); }
.kicker .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow); animation: pulse 2.4s var(--ease-soft) infinite;
}
.display {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.2vw, 4.3rem);
  font-weight: 600;
  line-height: 1.03;
  margin-top: 1.1rem;
}
.display em { font-style: italic; font-weight: 500; color: var(--ink-2); }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-2); max-width: 58ch; margin-top: 1.4rem; font-weight: 400; }
.section-head { max-width: 820px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .lead { margin-top: 1.2rem; }
.side-label { font-size: 11.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--mute); margin-bottom: 1rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-weight: 600; font-size: .95rem; color: var(--ink); border-bottom: 1px solid var(--red); padding-bottom: 2px; }
.link-arrow .ic { transition: transform .4s var(--ease-out); }
.link-arrow:hover .ic { transform: translateX(4px); }
kbd { font-family: var(--mono); font-size: .85em; padding: .1em .45em; border: 1px solid currentColor; border-radius: 5px; opacity: .9; }

/* =============================================================
   5. Components
   ============================================================= */
/* Buttons */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  height: var(--h); padding: 0 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: .93rem; letter-spacing: .01em; white-space: nowrap;
  transition: background-color .35s var(--ease-out), border-color .35s var(--ease-out), color .35s var(--ease-out), box-shadow .45s var(--ease-out), transform .45s var(--ease-out);
  will-change: transform;
}
.btn-sm { --h: 42px; padding: 0 1.1rem; font-size: .86rem; }
.btn-lg { --h: 60px; padding: 0 2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 30px -12px var(--red-glow); }
.btn-red:hover { background: #f21d26; box-shadow: 0 16px 44px -10px var(--red-glow); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--ink); background: rgba(11,11,12,.25); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(244,241,236,.06); }
.btn-light { background: var(--paper-ink); color: var(--paper); }
.btn-light:hover { background: #000; }
.btn-line { border: 1px dashed var(--line-2); color: var(--ink-2); }
.btn-line:hover { border-color: var(--red); color: var(--ink); }
.btn .ic { width: 1.2em; height: 1.2em; }
.btn:active { transform: scale(.98); }

/* Copy buttons */
.copy-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .8rem; border-radius: 999px; font-size: .78rem; font-weight: 700;
  background: var(--paper-ink); color: var(--paper);
  transition: background-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.copy-btn:hover { background: var(--red); }
.is-copied { background: var(--red) !important; color: #fff !important; }

/* Fields */
.field { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.field-label { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.field-label small { letter-spacing: .05em; text-transform: none; font-weight: 500; color: var(--dim); font-size: 11px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .8rem 1rem;
  background: var(--field); border: 1px solid var(--line-2); border-radius: 12px;
  color: var(--ink); font-size: 1rem;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), background-color .3s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 76px; }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%23948f87' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px;
}
.field select option { background: var(--bg-2); color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(244,241,236,.3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(227,18,27,.14); }
.field-hint { font-size: .8rem; color: var(--mute); min-height: 1.2em; }
.field-hint.is-detected { color: #7fd99a; }
.field-err { display: none; font-size: .8rem; color: #ff6b6b; }
.field.is-invalid input, .field.is-invalid select { border-color: #ff5a5a; }
.field.is-invalid .field-err { display: block; }
.field.is-invalid .field-hint { display: none; }
input[type=number]::-webkit-inner-spin-button { opacity: .4; }

/* Checkbox */
.check { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; font-size: .95rem; color: var(--ink-2); line-height: 1.45; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check .box {
  flex: none; width: 22px; height: 22px; border-radius: 7px; border: 1px solid var(--line-2); background: var(--field);
  display: grid; place-items: center; margin-top: 1px; transition: all .3s var(--ease-out);
}
.check .box::after { content: ""; width: 10px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) scale(0); margin-top: -2px; transition: transform .3s var(--ease-out); }
.check input:checked + .box { background: var(--red); border-color: var(--red); }
.check input:checked + .box::after { transform: rotate(-45deg) scale(1); }
.check input:focus-visible + .box { outline: 2px solid var(--red); outline-offset: 3px; }
.check.is-invalid .box { border-color: #ff5a5a; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 300;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  padding: .8rem 1.2rem; border-radius: 999px; background: var(--ink); color: var(--bg);
  font-weight: 700; font-size: .9rem; box-shadow: 0 20px 50px -20px rgba(0,0,0,.8);
  transition: opacity .35s var(--ease-out), transform .45s var(--ease-out);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* =============================================================
   6. Sections
   ============================================================= */

/* ---------- Splash ---------- */
.splash {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: var(--bg);
  transition: opacity .7s var(--ease-out), visibility .7s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-inner { display: grid; justify-items: center; gap: 28px; }
.splash img { width: min(340px, 64vw); animation: splashLogo 1.2s var(--ease-out) both; }
.splash-bar { width: 140px; height: 1px; background: var(--line-2); overflow: hidden; }
.splash-bar span { display: block; height: 100%; width: 100%; background: var(--red); transform-origin: left; animation: splashBar 1.1s .2s var(--ease-out) both; }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@keyframes splashLogo { from { opacity: 0; transform: translateY(10px) scale(.97); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes splashBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  transition: background-color .4s var(--ease-out), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(11,11,12,.9); border-bottom-color: var(--line); }
@supports (backdrop-filter: blur(10px)) {
  .nav.is-scrolled { background: rgba(11,11,12,.66); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); }
}
.nav-inner { height: 100%; width: min(1360px, 100% - 2 * var(--gutter)); margin-inline: auto; display: flex; align-items: center; gap: 1.5rem; }
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: none; gap: 2rem; margin-left: auto; font-size: .9rem; font-weight: 500; color: var(--ink-2); }
.nav-links a { position: relative; padding: .4rem 0; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.is-active { color: var(--ink); }
.nav-cta { margin-left: auto; }
.nav-burger { width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; border-radius: 50%; border: 1px solid var(--line-2); }
.nav-burger span { width: 18px; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease-out); }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: rgba(11,11,12,.97);
  padding: calc(var(--nav-h) + 24px) var(--gutter) 32px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  animation: menuIn .5s var(--ease-out);
}
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.5rem, 6vw, 2rem); }
.mobile-menu nav a span { font-family: var(--mono); font-size: .75rem; color: var(--red); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 32px; isolation: isolate; overflow: clip;
}
.hero-bg { position: absolute; inset: -6% 0 0; z-index: -3; }
.hero-bg img { width: 100%; height: 106%; object-fit: cover; object-position: 60% 60%; filter: grayscale(.35) brightness(.5) contrast(1.08); will-change: transform; }
.hero-tint {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 12% 30%, rgba(227,18,27,.20), transparent 70%),
    linear-gradient(90deg, rgba(11,11,12,.94) 0%, rgba(11,11,12,.72) 45%, rgba(11,11,12,.35) 100%),
    linear-gradient(180deg, rgba(11,11,12,.55) 0%, transparent 30%, transparent 62%, var(--bg) 100%);
}
.hero-arc { position: absolute; inset: 10% 0 auto; width: 100%; height: 70%; z-index: -1; color: rgba(244,241,236,.28); pointer-events: none; }
.hero-arc path { animation: arcFlow 30s linear infinite; }
@keyframes arcFlow { to { stroke-dashoffset: -440; } }

.hero-grid { display: grid; gap: 48px; align-items: center; }
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.8rem, 8.2vw, 6.6rem); line-height: .98; letter-spacing: -0.03em;
  margin-top: 1.4rem;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.06em; }
.hero-title .line > span { display: inline-block; }
.hero-title em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(transparent 88%, var(--red) 88%, var(--red) 94%, transparent 94%) no-repeat;
  background-size: 100% 100%;
}
.hero-sub { max-width: 52ch; margin-top: 1.6rem; font-size: clamp(1rem, 1.35vw, 1.15rem); color: var(--ink-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }

.hero-in { animation: heroIn 1.1s calc(1.05s + var(--d, 0) * .12s) var(--ease-out) both; }
.hero-title .hero-in { animation-name: heroLine; animation-duration: 1.2s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroLine { from { transform: translateY(105%); } to { transform: none; } }

/* Boarding pass */
.pass-wrap { width: 100%; max-width: 460px; justify-self: start; }
@media (min-width: 960px) { .pass-wrap { max-width: 420px; justify-self: end; } }
.pass {
  --cut: 150px;
  position: relative; width: 100%;
  background: linear-gradient(160deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--paper-ink); border-radius: 22px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.06);
  -webkit-mask: radial-gradient(circle 12px at 0 var(--cut), #0000 97%, #000) left / 51% 100% no-repeat,
                radial-gradient(circle 12px at 100% var(--cut), #0000 97%, #000) right / 51% 100% no-repeat;
          mask: radial-gradient(circle 12px at 0 var(--cut), #0000 97%, #000) left / 51% 100% no-repeat,
                radial-gradient(circle 12px at 100% var(--cut), #0000 97%, #000) right / 51% 100% no-repeat;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .6s var(--ease-out);
}
.pass-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px 0; }
.pass-brand { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; }
.pass-label { font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: #6d6860; }
.pass-route { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 18px 24px 22px; }
.pass-route strong { display: block; font-family: var(--serif); font-size: 2.6rem; line-height: 1; letter-spacing: -.01em; }
.pass-route small { display: block; font-size: .72rem; color: #6d6860; margin-top: 4px; font-weight: 600; }
.pass-line { display: flex; align-items: center; gap: 8px; color: var(--red); }
.pass-line span { flex: 1; height: 0; border-top: 1.5px dashed rgba(18,18,19,.3); }
.pass-line .ic { width: 22px; height: 22px; }
.pass-cut { height: 0; border-top: 1.5px dashed rgba(18,18,19,.22); margin: 0 18px; }
.pass-body { padding: 20px 24px 22px; }
.pass-field-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #6d6860; }
.pass-code { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 6px; }
.pass-code .mono { font-size: clamp(1.5rem, 3.4vw, 1.9rem); font-weight: 500; color: var(--red); letter-spacing: .04em; }
.pass-meta { display: grid; gap: 8px; margin: 18px 0; font-size: .86rem; }
.pass-meta div { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(18,18,19,.08); }
.pass-meta dt { color: #6d6860; font-weight: 600; }
.pass-meta dd { font-weight: 700; text-align: right; }
.pass-barcode {
  height: 38px; margin-top: 18px; opacity: .85;
  background: repeating-linear-gradient(90deg, var(--paper-ink) 0 2px, transparent 2px 4px, var(--paper-ink) 4px 5px, transparent 5px 8px, var(--paper-ink) 8px 11px, transparent 11px 12px, var(--paper-ink) 12px 13px, transparent 13px 17px);
}

.hero-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 20px;
  margin-top: clamp(40px, 7vh, 80px); padding-top: 22px; border-top: 1px solid var(--line);
  font-size: .86rem; color: var(--ink-2); font-weight: 500;
}
.hero-strip li { display: flex; align-items: center; gap: .6rem; }
.hero-strip .ic { color: var(--red); }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: var(--bg); }
.marquee-track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2.1rem); color: var(--ink-2); white-space: nowrap; }
.marquee i { font-style: normal; color: var(--red); font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section base ---------- */
.section { position: relative; padding: clamp(88px, 12vw, 160px) 0; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 48px; align-items: center; }
.about-copy .muted { margin-top: 1.2rem; max-width: 58ch; }
.about-figure { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4 / 5; max-height: 640px; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.05) brightness(.9); transition: transform 1.4s var(--ease-out); }
.about-figure:hover img { transform: scale(1.04); }
.about-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,11,12,.85)); }
.about-figure figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; display: flex; gap: 1rem; align-items: baseline; font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.about-figure figcaption .mono { font-style: normal; font-size: .72rem; color: var(--red); letter-spacing: .1em; }

.pillars { display: grid; gap: 0; margin-top: clamp(64px, 9vw, 120px); border-top: 1px solid var(--line); }
.pillar { padding: 32px 0; border-bottom: 1px solid var(--line); }
.pillar-num { font-family: var(--mono); font-size: .78rem; color: var(--red); }
.pillar h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin: .8rem 0 .6rem; }
.pillar p { color: var(--mute); max-width: 40ch; }

/* ---------- Route (signature) ---------- */
.route { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }
.route-grid { display: grid; gap: 24px; }
.route-visual { position: sticky; top: calc(var(--nav-h) + 8px); z-index: 3; }
.route-card {
  position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: 22px;
  padding: 14px 14px 12px; box-shadow: 0 30px 60px -40px rgba(0,0,0,.9);
}
.route-svg { width: 100%; height: min(24svh, 210px); color: var(--ink); }
.route-base { stroke: var(--line-2); stroke-width: 1.5; stroke-dasharray: 3 7; }
.route-draw { stroke: var(--red); stroke-width: 2.6; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(227,18,27,.55)); }
.route-node circle { fill: var(--bg-2); stroke: var(--line-2); stroke-width: 1.5; transition: stroke .4s, fill .4s; }
.route-node .core { fill: var(--dim); stroke: none; }
.route-node.is-on circle { stroke: var(--red); }
.route-node.is-on .core { fill: var(--red); }
.route-plane { color: var(--ink); }
.route-plane use { fill: var(--ink); }
.plane-halo { fill: rgba(227,18,27,.22); stroke: rgba(227,18,27,.5); stroke-width: 1; }
.route-tag { font-family: var(--serif); font-weight: 700; font-size: 22px; fill: var(--ink); }
.route-coord { font-family: var(--mono); font-size: 10px; fill: var(--mute); letter-spacing: .04em; }
.route-progress { display: flex; justify-content: space-between; align-items: center; padding: 10px 6px 2px; border-top: 1px solid var(--line); margin-top: 6px; font-size: .78rem; font-weight: 600; color: var(--ink-2); }
.route-progress .mono { color: var(--red); }

.route-steps { display: grid; }
.route-step { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 44px 0 44px; min-height: 56svh; align-content: end; border-bottom: 1px solid var(--line); transition: opacity .5s var(--ease-out); }
.route-step:last-child { border-bottom: 0; }
.js .route-step:not(.is-active) { opacity: .32; }
.step-num { font-family: var(--serif); font-style: italic; font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: .9; color: var(--red); }
.route-step h3 { display: flex; align-items: center; gap: .6rem; font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -.01em; }
.route-step h3 .ic { color: var(--mute); }
.route-step p { color: var(--ink-2); margin-top: .8rem; max-width: 50ch; }
.route-step strong { color: var(--ink); }
.route-step .mono { color: var(--red); }

/* ---------- Address ---------- */
.address-grid { display: grid; gap: 28px; align-items: start; }
.address-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px; padding: clamp(18px, 3vw, 32px); }
.store-tabs { display: flex; flex-wrap: wrap; gap: 4px; padding: 4px; background: var(--field); border: 1px solid var(--line); border-radius: 999px; width: fit-content; max-width: 100%; }
.store-tabs button { padding: .55rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 700; color: var(--mute); transition: all .35s var(--ease-out); }
.store-tabs button:hover { color: var(--ink); }
.store-tabs button[aria-selected="true"] { background: var(--ink); color: var(--bg); }
.addr-list { margin-top: 20px; display: grid; }
.addr-list li { display: grid; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.addr-k { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.addr-v {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; width: 100%;
  text-align: left; font-size: 1.08rem; font-weight: 600; padding: 6px 10px; margin: 0 -10px; width: calc(100% + 20px);
  border-radius: 10px; transition: background-color .3s var(--ease-out), color .3s;
  word-break: break-word;
}
.addr-v .ic { color: var(--dim); transition: color .3s, transform .3s var(--ease-out); }
.addr-v:hover { background: rgba(244,241,236,.05); }
.addr-v:hover .ic { color: var(--ink); transform: scale(1.1); }
.addr-v.is-copied { background: rgba(227,18,27,.14) !important; color: var(--ink) !important; }
.addr-v.is-copied .ic { color: var(--red); }
.addr-list li.is-key { border: 1px solid rgba(227,18,27,.5); background: rgba(227,18,27,.07); border-radius: 14px; padding: 14px 16px; margin: 8px 0; }
.addr-list li.is-key .addr-k { color: #ff6f6f; }
.addr-list li.is-key .addr-v { font-size: 1.6rem; color: #ff4d55; font-weight: 500; }
.store-tip { display: flex; gap: .7rem; margin-top: 18px; padding: 14px 16px; border-radius: 14px; background: var(--field); border: 1px solid var(--line); font-size: .92rem; color: var(--ink-2); }
.store-tip .ic { color: var(--red); margin-top: 3px; }
.store-tip strong { color: var(--ink); }

.alert-key { display: flex; gap: 16px; padding: 22px; border-radius: 20px; background: linear-gradient(145deg, var(--red) 0%, var(--red-2) 100%); color: #fff; box-shadow: 0 30px 60px -30px var(--red-glow); margin-bottom: 28px; }
.alert-mark { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--red); font-family: var(--serif); font-weight: 700; font-size: 1.6rem; }
.alert-title { font-weight: 800; font-size: 1.15rem; margin-bottom: .3rem; }
.alert-title .mono { font-weight: 500; }
.alert-key p:not(.alert-title) { font-size: .92rem; opacity: .92; }
.guides { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.guide { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 4; border: 1px solid var(--line); background: var(--bg-2); text-align: left; }
.guide img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 1s var(--ease-out), filter .6s; filter: brightness(.82); }
.guide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,11,12,.92)); }
.guide span { position: absolute; left: 14px; bottom: 12px; z-index: 1; display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .9rem; }
.guide:hover img { transform: scale(1.06); filter: brightness(1); }

/* ---------- Rates ---------- */
.rates { background: var(--bg-2); border-block: 1px solid var(--line); }
.rates-grid { display: grid; gap: 48px; align-items: center; }
.checks { display: grid; gap: 12px; margin-top: 2rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-2); }
.checks .ic { color: var(--red); margin-top: 3px; }
.calc { background: var(--bg); border: 1px solid var(--line-2); border-radius: 26px; padding: clamp(20px, 3vw, 34px); display: grid; gap: 22px; box-shadow: 0 50px 90px -50px rgba(0,0,0,.95); }
.calc-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.calc-title { display: flex; align-items: center; gap: .6rem; font-weight: 700; }
.calc-title .ic { color: var(--red); }
.calc-rate { font-size: .85rem; color: var(--mute); }
.calc-rate strong { color: var(--ink); font-weight: 500; }
.weight-row { display: flex; gap: 10px; }
.weight-row input { flex: 1; font-family: var(--mono); font-size: 1.2rem !important; }
.unit-toggle { display: flex; padding: 4px; border-radius: 12px; background: var(--field); border: 1px solid var(--line-2); }
.unit-toggle button { padding: 0 16px; border-radius: 9px; font-weight: 700; font-size: .9rem; color: var(--mute); transition: all .3s var(--ease-out); }
.unit-toggle button[aria-checked="true"] { background: var(--ink); color: var(--bg); }
.field input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px; min-height: 0; padding: 0; border: 0; border-radius: 4px; margin: 16px 0 6px;
  background: linear-gradient(90deg, var(--red) var(--fill, 0%), var(--line-2) var(--fill, 0%)); box-shadow: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--ink); border: 4px solid var(--red); cursor: pointer; }
input[type=range]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--ink); border: 4px solid var(--red); cursor: pointer; }
.calc-out { display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; }
.calc-out > div { padding: 16px 18px; border-radius: 16px; background: var(--bg-2); border: 1px solid var(--line); display: grid; gap: 4px; }
.calc-k { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.calc-v { font-size: 1.25rem; }
.calc-total { background: linear-gradient(145deg, rgba(227,18,27,.16), rgba(227,18,27,.04)) !important; border-color: rgba(227,18,27,.4) !important; }
.calc-big { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; font-weight: 600; }
.calc-note { font-size: .8rem; color: var(--mute); margin-top: -8px; }

/* ---------- Pre-alert ---------- */
.prealert { background: radial-gradient(70% 50% at 85% 0%, rgba(227,18,27,.09), transparent 70%); }
.prealert-grid { display: grid; gap: 28px; align-items: start; }
.pa-form { position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: 26px; padding: clamp(18px, 3.2vw, 40px); display: grid; gap: 34px; }
.pa-block { display: grid; gap: 18px; }
.pa-block legend { display: flex; align-items: center; gap: .75rem; font-weight: 800; font-size: 1.05rem; margin-bottom: 18px; padding: 0; }
.pa-step { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; font-size: .8rem; font-weight: 800; }
.pa-row { display: grid; gap: 16px; }
.pa-packages { display: grid; gap: 18px; }
.pa-pkg { display: grid; gap: 16px; padding: 18px; border-radius: 18px; border: 1px solid var(--line); background: rgba(11,11,12,.5); animation: pkgIn .5s var(--ease-out); }
@keyframes pkgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.pa-pkg-head { display: flex; justify-content: space-between; align-items: center; }
.pa-pkg-title { font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.pa-remove { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-2); color: var(--mute); transition: all .3s; }
.pa-remove:hover { color: #fff; border-color: var(--red); background: var(--red); }
.pa-block > .btn-line { justify-self: start; }
.pa-options { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.check-invoice { padding: 14px 16px; border-radius: 14px; border: 1px dashed var(--line-2); }
.invoice-err { margin-top: -8px; }
.invoice-err.is-on { display: block; }
.pa-submit { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; padding-top: 8px; border-top: 1px solid var(--line); padding-top: 26px; }
.pa-legal { font-size: .86rem; color: var(--mute); max-width: 44ch; }
.pa-legal strong { color: var(--ink-2); }
.pa-done { display: flex; gap: 20px; align-items: flex-start; padding: 22px; border-radius: 18px; background: rgba(38, 190, 100, .08); border: 1px solid rgba(38,190,100,.35); outline: none; }
.done-check { flex: none; width: 52px; height: 52px; }
.done-check circle { stroke: #3ccf7a; stroke-width: 2; stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw .8s var(--ease-out) forwards; }
.done-check path { stroke: #3ccf7a; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .5s .6s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.done-title { font-weight: 800; font-size: 1.15rem; margin-bottom: .3rem; }
.pa-done p { color: var(--ink-2); font-size: .95rem; margin-bottom: 14px; }
.pa-done a, .linklike { color: var(--ink); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; font-weight: 700; padding: 0; }

.pa-help { display: grid; gap: 10px; }
.help { border: 1px solid var(--line); border-radius: 16px; background: var(--bg-2); transition: border-color .3s; }
.help[open] { border-color: var(--line-2); }
.help summary { list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 700; font-size: .93rem; display: flex; justify-content: space-between; gap: 12px; }
.help summary::-webkit-details-marker { display: none; }
.help summary::after { content: "+"; color: var(--red); font-weight: 500; font-size: 1.2rem; line-height: 1; transition: transform .35s var(--ease-out); }
.help[open] summary::after { transform: rotate(45deg); }
.help p { padding: 0 18px 18px; color: var(--mute); font-size: .9rem; }
.help strong { color: var(--ink-2); }

/* ---------- Services ---------- */
.services { overflow: clip; }
.services-hero { position: absolute; inset: 0 0 auto; height: min(640px, 80vh); z-index: -1; }
.services-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: .5; filter: grayscale(.25); }
.services-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(11,11,12,.55) 35%, rgba(11,11,12,.7) 60%, var(--bg) 100%); }
.services { isolation: isolate; }
.svc-grid { display: grid; gap: 14px; }
.svc {
  --mx: 50%; --my: 0%;
  position: relative; padding: 30px 26px 28px; border-radius: var(--radius); overflow: hidden;
  background: rgba(17,17,19,.92); border: 1px solid var(--line);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .6s var(--ease-out), border-color .4s;
}
@supports (backdrop-filter: blur(10px)) {
  .svc { background: rgba(17,17,19,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}
.svc::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; background: radial-gradient(360px circle at var(--mx) var(--my), rgba(227,18,27,.18), transparent 60%); transition: opacity .4s; }
.svc:hover { border-color: rgba(227,18,27,.45); }
.svc:hover::before { opacity: 1; }
.svc-ic { width: 30px; height: 30px; color: var(--red); }
.svc h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; margin: 26px 0 .6rem; }
.svc p { color: var(--mute); font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; gap: 40px; }
.faq-head .muted { margin: 1.2rem 0 1.6rem; max-width: 36ch; }
.faq-list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 500; transition: color .3s; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: #fff; }
.qa-ic { position: relative; flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); transition: all .4s var(--ease-out); }
.qa-ic::before, .qa-ic::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); transition: transform .4s var(--ease-out); }
.qa-ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa[open] .qa-ic { background: var(--red); border-color: var(--red); color: #fff; }
.qa[open] .qa-ic::after { transform: translate(-50%, -50%) rotate(0deg); }
.qa p { padding: 0 60px 26px 0; color: var(--mute); max-width: 68ch; }
.qa a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
.qa .mono { color: var(--ink-2); }

/* ---------- CTA (brand red) ---------- */
.cta { background: var(--red-brand); color: #fff; padding: clamp(80px, 11vw, 140px) 0; position: relative; overflow: clip; }
.cta-dm { width: 100%; margin-top: 64px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,.55); text-align: right; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #0b0b0c; }
.cta-dm a { border-bottom: 1px solid currentColor; }
.cta-inner { position: relative; z-index: 1; display: grid; justify-items: center; text-align: center; }
.cta-logo { width: min(240px, 50vw); }
.cta-title { font-family: var(--sans); font-weight: 800; font-size: clamp(3.6rem, 13vw, 9.5rem); line-height: .86; letter-spacing: -.05em; text-transform: uppercase; margin-top: 44px; }
.cta-sub { max-width: 46ch; margin-top: 1.4rem; font-size: 1.05rem; color: rgba(255,255,255,.9); }
.social-actions { display: grid; grid-template-columns: repeat(4, auto); gap: clamp(18px, 5vw, 64px); margin-top: 48px; }
.sa { display: grid; justify-items: center; gap: 10px; color: #0b0b0c; transition: transform .45s var(--ease-out); }
.sa .ic { width: clamp(38px, 6vw, 58px); height: clamp(38px, 6vw, 58px); }
.sa span { font-weight: 800; font-style: italic; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.sa:hover { transform: translateY(-6px); }
.save-hint { margin-top: 26px; font-size: .9rem; color: rgba(255,255,255,.92); max-width: 52ch; }

/* ---------- Footer ---------- */
.footer { background: #070708; border-top: 1px solid var(--line); padding: 72px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; gap: 36px; }
.footer-brand img { width: 170px; }
.footer-tag { margin-top: 14px; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--mute); }
.footer-h { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); margin-bottom: 14px; }
.footer address { color: var(--ink-2); line-height: 1.8; }
.footer address .mono { color: var(--red); }
.footer-links { display: grid; gap: 8px; color: var(--ink-2); }
.footer-links a { display: inline-flex; align-items: center; gap: .55rem; transition: color .3s; }
.footer-links a:hover { color: #fff; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--dim); font-size: .82rem; }
.footer-base a:hover { color: var(--ink); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 14px 34px -10px rgba(37,211,102,.55);
  transition: transform .45s var(--ease-out), opacity .4s;
}
.wa-float .ic { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Lightbox ---------- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 94vw; max-height: 94vh; overflow: visible; }
.lightbox::backdrop { background: rgba(5,5,6,.88); backdrop-filter: blur(6px); }
.lightbox img { max-width: 94vw; max-height: 90vh; width: auto; border-radius: 14px; box-shadow: 0 40px 100px -30px #000; }
.lightbox-close { position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--bg); display: grid; place-items: center; z-index: 1; }

/* =============================================================
   7. Effects — reveal
   ============================================================= */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); transition-delay: var(--rd, 0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }
/* Defensive: split-text elements must never stay hidden */
.reveal[data-split] { opacity: 1; transform: none; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--red-glow); }
  70% { box-shadow: 0 0 0 10px rgba(227,18,27,0); }
  100% { box-shadow: 0 0 0 0 rgba(227,18,27,0); }
}

/* =============================================================
   8. Responsive
   ============================================================= */
@media (max-width: 539px) {
  .nav-cta span { display: none; }
  .nav-cta { width: 42px; padding: 0; }
  .hero-actions .btn { width: 100%; }
  .pass-wrap { justify-self: stretch; max-width: none; }
  .pass-route strong { font-size: 2.1rem; }
  .calc-out { grid-template-columns: 1fr; }
  .social-actions { grid-template-columns: repeat(2, auto); gap: 28px 56px; }
  .qa p { padding-right: 0; }
  .pa-submit .btn { width: 100%; }
  .pa-done { flex-direction: column; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

@media (min-width: 540px) {
  .pa-row.cols-3 { grid-template-columns: 1fr 1fr; }
  .pa-row.cols-3 .span-2 { grid-column: span 2; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .hero-strip { grid-template-columns: repeat(4, auto); justify-content: space-between; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 40px; border-top: 0; }
  .pillar { border-bottom: 0; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { margin-left: 1rem; }
  .nav-burger { display: none; }
  .hero-grid { grid-template-columns: 1.25fr .75fr; gap: 64px; }
  .about-grid { grid-template-columns: 1.1fr .9fr; gap: 80px; }
  .route-grid { grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
  .route-visual { top: calc(var(--nav-h) + 40px); }
  .route-card { padding: 22px 22px 16px; }
  .route-svg { height: min(62svh, 520px); }
  .route-step { min-height: 70svh; padding: 60px 0; gap: 32px; align-content: center; }
  .address-grid { grid-template-columns: 1.15fr .85fr; gap: 40px; }
  .address-side { position: sticky; top: calc(var(--nav-h) + 24px); }
  .rates-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .prealert-grid { grid-template-columns: 1fr 300px; gap: 32px; }
  .pa-help { position: sticky; top: calc(var(--nav-h) + 24px); }
  .pa-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .pa-row.cols-3 .span-2 { grid-column: span 2; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
  .faq-head { position: sticky; top: calc(var(--nav-h) + 40px); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (min-width: 1280px) {
  .prealert-grid { grid-template-columns: 1fr 340px; }
}

/* Hover-only effects */
@media (hover: none) {
  .svc::before { display: none; }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .kicker .dot { animation: none; }
  .hero-bg img { transform: none !important; }
}
