:root{
  --bg:#ffffff;
  --panel:#ffffff;
  --panel-soft:#f8fafc;
  --panel-alt:#f4f7fb;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.10);
  --line-strong:rgba(15,23,42,.16);
  --accent:#1d4ed8;
  --accent-2:#0ea5e9;
  --accent-soft:rgba(29,78,216,.08);
  --good:#16a34a;

  --radius:20px;
  --radius-sm:14px;
  --shadow-sm:0 8px 24px rgba(2,6,23,.06);
  --shadow:0 18px 48px rgba(2,6,23,.08);

  --max:1280px;
  --transition:180ms ease;
}

/* Base */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  text-rendering:optimizeLegibility;
}

img,
video{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.center{
  text-align:center;
}

.muted{
  color:var(--muted);
}

.small{
  font-size:14px;
}

.tiny{
  font-size:12px;
}

/* Focus */
:focus-visible{
  outline:3px solid rgba(29,78,216,.18);
  outline-offset:3px;
  border-radius:10px;
}

/* Accessibility */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#ffffff;
  color:#000000;
  border-radius:12px;
  z-index:9999;
  border:1px solid var(--line-strong);
  box-shadow:var(--shadow-sm);
}

/* Top bar */
.topbar{
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:10px 0;
}

.topbar-right{
  display:flex;
  align-items:center;
  gap:14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(15,23,42,.02);
  color:var(--muted);
  font-size:12px;
  font-weight:600;
}

.topbar-link{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  transition:color var(--transition);
}

.topbar-link:hover{
  color:var(--text);
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:96px;;
}

.brand{
  display:flex;
  align-items:center;
  gap:0;
  font-weight:800;
  letter-spacing:.1px;
}


.brand-name{
  font-size:15px;
}

.nav{
  display:flex;
  align-items:center;
  gap:6px;
}

.nav a{
  color:var(--muted);
  font-size:14px;
  font-weight:600;
  padding:10px 12px;
  border-radius:12px;
  transition:background var(--transition), color var(--transition), transform var(--transition);
}

.nav a:hover{
  background:rgba(15,23,42,.04);
  color:var(--text);
}

.nav-cta{
  color:#ffffff !important;
  background:linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  box-shadow:0 10px 22px rgba(29,78,216,.18);
}

.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#ffffff;
  cursor:pointer;
}

.nav-toggle-bars{
  position:relative;
  display:block;
  width:18px;
  height:2px;
  margin:0 auto;
  background:var(--text);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:var(--text);
}

.nav-toggle-bars::before{
  top:-6px;
}

.nav-toggle-bars::after{
  top:6px;
}

/* Hero */
.hero{
  position:relative;
  padding:76px 0 36px;
  overflow:hidden;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(29,78,216,.10), transparent 60%),
    radial-gradient(900px 500px at 100% 10%, rgba(14,165,233,.10), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .9fr;
  gap:30px;
  align-items:start;
}

.eyebrow,
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 12px;
  padding:7px 12px;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.35px;
}

.hero h1{
  margin:0 0 16px;
  font-size:clamp(1.95rem, 3.1vw, 2.95rem);
  line-height:1.08;
  letter-spacing:-.04em;
  max-width:18ch;
}

.lead{
  margin:0 0 22px;
  font-size:18px;
  color:var(--muted);
  max-width:64ch;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.hero-support{
  margin:0 0 22px;
  font-size:14px;
  color:var(--muted);
  font-weight:600;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.mini-card{
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow-sm);
}

.mini-card strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
}

.mini-card span{
  display:block;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.hero-side{
  display:grid;
  gap:16px;
}

.media-card{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--line);
  background:#ffffff;
  box-shadow:var(--shadow);
}

.hero-media img,
.hero-video{
  width:100%;
  min-height:280px;
  max-height:420px;
  object-fit:cover;
  display:block;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.85);
  color:var(--text);
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-sm);
}

.btn.primary{
  color:#ffffff;
  border-color:transparent;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
}

.btn.ghost{
  background:#ffffff;
}

.btn.full{
  width:100%;
}

/* Cards / forms */
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  padding:22px;
}

.card-title{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.2;
}

.form{
  display:grid;
  gap:14px;
  margin-top:14px;
}

label{
  display:grid;
  gap:7px;
  color:var(--muted);
  font-size:14px;
  font-weight:600;
}

input,
select,
textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#ffffff;
  color:var(--text);
  transition:border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input::placeholder,
textarea::placeholder{
  color:#7b8aa0;
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(29,78,216,.40);
  box-shadow:0 0 0 4px rgba(29,78,216,.10);
  outline:none;
}

.form-note{
  margin-top:10px;
}

/* Lists */
.checklist{
  margin:14px 0 0;
  padding:0;
  list-style:none;
}

.checklist li{
  position:relative;
  margin:10px 0;
  padding-left:28px;
  color:var(--muted);
}

.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--good);
  font-weight:900;
}

.bullets{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.bullets li{
  margin:8px 0;
}

/* Sections */
.section{
  padding:88px 0;
}

.section.alt{
  background:var(--panel-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:26px;
}

.section-head h2{
  margin:0;
  font-size:clamp(2rem, 2.6vw, 2.5rem);
  line-height:1.08;
  letter-spacing:-.03em;
}

.section-intro{
  max-width:720px;
  margin:0;
  font-size:16px;
}

/* Outcomes strip */
.outcomes-strip{
  padding:30px 0;
  background:var(--panel-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.outcomes-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:22px;
}

.outcome-item{
  padding:4px 4px;
}

.outcome-item h3{
  margin:0 0 8px;
  font-size:18px;
}

.outcome-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

/* Grid */
.grid{
  display:grid;
  gap:16px;
}

.grid.two{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.grid.three{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.grid.four{
  grid-template-columns:repeat(4, minmax(0,1fr));
}

.grid.five{
  grid-template-columns:repeat(5, minmax(0,1fr));
}

/* Tiles */
.tile{
  height:100%;
  padding:22px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--panel);
  box-shadow:var(--shadow-sm);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tile:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:rgba(29,78,216,.14);
}

.tile.compact{
  padding:18px;
}

.tile h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.25;
  letter-spacing:-.01em;
}

.tile p{
  margin:0 0 10px;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
}

.service-tile{
  display:flex;
  flex-direction:column;
}

.tile-img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:16px;
  border:1px solid var(--line);
}

.service-tag{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin:0 0 10px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent);
  font-size:12px;
  font-weight:700;
  letter-spacing:.28px;
  text-transform:uppercase;
}

/* Link tiles */
.link{
  color:var(--accent);
  font-weight:800;
}

.link:hover{
  text-decoration:underline;
}

.link-tile{
  position:relative;
  overflow:hidden;
}

.link-tile::after{
  content:"";
  position:absolute;
  inset:auto -60px -80px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(29,78,216,.10), transparent 60%);
  transform:rotate(10deg);
}

/* Split */
.split{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:24px;
  align-items:start;
}

.about-split{
  align-items:center;
}

.card.wide{
  margin-top:22px;
}

.grid-form{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.span-2{
  grid-column:span 2;
}

/* Section media */
.section-media{
  margin:22px 0 28px;
}

.section-media img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:20px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

/* Values */
.values{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.value{
  display:grid;
  gap:4px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(15,23,42,.02);
}

/* Talent video */
.video-strip{
  margin:24px 0 34px;
  overflow:hidden;
  border-radius:20px;
  border:1px solid var(--line);
  background:#000;
  box-shadow:var(--shadow);
}

.loop-video{
  width:100%;
  height:360px;
  object-fit:cover;
}

/* CTA panel */
.cta-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:24px;
  background:
    radial-gradient(700px 260px at 0% 0%, rgba(29,78,216,.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow:var(--shadow-sm);
}

.cta-panel h2{
  margin:0 0 10px;
  font-size:clamp(1.9rem, 3vw, 2.5rem);
  line-height:1.08;
  letter-spacing:-.03em;
}

.cta-panel p{
  margin:0;
  max-width:700px;
}

.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
  min-width:max-content;
}

/* Contact */
.contact-list{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.contact-list li{
  margin:10px 0;
}

.notice{
  margin-top:18px;
  display:grid;
  gap:6px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(15,23,42,.02);
}

/* Footer */
.footer{
  padding:32px 0;
  border-top:1px solid var(--line);
  background:#ffffff;
}

.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.footer-brand{
  margin-bottom:10px;
}

.footer-copy{
  max-width:560px;
  margin:0 0 10px;
}

.footer-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.footer-links a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
  font-size:14px;
  font-weight:600;
  transition:background var(--transition), color var(--transition);
}

.footer-links a:hover{
  color:var(--text);
  background:rgba(15,23,42,.04);
}

/* Toast */
.toast{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  max-width:min(560px, calc(100% - 28px));
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(15,23,42,.94);
  color:#ffffff;
  text-align:center;
  box-shadow:var(--shadow);
  opacity:0;
  pointer-events:none;
  transition:opacity var(--transition), transform var(--transition);
  z-index:80;
}

/* Screen reader helper */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Responsive */
@media (max-width: 1100px){
  .hero-grid,
  .split{
    grid-template-columns:1fr;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .grid.five{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .cta-panel{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-actions{
    justify-content:flex-start;
    min-width:0;
  }
}

@media (max-width: 860px){
  .topbar-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .header-inner{
    min-height:72px;
  }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    display:none;
    padding:14px 20px 18px;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid var(--line);
    box-shadow:0 20px 30px rgba(2,6,23,.06);
  }

  .nav.open{
    display:grid;
    gap:8px;
  }

  .nav a{
    padding:12px;
  }

  .section{
    padding:72px 0;
  }

  .section-head{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:22px;
  }

  .grid.three,
  .grid.four{
    grid-template-columns:1fr 1fr;
  }

  .grid-form{
    grid-template-columns:1fr;
  }

  .span-2{
    grid-column:auto;
  }

  .loop-video{
    height:260px;
  }
}

@media (max-width: 640px){
  .container{
    width:min(var(--max), calc(100% - 24px));
  }

  .hero{
    padding:56px 0 26px;
  }

  .hero h1{
    max-width:none;
  }

  .lead{
    font-size:17px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five,
  .outcomes-grid{
    grid-template-columns:1fr;
  }

  .section-media img{
    height:240px;
  }

  .tile-img{
    height:210px;
  }

  .card,
  .tile{
    padding:18px;
  }

  .cta-panel{
    padding:22px;
  }

  .footer-grid{
    flex-direction:column;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}

.site-logo{
  display:block;
  width:180px;
  height:auto;
}