/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --green:       #039855;
  --green-hover: #027a47;
  --green-deep:  #065f46;
  --forest:      #022c22;
  --navy:        #0f172a;
  --slate:       #1e293b;
  --border:      #e2e8f0;
  --border-dark: rgba(255,255,255,.1);
  --muted:       #64748b;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   22px;
  --shadow-sm:   0 1px 4px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.06);
  --shadow-md:   0 4px 12px rgba(15,23,42,.08), 0 16px 40px rgba(15,23,42,.08);
  --shadow-lg:   0 8px 24px rgba(15,23,42,.1),  0 32px 64px rgba(15,23,42,.1);
  --shadow-green:0 4px 20px rgba(3,152,85,.3),  0 12px 40px rgba(3,152,85,.2);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── REVEAL ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(2,44,34,.96);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 32px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 36px; height: 36px; border-radius: 9px; object-fit: contain; }
.nav-logo span { font-size: 1.1875rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }

.nav-links { display: flex; align-items: center; gap: 1px; }
.nav-links a {
  font-size: .8125rem; font-weight: 500; color: rgba(255,255,255,.6);
  padding: 6px 13px; border-radius: 8px;
  transition: color .18s, background .18s;
  letter-spacing: .01em;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-pill {
  background: var(--green) !important; color: #fff !important;
  padding: 7px 17px !important; border-radius: 8px !important;
  font-weight: 600 !important; font-size: .8125rem !important;
  margin-left: 8px; letter-spacing: .01em !important;
  transition: background .18s, box-shadow .18s !important;
  box-shadow: 0 2px 8px rgba(3,152,85,.3) !important;
}
.nav-pill:hover { background: var(--green-hover) !important; box-shadow: 0 4px 16px rgba(3,152,85,.4) !important; }
.nav-pill--outline {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.8) !important;
  box-shadow: none !important;
}
.nav-pill--outline:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.4) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; color: rgba(255,255,255,.75); }
.burger span { display: block; width: 20px; height: 1.5px; background: currentColor; border-radius: 2px; transition: opacity .2s; }

.nav-drawer {
  display: none; flex-direction: column;
  padding: 6px 24px 20px;
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,.07);
}
.nav-drawer.open { display: flex; }
.nav-drawer a { font-size: .9375rem; font-weight: 500; color: rgba(255,255,255,.65); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); transition: color .18s; }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: #fff; }
.drawer-btn { color: #4ade80 !important; font-weight: 700 !important; }
.drawer-btn--outline { color: rgba(255,255,255,.55) !important; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  background: var(--forest);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(3,152,85,.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 75% 20%, rgba(74,222,128,.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 88px 64px 88px 44px;
  max-width: 640px; margin-left: auto;
  position: relative; z-index: 1;
}
.hero-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; color: #4ade80;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 28px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.2);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(74,222,128,.2); } 50% { box-shadow: 0 0 0 8px rgba(74,222,128,.08); } }

.hero h1 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  font-weight: 900; line-height: 1.06; letter-spacing: -.035em;
  color: #fff; margin-bottom: 22px;
}
.hero-em { color: #4ade80; display: block; }

.hero-sub {
  font-size: 1.0625rem; color: rgba(255,255,255,.6);
  line-height: 1.75; margin-bottom: 40px; max-width: 440px;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  font-size: .9375rem; font-weight: 600; letter-spacing: .01em;
  padding: 13px 26px; border-radius: var(--radius-sm);
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: var(--shadow-green);
}
.btn-solid:hover { background: var(--green-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(3,152,85,.45), 0 16px 40px rgba(3,152,85,.2); }
.btn-solid:active { transform: none; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.7);
  font-size: .9375rem; font-weight: 500; letter-spacing: .01em;
  padding: 13px 26px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18);
  transition: border-color .18s, color .18s, background .18s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.05); }

.hero-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-badges span {
  font-size: .75rem; color: rgba(255,255,255,.4); font-weight: 500;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  padding: 5px 13px; border-radius: 99px; letter-spacing: .02em;
}
.hero-badges span b { color: rgba(255,255,255,.75); font-weight: 700; margin-right: 2px; }

.hero-right {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 56px 0 0;
  overflow: hidden; z-index: 1;
}
.hero-photo-wrap {
  width: 86%; max-width: 420px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: -32px 0 80px rgba(0,0,0,.45), 0 -8px 40px rgba(0,0,0,.2);
  background: var(--green-deep);
  align-self: stretch;
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.hero-chip {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 10px 16px; font-size: .8rem; font-weight: 600; color: var(--navy);
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid rgba(255,255,255,.8);
  animation: chipfloat 4s ease-in-out infinite;
}
.hero-chip--top { top: 80px; left: 20px; animation-delay: 0s; }
.hero-chip--bottom { bottom: 56px; right: 20px; animation-delay: 2s; }
.chip-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); flex-shrink: 0; }
@keyframes chipfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── TICKER ────────────────────────────────────────────────── */
.ticker {
  background: var(--green); padding: 12px 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(0,0,0,.08);
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 32px;
  animation: ticker 24s linear infinite;
  font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .02em;
}
.ticker-track i { color: rgba(255,255,255,.35); font-style: normal; font-size: .55rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTION SHARED ────────────────────────────────────────── */
.s-intro { margin-bottom: 56px; }
.s-tag {
  display: inline-block; font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--green);
  background: #ecfdf5; border: 1px solid #d1fae5;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 18px;
}
.s-tag--ghost { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.s-tag--light { background: var(--green); color: #fff; border-color: var(--green); }
.s-intro h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 800;
  line-height: 1.14; letter-spacing: -.025em; margin-bottom: 16px;
}
.s-intro p { font-size: 1.0625rem; color: var(--muted); max-width: 500px; line-height: 1.7; }
.green { color: var(--green); }
.white { color: #fff; }
.muted { color: rgba(255,255,255,.5) !important; }

/* ── WHO WE SERVE ──────────────────────────────────────────── */
.platform { padding: 112px 0; background: #fff; }
.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.role {
  border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.role:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.role--star {
  border-color: rgba(3,152,85,.35);
  box-shadow: 0 0 0 3px rgba(3,152,85,.08), var(--shadow-sm);
}
.role--star:hover { box-shadow: 0 0 0 3px rgba(3,152,85,.12), var(--shadow-lg); }

.role-img { position: relative; height: 290px; overflow: hidden; }
.role-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.role:hover .role-img img { transform: scale(1.05); }
.role-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(2,44,34,.7) 100%); }
.role-tag {
  position: absolute; bottom: 16px; left: 16px;
  font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: #fff; background: rgba(2,44,34,.6); backdrop-filter: blur(10px);
  padding: 4px 12px; border-radius: 99px; border: 1px solid rgba(255,255,255,.2);
}
.role-tag--green { background: var(--green); border-color: transparent; }

.role-body { padding: 26px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.role-body h3 { font-size: 1.1875rem; font-weight: 800; color: var(--navy); letter-spacing: -.015em; }
.role-body p { font-size: .9375rem; color: var(--muted); line-height: 1.7; flex: 1; }
.role-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .875rem; font-weight: 600; color: var(--green);
  margin-top: 4px; transition: gap .2s, color .2s;
}
.role-link:hover { gap: 9px; color: var(--green-hover); }
.role-link--web { color: var(--green-deep); margin-top: 0; font-weight: 500; font-size: .8125rem; opacity: .85; }
.role-link--web:hover { opacity: 1; color: var(--green); }

/* ── SELLER PORTAL BANNER ──────────────────────────────────── */
.seller-band {
  background: linear-gradient(135deg, var(--forest) 0%, #033d2e 50%, #044d3a 100%);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.seller-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(3,152,85,.18) 0%, transparent 65%);
  pointer-events: none;
}
.seller-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  position: relative; z-index: 1;
}
.seller-band-text { flex: 1; }
.seller-band-text .s-tag { background: rgba(3,152,85,.2); border-color: rgba(3,152,85,.35); color: #4ade80; }
.seller-band-text h2 {
  font-size: clamp(1.625rem, 3vw, 2.375rem); font-weight: 800; color: #fff;
  letter-spacing: -.025em; line-height: 1.15; margin-bottom: 14px;
}
.seller-band-text p { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 480px; }
.seller-band-features {
  display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap;
}
.seller-band-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; color: rgba(255,255,255,.7); font-weight: 500;
}
.seller-band-feat::before {
  content: ''; display: block; width: 18px; height: 18px; border-radius: 99px;
  background: rgba(3,152,85,.3); border: 1.5px solid rgba(3,152,85,.6);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5.5l2 2 4-4' stroke='%2339D98A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.seller-band-cta { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.btn-seller {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: #fff;
  font-size: .9375rem; font-weight: 700; letter-spacing: .01em;
  padding: 14px 30px; border-radius: var(--radius-sm);
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: var(--shadow-green);
  white-space: nowrap;
}
.btn-seller:hover { background: var(--green-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(3,152,85,.5); }
.btn-seller svg { flex-shrink: 0; }
.seller-band-note { font-size: .8125rem; color: rgba(255,255,255,.35); }

/* ── STATS ─────────────────────────────────────────────────── */
.statsbar { background: var(--green-deep); padding: 40px 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(0,0,0,.08); }
.statsbar-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.sstat { text-align: center; padding: 10px 52px; flex: 1; min-width: 120px; }
.sstat-n { font-size: 2.25rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.025em; }
.sstat-l { font-size: .8125rem; color: rgba(255,255,255,.55); margin-top: 6px; font-weight: 500; letter-spacing: .02em; }
.sstat-sep { width: 1px; height: 48px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ── FEATURES ──────────────────────────────────────────────── */
.features { padding: 112px 0; background: #f8fafc; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.feat::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, #4ade80 100%);
  opacity: 0; transition: opacity .3s;
}
.feat:hover { transform: translateY(-5px); border-color: #d1fae5; box-shadow: var(--shadow-md); }
.feat:hover::after { opacity: 1; }
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #ecfdf5; border: 1px solid #d1fae5;
  display: flex; align-items: center; justify-content: center;
}
.feat h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.feat p { font-size: .9375rem; color: var(--muted); line-height: 1.7; }

/* ── APPS ──────────────────────────────────────────────────── */
.apps { padding: 112px 0; background: var(--navy); }
.apps .s-intro h2 { color: #fff; }
.apps .s-intro p { color: rgba(255,255,255,.5); }
.apps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

.acard {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px;
  transition: background .3s, transform .35s cubic-bezier(.22,1,.36,1), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.acard:hover { background: rgba(255,255,255,.07); transform: translateY(-6px); border-color: rgba(255,255,255,.15); box-shadow: 0 24px 48px rgba(0,0,0,.2); }
.acard--featured {
  background: var(--green); border-color: var(--green);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(3,152,85,.3), 0 8px 24px rgba(3,152,85,.2);
}
.acard--featured:hover { background: #02833f; transform: translateY(-18px); border-color: #02833f; box-shadow: 0 32px 72px rgba(3,152,85,.4); }
.acard-crown {
  background: rgba(255,255,255,.18); border-radius: 99px;
  font-size: .6875rem; font-weight: 700; color: #fff; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 14px; display: inline-block; margin-bottom: 2px; align-self: flex-start;
}
.acard-head { display: flex; align-items: center; gap: 14px; }
.acard-icon {
  width: 56px; height: 56px; border-radius: 14px; object-fit: contain;
  background: rgba(255,255,255,.1); padding: 7px;
  border: 1px solid rgba(255,255,255,.12);
}
.acard-role { font-size: .6875rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }
.acard h3 { font-size: 1.125rem; font-weight: 800; color: #fff; letter-spacing: -.015em; }
.acard > p { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.acard-list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.acard-list li {
  font-size: .875rem; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 9px; line-height: 1.4;
}
.acard-list li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' fill='rgba(74,222,128,0.2)'/%3E%3Cpath d='M5 8.5l2 2 4-4' stroke='%234ade80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; }
.acard-badge { margin-top: auto; }
.acard-badge img { height: 44px; object-fit: contain; opacity: .85; filter: brightness(0) invert(1); transition: opacity .2s; }
.acard-badge:hover img { opacity: 1; }
.acard--featured .acard-badge img { filter: none; }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how { padding: 112px 0; background: #0a1628; }
.how .s-intro h2 { color: #fff; }
.steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-top: 20px;
}
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(3,152,85,.12), 0 0 0 16px rgba(3,152,85,.05);
}
.step h4 { font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -.01em; }
.step p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; }
.step-arr { font-size: 1.25rem; color: rgba(255,255,255,.12); padding-top: 18px; align-self: start; }

/* ── CTA BAND ──────────────────────────────────────────────── */
.ctaband {
  background: linear-gradient(135deg, #027a47 0%, var(--green) 45%, var(--green-deep) 100%);
  padding: 88px 0;
  position: relative; overflow: hidden;
}
.ctaband::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 70% at 15% 50%, rgba(255,255,255,.07) 0%, transparent 60%);
}
.ctaband-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.ctaband-eyebrow { font-size: .6875rem; font-weight: 700; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.ctaband-h { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -.025em; }
.ctaband-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  font-size: .9375rem; font-weight: 600; letter-spacing: .01em;
  padding: 13px 26px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.25);
  transition: all .18s;
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.18); }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact { padding: 112px 0; background: #f8fafc; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.contact .s-tag { margin-bottom: 16px; }
.contact h2 { font-size: clamp(1.875rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -.025em; }
.contact > div > p { font-size: 1.0625rem; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.c-item {
  display: flex; align-items: center; gap: 14px;
  font-size: .9375rem; font-weight: 500; color: #475569;
  transition: color .18s;
}
.c-item:hover { color: var(--green); }
.c-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: #ecfdf5; border: 1px solid #d1fae5;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-legal { display: flex; gap: 12px; align-items: center; font-size: .875rem; color: #94a3b8; }
.contact-legal a { color: var(--green); font-weight: 600; }
.contact-legal a:hover { text-decoration: underline; }

.contact-card {
  background: var(--forest); color: #fff; border-radius: var(--radius-lg); padding: 44px 40px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 24px 64px rgba(2,44,34,.2), 0 8px 24px rgba(2,44,34,.12);
  border: 1px solid rgba(255,255,255,.06);
}
.contact-card h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.contact-card p { color: rgba(255,255,255,.6); font-size: .9375rem; line-height: 1.7; }
.contact-icons { display: flex; gap: 12px; }
.contact-icons img { width: 52px; height: 52px; border-radius: 12px; object-fit: contain; background: rgba(255,255,255,.07); padding: 7px; border: 1px solid rgba(255,255,255,.08); }
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; font-weight: 700; font-size: .9375rem; letter-spacing: .01em;
  padding: 13px 26px; border-radius: var(--radius-sm);
  transition: background .18s, transform .18s, box-shadow .18s;
  width: fit-content;
  box-shadow: var(--shadow-green);
}
.btn-green:hover { background: var(--green-hover); transform: translateY(-1px); }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: #070f1a; padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand .f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.f-logo img { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; }
.f-logo span { font-size: 1.125rem; font-weight: 800; color: #fff; letter-spacing: -.015em; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 240px; }
.f-by { margin-top: 12px; font-size: .8125rem !important; }
.f-by strong { color: rgba(255,255,255,.6); }

.f-col { display: flex; flex-direction: column; gap: 10px; }
.f-col-h { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.f-col a { font-size: .875rem; color: rgba(255,255,255,.4); transition: color .18s; line-height: 1.5; }
.f-col a:hover { color: rgba(255,255,255,.85); }

.footer-bar {
  text-align: center; padding: 22px 0;
  font-size: .8125rem; color: rgba(255,255,255,.2);
  letter-spacing: .02em;
}

/* ── LEGAL PAGE ────────────────────────────────────────────── */
.legal-page { padding: 60px 24px 80px; background: #fff; }
.legal-container { max-width: 800px; margin: 0 auto; }
.legal-badge { display: inline-block; padding: 4px 12px; background: #d1fae5; color: var(--green-deep); border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.legal-header { margin-bottom: 40px; }
.legal-header h1 { font-size: 2.25rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; letter-spacing: -.025em; }
.legal-meta { font-size: 13px; color: #6b7280; margin-bottom: 16px; }
.legal-intro { font-size: 15px; color: #4b5563; line-height: 1.7; background: #f9fafb; border-left: 3px solid var(--green); padding: 16px 20px; border-radius: 0 8px 8px 0; }
.legal-toc { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px 24px; margin-bottom: 48px; }
.legal-toc strong { display: block; font-size: 14px; color: #374151; margin-bottom: 10px; }
.legal-toc ol { padding-left: 20px; }
.legal-toc li { margin-bottom: 6px; }
.legal-toc a { font-size: 14px; color: var(--green); }
.legal-container section { margin-bottom: 48px; }
.legal-container h2 { font-size: 22px; font-weight: 700; color: var(--navy); padding-bottom: 10px; border-bottom: 2px solid #e5e7eb; margin-bottom: 18px; }
.legal-container h3 { font-size: 16px; font-weight: 700; color: #374151; margin: 20px 0 10px; }
.legal-container p { font-size: 15px; color: #4b5563; line-height: 1.8; margin-bottom: 12px; }
.legal-container ul, .legal-container ol { padding-left: 22px; margin-bottom: 16px; }
.legal-container li { font-size: 15px; color: #4b5563; line-height: 1.7; margin-bottom: 6px; }
.legal-container a { color: var(--green); }
.contact-block { background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 10px; padding: 20px; margin-top: 12px; }
.contact-block p { margin-bottom: 8px; }
.legal-footer-links { display: flex; justify-content: space-between; padding-top: 40px; border-top: 1px solid #e5e7eb; margin-top: 40px; }
.legal-footer-links a { font-size: 14px; font-weight: 600; color: var(--green); padding: 10px 0; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 84px 28px 52px; max-width: 100%; margin: 0; text-align: center; align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-right { height: 420px; }
  .hero-photo-wrap { width: 68%; max-width: 320px; align-self: auto; height: 100%; border-radius: 20px 20px 0 0; }
  .hero-chip--top { top: 20px; left: 12px; }
  .hero-chip--bottom { bottom: 20px; right: 12px; }
  .roles { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-row { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .acard--featured { transform: none; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .step-arr { display: none; }
  .ctaband-inner { flex-direction: column; text-align: center; }
  .ctaband-btns { justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .seller-band-inner { flex-direction: column; align-items: flex-start; }
  .seller-band-cta { align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero h1 { font-size: 2.25rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .statsbar-grid { flex-wrap: wrap; }
  .sstat { min-width: 140px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .legal-footer-links { flex-direction: column; gap: 16px; }
  .seller-band-features { flex-direction: column; gap: 12px; }
}
