/* Responsive Premium Onepager */

:root{
  --primary:#0055aa;
  --primary-2:#0b3f7a;
  --bg:#f6f9ff;
  --surface:#ffffff;
  --text:#0b1220;
  --muted:#556179;
  --border:rgba(11,18,32,.10);
  --shadow: 0 18px 45px rgba(11,18,32,.10);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --ring: rgba(0,85,170,.35);
  --shadow-sm: 0 10px 28px rgba(11,18,32,.08);
  --shadow-lg: 0 22px 60px rgba(11,18,32,.14);
  --glass: rgba(255,255,255,.70);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: 100px; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 500px at 15% 0%, rgba(0,85,170,.14), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(0,85,170,.10), transparent 55%),
    var(--bg);
}

img{ max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset: 3px; }

/* Accessibility & polish */
:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 10px;
}
::selection{ background: rgba(0,85,170,.18); }

a, button, .btn, .card, .contact-card, .step{
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease, color .18s ease;
}


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

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  position:fixed;
  left:20px; top:20px;
  width:auto; height:auto;
  padding:10px 12px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:var(--shadow);
  z-index:1000;
}

.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;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(246,249,255,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand-logo{ height:72px; width:auto; display:block; }

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  padding:10px 10px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 500;
}
.nav a:hover{ background: rgba(0,85,170,.08); text-decoration:none; }
.nav-cta{ background: var(--primary); color: white !important; }
.nav-cta:hover{ background: var(--primary-2) !important; }

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background: var(--glass);
  border-radius: 12px;
  height:44px;
  width:48px;
  padding:0;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.burger{
  display:block;
  width:20px;
  height:2px;
  background: var(--text);
  margin: 0 auto;
  position: relative;
  border-radius: 2px;
}
.burger::before,.burger::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;height:2px;
  background: var(--text);
  border-radius:2px;
}
.burger::before{ top:-6px; }
.burger::after{ top:6px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  font-weight: 600;
  border:1px solid transparent;
  text-decoration:none !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.btn-primary{ background: var(--primary); color:#fff; }
.btn-primary:hover{ background: var(--primary-2); }
.btn-secondary{ background: #0b1220; color:#fff; }
.btn-secondary:hover{ background: #000; }
.btn-ghost{ background: var(--glass); border-color: var(--border); }
.btn-ghost:hover{ background: #fff; }

/* Hero */
.hero{ padding: 54px 0 22px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: stretch;
}
.eyebrow{
  display:inline-block;
  margin:0 0 12px;
  padding:7px 10px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.65);
  color: var(--primary-2);
  font-weight: 600;
  font-size: 13px;
}
.hero h1{
  margin:0 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.lead{
  margin:0 0 18px;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--muted);
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 18px;
}
.trust-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 6px;
}
.trust-badges span{
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.65);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}

/* Card */
.hero-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.profile{ display:flex; gap:14px; align-items:center; }
.profile-photo{
  width:74px; height:74px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex: 0 0 auto;
}
.profile-name{ margin:0; font-weight:700; }
.profile-role{ margin:4px 0 0; color:var(--muted); font-size:13px; line-height:1.35; }
.divider{ height:1px; background: var(--border); }
.quickfacts{ margin:0; padding-left:18px; color:var(--muted); line-height:1.55; }
.quickfacts strong{ color:var(--text); }

/* Sections */
.section{ padding: 54px 0; }
.section.alt{
  background: rgba(255,255,255,.68);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section h2{ margin:0 0 10px; font-size:26px; letter-spacing:-0.01em; }
.section-intro{ margin:0 0 22px; color:var(--muted); max-width:72ch; line-height:1.6; }

/* Cards grid */
.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(11,18,32,.06);
}
.card h3{ margin:0 0 10px; }
.card p{ margin:0 0 12px; color:var(--muted); line-height:1.6; }
.bullet{ margin:0; padding-left:18px; color:var(--text); line-height:1.6; }

/* About */
.about-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start; }
.about-grid p{ color:var(--muted); line-height:1.65; }
.highlights{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:14px; }
.highlight{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 10px 28px rgba(11,18,32,.06);
}
.kicker{
  margin:0 0 6px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-2);
  font-weight: 700;
}
.about-card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.checklist{ margin:10px 0 0; padding-left:0; list-style:none; color:var(--muted); }
.checklist li{
  padding-left:28px;
  margin:10px 0;
  position:relative;
  line-height:1.55;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  width:20px; height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background: rgba(0,85,170,.10);
  color: var(--primary);
  font-weight:800;
}

/* Steps */
.steps{ display:grid; gap:12px; max-width:920px; }
.step{
  display:flex;
  gap:14px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.72);
}
.step-no{
  width:34px; height:34px;
  border-radius:12px;
  background: rgba(0,85,170,.10);
  color: var(--primary);
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color:var(--muted); line-height:1.6; }

/* Contact */
.section.contact{ padding-bottom:68px; }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.contact-cards{ display:grid; gap:12px; margin-top:18px; }
.contact-card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 28px rgba(11,18,32,.06);
  display:grid;
  gap:6px;
}
.contact-card:hover{ border-color: rgba(0,85,170,.35); text-decoration:none; }
.contact-card .label{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--primary-2);
  font-weight:700;
}
.contact-card .value{ font-size:18px; font-weight:700; word-break: break-word; }
.contact-card .hint{ color:var(--muted); font-size:13px; }
.contact-box{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.muted{ color:var(--muted); line-height:1.6; }
.mini{
  margin:14px 0 16px;
  padding:12px 14px;
  border-radius: var(--radius-sm);
  border:1px dashed rgba(11,18,32,.18);
  background: rgba(11,18,32,.03);
}
.mini-title{ margin:0 0 8px; font-weight:700; }
.mini-body{ margin:0; color:var(--muted); line-height:1.6; }

/* Footer */
.site-footer{ border-top:1px solid var(--border); background: var(--glass); }
.footer-inner{
  padding:22px 0 12px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-brand{ margin:0; font-weight:800; }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; }
.footer-bottom{ padding:0 0 22px; }

/* Responsive */
@media (max-width: 980px){
  .container{ width:min(var(--max), calc(100% - 28px)); }
  .brand-logo{ height: 46px; }

  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }

  .nav{
    position:absolute;
    top:74px;
    right:20px;
    left:20px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }
  .nav a{ padding: 12px 12px; }

  .hero{ padding: 34px 0 10px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 14px; }
  .hero-actions .btn{ width:100%; }

  .cards{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .highlights{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}


/* Add-ons for v8 content */
.textlink{display:inline-block;margin-top:10px;font-weight:700;color:var(--primary-2);}
.textlink:hover{text-decoration:underline;}
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:start;}
.box{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:18px;box-shadow:0 10px 28px rgba(11,18,32,.06);}
.pill-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;}
.pill{padding:8px 10px;border-radius:999px;border:1px solid var(--border);background:rgba(255,255,255,.65);font-weight:600;font-size:13px;color:var(--text);}
.contact-card .value{word-break: break-word;}
@media (max-width: 980px){.split{grid-template-columns:1fr;}}


/* Micro-interactions */
.card:hover, .contact-card:hover, .step:hover, .hero-card:hover, .about-card:hover, .highlight:hover, .box:hover{
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(0,85,170,.22);
}
.btn:hover{ transform: translateY(-1px); }

/* Dark mode */
@media (prefers-color-scheme: dark){
  :root{
    --bg:#070b12;
    --surface:#0c1322;
    --text:#e9eef9;
    --muted:#b7c2d8;
    --border:rgba(233,238,249,.12);
    --glass: rgba(12,19,34,.72);
    --shadow: 0 18px 45px rgba(0,0,0,.55);
    --shadow-sm: 0 10px 28px rgba(0,0,0,.45);
    --shadow-lg: 0 22px 60px rgba(0,0,0,.60);
  }
  body{
    background:
      radial-gradient(1100px 520px at 15% 0%, rgba(0,85,170,.22), transparent 60%),
      radial-gradient(900px 520px at 90% 10%, rgba(0,85,170,.16), transparent 55%),
      var(--bg);
  }
  .btn-ghost{ background: rgba(12,19,34,.75); }
  .nav a:hover{ background: rgba(0,85,170,.18); }
  .section.alt{ background: rgba(12,19,34,.62); }
  .mini{ background: rgba(233,238,249,.04); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  a, button, .btn, .card, .contact-card, .step{ transition:none !important; }
  .card:hover, .contact-card:hover, .step:hover, .hero-card:hover, .about-card:hover, .highlight:hover, .box:hover,
  .btn:hover{ transform:none !important; }
}
