:root {
  --ink: #071411;
  --panel: #10231d;
  --muted: #667873;
  --line: #dce8e2;
  --snow: #f4f7f5;
  --mint: #8af0c1;
  --green: #0f7a55;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--snow); color: var(--ink); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(220,232,226,.8); background: rgba(244,247,245,.78); padding: 14px clamp(18px,5vw,72px); backdrop-filter: blur(20px); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; box-shadow: 0 10px 24px rgba(7,20,17,.12); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 18px; font-weight: 900; }
.brand small { margin-top: 2px; color: #71827b; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 8px; }
nav a { border-radius: 999px; padding: 10px 14px; color: #42534d; font-size: 14px; font-weight: 900; transition: .22s ease; }
nav a:hover { background: var(--white); color: var(--ink); box-shadow: 0 8px 22px rgba(7,20,17,.07); }
.nav-cta { background: var(--ink); color: var(--white); }

.hero { display: grid; grid-template-columns: minmax(0,.84fr) minmax(420px,1.16fr); gap: clamp(28px,5vw,64px); align-items: center; min-height: calc(100vh - 77px); overflow: hidden; padding: 44px clamp(18px,5vw,72px) 58px; background: radial-gradient(circle at 85% 10%, rgba(138,240,193,.42), transparent 32%), radial-gradient(circle at 8% 78%, rgba(126,231,239,.18), transparent 32%), linear-gradient(180deg,#fff 0%,#f4f7f5 100%); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 860px; margin-bottom: 22px; font-size: clamp(44px,6.6vw,88px); line-height: .94; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(32px,4.6vw,58px); line-height: 1; letter-spacing: 0; }
.hero-copy > p:not(.eyebrow), .section-heading p, .proof-copy p { max-width: 700px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.primary, .secondary { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 24px; font-weight: 900; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.primary { background: var(--ink); color: var(--white); box-shadow: 0 18px 40px rgba(7,20,17,.18); }
.secondary { border: 1px solid var(--line); background: var(--white); }
.primary:hover, .secondary:hover { transform: translateY(-2px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { border: 1px solid rgba(15,122,85,.16); border-radius: 999px; background: rgba(255,255,255,.7); padding: 9px 12px; color: #36544a; font-size: 13px; font-weight: 900; }

.hero-visual { position: relative; margin: 0; animation: floatHero 7s ease-in-out infinite; }
.hero-visual img { width: 100%; border-radius: 32px; box-shadow: 0 34px 90px rgba(7,20,17,.24); }
.hero-visual:before { content: ""; position: absolute; inset: -18px; z-index: -1; border-radius: 42px; background: linear-gradient(135deg, rgba(138,240,193,.7), rgba(126,231,239,.16), transparent); filter: blur(12px); }
figcaption { position: absolute; right: 24px; bottom: 24px; border: 1px solid rgba(255,255,255,.24); border-radius: 18px; background: rgba(7,20,17,.72); padding: 14px 16px; color: white; backdrop-filter: blur(16px); }
figcaption strong, figcaption span { display: block; }
figcaption span { margin-top: 3px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 800; }

.logo-strip { display: flex; gap: 14px; overflow: hidden; border-block: 1px solid var(--line); background: var(--ink); padding: 16px clamp(18px,5vw,72px); }
.logo-strip span { flex: 1; min-width: max-content; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 900; letter-spacing: .1em; text-align: center; text-transform: uppercase; }

.section, .flow-section, .proof-section, .testimonial-section, .cta-section { padding: 78px clamp(18px,5vw,72px); }
.section-heading { max-width: 820px; margin-bottom: 30px; }
.cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.product-card, .flow-step, .quote-card { position: relative; overflow: hidden; border: 1px solid rgba(220,232,226,.92); border-radius: 24px; background: var(--white); padding: 28px; box-shadow: 0 18px 44px rgba(7,20,17,.06); }
.product-card { min-height: 330px; transition: transform .26s ease, box-shadow .26s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(7,20,17,.12); }
.product-card.featured { background: linear-gradient(150deg,#10231d,#0b4d3a); color: white; }
.product-card.featured p { color: rgba(255,255,255,.68); }
.number { display: inline-grid; width: 42px; height: 42px; place-items: center; border-radius: 14px; background: #e7f8ef; color: var(--green); font-weight: 900; }
.featured .number { background: rgba(138,240,193,.16); color: var(--mint); }
.product-card h3 { margin: 24px 0 12px; font-size: 28px; }
.product-card p, .flow-step p { color: var(--muted); line-height: 1.65; }
.mini-ui { display: grid; gap: 10px; margin-top: 34px; }
.mini-ui span { height: 18px; border-radius: 999px; background: linear-gradient(90deg,#dff5eb,#fff); animation: shimmer 2.6s ease-in-out infinite; }
.mini-ui span:nth-child(2) { width: 78%; animation-delay: .2s; }
.mini-ui span:nth-child(3) { width: 58%; animation-delay: .4s; }
.pay-pulse { position: absolute; left: 28px; right: 28px; bottom: 28px; border: 1px solid rgba(138,240,193,.28); border-radius: 18px; background: rgba(138,240,193,.12); padding: 16px; color: var(--mint); font-weight: 900; animation: glow 2s ease-in-out infinite; }
.route-line { position: absolute; left: 30px; right: 30px; bottom: 38px; height: 4px; border-radius: 999px; background: #dce8e2; }
.route-line:before { content: ""; position: absolute; inset: 0 42% 0 0; border-radius: inherit; background: var(--green); animation: route 3s ease-in-out infinite; }
.route-line i { position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%; background: white; border: 3px solid var(--green); transform: translateY(-50%); }
.route-line i:nth-child(1) { left: 0; }
.route-line i:nth-child(2) { left: 48%; }
.route-line i:nth-child(3) { right: 0; }

.flow-section { background: #fff; border-block: 1px solid var(--line); }
.flow-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.flow-step strong { color: var(--green); font-size: 13px; letter-spacing: .12em; }
.flow-step h3 { margin: 16px 0 10px; font-size: 21px; }

.proof-section { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.78fr); gap: 34px; align-items: center; }
.stats-panel { display: grid; gap: 12px; border-radius: 30px; background: var(--ink); padding: 18px; color: white; box-shadow: 0 26px 68px rgba(7,20,17,.16); }
.stats-panel div { border-radius: 20px; background: rgba(255,255,255,.08); padding: 22px; }
.stats-panel strong { display: block; color: var(--mint); font-size: 44px; line-height: 1; }
.stats-panel span { display: block; margin-top: 7px; color: rgba(255,255,255,.68); font-weight: 900; }

.testimonial-section { padding-top: 20px; }
.quote-card { max-width: 980px; margin: auto; border-color: rgba(15,122,85,.18); background: linear-gradient(135deg,#fff,#edf8f2); text-align: center; }
.quote-card p { margin-bottom: 14px; font-size: clamp(28px,4vw,44px); line-height: 1.16; font-weight: 900; }
.quote-card span { color: var(--green); font-weight: 900; }

.cta-section { margin: 0 clamp(18px,5vw,72px) 72px; border-radius: 34px; background: linear-gradient(135deg, rgba(138,240,193,.18), transparent 36%), var(--ink); color: white; text-align: center; }
.cta-section h2 { max-width: 820px; margin-inline: auto; }
.cta-section .primary { background: var(--mint); color: var(--ink); }

footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); background: var(--white); padding: 24px clamp(18px,5vw,72px); color: #5d6b66; font-size: 14px; font-weight: 800; }
footer strong { color: var(--ink); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes floatHero { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes shimmer { 0%,100% { opacity: .48; transform: scaleX(.94); transform-origin: left; } 50% { opacity: 1; transform: scaleX(1); } }
@keyframes glow { 0%,100% { box-shadow: 0 0 0 rgba(138,240,193,0); } 50% { box-shadow: 0 0 28px rgba(138,240,193,.22); } }
@keyframes route { 0% { right: 92%; } 55%,100% { right: 8%; } }

@media (max-width: 980px) {
  .hero, .proof-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .cards, .flow-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .site-header { display: grid; }
  nav { overflow-x: auto; padding-bottom: 2px; }
  h1 { font-size: clamp(42px,13vw,62px); }
  .hero { padding-top: 30px; }
  .cards, .flow-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .primary, .secondary { width: 100%; }
  figcaption { position: static; margin-top: 12px; background: var(--ink); }
  .logo-strip span { min-width: 170px; }
  .cta-section { margin-inline: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
