/* ══════════════════════════════════════════════
   SPRINGWERK — OBERKLASSE PRÄSENTATION
   Inspired by Apple · Tesla · Canada Goose
   ══════════════════════════════════════════════ */

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

:root {
  --beige:    #f5f0e6;
  --beige2:   #ede5d6;
  --beige3:   #e2d8c6;
  --cream:    #faf7f1;
  --green:    #3a6b51;
  --green2:   #2d5540;
  --green3:   #1e3d2d;
  --green-light: rgba(58,107,81,.12);
  --green-glow:  rgba(58,107,81,.25);
  --warm:     #a87b5a;
  --warm2:    #8a6040;
  --black:    #0a0a0a;
  --off-black:#111;
  --text:     #111;
  --muted:    #555;
  --muted2:   #888;
  --border:   rgba(0,0,0,.10);
  --border2:  rgba(0,0,0,.06);
  --white:    #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.14);
  --r: 20px;
  --r2: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--beige);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLL PROGRESS ── */
#spb {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--warm));
  width: 0%; z-index: 9999;
  transition: width .08s linear;
}

/* ── STICKY NAV (glassmorphism) ── */
.sp-nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 62px;
  background: rgba(245,240,230,.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: background .3s;
}
.sp-nav.scrolled {
  background: rgba(245,240,230,.96);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
}

.sp-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--off-black);
}
.sp-logo img {
  height: 24px; width: auto;
  filter: invert(1) brightness(.1);
}
.sp-logo-word {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}
.sp-logo-word .spring { font-weight: 800; }
.sp-logo-word .werk   { font-weight: 300; }

.sp-links {
  display: flex; align-items: center; gap: 6px;
}
.sp-links a {
  font-size: 13px; font-weight: 500;
  color: var(--muted); text-decoration: none;
  padding: 6px 12px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.sp-links a:hover { color: var(--off-black); background: rgba(0,0,0,.05); }
.sp-links a.active { color: var(--green); font-weight: 600; }

.sp-nav-cta {
  background: var(--green); color: white !important;
  border-radius: 10px; padding: 8px 16px !important;
  font-weight: 600 !important; font-size: 13px !important;
  transition: background .2s, transform .2s !important;
}
.sp-nav-cta:hover { background: var(--green2) !important; transform: translateY(-1px); }

.sp-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: transparent;
}
.sp-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--off-black); border-radius: 1px;
  transition: .3s;
}

/* ── REVEAL SYSTEM ── */
.rw {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
.rw.on { opacity: 1; transform: none; }
.rw.d1 { transition-delay: .1s; }
.rw.d2 { transition-delay: .2s; }
.rw.d3 { transition-delay: .3s; }
.rw.d4 { transition-delay: .4s; }
.rw.d5 { transition-delay: .5s; }
.rw.d6 { transition-delay: .6s; }

/* ── KEYFRAMES ── */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes shimmerPass {
  0%   { left: -80%; }
  100% { left: 120%; }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(58,107,81,.35); }
  50%      { box-shadow: 0 0 0 12px rgba(58,107,81,0); }
}
@keyframes countUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:none; }
}
@keyframes gradShift {
  0%  { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

/* ══════════════════════════════════
   1. HERO — FULL BLEED, CINEMATIC
══════════════════════════════════ */
.hero-wrap {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px 80px;
  overflow: hidden;
  background: var(--cream);
}

/* textured noise background */
.hero-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1000px 700px at 50% 0%,   rgba(58,107,81,.09), transparent 65%),
    radial-gradient(ellipse 700px 500px at 10% 90%,   rgba(168,123,90,.07), transparent 60%),
    radial-gradient(ellipse 800px 600px at 90% 20%,   rgba(255,255,255,.5), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
}

/* fine grain texture */
.hero-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: .4; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 900px;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid rgba(58,107,81,.2);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  animation: heroFadeIn .8s ease both;
}
.hero-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2.2s ease infinite;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--off-black);
  margin-bottom: 32px;
  animation: heroFadeIn .85s ease .1s both;
}
.hero-h1 strong {
  font-weight: 800;
  font-style: normal;
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 40%, var(--warm) 100%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 6s ease infinite;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  animation: heroFadeIn .85s ease .2s both;
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: heroFadeIn .85s ease .3s both;
}

.btn-p {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: 14px;
  font-weight: 600; font-size: 14px; letter-spacing: .01em;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, background .22s;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.btn-p::after {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  animation: shimmerPass 3s ease infinite;
}
.btn-p:hover { transform: translateY(-2px); }

.btn-p.solid {
  background: var(--green); color: white;
  box-shadow: 0 4px 20px rgba(58,107,81,.3);
}
.btn-p.solid:hover { background: var(--green2); box-shadow: 0 8px 28px rgba(58,107,81,.4); }

.btn-p.outline {
  background: white; color: var(--off-black);
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: var(--shadow-sm);
}
.btn-p.outline:hover { box-shadow: var(--shadow-md); }

.btn-p.ghost {
  background: transparent; color: var(--muted);
  border: 1px solid transparent;
}
.btn-p.ghost:hover { color: var(--off-black); background: rgba(0,0,0,.04); }

/* scroll cue */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted2); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; z-index: 1;
  animation: heroFadeIn 1s ease 1s both;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--muted2), transparent);
  animation: float 2.4s ease infinite;
}

/* ══════════════════════════════════
   2. STATS — FULL BLEED DARK
══════════════════════════════════ */
.stats-band {
  width: 100vw;
  background: var(--green3);
  color: white;
  padding: 64px 48px;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.stat-cell {
  background: var(--green3);
  padding: 40px 32px;
  text-align: center;
  transition: background .25s;
}
.stat-cell:hover { background: var(--green2); }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: white;
  display: block;
  letter-spacing: -.02em;
}
.stat-unit {
  font-size: 24px; color: rgba(255,255,255,.5); margin-left: 2px;
}
.stat-lbl {
  display: block; margin-top: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ══════════════════════════════════
   3. LEISTUNGEN — ALTERNATING LAYOUT
══════════════════════════════════ */
.section {
  width: 100vw; padding: 120px 48px;
}
.section-inner {
  max-width: 1200px; margin: 0 auto;
}

.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
}
.sec-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1.5px;
  background: var(--green); border-radius: 1px;
}

.sec-h2 {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -.025em; color: var(--off-black);
  margin-bottom: 20px;
}
.sec-h2 em { font-style: normal; color: var(--green); font-weight: 300; }

.sec-sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: var(--muted); max-width: 520px;
  margin-bottom: 56px;
}

/* Big alternating rows (Apple-style) */
.lei-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 560px;
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}
.lei-row.flip { direction: rtl; }
.lei-row.flip > * { direction: ltr; }

.lei-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
  overflow: hidden;
}
.lei-row:nth-child(1) .lei-visual { background: linear-gradient(135deg, var(--green3) 0%, #2d6b50 100%); }
.lei-row:nth-child(2) .lei-visual { background: linear-gradient(135deg, var(--beige2) 0%, var(--beige3) 100%); }
.lei-row:nth-child(3) .lei-visual { background: linear-gradient(135deg, var(--off-black) 0%, #2a2520 100%); }
.lei-row:nth-child(4) .lei-visual { background: linear-gradient(135deg, #e8dfc8 0%, var(--beige3) 100%); }

.lei-vis-emoji {
  font-size: clamp(80px, 10vw, 140px);
  animation: float 5s ease infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.2));
}

.lei-text {
  background: white;
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}

.lei-tag {
  display: inline-flex; align-items: center;
  background: var(--green-light);
  color: var(--green);
  font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  width: fit-content; margin-bottom: 20px;
}

.lei-h3 {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.025em; color: var(--off-black);
  margin-bottom: 18px;
}

.lei-desc {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--muted); margin-bottom: 32px;
}

.lei-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.lei-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.lei-bullets li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%; background: var(--green-light);
  border: 1px solid rgba(58,107,81,.2);
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%233a6b51' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
  margin-top: 2px;
}

.lei-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: gap .2s;
}
.lei-link:hover { gap: 14px; }

/* ══════════════════════════════════
   4. STATEMENT — FULL BLEED DARK
══════════════════════════════════ */
.statement {
  width: 100vw;
  position: relative;
  overflow: hidden;
  padding: 140px 48px;
  text-align: center;
  background: var(--off-black);
}

.statement::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1000px 700px at 50% 50%, rgba(58,107,81,.15), transparent 65%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(168,123,90,.06), transparent 55%);
}

.statement-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(100px, 20vw, 280px);
  font-weight: 800;
  color: rgba(255,255,255,.025);
  letter-spacing: -.04em;
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

.statement-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }

.statement-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 24px;
}

.statement-h2 {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -.03em;
  color: white; margin-bottom: 28px;
}
.statement-h2 em { font-style: normal; font-weight: 300; color: #7ecfa6; }

.statement-sub {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 520px; margin: 0 auto 48px;
}

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--off-black);
  font-weight: 600; font-size: 14px;
  padding: 16px 32px; border-radius: 14px;
  text-decoration: none; letter-spacing: .01em;
  transition: transform .22s, box-shadow .22s;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.btn-white::after {
  content: '';
  position: absolute; top:0; left:-80%; width:50%; height:100%;
  background: linear-gradient(90deg,transparent,rgba(0,0,0,.04),transparent);
  animation: shimmerPass 3.5s ease infinite;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }

/* ══════════════════════════════════
   5. PROCESS — NUMBERED STEPS
══════════════════════════════════ */
.process-section {
  width: 100vw; padding: 120px 48px;
  background: var(--cream);
}
.process-inner { max-width: 1200px; margin: 0 auto; }

.process-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 80px;
}

.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  background: var(--border2);
  border-radius: var(--r2); overflow: hidden;
  box-shadow: var(--shadow-md);
}

.p-step {
  background: white;
  padding: 44px 32px;
  position: relative;
  transition: background .25s;
  cursor: default;
}
.p-step:hover { background: var(--cream); }

.p-step-num {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 72px; font-weight: 800;
  line-height: 1;
  color: var(--green-light);
  letter-spacing: -.04em;
  margin-bottom: 20px;
  display: block;
  transition: color .3s;
}
.p-step:hover .p-step-num { color: rgba(58,107,81,.2); }

.p-step-line {
  width: 32px; height: 2px;
  background: var(--green);
  border-radius: 1px; margin-bottom: 18px;
  transform-origin: left;
  transition: width .4s ease;
}
.p-step:hover .p-step-line { width: 56px; }

.p-step-title {
  font-weight: 700; font-size: 16px;
  color: var(--off-black); margin-bottom: 10px;
}
.p-step-desc {
  font-size: 13px; font-weight: 300;
  line-height: 1.7; color: var(--muted);
}

/* ══════════════════════════════════
   6. FEATURES — 3x2 BENTO GRID
══════════════════════════════════ */
.features-section {
  width: 100vw; padding: 120px 48px;
  background: var(--beige);
}
.features-inner { max-width: 1200px; margin: 0 auto; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 64px;
}

.bento-cell {
  background: white;
  border-radius: var(--r);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--border2);
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* cell bottom accent line */
.bento-cell::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 2.5px; width: 0%;
  background: linear-gradient(90deg, var(--green), transparent);
  border-radius: 2px;
  transition: width .45s ease;
}
.bento-cell:hover::after { width: 100%; }

.bento-cell.span-4  { grid-column: span 4; }
.bento-cell.span-5  { grid-column: span 5; }
.bento-cell.span-6  { grid-column: span 6; }
.bento-cell.span-7  { grid-column: span 7; }
.bento-cell.span-8  { grid-column: span 8; }
.bento-cell.span-12 { grid-column: span 12; }

.bento-cell.dark {
  background: var(--green3); color: white;
  border-color: transparent;
}
.bento-cell.warm {
  background: linear-gradient(135deg, #f0e6d6, #e8d8c0);
  border-color: rgba(168,123,90,.12);
}

.b-marker {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.b-marker::after {
  content: '';
  display: block; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--green-light), transparent);
  max-width: 40px;
}
.bento-cell.dark .b-marker { color: rgba(255,255,255,.4); }
.bento-cell.dark .b-marker::after { background: linear-gradient(90deg, rgba(255,255,255,.15), transparent); }
.b-title {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px; font-weight: 700;
  line-height: 1.2; color: var(--off-black);
  margin-bottom: 10px;
}
.bento-cell.dark .b-title { color: white; }
.b-text {
  font-size: 14px; font-weight: 400; line-height: 1.75;
  color: var(--muted);
}
.bento-cell.dark .b-text { color: rgba(255,255,255,.6); }

.b-big {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800; line-height: 1;
  color: var(--green); letter-spacing: -.03em;
  margin-bottom: 8px;
}
.b-big-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted2);
}

/* ══════════════════════════════════
   7. PARTNER — SPLIT LAYOUT
══════════════════════════════════ */
.partner-section {
  width: 100vw; padding: 120px 48px;
  background: var(--cream);
}
.partner-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px;
  align-items: center;
}

.partner-text {}
.partner-list {
  list-style: none; margin-top: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.partner-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; font-weight: 300; line-height: 1.6;
  color: var(--muted);
}
.partner-check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-light);
  border: 1px solid rgba(58,107,81,.2);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.partner-check svg { width: 11px; height: 11px; }

.partner-card {
  background: linear-gradient(160deg, var(--green3) 0%, #0e2419 100%);
  border-radius: var(--r2);
  padding: 64px 56px;
  color: white;
  position: relative; overflow: hidden;
}
.partner-card::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  right: -200px; top: -200px;
}
.partner-card::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  left: -100px; bottom: -100px;
}
.p-card-inner { position: relative; z-index: 1; }
.p-card-tag {
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 24px;
}
.p-card-h {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 18px;
}
.p-card-p {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}
.p-card-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12);
  color: white; font-weight: 600; font-size: 14px;
  padding: 13px 24px; border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .22s, transform .22s;
}
.p-card-btn:hover { background: rgba(255,255,255,.18); transform: translateY(-1px); }

/* ══════════════════════════════════
   8. FINAL CTA — FULL BLEED
══════════════════════════════════ */
.cta-final {
  width: 100vw; padding: 160px 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 500px at 50% 60%, rgba(58,107,81,.07), transparent 65%);
}
.cta-inner { position: relative; z-index:1; max-width: 720px; margin: 0 auto; }

.cta-h {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800; line-height: .98;
  letter-spacing: -.04em; color: var(--off-black);
  margin-bottom: 24px;
}
.cta-h em { font-style: normal; font-weight: 300; color: var(--green); }

.cta-sub {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--muted); max-width: 480px;
  margin: 0 auto 52px;
}

.cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.sp-footer {
  width: 100vw;
  background: var(--black); color: white;
}
.sp-footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 48px 28px;
}
.sp-footer-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 64px; margin-bottom: 56px;
}
.sp-footer-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.sp-footer-lines {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.65); line-height: 1.5;
}
.sp-footer-lines a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.sp-footer-lines a:hover { color: white; }
.sp-footer-label {
  margin-top: 16px; margin-bottom: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.sp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.3);
}
.sp-footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.sp-footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:1100px) {
  .lei-text { padding: 48px 40px; }
  .section, .process-section, .features-section,
  .partner-section, .cta-final { padding-left: 32px; padding-right: 32px; }
  .stats-band { padding: 56px 32px; }
  .sp-nav { padding: 0 32px; }
  .bento-cell.span-5 { grid-column: span 6; }
  .bento-cell.span-7 { grid-column: span 6; }
}

@media(max-width:900px) {
  .sp-links { display: none; }
  .sp-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(245,240,230,.97);
    padding: 10px 20px 20px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
  }
  .sp-links.open a { width: 100%; }
  .sp-burger { display: flex; }
  .lei-row { grid-template-columns: 1fr; min-height: auto; }
  .lei-row.flip { direction: ltr; }
  .lei-visual { min-height: 280px; }
  .lei-text { padding: 40px 32px; }
  .process-header { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .partner-inner { grid-template-columns: 1fr; gap: 48px; }
  .bento-cell.span-4,
  .bento-cell.span-5,
  .bento-cell.span-7,
  .bento-cell.span-8 { grid-column: span 12; }
  .bento-cell.span-6 { grid-column: span 12; }
  .sp-footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media(max-width:600px) {
  .section, .process-section, .features-section,
  .partner-section, .cta-final,
  .statement, .stats-band { padding-left: 20px; padding-right: 20px; }
  .sp-nav { padding: 0 20px; }
  .hero-h1 { font-size: 48px; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .lei-text { padding: 32px 24px; }
  .partner-card { padding: 40px 32px; }
  .sp-footer-inner { padding: 48px 20px 20px; }
  .sp-footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* Extracted inline styles (auto-generated) */

.sw-inline-17480166de{margin-bottom: 20px; animation: heroFadeIn .7s ease both;}

.sw-inline-327409a571{font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: clamp(52px, 10vw, 128px); font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--off-black);}

.sw-inline-327eeaf745{font-weight:800;}

.sw-inline-7dda68c2c5{font-weight:300;}

.sw-inline-9ddafcb80f{margin-bottom: 36px; animation: heroFadeIn .75s ease .1s both;}

.sw-inline-d8c23075c1{height:36px; width:auto; filter:invert(1) brightness(0); opacity:.5;}

.sw-inline-4173b8b8e3{font-size: clamp(28px, 4vw, 52px); font-weight:400; letter-spacing:-.02em; margin-bottom:20px;}

.sw-inline-76325eba6c{font-weight:700; background:linear-gradient(135deg,var(--green),var(--green2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;}

.sw-inline-319826c79b{background:var(--beige);}

.sw-inline-b7d8673c05{height:80px; width:auto; filter:brightness(0) invert(1); opacity:.7; animation: float 5s ease infinite;}

.sw-inline-3f67fa9180{height:80px; width:auto; filter:brightness(0); opacity:.18; animation: float 5s ease .8s infinite;}

.sw-inline-c1583311a6{height:80px; width:auto; filter:brightness(0) invert(1); opacity:.7; animation: float 5s ease 1.6s infinite;}

.sw-inline-3698a01520{height:80px; width:auto; filter:brightness(0); opacity:.18; animation: float 5s ease 2.4s infinite;}

.sw-inline-76084ee4e5{margin-bottom:0;}

.sw-inline-8a359a76eb{margin-top:16px;}

.sw-inline-3e0ad0e7da{background:var(--cream);}

.sw-inline-fcec5b1cb7{text-align:center; margin-bottom:64px;}

.sw-inline-842252d1fb{justify-content:center;}

.sw-inline-32708a2101{margin:0 auto;}

.sw-inline-74a002da0d{display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px;}

.sw-inline-23a21395da{border-radius:20px;}

.sw-inline-ad7fdb02ca{text-align:center; margin-top:40px;}

.sw-inline-0708ed5e62{text-align:center; margin-bottom:56px;}

.sw-inline-47e1aba156{max-width:700px; margin:0 auto;}

.sw-inline-dc487d3cf4{background:white; border:1px solid rgba(0,0,0,.07); border-radius:24px; padding:48px;}

.sw-inline-16b4cf0c3d{display:grid; grid-template-columns:1fr 1fr; gap:16px;}

.sw-inline-a3e36fb8fa{display:flex; flex-direction:column; gap:6px;}

.sw-inline-ab89115cdf{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted2);}

.sw-inline-08521dbaf1{font-family:inherit;font-size:15px;background:var(--cream);border:1px solid rgba(0,0,0,.12);border-radius:10px;padding:12px 14px;outline:none;width:100%;transition:.2s;}

.sw-inline-463de331aa{display:flex; flex-direction:column; gap:6px; grid-column:1/-1;}

.sw-inline-ae18909567{font-family:inherit;font-size:15px;background:var(--cream);border:1px solid rgba(0,0,0,.12);border-radius:10px;padding:12px 14px;outline:none;width:100%;}

.sw-inline-ab0a9a973a{font-family:inherit;font-size:15px;background:var(--cream);border:1px solid rgba(0,0,0,.12);border-radius:10px;padding:12px 14px;outline:none;width:100%;min-height:120px;resize:vertical;}

.sw-inline-4a631c198e{grid-column:1/-1; display:flex; align-items:flex-start; gap:12px;}

.sw-inline-f0a26c1e5f{width:18px;height:18px;margin-top:2px;accent-color:var(--green);flex-shrink:0;cursor:pointer;}

.sw-inline-9ebf26b601{font-size:13px;color:var(--muted);line-height:1.55;cursor:pointer;}

.sw-inline-813c799342{color:var(--green);}

.sw-inline-fcefda6da2{margin-top:24px; display:flex; gap:12px; flex-wrap:wrap;}

.sw-inline-9954136ef7{font-size:12px;color:var(--muted2);margin-top:14px;font-style:italic;}
