/* ============================================
   SPEE ALIGNER — faithful rebuild of the live design
   Palette: paper #f5f4f1 · ink #0a0a0b · brand red #DD1F2C · Geist
   ============================================ */

/* --- Reset & base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
  --paper: #f5f4f1;
  --ink: #0a0a0b;
  --muted: #4a4a52;
  --dim: #8a8a92;
  --red: #dd1f2c;
  --line: rgba(10,10,11,0.10);
  --nav-h: 76px;
  --font: 'Geist', 'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: var(--font);
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background-color: var(--paper);
  background-image: url('../images/body-bg.jpg');
  background-repeat: repeat;
  background-size: 180px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
::selection { background: var(--red); color: #fff; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 1000; display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(245,244,241,0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(0,0,0,.04);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 6%;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img {
  height: 42px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(221,31,44,.22));
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.nav__logo:hover img { transform: rotate(-6deg) scale(1.05); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 13.5px; font-weight: 500; letter-spacing: .01em;
  color: var(--muted); position: relative; transition: color .2s ease;
}
.nav__link:hover, .nav__link.active { color: var(--red); }
.nav__link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--red); border-radius: 1px;
}
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; padding: 11px 20px;
  color: #fff; background: var(--ink); border: 1px solid var(--ink);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 4px 16px -4px rgba(0,0,0,.12);
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.nav__cta:hover {
  background: var(--red); border-color: var(--red); transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(221,31,44,.18), 0 12px 28px -6px rgba(221,31,44,.4);
}
.nav__toggle { display: none; width: 26px; height: 26px; }
.nav__toggle svg { width: 100%; height: 100%; fill: var(--ink); }

.nav__mobile {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 999;
  background: var(--paper); padding: 32px 6%;
  display: none; flex-direction: column; gap: 6px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 20px; font-weight: 500; color: var(--ink);
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.nav__mobile a.nav__cta {
  color: #fff; justify-content: center; border-radius: 10px; margin-top: 16px; border-bottom: none;
}

/* --- Back to top --- */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff; border-radius: 50%;
  box-shadow: 0 8px 24px rgba(221,31,44,.3);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s; z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #c2101d; transform: translateY(-3px); }

/* nav offset for fixed header on inner pages */
.page-offset { height: var(--nav-h); }

/* ============================================
   LIVE SECTIONS (captured verbatim from speealigner.com)
   ============================================ */

/* --- #sph HERO --- */
#sph, #sph * { box-sizing: border-box; -webkit-font-smoothing: antialiased; font-family: var(--font); font-feature-settings: "ss01","cv11"; }
#sph { position: relative; width: 100%; background: transparent; padding: clamp(120px,18vh,180px) 6% clamp(80px,12vh,140px); color: #0a0a0b; overflow: hidden; }
#sph-inner { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
#sph-h1 { font-weight: 500; font-size: clamp(34px,4.8vw,68px); line-height: 1.18; letter-spacing: -0.035em; color: #0a0a0b; margin-bottom: 48px; width: 100%; display: flex; flex-direction: column; gap: 18px; }
#sph-h1 .sph-row { display: flex; align-items: baseline; gap: clamp(18px,2.4vw,32px); position: relative; padding-top: 18px; border-top: 1px solid rgba(10,10,11,.08); }
#sph-h1 .sph-row-1 { border-top: none; padding-top: 0; }
#sph-h1 .sph-row .sph-text { display: block; overflow: hidden; padding-bottom: 0.1em; flex: 1 1 0; min-width: 0; }
#sph-h1 .sph-row .sph-text > i { display: inline-block; font-style: normal; transform: translateY(112%); transition: transform 1.05s cubic-bezier(.22,1,.36,1); }
#sph-h1 .sph-row.si .sph-text > i { transform: translateY(0); }
#sph-h1 .sph-row-1 .sph-text > i { transition-delay: .12s; }
#sph-h1 .sph-row-2 .sph-text > i { transition-delay: .28s; }
#sph-h1 .sph-row-3 .sph-text > i { transition-delay: .44s; }
#sph-h1 .sph-w { color: #8a8a92; font-weight: 400; }
#sph-h1 .sph-em { font-weight: 600; color: #0a0a0b; }
#sph-h1 .sph-mark { position: relative; display: inline-block; color: #0a0a0b; font-weight: 600; z-index: 1; }
#sph-h1 .sph-mark::after { content: ""; position: absolute; left: -4px; right: -4px; bottom: .06em; height: .2em; background: var(--red); z-index: -1; opacity: 0; transform: scaleX(0); transform-origin: left center; transition: opacity .55s 1.55s, transform .85s cubic-bezier(.22,1,.36,1) 1.55s; }
#sph-h1 .sph-row.si .sph-mark::after { opacity: 1; transform: scaleX(1); }
#sph-lead { font-size: clamp(17px,1.5vw,20px); font-weight: 400; line-height: 1.6; color: var(--muted); max-width: 580px; margin-bottom: 48px; opacity: 0; transform: translateY(12px); transition: opacity .7s .85s, transform .7s .85s; }
#sph-lead.si { opacity: 1; transform: translateY(0); }
#sph-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 60px; opacity: 0; transform: translateY(12px); transition: opacity .7s .98s, transform .7s .98s; }
#sph-ctas.si { opacity: 1; transform: translateY(0); }
a.sph-p { font-size: 14.5px; font-weight: 500; letter-spacing: -.005em; display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; background: var(--ink); color: #fff; border: 1px solid var(--ink); border-radius: 10px; box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 4px 16px -4px rgba(0,0,0,.12); transition: background .2s, border-color .2s, transform .2s, box-shadow .2s; }
a.sph-p:hover { background: var(--red); border-color: var(--red); transform: translateY(-1px); box-shadow: 0 2px 4px rgba(221,31,44,.18), 0 12px 28px -6px rgba(221,31,44,.4); }
.sph-arrow { width: 14px; height: 14px; flex-shrink: 0; transition: transform .3s cubic-bezier(.22,1,.36,1); }
a.sph-p:hover .sph-arrow { transform: translateX(4px); }
a.sph-g { font-size: 14.5px; font-weight: 500; letter-spacing: -.005em; display: inline-flex; align-items: center; gap: 6px; padding: 13px 18px; background: transparent; color: var(--ink); border: 1px solid rgba(10,10,11,.12); border-radius: 10px; transition: border-color .2s, background .2s, transform .2s; }
a.sph-g:hover { border-color: rgba(10,10,11,.4); background: rgba(10,10,11,.024); transform: translateY(-1px); }
#sph-trust { display: flex; align-items: center; gap: 14px; opacity: 0; transition: opacity .7s 1.15s; }
#sph-trust.si { opacity: 1; }
#sph-trust::before, #sph-trust::after { content: ""; display: block; width: 28px; height: 1px; background: rgba(10,10,11,.15); }
#sph-trust span { font-size: 11.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: #8a8a92; }
@media (max-width: 720px) {
  #sph { padding: 130px 6% 90px; }
  #sph-h1 { font-size: clamp(40px,9vw,60px); }
  #sph-trust span { font-size: 10px; letter-spacing: .14em; }
  #sph-trust::before, #sph-trust::after { width: 20px; }
}
@media (max-width: 460px) {
  #sph-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  a.sph-p, a.sph-g { justify-content: center; width: 100%; }
}

/* --- #sps STATS --- */
#sps, #sps * { box-sizing: border-box; font-family: var(--font); font-feature-settings: "ss01","cv11","tnum"; }
#sps { position: relative; width: 100%; padding: clamp(72px,10vh,120px) 6%; color: #0a0a0b; }
#sps-inner { max-width: 1200px; margin: 0 auto; }
#sps-cap { display: flex; align-items: center; gap: 14px; margin-bottom: 56px; opacity: 0; transform: translateY(-6px); transition: opacity .6s, transform .6s; }
#sps-cap.si { opacity: 1; transform: translateY(0); }
#sps-cap::before { content: ""; display: block; width: 28px; height: 1px; background: var(--red); flex-shrink: 0; }
#sps-cap span { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: #6b6b72; }
.sps-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(10,10,11,.1); border-bottom: 1px solid rgba(10,10,11,.1); }
.sps-stat { position: relative; padding: clamp(32px,5vw,56px) clamp(20px,3vw,40px); display: flex; flex-direction: column; align-items: flex-start; border-right: 1px solid rgba(10,10,11,.08); opacity: 0; transform: translateY(20px); transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1); }
.sps-stat:last-child { border-right: none; }
.sps-stat.sv { opacity: 1; transform: translateY(0); }
.sps-stat::before { content: ""; position: absolute; top: 0; left: clamp(20px,3vw,40px); width: 24px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left center; transition: transform .7s cubic-bezier(.22,1,.36,1) .2s; }
.sps-stat.sv::before { transform: scaleX(1); }
.sps-num { font-size: clamp(44px,5.4vw,72px); font-weight: 600; line-height: 1; letter-spacing: -.045em; color: #0a0a0b; margin-bottom: 16px; display: flex; align-items: baseline; }
.sps-num .sps-suf { color: var(--red); font-weight: 500; font-size: .55em; margin-left: 2px; }
.sps-num .sps-suf-sm { color: var(--red); font-weight: 500; font-size: .4em; margin-left: 4px; position: relative; top: -.05em; }
.sps-lbl { font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: #6b6b72; line-height: 1.5; max-width: 18ch; }
@media (max-width: 880px) {
  .sps-grid { grid-template-columns: 1fr 1fr; }
  .sps-stat:nth-child(2n) { border-right: none; }
  .sps-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(10,10,11,.08); }
}
@media (max-width: 480px) {
  .sps-grid { grid-template-columns: 1fr; }
  .sps-stat { border-right: none; }
  .sps-stat:not(:last-child) { border-bottom: 1px solid rgba(10,10,11,.08); }
}

/* --- #spw WHY CHOOSE (red blueprint panel) --- */
#spw, #spw * { box-sizing: border-box; font-family: var(--font); font-feature-settings: "ss01","cv11"; }
#spw { position: relative; width: 100%; background: var(--red); padding: clamp(96px,14vh,160px) 6%; color: #fff; overflow: hidden; isolation: isolate; }
#spw::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 100% 0%, rgba(255,90,70,.32) 0%, transparent 55%), radial-gradient(70% 80% at 0% 100%, rgba(0,0,0,.3) 0%, transparent 60%), radial-gradient(50% 50%, rgba(255,255,255,.04) 0%, transparent 70%); pointer-events: none; z-index: 0; }
#spw-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: clamp(40px,6vw,96px); align-items: start; padding: clamp(48px,6vw,80px) clamp(32px,4vw,56px); }
#spw-inner::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); pointer-events: none; z-index: 0; }
.spw-corner { position: absolute; width: 16px; height: 16px; z-index: 3; pointer-events: none; opacity: 0; transform: scale(.7); transition: opacity .6s .85s, transform .6s cubic-bezier(.22,1,.36,1) .85s; }
#spw-inner.si .spw-corner { opacity: 1; transform: scale(1); }
.spw-corner::before, .spw-corner::after { content: ""; position: absolute; background: #fff; }
.spw-corner::before { width: 16px; height: 1px; }
.spw-corner::after { width: 1px; height: 16px; }
.spw-c-tl { top: -1px; left: -1px; } .spw-c-tl::before { top: 0; left: 0; } .spw-c-tl::after { top: 0; left: 0; }
.spw-c-tr { top: -1px; right: -1px; } .spw-c-tr::before { top: 0; right: 0; } .spw-c-tr::after { top: 0; right: 0; }
.spw-c-bl { bottom: -1px; left: -1px; } .spw-c-bl::before { bottom: 0; left: 0; } .spw-c-bl::after { bottom: 0; left: 0; }
.spw-c-br { bottom: -1px; right: -1px; } .spw-c-br::before { bottom: 0; right: 0; } .spw-c-br::after { bottom: 0; right: 0; }
.spw-ticks { position: absolute; pointer-events: none; z-index: 1; background: #fff; opacity: 0; transition: opacity .8s .55s; }
#spw-inner.si .spw-ticks { opacity: .55; }
.spw-ticks-t, .spw-ticks-b { left: 50%; transform: translateX(-50%); width: 12px; height: 1px; }
.spw-ticks-t { top: -1px; } .spw-ticks-b { bottom: -1px; }
.spw-ticks-l, .spw-ticks-r { top: 50%; transform: translateY(-50%); width: 1px; height: 12px; }
.spw-ticks-l { left: -1px; } .spw-ticks-r { right: -1px; }
.spw-grid { position: absolute; inset: 1px; z-index: 0; pointer-events: none; background-image: linear-gradient(90deg, rgba(255,255,255,.043) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.043) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(#000 35%, transparent 85%); mask-image: radial-gradient(#000 35%, transparent 85%); opacity: 0; transition: opacity 1.1s .4s; }
#spw-inner.si .spw-grid { opacity: 1; }
#spw-left { display: flex; flex-direction: column; align-items: flex-start; }
#spw-cap { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; opacity: 0; transform: translateY(-6px); transition: opacity .6s, transform .6s; }
#spw-cap.si { opacity: 1; transform: translateY(0); }
#spw-cap::before { content: ""; display: block; width: 28px; height: 1px; background: rgba(255,255,255,.55); flex-shrink: 0; }
#spw-cap span { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.78); }
#spw-h2 { font-weight: 600; font-size: clamp(48px,6.4vw,96px); line-height: 1; letter-spacing: -.045em; color: #fff; }
#spw-h2 .spw-row { display: block; overflow: hidden; padding-bottom: .08em; }
#spw-h2 .spw-row > i { display: inline-block; font-style: normal; transform: translateY(112%); transition: transform 1.05s cubic-bezier(.22,1,.36,1); }
#spw-h2 .spw-row.si > i { transform: translateY(0); }
#spw-h2 .spw-row-1 > i { transition-delay: .1s; }
#spw-h2 .spw-row-2 > i { transition-delay: .24s; }
#spw-h2 .spw-q { color: rgba(255,255,255,.45); font-weight: 300; font-style: italic; margin-left: .04em; }
#spw-right { padding-top: clamp(20px,3vw,40px); display: flex; flex-direction: column; align-items: flex-start; }
#spw-body { font-size: clamp(17px,1.55vw,21px); font-weight: 300; line-height: 1.66; color: rgba(255,255,255,.85); max-width: 540px; letter-spacing: -.005em; margin-bottom: 40px; opacity: 0; transform: translateY(14px); transition: opacity .7s .55s, transform .7s .55s; }
#spw-body.si { opacity: 1; transform: translateY(0); }
#spw-body b { color: #fff; font-weight: 600; }
#spw-sig { display: inline-flex; align-items: center; gap: 12px; padding: 9px 16px 9px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); opacity: 0; transform: translateY(12px); transition: opacity .7s .78s, transform .7s .78s; }
#spw-sig.si { opacity: 1; transform: translateY(0); }
#spw-sig::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); animation: spw-pulse 2.4s ease-in-out infinite; flex-shrink: 0; }
#spw-sig span { font-size: 12px; font-weight: 500; letter-spacing: .02em; color: rgba(255,255,255,.92); }
@keyframes spw-pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,255,255,.2);} 50% { box-shadow: 0 0 0 7px rgba(255,255,255,0);} }
#spw-sweep { position: absolute; left: 0; right: 0; bottom: 50px; height: 1px; background: rgba(255,255,255,.12); z-index: 1; overflow: hidden; }
#spw-sweep::after { content: ""; position: absolute; top: -1px; left: -25%; width: 25%; height: 3px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.85) 50%, transparent); animation: spw-sweep 5s ease-in-out infinite; }
@keyframes spw-sweep { 0% { left: -25%; } 100% { left: 125%; } }
@media (max-width: 900px) {
  #spw { padding: 84px 6% 100px; }
  #spw-inner { grid-template-columns: 1fr; gap: 48px; }
  #spw-right { padding-top: 0; }
  #spw-h2 { font-size: clamp(44px,11vw,72px); }
}

/* --- #spf STANDARD (animated line-draw cards) --- */
#spf, #spf * { box-sizing: border-box; font-family: var(--font); font-feature-settings: "ss01","cv11"; color: #0a0a0a; text-align: left; }
#spf { position: relative; width: 100%; padding: clamp(96px,14vh,160px) 6%; overflow: hidden; }
#spf-inner { max-width: 1200px; margin: 0 auto; }
#spf-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; opacity: 0; transform: translateY(-6px); transition: opacity .6s, transform .6s; }
#spf-head.si { opacity: 1; transform: translateY(0); }
#spf-head::before { content: ""; display: block; width: 28px; height: 1px; background: var(--red); flex-shrink: 0; }
#spf-head span { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: #5a5a5a; }
#spf-h2 { font-weight: 600; font-size: clamp(34px,3.8vw,54px); line-height: 1.06; letter-spacing: -.04em; max-width: 1100px; margin-bottom: clamp(64px,9vh,104px); }
#spf-h2 .spf-row { display: block; overflow: hidden; padding-bottom: .08em; }
#spf-h2 .spf-row > i { display: inline-block; font-style: normal; transform: translateY(112%); transition: transform 1s cubic-bezier(.22,1,.36,1); }
#spf-h2 .spf-row.si > i { transform: translateY(0); }
#spf-h2 .spf-row-1 > i { transition-delay: .1s; }
#spf-h2 .spf-row-2 > i { transition-delay: .22s; }
#spf-h2 em { font-style: normal; color: var(--red); font-weight: 600; }
#spf-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); position: relative; }
.spf-card { position: relative; padding: 8px clamp(28px,3.2vw,44px); display: flex; flex-direction: column; align-items: flex-start; opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s cubic-bezier(.22,1,.36,1); cursor: default; }
.spf-card:first-child { padding-left: 0; }
.spf-card:last-child { padding-right: 0; }
.spf-card.si { opacity: 1; transform: translateY(0); }
.spf-card:nth-child(1) { transition-delay: .1s; }
.spf-card:nth-child(2) { transition-delay: .2s; }
.spf-card:nth-child(3) { transition-delay: .3s; }
.spf-card:nth-child(4) { transition-delay: .4s; }
.spf-num { position: relative; font-size: 11px; font-weight: 500; letter-spacing: .22em; color: var(--red); margin-bottom: 28px; font-variant-numeric: tabular-nums; padding-bottom: 8px; }
.spf-num::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--red); transition: width .7s cubic-bezier(.22,1,.36,1) .5s; }
.spf-card.si .spf-num::after { width: 22px; }
.spf-card:hover .spf-num::after { width: 38px; transition-delay: 0s; }
.spf-icon { width: 60px; height: 60px; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(10,10,10,.1); border-radius: 12px; background: rgba(255,255,255,.55); transition: border-color .45s, transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s, background-color .45s; position: relative; }
.spf-card.si .spf-icon { animation: spf-float 6s ease-in-out infinite; }
.spf-card:nth-child(2).si .spf-icon { animation-delay: 1.5s; }
.spf-card:nth-child(3).si .spf-icon { animation-delay: 3s; }
.spf-card:nth-child(4).si .spf-icon { animation-delay: 4.5s; }
.spf-card:hover .spf-icon { border-color: rgba(221,31,44,.55); transform: translateY(-3px); box-shadow: 0 14px 28px -16px rgba(221,31,44,.35); background: #fff; animation-play-state: paused; }
@keyframes spf-float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-6px);} }
.spf-icon svg { width: 30px; height: 30px; stroke: #0a0a0a; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; transition: stroke .45s, transform .45s cubic-bezier(.22,1,.36,1); overflow: visible; }
.spf-icon svg [data-draw] { stroke-dasharray: var(--len,200); stroke-dashoffset: var(--len,200); transition: stroke-dashoffset 1.4s cubic-bezier(.65,0,.35,1); }
.spf-card.si .spf-icon svg [data-draw] { stroke-dashoffset: 0; }
.spf-card:nth-child(1).si .spf-icon svg [data-draw] { transition-delay: .55s; }
.spf-card:nth-child(2).si .spf-icon svg [data-draw] { transition-delay: .65s; }
.spf-card:nth-child(3).si .spf-icon svg [data-draw] { transition-delay: .75s; }
.spf-card:nth-child(4).si .spf-icon svg [data-draw] { transition-delay: .85s; }
.spf-icon svg [data-fade] { opacity: 0; transition: opacity .6s 1.4s; }
.spf-card.si .spf-icon svg [data-fade] { opacity: 1; }
.spf-card:hover .spf-icon svg { stroke: var(--red); transform: scale(1.06); }
.spf-title { display: inline-flex; align-items: center; gap: 8px; font-size: 19px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 12px; color: #0a0a0a; transition: color .35s, transform .45s cubic-bezier(.22,1,.36,1); }
.spf-title::after { content: ""; display: inline-block; width: 0; height: 1px; background: var(--red); transition: width .45s cubic-bezier(.22,1,.36,1); }
.spf-card:hover .spf-title { color: var(--red); transform: translateX(4px); }
.spf-card:hover .spf-title::after { width: 22px; }
.spf-text { font-size: 14px; font-weight: 300; line-height: 1.65; color: #4a4a4a; letter-spacing: -.003em; max-width: 22ch; transition: color .35s; }
@media (max-width: 900px) {
  #spf-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 56px clamp(24px,5vw,48px); }
  .spf-card, .spf-card:first-child, .spf-card:last-child { padding: 0; }
}
@media (max-width: 540px) {
  #spf { padding: 80px 6% 88px; }
  #spf-grid { grid-template-columns: 1fr; gap: 48px; }
  #spf-h2 { font-size: clamp(32px,9vw,44px); margin-bottom: 56px; }
  .spf-text { max-width: 30ch; }
}

/* --- #spg GLOBAL DISTRIBUTION (animated world map) --- */
#spg, #spg * { box-sizing: border-box; font-family: var(--font); font-feature-settings: "ss01","cv11"; }
#spg { position: relative; width: 100%; padding: clamp(96px,14vh,160px) 6%; overflow: hidden; }
#spg-inner { position: relative; max-width: 1240px; margin: 0 auto; }
#spg-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; opacity: 0; transform: translateY(-6px); transition: opacity .6s, transform .6s; }
#spg-head.si { opacity: 1; transform: translateY(0); }
#spg-head::before { content: ""; display: block; width: 28px; height: 1px; background: var(--red); flex-shrink: 0; }
#spg-head span { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: #5a5a5a; }
#spg-h2 { font-weight: 600; font-size: clamp(38px,4.4vw,64px); line-height: 1.04; letter-spacing: -.04em; max-width: 900px; margin-bottom: 22px; }
#spg-h2 .spg-row { display: block; overflow: hidden; padding-bottom: .08em; }
#spg-h2 .spg-row > i { display: inline-block; font-style: normal; transform: translateY(112%); transition: transform 1s cubic-bezier(.22,1,.36,1); }
#spg-h2 .spg-row.si > i { transform: translateY(0); }
#spg-h2 .spg-row-1 > i { transition-delay: .1s; }
#spg-h2 .spg-row-2 > i { transition-delay: .24s; }
#spg-h2 em { font-style: normal; color: var(--red); font-weight: 600; }
#spg-sub { font-size: clamp(15px,1.25vw,17px); font-weight: 300; line-height: 1.6; color: #4a4a4a; max-width: 600px; margin-bottom: clamp(36px,5vh,52px); opacity: 0; transform: translateY(12px); transition: opacity .7s .5s, transform .7s .5s; }
#spg-sub.si { opacity: 1; transform: translateY(0); }
#spg-live { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 12px; background: #fff; border: 1px solid #ececec; border-radius: 999px; margin-bottom: clamp(28px,4vh,40px); opacity: 0; transform: translateY(8px); transition: opacity .6s .85s, transform .6s .85s; box-shadow: 0 2px 14px -8px rgba(0,0,0,.18); }
#spg-live.si { opacity: 1; transform: translateY(0); }
#spg-live .spg-live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
#spg-live .spg-live-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: rgba(221,31,44,.35); animation: spg-live-pulse 1.8s ease-out infinite; }
@keyframes spg-live-pulse { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(2.4); opacity: 0; } }
#spg-live .spg-live-txt { font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: #1a1a1a; white-space: nowrap; }
#spg-live .spg-live-txt b { font-weight: 600; color: var(--red); margin: 0 6px; }
#spg-live .spg-live-sep { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: #cfcfcf; vertical-align: middle; margin: 0 8px; transform: translateY(-1px); }
#spg-globe { position: relative; width: 100%; aspect-ratio: 950 / 620; opacity: 0; transition: opacity .8s .6s; }
#spg-globe.si { opacity: 1; }
#spg-globe svg { display: block; width: 100%; height: 100%; overflow: visible; }
.spg-zoom { transform-origin: 475px 310px; transform: scale(1.5); transition: transform 2.4s cubic-bezier(.65,0,.35,1) .7s; }
#spg-globe.si .spg-zoom { transform: scale(1); }
.spg-basemap { fill: #1a1a1a; stroke: none; opacity: 0; transition: opacity .9s .7s; }
#spg-globe.si .spg-basemap { opacity: .13; }
.spg-route { fill: none; stroke: var(--red); stroke-width: 1.2; stroke-linecap: round; stroke-dasharray: 4 5; opacity: 0; transition: opacity .6s; animation: spg-flow 12s linear infinite paused; vector-effect: non-scaling-stroke; }
#spg-globe.si .spg-route { opacity: .55; animation-play-state: running; }
@keyframes spg-flow { 100% { stroke-dashoffset: -180; } }
#spg-globe.si .spg-route:nth-of-type(1) { transition-delay: 3.45s; }
#spg-globe.si .spg-route:nth-of-type(2) { transition-delay: 3.58s; }
#spg-globe.si .spg-route:nth-of-type(3) { transition-delay: 3.71s; }
#spg-globe.si .spg-route:nth-of-type(4) { transition-delay: 3.84s; }
#spg-globe.si .spg-route:nth-of-type(5) { transition-delay: 3.97s; }
#spg-globe.si .spg-route:nth-of-type(6) { transition-delay: 4.1s; }
#spg-globe.si .spg-route:nth-of-type(7) { transition-delay: 4.23s; }
#spg-globe.si .spg-route:nth-of-type(8) { transition-delay: 4.36s; }
.spg-pulse { fill: var(--red); filter: drop-shadow(0 0 5px rgba(221,31,44,.85)); opacity: 0; transition: opacity .5s 4.5s; offset-rotate: 0deg; }
#spg-globe.si .spg-pulse { opacity: 1; }
.spg-pulse-1 { offset-path: path("M 290 218 Q 380 130 487 176"); animation: spg-travel 4.2s linear -0.5s infinite; }
.spg-pulse-2 { offset-path: path("M 487 176 Q 660 110 832 232"); animation: spg-travel 4.7s linear -1.6s infinite; }
.spg-pulse-3 { offset-path: path("M 165 248 Q 480 480 862 442"); animation: spg-travel 5.1s linear -2.4s infinite; }
.spg-pulse-4 { offset-path: path("M 363 408 Q 440 440 530 380"); animation: spg-travel 4.5s linear -3.1s infinite; }
.spg-pulse-5 { offset-path: path("M 775 320 Q 720 290 680 295"); animation: spg-travel 4.9s linear -1s infinite; }
.spg-pulse-6 { offset-path: path("M 810 245 Q 500 130 165 248"); animation: spg-travel 5.3s linear -2.2s infinite; }
.spg-pulse-7 { offset-path: path("M 635 258 Q 580 380 535 472"); animation: spg-travel 4.4s linear -3.4s infinite; }
.spg-pulse-8 { offset-path: path("M 795 270 Q 830 360 862 442"); animation: spg-travel 4.8s linear -0.8s infinite; }
@keyframes spg-travel { 0% { offset-distance: 0%; opacity: 0; } 6% { opacity: 1; } 88% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
.spg-arrive { fill: none; stroke: var(--red); stroke-width: 1; transform-box: fill-box; transform-origin: center; opacity: 0; vector-effect: non-scaling-stroke; transition: opacity .4s 4.5s; }
#spg-globe.si .spg-arrive { opacity: 1; }
.spg-arrive-1 { animation: spg-arrive 4.2s ease-out -0.5s infinite; }
.spg-arrive-2 { animation: spg-arrive 4.7s ease-out -1.6s infinite; }
.spg-arrive-3 { animation: spg-arrive 5.1s ease-out -2.4s infinite; }
.spg-arrive-4 { animation: spg-arrive 4.5s ease-out -3.1s infinite; }
.spg-arrive-5 { animation: spg-arrive 4.9s ease-out -1s infinite; }
.spg-arrive-6 { animation: spg-arrive 5.3s ease-out -2.2s infinite; }
.spg-arrive-7 { animation: spg-arrive 4.4s ease-out -3.4s infinite; }
.spg-arrive-8 { animation: spg-arrive 4.8s ease-out -0.8s infinite; }
@keyframes spg-arrive { 0%,88% { transform: scale(.5); opacity: 0; } 92% { transform: scale(.7); opacity: .75; } 100% { transform: scale(3.4); opacity: 0; } }
.spg-endpoint { fill: var(--red); stroke: #fff; stroke-width: .7; paint-order: stroke; opacity: 0; transition: opacity .6s 3.4s; vector-effect: non-scaling-stroke; }
#spg-globe.si .spg-endpoint { opacity: .9; }
@media (max-width: 700px) {
  #spg { padding: 80px 6% 88px; }
  #spg-h2 { font-size: clamp(32px,9vw,44px); }
  #spg-live .spg-live-txt { font-size: 9.5px; letter-spacing: .12em; }
}
@media (prefers-reduced-motion: reduce) {
  .spg-zoom { transform: scale(1); transition: none; }
  .spg-basemap { opacity: .13; transition: none; }
  .spg-route { opacity: .55; animation: none; transition: none; }
  .spg-pulse, .spg-arrive { display: none; }
  .spg-endpoint { opacity: .9; transition: none; }
}

/* --- #spft FOOTER (red blueprint panel) --- */
#spft, #spft * { box-sizing: border-box; font-family: var(--font); font-feature-settings: "ss01","cv11"; text-align: left; color: #fff; }
#spft a { color: #fff; text-decoration: none; }
#spft { position: relative; width: 100%; background: var(--red); padding: clamp(96px,14vh,160px) 6%; color: #fff; overflow: hidden; isolation: isolate; display: block; }
#spft::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 100% 0%, rgba(255,90,70,.32) 0%, transparent 55%), radial-gradient(70% 80% at 0% 100%, rgba(0,0,0,.3) 0%, transparent 60%), radial-gradient(50% 50%, rgba(255,255,255,.04) 0%, transparent 70%); pointer-events: none; z-index: 0; }
#spft-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: clamp(40px,6vw,96px); align-items: start; padding: clamp(48px,6vw,80px) clamp(32px,4vw,56px); }
#spft-inner::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); pointer-events: none; z-index: 0; }
.spft-corner { position: absolute; width: 16px; height: 16px; z-index: 3; pointer-events: none; opacity: 0; transform: scale(.7); transition: opacity .6s .85s, transform .6s cubic-bezier(.22,1,.36,1) .85s; }
#spft-inner.si .spft-corner { opacity: 1; transform: scale(1); }
.spft-corner::before, .spft-corner::after { content: ""; position: absolute; background: #fff; }
.spft-corner::before { width: 16px; height: 1px; }
.spft-corner::after { width: 1px; height: 16px; }
.spft-c-tl { top: -1px; left: -1px; } .spft-c-tl::before { top: 0; left: 0; } .spft-c-tl::after { top: 0; left: 0; }
.spft-c-tr { top: -1px; right: -1px; } .spft-c-tr::before { top: 0; right: 0; } .spft-c-tr::after { top: 0; right: 0; }
.spft-c-bl { bottom: -1px; left: -1px; } .spft-c-bl::before { bottom: 0; left: 0; } .spft-c-bl::after { bottom: 0; left: 0; }
.spft-c-br { bottom: -1px; right: -1px; } .spft-c-br::before { bottom: 0; right: 0; } .spft-c-br::after { bottom: 0; right: 0; }
.spft-ticks { position: absolute; pointer-events: none; z-index: 1; background: #fff; opacity: 0; transition: opacity .8s .55s; }
#spft-inner.si .spft-ticks { opacity: .55; }
.spft-ticks-t, .spft-ticks-b { left: 50%; transform: translateX(-50%); width: 12px; height: 1px; }
.spft-ticks-t { top: -1px; } .spft-ticks-b { bottom: -1px; }
.spft-ticks-l, .spft-ticks-r { top: 50%; transform: translateY(-50%); width: 1px; height: 12px; }
.spft-ticks-l { left: -1px; } .spft-ticks-r { right: -1px; }
.spft-grid { position: absolute; inset: 1px; z-index: 0; pointer-events: none; background-image: linear-gradient(90deg, rgba(255,255,255,.043) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.043) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(#000 35%, transparent 85%); mask-image: radial-gradient(#000 35%, transparent 85%); opacity: 0; transition: opacity 1.1s .4s; }
#spft-inner.si .spft-grid { opacity: 1; }
#spft-left { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
#spft-cap { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; opacity: 0; transform: translateY(-6px); transition: opacity .6s, transform .6s; }
#spft-cap.si { opacity: 1; transform: translateY(0); }
#spft-cap::before { content: ""; display: block; width: 28px; height: 1px; background: rgba(255,255,255,.55); flex-shrink: 0; }
#spft-cap span { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.78); }
#spft-h2 { font-weight: 600; font-size: clamp(48px,6.4vw,96px); line-height: 1; letter-spacing: -.045em; color: #fff; }
#spft-h2 .spft-row { display: block; overflow: hidden; padding-bottom: .08em; }
#spft-h2 .spft-row > i { display: inline-block; font-style: normal; transform: translateY(112%); transition: transform 1.05s cubic-bezier(.22,1,.36,1); }
#spft-h2 .spft-row.si > i { transform: translateY(0); }
#spft-h2 .spft-row-1 > i { transition-delay: .1s; }
#spft-h2 .spft-row-2 > i { transition-delay: .24s; }
#spft-h2 .spft-q { color: rgba(255,255,255,.75); font-weight: 300; font-style: italic; margin-left: .04em; }
#spft-right { position: relative; z-index: 2; padding-top: clamp(20px,3vw,40px); display: flex; flex-direction: column; align-items: flex-start; }
#spft-body { font-size: clamp(17px,1.55vw,21px); font-weight: 300; line-height: 1.66; color: rgba(255,255,255,.85); max-width: 540px; letter-spacing: -.005em; margin-bottom: 36px; opacity: 0; transform: translateY(14px); transition: opacity .7s .55s, transform .7s .55s; }
#spft-body.si { opacity: 1; transform: translateY(0); }
#spft-body b { color: #fff; font-weight: 600; }
#spft-nav { width: 100%; max-width: 540px; display: flex; flex-wrap: wrap; gap: 8px 10px; margin-bottom: 32px; opacity: 0; transform: translateY(12px); transition: opacity .7s .62s, transform .7s .62s; }
#spft-nav.si { opacity: 1; transform: translateY(0); }
.spft-nav-item { display: inline-flex; align-items: center; font-size: 13px; font-weight: 500; color: #fff; padding: 8px 14px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; transition: background .25s, color .25s, border-color .25s, transform .2s; }
.spft-nav-item:hover { background: #fff; color: var(--red); border-color: #fff; transform: translateY(-1px); }
#spft-contact { width: 100%; max-width: 540px; display: grid; grid-template-columns: 1fr; border-top: 1px solid rgba(255,255,255,.28); margin-bottom: 28px; opacity: 0; transform: translateY(14px); transition: opacity .7s .78s, transform .7s .78s; }
#spft-contact.si { opacity: 1; transform: translateY(0); }
.spft-row { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.spft-row-label { font-size: 10.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #fff; opacity: .78; }
.spft-row-value { font-size: 15.5px; font-weight: 500; color: #fff; letter-spacing: -.01em; }
a.spft-row-value { border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 1px; transition: border-color .25s, opacity .25s; }
a.spft-row-value:hover { border-bottom-color: #fff; opacity: .85; }
#spft-socials { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; opacity: 0; transform: translateY(12px); transition: opacity .7s .92s, transform .7s .92s; }
#spft-socials.si { opacity: 1; transform: translateY(0); }
.spft-social-label { font-size: 10.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #fff; opacity: .78; margin-right: 6px; }
.spft-social { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; color: #fff; background: rgba(255,255,255,.04); transition: background .25s, color .25s, border-color .25s, transform .2s; }
.spft-social svg { width: 16px; height: 16px; fill: currentColor; }
.spft-social:hover { background: #fff; color: var(--red); border-color: #fff; transform: translateY(-2px); }
.spft-social:hover svg { fill: var(--red); }
#spft-sweep { position: absolute; left: 0; right: 0; bottom: 50px; height: 1px; background: rgba(255,255,255,.12); z-index: 1; overflow: hidden; }
#spft-sweep::after { content: ""; position: absolute; top: -1px; left: -25%; width: 25%; height: 3px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.85) 50%, transparent); animation: spw-sweep 5s ease-in-out infinite; }
#spft-meta { position: relative; z-index: 2; max-width: 1200px; margin: clamp(28px,4vh,40px) auto 0; padding: 0 clamp(32px,4vw,56px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; opacity: 0; transform: translateY(8px); transition: opacity .7s 1s, transform .7s 1s; }
#spft-meta.si { opacity: 1; transform: translateY(0); }
.spft-meta-copy { font-size: 11.5px; font-weight: 400; letter-spacing: .04em; color: rgba(255,255,255,.62); }
.spft-meta-credit { font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.spft-meta-credit a { color: rgba(255,255,255,.85); font-weight: 600; letter-spacing: .22em; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 1px; }
.spft-meta-credit a:hover { border-bottom-color: #fff; }
@media (max-width: 900px) {
  #spft { padding: 84px 6% 100px; }
  #spft-inner { grid-template-columns: 1fr; gap: 48px; }
  #spft-right { padding-top: 0; }
  #spft-h2 { font-size: clamp(44px,11vw,72px); }
  .spft-row { grid-template-columns: 90px 1fr; gap: 12px; }
}
@media (max-width: 560px) {
  #spft-h2 { font-size: 44px; }
  .spft-row { grid-template-columns: 1fr; gap: 4px; }
  #spft-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}
