/* style.css */
:root{
  --bg: #f6f3ee;          /* off-white */
  --bg2:#fbfaf8;          /* brighter off-white */
  --card:#ffffff;
  --text:#111827;         /* near-black */
  --muted: rgba(17,24,39,.72);
  --line: rgba(17,24,39,.10);

  --accent:#2b5cff;       /* clean blue */
  --shadow: 0 18px 50px rgba(17,24,39,.10);
  --radius: 18px;

  /* Hero image hook (blank by default). Set this to: url('your-image.jpg') */
  --hero-image: none;

  /* Hero band treatment (top-of-page) */
  --hero-band-top: rgba(43,92,255,.16);
  --hero-band-mid: rgba(43,92,255,.08);
  --hero-band-bottom: rgba(246,243,238,0);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: var(--bg2);
  overflow-x:hidden;
}

.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}
.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Fixed hero band (prevents “two pages” seam by fading out smoothly) */
.hero-band{
  display:none;
}

/* Header / Nav */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(251,250,248,.78);
  border-bottom: 1px solid var(--line);
}
.nav{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
  font-weight:850;
  letter-spacing:.2px;
}
.brand-mark{
  width:36px;height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--accent);
}
.brand-mark svg{
  width:36px;height:36px;
  display:block;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(43,92,255,.12);
}
.brand-name{ font-size:16px; }

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  color: rgba(17,24,39,.78);
  text-decoration:none;
  font-size:14px;
}
.nav-links a:hover{ color: var(--text); }

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  height:42px;
  width:46px;
  cursor:pointer;
}
.burger{
  display:block;
  width:18px;height:2px;
  background: rgba(17,24,39,.82);
  margin:0 auto;
  position:relative;
}
.burger::before,.burger::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;height:2px;
  background: rgba(17,24,39,.82);
}
.burger::before{ top:-6px; }
.burger::after{ top:6px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  color: var(--text);
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.85);
  border-color: rgba(17,24,39,.16);
}
.btn-primary{
  border-color: rgba(43,92,255,.35);
  background: linear-gradient(180deg, rgba(43,92,255,1), rgba(43,92,255,.86));
  color: #fff;
  box-shadow: 0 18px 40px rgba(43,92,255,.18);
}
.btn-primary:hover{
  background: linear-gradient(180deg, rgba(43,92,255,1), rgba(43,92,255,.92));
}
.btn-ghost{
  background: rgba(17,24,39,.04);
}

/* Hero (image-ready) */
.hero{
  position:relative;
  min-height: 40vh;
  display:grid;
  align-items:start;
  padding: 22px 0 40px;
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:-1;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-media::after{
  content:none;
}

.hero-inner{
  display:grid;
  place-items:center;
}
.hero-card{
  width:min(940px, 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  padding: 34px 26px 26px;
  position:relative;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border: 1px solid rgba(43,92,255,.18);
  background: rgba(43,92,255,.06);
  color: rgba(17,24,39,.86);
  font-size:12px;
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:18px;
}

h1{
  margin:0;
  font-size: clamp(40px, 5.6vw, 66px);
  line-height:1.06;
  letter-spacing:-0.02em;
}
.sub{
  margin:18px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height:1.65;
  max-width: 70ch;
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

/* Stats row */
.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.stat{
  border:1px solid var(--line);
  background: rgba(17,24,39,.03);
  border-radius: 16px;
  padding: 14px 14px;
}
.stat-k{
  font-size:12px;
  color: rgba(43,92,255,.92);
  font-weight:900;
  letter-spacing:.2px;
  margin-bottom:6px;
}
.stat-v{
  font-size:14px;
  color: rgba(17,24,39,.86);
  line-height:1.35;
}

/* Sections */
.section{
  padding: 56px 0;
}

.section h2{
  margin:0 0 12px;
  font-size: 28px;
  letter-spacing:-0.01em;
}
.section p{
  margin:0;
  color: var(--muted);
  line-height:1.75;
  max-width: 78ch;
}
.section-head{ margin-bottom: 18px; }

.grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(223, 223, 223, 0.78);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
}
.card h3{
  margin:0 0 8px;
  font-size: 16px;
}
.card p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

/* Callout */
.callout{
  margin-top: 18px;
  border: 1px solid rgba(43,92,255,.18);
  background: rgba(43,92,255,.06);
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  gap:12px;
  align-items: center;
}
.callout-k{
  font-size:12px;
  font-weight:900;
  color: rgba(43,92,255,.96);
  letter-spacing:.2px;
  text-transform: uppercase;
  white-space:nowrap;
}
.callout-v{
  color: rgba(17,24,39,.78);
  line-height:1.6;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.contact-list{
  padding-left:0;
  list-style:none;
  margin:18px 0 0;
  color: var(--muted);
}
.dot{
  display:inline-block;
  width:8px;height:8px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(43,92,255,1), rgba(17,24,39,.92));
  margin-right:10px;
  transform: translateY(-1px);
}
.form{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
}
label{
  display:block;
  font-size:12px;
  color: rgba(17,24,39,.86);
  font-weight:800;
  margin-bottom:10px;
}
input, textarea{
  width:100%;
  margin-top:6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.14);
  background: rgba(251,250,248,.9);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(43,92,255,.45);
  box-shadow: 0 0 0 4px rgba(43,92,255,.14);
}
.form .btn{ width:100%; margin-top:8px; }
.form-note{
  margin:10px 0 0;
  color: rgba(17,24,39,.72);
  font-size:12px;
  min-height: 16px;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  padding: 18px 0;
  background: rgba(255,255,255,.6);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.fineprint{
  color: rgba(17,24,39,.62);
  font-size:12px;
}

/* Responsive */
@media (max-width: 920px){
  .stats{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-links{
    position:absolute;
    right:4vw;
    top:78px;
    width:min(340px, 92vw);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    border-radius: 16px;
    border:1px solid var(--line);
    background: rgba(251,250,248,.92);
    box-shadow: 0 14px 40px rgba(17,24,39,.10);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:10px 12px; border-radius: 12px; }
  .nav-links a:not(.btn):hover{ background: rgba(17,24,39,.04); }
}





