:root{
  --bg:#081122;
  --surface:#ffffff;
  --surface-soft:#fcf8ff;
  --text:#0f172a;
  --muted:#5b6475;
  --line:#eadcf6;

  /* Logo-inspired purple */
  --brand:#a52ae8;
  --brand-2:#8b1fd1;
  --accent:#c25cff;

  --success:#0f766e;
  --warning:#b45309;
  --shadow:0 18px 50px rgba(15,23,42,.10);
  --shadow-lg:0 30px 80px rgba(2,6,23,.22);
  --radius:22px;
  --max:1180px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f8fbff 0%,#eef3ff 100%);
  line-height:1.65;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:60;
}

.navbar-wrap{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(230,236,245,.9);
}

.navbar{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.1px;
}

.brand-mark{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 16px 30px rgba(79,70,229,.28);
  font-size:20px;
  font-weight:900;
  flex-shrink:0;
  overflow:hidden;
}

.brand-mark-image{
  background:#ffffff;
  border:1px solid rgba(165,42,232,.18);
  box-shadow:0 10px 24px rgba(165,42,232,.16);
  padding:4px;
}

.brand-mark-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  border-radius:12px;
}

.brand-text strong{
  display:block;
  font-size:1rem;
}

.brand-text small{
  display:block;
  color:#64748b;
  font-size:.8rem;
  font-weight:700;
}

.nav{
  display:flex;
  gap:24px;
  align-items:center;
  color:#334155;
  font-weight:700;
}

.nav a:hover{
  color:var(--brand);
}

.menu-toggle{
  display:none;
  border:none;
  background:none;
  font-size:1.6rem;
  cursor:pointer;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  transition:.2s ease;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 16px 35px rgba(165,42,232,.25);
}

.btn-secondary{
  background:#fff;
  border-color:#dbe3ef;
  color:#0f172a;
}

.btn-dark{
  background:#0f172a;
  color:#fff;
}

.hero-section{
  position:relative;
  overflow:hidden;
  background:
  radial-gradient(circle at 0% 0%, rgba(165,42,232,.18), transparent 28%),
  radial-gradient(circle at 100% 0%, rgba(194,92,255,.14), transparent 24%),
  radial-gradient(circle at 100% 100%, rgba(139,31,209,.14), transparent 22%),
  linear-gradient(180deg, #fcf8ff 0%, #f7efff 75%, #ffffff 100%);
  padding:28px 0 68px;
}

.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size:32px 32px;
  opacity:.22;
  pointer-events:none;
}

.contact-strip{
  position:relative;
  z-index:1;
  margin-bottom:20px;
}

.contact-card{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(10px);
  border:1px solid rgba(230,236,245,.95);
  border-radius:20px;
  padding:14px 16px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  box-shadow:var(--shadow);
}

.contact-item{
  padding:8px 10px;
  border-radius:14px;
  background:rgba(248,251,255,.85);
  border:1px solid #e6ecf5;
}

.contact-label{
  font-size:.8rem;
  color:#64748b;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:4px;
}

.contact-value{
  font-weight:800;
  color:#0f172a;
  word-break:break-word;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #dfe7f2;
  color:#334155;
  font-weight:800;
  font-size:.92rem;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
  margin-bottom:18px;
}

h1{
  margin:0 0 16px;
  font-size:clamp(2.6rem,5vw,4.7rem);
  line-height:1.02;
  letter-spacing:-.045em;
}

.hero-lead{
  margin:0 0 26px;
  font-size:1.08rem;
  color:#475569;
  max-width:62ch;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.hero-points{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:#475569;
  font-weight:700;
  font-size:.95rem;
  margin-bottom:24px;
}

.hero-points span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e2e8f0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:30px;
}

.stat-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  text-align:center;
  box-shadow:0 10px 25px rgba(15,23,42,.04);
}

.stat-card strong{
  display:block;
  font-size:1.25rem;
  margin-bottom:6px;
}

.stat-card span{
  color:#64748b;
  font-weight:700;
  font-size:.92rem;
}

.hero-card{
  display:grid;
  gap:18px;
}

.hero-panel{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow-lg);
}

.hero-panel.light{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-panel h3{
  margin-top:0;
}

.clean-list{
  padding-left:18px;
  margin:0;
}

.clean-list li{
  margin-bottom:10px;
}

.section{
  padding:86px 0;
}

.section-head{
  max-width:780px;
  margin-bottom:34px;
}

.section-head h2{
  margin:0 0 12px;
  font-size:clamp(1.95rem, 3.8vw, 3rem);
  line-height:1.08;
  letter-spacing:-.03em;
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-size:1.04rem;
}

.section-head-light p{
  color:#d8e3f0;
}

.section-surface{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
}

.section-dark{
  position:relative;
  overflow:hidden;
  background:
  radial-gradient(circle at 15% 20%, rgba(165,42,232,.18), transparent 26%),
  radial-gradient(circle at 85% 80%, rgba(194,92,255,.12), transparent 24%),
  linear-gradient(135deg, #14081f 0%, #241036 100%);
  color:#fff;
}

.card-grid{
  display:grid;
  gap:22px;
}

.card-grid.three{
  grid-template-columns:repeat(3,1fr);
}

.card-grid.two{
  grid-template-columns:repeat(2,1fr);
}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.card:hover{
  transform:translateY(-2px);
  transition:.2s ease;
}

.card-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#eef2ff,#f5f3ff);
  color:var(--brand);
  font-size:25px;
  margin-bottom:15px;
}

.card h3{
  margin:0 0 10px;
  font-size:1.16rem;
}

.card p{
  margin:0;
  color:var(--muted);
}

.dark-card{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  box-shadow:none;
  backdrop-filter:blur(8px);
}

.dark-card h3{
  color:#fff;
}

.dark-text{
  color:#d8e3f0 !important;
}

.dark-icon{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.list{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.list-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.check{
  width:26px;
  height:26px;
  border-radius:50%;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  background:#ecfdf5;
  color:#047857;
  border:1px solid #bbf7d0;
  margin-top:2px;
  font-weight:900;
}

.dark-check{
  background:rgba(16,185,129,.16);
  color:#86efac;
  border-color:rgba(134,239,172,.25);
}

.support-inline{
  margin-top:16px;
  color:#fff;
}

.timeline{
  display:grid;
  gap:14px;
}

.timeline-item{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:14px;
  align-items:start;
  padding:18px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.timeline-number{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  font-weight:900;
  font-size:1.05rem;
}

.timeline-item h3{
  margin:0 0 6px;
}

.timeline-item p{
  margin:0;
  color:var(--muted);
}

.map-wrap{
  border-radius:18px;
  overflow:hidden;
  border:1px solid #e6ecf5;
  margin-top:16px;
}

.map-action,
.policy-action{
  margin-top:14px;
}

.cta-box{
  border-radius:30px;
  padding:36px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  box-shadow:var(--shadow-lg);
}

.cta-box h2{
  margin-top:0;
  margin-bottom:10px;
  font-size:clamp(1.95rem,4vw,3rem);
  line-height:1.1;
}

.cta-box p{
  margin:0 0 20px;
  color:#eef2ff;
}

.site-footer{
  margin-top:20px;
  background:#081122;
  color:#e2e8f0;
  padding:26px 0 52px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.25fr .85fr .85fr;
  gap:24px;
  padding:26px 0 16px;
}

.footer-brand{
  margin-bottom:10px;
}

.footer-desc{
  margin:0;
  color:#cbd5e1;
  max-width:44ch;
}

.footer-title{
  font-weight:800;
  color:#fff;
  margin:0 0 12px;
}

.footer-links{
  display:grid;
  gap:10px;
  color:#cbd5e1;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:16px;
  padding-top:18px;
  color:#94a3b8;
  font-size:.95rem;
}

@media (max-width: 980px){
  .contact-card,
  .hero-grid,
  .card-grid.three,
  .card-grid.two,
  .stats-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .nav{
    display:none;
    position:absolute;
    top:82px;
    left:16px;
    right:16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:16px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:flex-start;
  }

  .nav.show{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .nav-cta{
    display:none;
  }

  .section{
    padding:66px 0;
  }

  .hero-section{
    padding-top:24px;
  }
}