/* ============================================================
   Funding Society — landing experience
   ============================================================ */

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

:root {
  --bg: #05080a;
  --bg-2: #080d12;
  --ink: #e9f6ef;
  --muted: #93a8a0;
  --line: rgba(255, 255, 255, .08);
  --glass: rgba(255, 255, 255, .045);
  --mint: #2ff0a8;
  --mint-deep: #10c98d;
  --lime: #c8f651;
  --violet: #9d7bff;
  --amber: #ffc24b;
  --grad: linear-gradient(90deg, var(--mint), var(--lime) 52%, var(--violet));
  --font-d: 'Space Grotesk', sans-serif;
  --font-b: 'Inter', sans-serif;
  --r: 20px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(47, 240, 168, .35); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(47,240,168,.4); }

a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-d); line-height: 1.08; letter-spacing: -.02em; }
svg { display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* film grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 900; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- chrome ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); background-size: 200% 100%;
  transform-origin: left; transform: scaleX(0);
  z-index: 1400;
}

.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,240,168,.09), rgba(157,123,255,.05) 40%, transparent 65%);
  pointer-events: none; z-index: 600; mix-blend-mode: screen;
}
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ---------- reveal system ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(.985);
  filter: blur(8px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  transition-delay: calc(var(--i, 0) * 95ms);
  will-change: opacity, transform, filter;
}
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-d); font-weight: 600; font-size: .95rem;
  padding: .8rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, border-color .3s, translate .25s ease-out;
}
.btn .arr { display: inline-flex; }
.btn .arr svg { transition: transform .3s var(--ease); }
.btn:hover .arr svg { transform: translateX(4px); }
.btn-lg { padding: 1.02rem 1.95rem; font-size: 1.02rem; }

.btn-primary {
  background: linear-gradient(120deg, var(--mint), #1de4c0);
  color: #04241a;
  box-shadow: 0 10px 34px -10px rgba(47, 240, 168, .55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 48px -12px rgba(47, 240, 168, .75); }
.btn-primary:active { transform: translateY(-1px) scale(.98); }

.btn-ghost {
  background: var(--glass); border-color: var(--line); color: var(--ink);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: rgba(47, 240, 168, .5); background: rgba(47,240,168,.07); }

.btn-shine::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  transform: translateX(-130%) skewX(-8deg);
  transition: transform .85s ease;
}
.btn-shine:hover::after { transform: translateX(130%) skewX(-8deg); }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1300; transition: background .4s, border-color .4s, backdrop-filter .4s; border-bottom: 1px solid transparent; }
.nav-inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.5rem; transition: padding .4s var(--ease);
}
.nav.scrolled { background: rgba(5, 8, 10, .72); backdrop-filter: blur(18px); border-bottom-color: var(--line); }
.nav.scrolled .nav-inner { padding: .78rem 1.5rem; }

.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-d); font-weight: 700; font-size: 1.16rem; letter-spacing: -.01em; }
.brand b { color: var(--mint); font-weight: 700; }
.brand-mark {
  width: 35px; height: 35px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  box-shadow: 0 0 26px rgba(47, 240, 168, .45);
  animation: markPulse 4.5s ease-in-out infinite;
}
@keyframes markPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(47,240,168,.4); }
  50% { box-shadow: 0 0 36px rgba(157,123,255,.55); }
}

.nav-links { display: flex; gap: 1.9rem; }
.nav-links a, .nav-links button { position: relative; color: var(--muted); font-size: .95rem; font-weight: 500; transition: color .3s; }
.nav-links a::after, .nav-links button::after {
  content: ''; position: absolute; left: 0; bottom: -7px; height: 2px; width: 100%;
  background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a:hover, .nav-links button:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links button:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: .7rem; }

.nav-burger { display: none; width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line); place-items: center; gap: 5px; flex-direction: column; background: var(--glass); }
.nav-burger span { display: block; width: 17px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .3s; }
body.menu-open .nav-burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .nav-burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(5, 8, 10, .96); backdrop-filter: blur(22px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.7rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu .mm-link {
  font-family: var(--font-d); font-size: 1.7rem; font-weight: 600; color: var(--ink);
  opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
body.menu-open .mobile-menu .mm-link { opacity: 1; transform: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8.5rem 1.5rem 5rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(95px); will-change: transform; }
.orb-a { width: 580px; height: 580px; top: -170px; left: -140px; opacity: .55;
  background: radial-gradient(circle at 32% 32%, rgba(47,240,168,.5), transparent 65%);
  animation: driftA 24s ease-in-out infinite alternate; }
.orb-b { width: 520px; height: 520px; top: -60px; right: -160px; opacity: .52;
  background: radial-gradient(circle at 60% 40%, rgba(157,123,255,.5), transparent 65%);
  animation: driftB 28s ease-in-out infinite alternate; }
.orb-c { width: 460px; height: 460px; bottom: -220px; left: 34%; opacity: .35;
  background: radial-gradient(circle at 50% 50%, rgba(200,246,81,.4), transparent 65%);
  animation: driftC 26s ease-in-out infinite alternate; }
@keyframes driftA { to { transform: translate(130px, 90px) scale(1.18); } }
@keyframes driftB { to { transform: translate(-110px, 120px) scale(1.12) rotate(20deg); } }
@keyframes driftC { to { transform: translate(-90px, -70px) scale(1.22); } }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 72% 62% at 50% 38%, #000 18%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 38%, #000 18%, transparent 72%);
}

.spark {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px 3px rgba(47, 240, 168, .65);
  animation: sparkFloat 9s ease-in-out infinite;
}
.spark.v { background: var(--violet); box-shadow: 0 0 14px 3px rgba(157,123,255,.6); }
@keyframes sparkFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: .15; }
  50% { transform: translateY(-48px) scale(1.25); opacity: .9; }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1220px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center;
}

.badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 600; color: var(--mint);
  background: rgba(47, 240, 168, .08);
  border: 1px solid rgba(47, 240, 168, .3);
  padding: .45rem 1rem; border-radius: 999px;
  margin-bottom: 1.6rem;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 240, 168, .55); }
  55% { box-shadow: 0 0 0 7px rgba(47, 240, 168, 0); }
}

.hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.5rem); font-weight: 700; margin-bottom: 1.4rem; }
.grad-text {
  background: var(--grad); background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.lede { color: var(--muted); font-size: 1.12rem; max-width: 33rem; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }

.hero-trust { display: flex; align-items: center; gap: 1rem; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-d); font-size: .72rem; font-weight: 700; color: #052018;
  border: 2px solid var(--bg); margin-left: -10px;
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(1) { background: linear-gradient(135deg, #2ff0a8, #1de4c0); }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #c8f651, #7de08a); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #9d7bff, #c9b3ff); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #ffc24b, #ffdf8e); }
.avatars span:nth-child(5) { background: linear-gradient(135deg, #59d8ff, #2ff0a8); }
.trust-text { font-size: .9rem; color: var(--muted); }
.trust-text strong { color: var(--ink); }
.stars { display: inline-flex; gap: 2px; color: var(--amber); vertical-align: -2px; margin-right: .35rem; }

/* hero visual */
.hero-visual { perspective: 1300px; }
.tilt-scene {
  position: relative; max-width: 450px; margin-inline: auto;
  transform-style: preserve-3d;
  transition: transform .35s ease-out;
  will-change: transform;
}
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
  box-shadow: 0 34px 90px -32px rgba(0, 0, 0, .8);
}
.dash-card { position: relative; border-radius: 26px; padding: 1.7rem; animation: floatY 9s ease-in-out infinite; }
.dash-card::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,240,168,.7), transparent);
}
.dash-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.dash-label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.dash-amount { font-size: 2.7rem; font-weight: 700; margin: .2rem 0 1rem; letter-spacing: -.03em; }
.pill {
  display: inline-flex; align-items: center; gap: .42rem;
  font-size: .72rem; font-weight: 600; padding: .34rem .75rem; border-radius: 999px;
}
.pill-live { background: rgba(47,240,168,.12); color: var(--mint); border: 1px solid rgba(47,240,168,.4); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); animation: pulse 1.7s ease-in-out infinite; }

.dash-bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; margin-bottom: 1.05rem; }
.dash-bar span {
  display: block; height: 100%; width: var(--w); border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--lime));
  box-shadow: 0 0 16px rgba(47,240,168,.5);
  animation: grow 1.6s .7s var(--ease) both;
}
@keyframes grow { from { width: 0; } }

.dash-row { display: flex; justify-content: space-between; gap: 1rem; padding: .52rem 0; border-top: 1px dashed rgba(255,255,255,.09); font-size: .88rem; color: var(--muted); }
.dash-row strong { color: var(--ink); font-weight: 600; }
.dash-row .mint { color: var(--mint); }
.dash-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 1.05rem; gap: 1rem; }
.sparkline { width: 124px; height: 38px; }
.sparkline polyline { stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw 1.8s 1.1s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.dash-delta { color: var(--mint); font-size: .82rem; font-weight: 600; white-space: nowrap; }

.mini-card {
  position: absolute; display: flex; align-items: center; gap: .75rem;
  padding: .8rem 1.05rem; border-radius: 17px;
  animation: floatY 6.5s ease-in-out infinite;
}
.mini-card strong { display: block; font-size: .95rem; line-height: 1.3; }
.mini-card small { color: var(--muted); font-size: .75rem; }
.mini-a { top: -34px; right: -26px; animation-delay: .9s; }
.mini-b { bottom: -24px; left: -10px; }
.mini-ico { width: 37px; height: 37px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.mini-ico.up { background: rgba(47,240,168,.14); color: var(--mint); border: 1px solid rgba(47,240,168,.35); }
.mini-ico.bl { background: rgba(157,123,255,.14); color: var(--violet); border: 1px solid rgba(157,123,255,.4); }

.float-chip {
  position: absolute; font-family: var(--font-d); font-size: .72rem; font-weight: 600;
  padding: .42rem .85rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(10, 16, 14, .72); backdrop-filter: blur(8px);
  animation: floatY 7.5s ease-in-out infinite;
}
.chip-a { left: 7%; top: -18px; color: var(--mint); border-color: rgba(47,240,168,.45); }
.chip-b { right: 9%; bottom: -16px; color: var(--amber); border-color: rgba(255,194,75,.45); animation-delay: 1.4s; }

@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 43px; border: 2px solid rgba(255,255,255,.22); border-radius: 15px;
  display: flex; justify-content: center; padding-top: 8px; z-index: 2;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 3px; background: var(--mint); animation: cue 1.9s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(15px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- ticker ---------- */
.ticker {
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  padding: 1.15rem 0;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee { display: flex; overflow: hidden; }
.marquee-track {
  display: flex; align-items: center; gap: 3rem;
  flex-shrink: 0; min-width: 100%; padding-right: 3rem;
  animation: scrollX 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollX { to { transform: translateX(-100%); } }
.tick {
  display: inline-flex; align-items: center; gap: .75rem; white-space: nowrap;
  font-family: var(--font-d); font-weight: 500; font-size: 1.02rem; color: var(--muted);
  transition: color .3s;
}
.tick:hover { color: var(--ink); }
.tick svg { color: var(--mint); }

/* ---------- stats ---------- */
.stats {
  max-width: 1220px; margin: 0 auto;
  padding: 5.2rem 1.5rem 4.6rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.stat { text-align: center; position: relative; padding-top: 1.6rem; }
.stat::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 42px; height: 3px; border-radius: 3px; background: var(--grad);
}
.stat-num {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(2.3rem, 4vw, 3.3rem); letter-spacing: -.03em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat p { color: var(--muted); font-size: .95rem; margin-top: .25rem; }

.service-disclosure {
  position: relative; z-index: 2;
  width: min(1172px, calc(100% - 40px)); margin: -1.2rem auto 2rem; padding: 1.35rem 1.5rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  border: 1px solid rgba(47,240,168,.28); border-radius: 18px;
  background: linear-gradient(135deg,rgba(47,240,168,.09),rgba(157,123,255,.055)),rgba(7,12,15,.94);
  box-shadow: 0 24px 70px -36px rgba(0,0,0,.9);
}
.disclosure-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  color: var(--mint); border: 1px solid rgba(47,240,168,.3); border-radius: 13px;
  background: rgba(47,240,168,.09);
}
.service-disclosure strong { display: block; margin-bottom: .35rem; font-family: var(--font-d); color: var(--ink); }
.service-disclosure p { color: var(--muted); font-size: .86rem; line-height: 1.65; }

/* ---------- sections ---------- */
.section { max-width: 1220px; margin: 0 auto; padding: 6rem 1.5rem; }
.section-head { max-width: 660px; margin: 0 auto 3.6rem; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-d); font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--mint);
}
.eyebrow::before, .eyebrow::after { content: ''; width: 22px; height: 1px; background: rgba(47,240,168,.5); }
.section-head h2 { font-size: clamp(2.05rem, 4.2vw, 3.1rem); margin: 1rem 0 1.1rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
.span-7 { grid-column: span 7; } .span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; } .span-12 { grid-column: span 12; }

.card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.8rem;
  transition: transform .55s var(--ease), border-color .45s, box-shadow .55s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 240, 168, .35);
  box-shadow: 0 28px 70px -28px rgba(0, 0, 0, .8);
}
.spot::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(47,240,168,.13), transparent 62%);
  opacity: 0; transition: opacity .45s;
}
.spot:hover::before { opacity: 1; }
.card-ico {
  width: 47px; height: 47px; border-radius: 15px;
  display: grid; place-items: center;
  background: rgba(47, 240, 168, .1); border: 1px solid rgba(47, 240, 168, .28);
  color: var(--mint); margin-bottom: 1.15rem;
  transition: transform .5s var(--ease);
}
.card:hover .card-ico { transform: translateY(-4px) rotate(-6deg) scale(1.06); }
.card h3 { font-size: 1.28rem; margin-bottom: .55rem; }
.card > p { color: var(--muted); font-size: .96rem; }

/* match list */
.match-list { margin-top: 1.5rem; display: grid; gap: .8rem; }
.match { display: grid; grid-template-columns: 150px 1fr 34px; align-items: center; gap: .9rem; font-size: .88rem; }
.match span { color: var(--muted); white-space: nowrap; }
.match b { font-family: var(--font-d); color: var(--mint); text-align: right; }
.match-bar { height: 7px; background: rgba(255,255,255,.07); border-radius: 99px; overflow: hidden; }
.match-bar i {
  display: block; height: 100%; width: 0; border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--lime));
  transition: width 1.2s var(--ease); transition-delay: var(--d, 0s);
}
.card.in .match-bar i { width: var(--w); }

/* pipeline */
.pipe { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: 1.5rem; }
.pipe-h { display: flex; justify-content: space-between; font-size: .76rem; color: var(--muted); margin-bottom: .55rem; }
.pipe-h b { color: var(--ink); font-family: var(--font-d); }
.chip {
  display: block; height: 26px; border-radius: 8px; margin-bottom: .45rem;
  background: rgba(255,255,255,.07);
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--ease); transition-delay: var(--d, .1s);
}
.chip.w70 { width: 70%; } .chip.w85 { width: 85%; } .chip.w60 { width: 60%; } .chip.w45 { width: 45%; }
.chip.glow { background: linear-gradient(90deg, rgba(47,240,168,.75), rgba(200,246,81,.6)); box-shadow: 0 0 14px rgba(47,240,168,.35); }
.card.in .chip { transform: scaleX(1); }

/* gauge */
.gauge { position: relative; width: 168px; margin: 1.6rem auto .4rem; }
.gauge svg { width: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 9; }
.ring-fill {
  fill: none; stroke: url(#gradGauge); stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.6s .35s var(--ease);
}
.card.in .ring-fill { stroke-dashoffset: calc(100 - var(--p)); }
.gauge-num {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.gauge-num b { font-family: var(--font-d); font-size: 2.35rem; letter-spacing: -.03em; }
.gauge-num small { color: var(--muted); font-size: .72rem; }

/* checklist */
.checks { list-style: none; margin-top: 1.4rem; display: grid; gap: .75rem; }
.checks li {
  display: flex; align-items: center; gap: .7rem; font-size: .9rem;
  opacity: 0; transform: translateX(-10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--d, 0s);
}
.card.in .checks li { opacity: 1; transform: none; }
.checks .ck { color: var(--mint); flex-shrink: 0; }
.checks .ck path { stroke-dasharray: 24; stroke-dashoffset: 24; transition: stroke-dashoffset .7s var(--ease); transition-delay: calc(var(--d, 0s) + .25s); }
.card.in .checks .ck path { stroke-dashoffset: 0; }
.checks em { margin-left: auto; font-style: normal; font-size: .72rem; color: var(--mint); background: rgba(47,240,168,.1); border: 1px solid rgba(47,240,168,.25); padding: .18rem .55rem; border-radius: 999px; white-space: nowrap; }

/* security badges */
.sec-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.sec-badges span {
  font-size: .76rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: .4rem .8rem;
  transition: color .3s, border-color .3s;
}
.card:hover .sec-badges span { color: var(--ink); border-color: rgba(47,240,168,.3); }

/* chart card */
.analytics-card { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.2rem; align-items: center; }
.chart-live { display: inline-flex; align-items: center; gap: .45rem; font-size: .74rem; font-weight: 600; color: var(--mint); margin-bottom: .8rem; }
.chart { display: flex; align-items: flex-end; gap: 7px; height: 150px; padding-top: 1rem; }
.bar {
  flex: 1; height: var(--h); border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--mint), rgba(47,240,168,.12));
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 1s var(--ease); transition-delay: var(--d, 0s);
}
.bar.hi { background: linear-gradient(180deg, var(--lime), rgba(200,246,81,.12)); box-shadow: 0 0 18px rgba(200,246,81,.25); }
.card.in .bar { transform: scaleY(1); }

/* ---------- steps ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.steps::before {
  content: ''; position: absolute; top: 58px; left: 9%; right: 9%;
  border-top: 1px dashed rgba(255,255,255,.16);
}
.step { z-index: 1; }
.step-num {
  display: inline-block;
  font-family: var(--font-d); font-weight: 700; font-size: 3.4rem; line-height: 1;
  margin-bottom: 1.15rem;
  background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.02));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step:hover .step-num { background: var(--grad); -webkit-background-clip: text; background-clip: text; }

/* ---------- products ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.p-card { display: flex; flex-direction: column; }
.p-card.featured {
  border-color: rgba(47, 240, 168, .5);
  background: linear-gradient(180deg, rgba(47,240,168,.1), rgba(255,255,255,.02));
  box-shadow: 0 0 60px -18px rgba(47, 240, 168, .35);
}
.p-tag {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #04241a; background: linear-gradient(120deg, var(--mint), var(--lime));
  padding: .3rem .7rem; border-radius: 999px;
}
.p-name { font-size: 1.05rem; font-weight: 600; color: var(--muted); font-family: var(--font-d); }
.p-rate { font-family: var(--font-d); font-size: 2.5rem; font-weight: 700; letter-spacing: -.03em; margin: .5rem 0 .2rem; }
.p-rate small { font-family: var(--font-b); font-size: .88rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.p-list { list-style: none; margin: 1.35rem 0 1.7rem; display: grid; gap: .65rem; color: var(--muted); font-size: .93rem; }
.p-list li { display: flex; align-items: center; gap: .6rem; }
.p-list svg { color: var(--mint); flex-shrink: 0; }
.p-card .btn { margin-top: auto; }
.purchase-details {
  margin-top: 1.3rem; padding: 1.25rem;
  display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem;
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255,255,255,.025);
}
.purchase-details > div { padding: 1rem; display: grid; gap: .35rem; border-radius: 14px; background: rgba(255,255,255,.025); }
.purchase-details strong { color: var(--ink); font-family: var(--font-d); font-size: .9rem; }
.purchase-details span { color: var(--muted); font-size: .82rem; line-height: 1.55; }
.purchase-details a { color: var(--mint); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- testimonials ---------- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.t-card { display: flex; flex-direction: column; gap: 1.1rem; }
.t-card .q { color: rgba(47,240,168,.5); }
.t-card p { color: var(--ink); font-size: .98rem; line-height: 1.65; flex: 1; }
.t-card .stars { color: var(--amber); }
.t-person { display: flex; align-items: center; gap: .8rem; }
.t-ava {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-d); font-size: .78rem; font-weight: 700; color: #052018;
}
.t-person strong { display: block; font-size: .92rem; line-height: 1.35; }
.t-person small { color: var(--muted); font-size: .8rem; }

/* ---------- CTA ---------- */
.cta-section { max-width: 1220px; margin: 0 auto; padding: 5rem 1.5rem 7.5rem; }
.cta-panel {
  position: relative; overflow: hidden; text-align: center;
  border-radius: 30px; border: 1px solid rgba(47, 240, 168, .28);
  background:
    radial-gradient(130% 170% at 50% -10%, rgba(47,240,168,.16), rgba(157,123,255,.07) 40%, rgba(9,14,18,.92) 68%);
  padding: 5.2rem 2rem;
}
.orbit { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(47, 240, 168, .18); }
.ring-1 { width: 480px; height: 480px; animation: spin 30s linear infinite; }
.ring-2 { width: 700px; height: 700px; border-color: rgba(157,123,255,.14); animation: spin 46s linear infinite reverse; }
.ring-3 { width: 940px; height: 940px; border-color: rgba(200,246,81,.1); animation: spin 64s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { font-size: clamp(2.2rem, 4.8vw, 3.5rem); margin-bottom: 1rem; }
.cta-panel > p { color: var(--muted); max-width: 34rem; margin: 0 auto; font-size: 1.06rem; }
.cta-form { display: flex; gap: .7rem; justify-content: center; max-width: 540px; margin: 2.2rem auto .9rem; }
.cta-form input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  border-radius: 999px; padding: 1rem 1.4rem; color: var(--ink);
  font: inherit; font-size: .95rem; outline: none;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.cta-form input::placeholder { color: rgba(147,168,160,.7); }
.cta-form input:focus { border-color: var(--mint); box-shadow: 0 0 0 4px rgba(47,240,168,.14); background: rgba(255,255,255,.07); }
.cta-note { color: var(--muted); font-size: .84rem; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); background: rgba(255,255,255,.02); }
.foot {
  max-width: 1220px; margin: 0 auto;
  padding: 4.2rem 1.5rem 2.6rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.4rem;
}
.foot-brand p { color: var(--muted); font-size: .92rem; max-width: 19rem; margin-top: 1rem; }
.foot h4 { font-family: var(--font-d); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.1rem; }
.foot ul { list-style: none; display: grid; gap: .65rem; }
.foot ul a,.foot ul button,.foot ul span {
  padding: 0; border: 0; color: var(--muted); background: transparent;
  font: inherit; font-size: .92rem; text-align: left; transition: color .3s, padding-left .3s;
}
.foot ul a:hover,.foot ul button:hover { color: var(--mint); padding-left: 5px; }
.foot ul button { cursor: pointer; }
.foot-bottom {
  max-width: 1220px; margin: 0 auto; padding: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  color: var(--muted); font-size: .86rem;
}
.foot-bottom span a { transition: color .3s; }
.foot-bottom span a:hover { color: var(--mint); }

/* ---------- toast ---------- */
#toast {
  position: fixed; left: 50%; bottom: 30px; z-index: 2000;
  transform: translate(-50%, 24px); opacity: 0; pointer-events: none;
  max-width: min(92vw, 480px);
  background: rgba(10, 18, 16, .92);
  border: 1px solid rgba(47, 240, 168, .45);
  color: var(--ink); font-size: .92rem; font-weight: 500;
  padding: .9rem 1.45rem; border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 46px -12px rgba(0, 0, 0, .7), 0 0 30px -8px rgba(47, 240, 168, .3);
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
#toast::before { content: '✓'; color: var(--mint); font-weight: 700; margin-right: .55rem; }
#toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 4.6rem; }
  .hero { padding-top: 7.5rem; }
  .hero-copy { text-align: center; }
  .lede { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .span-7, .span-5, .span-4 { grid-column: span 6; }
  .analytics-card { grid-template-columns: 1fr; }
  .steps, .pricing-grid, .t-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .steps::before { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: grid; }
  .foot { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .span-7, .span-5, .span-4 { grid-column: span 12; }
  .mini-a { right: -4px; top: -26px; }
  .mini-b { left: -4px; bottom: -18px; }
  .float-chip { display: none; }
  .cta-form { flex-direction: column; align-items: stretch; }
  .section { padding: 4.4rem 1.25rem; }
  .match { grid-template-columns: 118px 1fr 30px; font-size: .82rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .card.in .match-bar i, .dash-bar span { width: var(--w); }
  .card.in .bar { transform: scaleY(1); }
  .card.in .chip { transform: scaleX(1); }
  .card.in .ring-fill { stroke-dashoffset: calc(100 - var(--p)); }
  .card.in .checks li { opacity: 1; transform: none; }
  .card.in .checks .ck path { stroke-dashoffset: 0; }
}

/* Original Funding Society content, adapted to the new visual system */
.original-overview { padding-top: 4.5rem; }
.original-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.original-feature { min-height: 270px; }
.original-number {
  position: absolute; top: 1.5rem; right: 1.6rem;
  font-family: var(--font-d); font-size: 2.5rem; font-weight: 700;
  color: rgba(255,255,255,.07);
}
.workspace-showcase {
  margin-top: 1.2rem; padding: clamp(1.8rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--line); border-radius: 28px;
  background: radial-gradient(circle at 82% 12%, rgba(157,123,255,.13), transparent 24rem), linear-gradient(145deg, rgba(47,240,168,.07), rgba(255,255,255,.018));
  overflow: hidden;
}
.workspace-copy h2 { margin: 1rem 0; font-size: clamp(2rem, 3.6vw, 3rem); }
.workspace-copy > p { color: var(--muted); }
.workspace-copy .btn { margin-top: 1.6rem; }
.workspace-points { display: grid; gap: .7rem; margin-top: 1.4rem; }
.workspace-points span { display: flex; align-items: center; gap: .65rem; color: var(--ink); font-size: .9rem; }
.workspace-points svg { color: var(--mint); flex-shrink: 0; }
.workspace-window {
  border: 1px solid rgba(255,255,255,.12); border-radius: 22px; overflow: hidden;
  background: rgba(5,8,10,.78); box-shadow: 0 35px 80px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.06);
}
.workspace-window-top { height: 48px; padding: 0 17px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.workspace-window-top i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18); }
.workspace-window-top i:first-child { background: var(--mint); }
.workspace-window-top span { margin-left: auto; }
.workspace-window-body { padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; grid-template-columns: .7fr 1fr; gap: 1.4rem; }
.workspace-score { grid-row: span 2; min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(47,240,168,.2); border-radius: 18px; background: rgba(47,240,168,.055); }
.workspace-score span,.workspace-score small { color: var(--muted); font-size: .74rem; }
.workspace-score strong { margin: .2rem 0; font-family: var(--font-d); font-size: 4rem; line-height: 1; color: var(--mint); }
.workspace-bars { display: grid; gap: .7rem; align-content: center; }
.workspace-bars > span { height: 8px; border-radius: 99px; overflow: hidden; background: rgba(255,255,255,.07); }
.workspace-bars i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--mint),var(--lime)); }
.workspace-task { padding: 1rem; display: flex; align-items: center; gap: .8rem; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.03); }
.workspace-task b { color: var(--mint); font-family: var(--font-d); }
.workspace-task > span { min-width: 0; display: grid; }
.workspace-task strong { font-size: .82rem; }
.workspace-task small { color: var(--muted); font-size: .7rem; }
.workspace-task em { margin-left: auto; padding: .25rem .55rem; border-radius: 99px; color: var(--mint); background: rgba(47,240,168,.1); font-size: .66rem; font-style: normal; }
.legal-disclaimer { max-width: 900px; margin: 0 auto; padding: 0 1.5rem 2rem; color: var(--muted); font-size: .75rem; line-height: 1.6; text-align: center; }
main > .ad-placement { max-width: 1172px; margin: 1.5rem auto; }

/* Free Tools uses the new design language without changing calculator behavior */
body.marketing-page .site-header {
  position: sticky; top: 14px; z-index: 1100;
  width: min(1220px, calc(100% - 32px)); height: 68px; margin: 14px auto 0; padding: 0 18px 0 22px;
  border: 1px solid var(--line); border-radius: 18px;
  background: rgba(5,8,10,.76); box-shadow: 0 16px 60px rgba(0,0,0,.24); backdrop-filter: blur(20px);
}
body.marketing-page .site-header .shield { color: var(--mint); filter: drop-shadow(0 0 12px rgba(47,240,168,.45)); }
body.marketing-page .site-header .brand { color: var(--ink); }
body.marketing-page .button.primary { color: #04241a; background: linear-gradient(120deg,var(--mint),#1de4c0); border-color: transparent; box-shadow: 0 10px 30px -12px rgba(47,240,168,.65); }
body.marketing-page .button.secondary,body.marketing-page .nav-link { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.04); }
body.marketing-page .tools-page { width: min(1180px,calc(100% - 40px)); }
body.marketing-page .tools-hero { padding-top: 7.4rem; }
body.marketing-page .tools-hero h1 span { background: var(--grad); background-clip: text; -webkit-background-clip: text; }
body.marketing-page .tool-jump a { border-color: var(--line); background: var(--glass); }
body.marketing-page .tool-jump a:hover { color: var(--mint); border-color: rgba(47,240,168,.45); }
body.marketing-page .tool-card { border-color: var(--line); background: linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.018)); box-shadow: 0 26px 70px -35px rgba(0,0,0,.8),inset 0 1px rgba(255,255,255,.05); transition: transform .4s var(--ease),border-color .35s; }
body.marketing-page .tool-card:hover { transform: translateY(-4px); border-color: rgba(47,240,168,.3); }
body.marketing-page .tool-icon { color: var(--mint); border-color: rgba(47,240,168,.26); background: rgba(47,240,168,.09); }
body.marketing-page .free-badge,body.marketing-page .tool-result p { color: var(--mint); }
body.marketing-page .tool-form input { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.045); }
body.marketing-page .tool-form input:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(47,240,168,.1); }
body.marketing-page .tool-result { border-color: rgba(47,240,168,.18); background: radial-gradient(circle at 90% 0,rgba(47,240,168,.12),transparent 12rem),rgba(157,123,255,.045); }
body.marketing-page .tools-cta { border-color: rgba(47,240,168,.24); background: radial-gradient(circle at 90% 50%,rgba(47,240,168,.13),transparent 24rem),rgba(255,255,255,.025); }
body.marketing-page .tools-disclaimer { color: var(--muted); }

@media (max-width: 900px) {
  .original-feature-grid,.workspace-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .service-disclosure { grid-template-columns: 1fr; margin-top: 1rem; }
  .purchase-details { grid-template-columns: 1fr; }
  .workspace-window-body { grid-template-columns: 1fr; }
  .workspace-score { grid-row: auto; min-height: 150px; }
  .workspace-task { align-items: flex-start; flex-wrap: wrap; }
  body.marketing-page .site-header { top: 8px; width: calc(100% - 16px); margin-top: 8px; }
}

/* Interactive Free Tools preview on the motion-rich landing page */
.free-tools-preview { position: relative; }
.free-tools-preview::before {
  content: ''; position: absolute; inset: 8% 8% auto; height: 420px; z-index: -1;
  background: radial-gradient(circle,rgba(47,240,168,.1),rgba(157,123,255,.055) 42%,transparent 72%);
  filter: blur(30px); pointer-events: none;
}
.mini-tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; align-items: stretch; }
.mini-tool-card { display: flex; flex-direction: column; min-width: 0; }
.mini-tool-card > p { min-height: 3.1rem; }
.mini-tool-form { margin-top: 1.35rem; padding-top: 1.25rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; }
.mini-tool-card:nth-child(n+2) .mini-tool-form { grid-template-columns: 1fr; }
.mini-tool-form label { position: relative; display: grid; gap: .4rem; color: var(--muted); font-size: .75rem; }
.mini-tool-form label > span { position: absolute; right: .8rem; bottom: .76rem; z-index: 1; color: rgba(147,168,160,.72); font-size: .66rem; pointer-events: none; }
.mini-tool-form input {
  width: 100%; height: 43px; padding: 0 3.25rem 0 .85rem;
  border: 1px solid var(--line); border-radius: 11px; outline: none;
  color: var(--ink); background: rgba(255,255,255,.045); font: inherit; font-variant-numeric: tabular-nums;
  transition: border-color .3s,box-shadow .3s,background .3s;
}
.mini-tool-form input:focus { border-color: var(--mint); background: rgba(47,240,168,.045); box-shadow: 0 0 0 4px rgba(47,240,168,.11); }
.landing-tool-result {
  min-height: 126px; margin-top: 1rem; padding: 1.05rem;
  border: 1px solid rgba(47,240,168,.2); border-radius: 15px;
  background: radial-gradient(circle at 90% 0,rgba(47,240,168,.11),transparent 11rem),rgba(255,255,255,.025);
}
.landing-tool-result > div { display: flex; align-items: flex-end; justify-content: space-between; gap: .8rem; }
.landing-tool-result span { color: var(--muted); font-size: .7rem; }
.landing-tool-result strong { font-family: var(--font-d); color: var(--mint); font-size: 1.75rem; letter-spacing: -.04em; text-align: right; }
.landing-tool-result p { margin-top: .75rem; padding-top: .7rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; line-height: 1.5; }
.all-tools-action { margin-top: 2rem; display: flex; justify-content: center; }

@media (max-width: 1024px) {
  .mini-tools-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .mini-tool-card > p { min-height: 0; }
  .mini-tool-card:nth-child(n) .mini-tool-form { grid-template-columns: repeat(3,1fr); }
  .mini-tool-card:first-child .mini-tool-form { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .mini-tool-card:nth-child(n) .mini-tool-form { grid-template-columns: 1fr; }
  .landing-tool-result > div { align-items: flex-start; flex-direction: column; }
  .landing-tool-result strong { text-align: left; }
}
