/* ─── Google Fonts ───────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Outfit:wght@600;700&display=swap');

/* ─── Brand Tokens ───────────────────────────── */
:root{
  --brand-navy:#0B1F3B;
  --brand-teal:#028090;
  --brand-white:#FFFFFF;
  --brand-gray:#6B7280;
  --brand-error:#FF6B6B;

  --radius:12px;
  --shadow-sm:0 1px 4px rgba(0,0,0,.04);
  --shadow-md:0 4px 16px rgba(0,0,0,.08);

  --fs-base:clamp(1rem,2.2vw,1.125rem);
  --ff-heading:'Outfit',Poppins,sans-serif;
  --ff-body:'Inter',system-ui,sans-serif;
}

/* ─── Reset / Base ───────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{
  font:400 var(--fs-base)/1.55 var(--ff-body);
  color:var(--brand-navy);
  background:var(--brand-white);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto}
a{color:inherit;text-decoration:none}

/* ─── Utilities ──────────────────────────────── */
.container{max-width:1040px;margin:0 auto;padding:3rem 1rem}
.accent{color:var(--brand-teal)}
.subtitle{color:var(--brand-gray);margin:.6rem 0 1.8rem}
.text-center{text-align:center}

/* Typography */
h1,h2,h3{font-family:var(--ff-heading);font-weight:700;line-height:1.15}
h1{font-size:clamp(2.25rem,5vw,3.25rem)}
h2{font-size:2rem;margin-bottom:1rem}
h3{font-size:1.25rem;margin-bottom:.4rem}

/* ─── Buttons ────────────────────────────────── */
.btn{
  display:inline-block;font-weight:600;border-radius:var(--radius);
  padding:.9rem 2rem;transition:.2s;
}
.btn--primary{background:var(--brand-teal);color:var(--brand-white)}
.btn--primary:hover{background:#02a2a1}
.btn--ghost{border:2px solid var(--brand-teal);color:var(--brand-teal)}
.btn--ghost:hover{background:var(--brand-teal);color:var(--brand-white)}

/* ─── Navigation ─────────────────────────────── */
.nav{background:var(--brand-white);box-shadow:var(--shadow-sm);position:sticky;top:0;z-index:100}
.nav__inner{display:flex;align-items:center;justify-content:space-between;padding:.75rem 1rem}
.nav__brand img{width:130px}
.nav__links{display:none;list-style:none;gap:1.25rem}
.nav__links a{font-weight:600}
@media(min-width:720px){.nav__links{display:flex}}

/* ─── Hero Section ───────────────────────────── */
.hero{display:grid;gap:2.5rem;align-items:center}
@media(min-width:720px){.hero{grid-template-columns:1fr 1fr}}
.hero__art img{width:100%;max-width:420px}
.hero small{display:block;margin-top:.75rem;color:var(--brand-gray)}

/* ─── Features Grid ──────────────────────────── */
.features .feature-grid{display:grid;gap:2rem;margin-top:2rem}
@media(min-width:720px){.features .feature-grid{grid-template-columns:repeat(3,1fr)}}
.feature p{color:var(--brand-gray)}

/* ─── Proof (Logo Strip) ─────────────────────── */
.logo-strip{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center;margin-top:1.5rem}
.logo-strip img{width:140px;opacity:.85}

/* ─── CTA Bar ────────────────────────────────── */
.cta-bar{background:var(--brand-navy);color:var(--brand-white);padding:3rem 0;text-align:center}
.cta-bar__inner{display:flex;flex-direction:column;gap:1.5rem;align-items:center}
@media(min-width:640px){.cta-bar__inner{flex-direction:row;justify-content:space-between}}
.cta-bar__title{margin:0;font-family:var(--ff-heading);font-size:1.8rem}

/* ─── Footer ─────────────────────────────────── */
.footer{background:var(--brand-navy);color:var(--brand-white);padding:2.5rem 1rem;font-size:.9rem}
.footer a{color:var(--brand-teal);margin:0 .3rem}
.footer__inner{text-align:center}

/* ─── Logo (stand-alone utility) ─────────────── */
.logo{width:130px;margin-bottom:1.75rem}

/* ─── Shadows (optional helper) ──────────────── */
.shadow-md{box-shadow:var(--shadow-md)}
