:root {
  --header-offset: 110px;
  --bg: #edf2ff;
  --bg-2: #f8faff;
  --surface: rgba(255,255,255,0.9);
  --surface-strong: #ffffff;
  --surface-dark: #0b1220;
  --surface-dark-2: #121b2e;
  --line: rgba(16, 24, 40, 0.1);
  --line-strong: rgba(16, 24, 40, 0.18);
  --text: #081223;
  --muted: #47556f;
  --primary: #0b57d0;
  --primary-2: #7c3aed;
  --accent: #ff6d00;
  --success: #198038;
  --cyan: #00897b;
  --purple: #7c3aed;
  --shadow: 0 30px 90px rgba(9, 18, 38, 0.16);
  --shadow-soft: 0 18px 52px rgba(9, 18, 38, 0.1);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(91, 91, 214, 0.16), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(11, 87, 208, 0.12), transparent 24%),
    radial-gradient(circle at 82% 85%, rgba(255, 109, 0, 0.1), transparent 20%),
    linear-gradient(180deg, #f4f7ff 0%, #edf2fc 48%, #f8fbff 100%);
  min-height: 100vh;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { overflow: clip; }
[data-page-hero], .page-hero, .hero { scroll-margin-top: calc(var(--header-offset) + 20px); }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.52)); }
.section.dark {
  background: linear-gradient(180deg, rgba(16, 22, 37, 0.97), rgba(20, 30, 50, 0.96));
  color: #fff;
}
.page-hero, .hero { padding: calc(var(--header-offset) + 26px) 0 74px; position: relative; }
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.section-head > * { flex: 1; }
.section-head h2, .kicker h1, .hero-copy h1 { margin: 8px 0 14px; line-height: 1.02; letter-spacing: -0.05em; }
.hero-grid, .split, .service-layout, .grid-2, .grid-3, .grid-4, .feature-grid, .engagement-grid, .authority-grid, .contact-grid, .brand-rail, .stats-grid, .proof-grid, .footer-grid, .hero-points, .hero-actions, .stack-grid, .metric-strip, .band-grid { display: grid; gap: 22px; }
.hero-grid { grid-template-columns: 1.12fr 0.88fr; align-items: center; }
.hero-copy h1 { font-size: clamp(2.15rem, 4vw, 3.4rem); max-width: 12.5ch; text-wrap: balance; }
.hero-copy .lead { font-size: 1.04rem; max-width: 62ch; }
.kicker h1 { font-size: clamp(1.95rem, 3.5vw, 3rem); max-width: 14ch; text-wrap: balance; }
.lead { color: var(--muted); font-size: 1.03rem; }

.section-head h2 { font-size: clamp(1.72rem, 2.6vw, 2.45rem); max-width: 17ch; text-wrap: balance; }
.hero-actions { grid-template-columns: repeat(2, max-content); align-items: center; margin: 26px 0 12px; }
.hero-points { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 18px; }
.hero-point, .footer-badge, .signal-chip, .service-chip, .hero-chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; font-weight: 700;
  background: rgba(255,255,255,0.74); border: 1px solid rgba(18, 27, 47, 0.09); box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.hero-point { font-size: 0.9rem; color: #2f3a53; }
.hero-visual { position: relative; min-height: 620px; }
.hero-orb {
  position: absolute; border-radius: 999px; filter: blur(8px); opacity: .78; z-index: 0;
}
.hero-orb.one { width: 220px; height: 220px; background: rgba(11,87,208,.16); top: 10px; right: 22px; }
.hero-orb.two { width: 180px; height: 180px; background: rgba(147,52,230,.12); bottom: 140px; left: 10px; }
.hero-orb.three { width: 140px; height: 140px; background: rgba(255,109,0,.12); bottom: 20px; right: 90px; }
.visual-card, .card, .detail-card, .cta-panel, .statement-panel, .authority-card, .contact-card, .metric-card, .overlay-card, .matrix-item, .band-item, .proof-card, .engagement-card {
  isolation: isolate;
  position: relative; z-index: 1; background: var(--surface); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(18, 27, 47, 0.08); border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.card, .detail-card, .cta-panel, .contact-card, .proof-card, .engagement-card { padding: 28px; }
.visual-card { padding: 30px; }
.card h3, .detail-card h2, .cta-panel h3, .contact-card h3, .proof-card h3, .engagement-card h3, .statement-copy h2, .section-head h2, .visual-card h3 { color: var(--text); }
.visual-card.dark h3, .visual-card.dark h4, .site-footer h3, .site-footer h4, .cta-panel.dark h3 { color: #fff; }
.visual-card.dark, .site-footer, .cta-panel.dark {
  background: linear-gradient(180deg, rgba(12, 19, 36, 0.96), rgba(16, 27, 47, 0.95));
  color: #fff; border-color: rgba(255,255,255,0.08);
}
.visual-card.dark p, .site-footer p, .section.dark p, .section.dark li, .section.dark .lead, .cta-panel.dark p { color: rgba(255,255,255,0.76); }
.metric-strip { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 22px; }
.metric-card { padding: 20px; min-height: 120px; }
.metric-card strong, .matrix-item strong { display: block; font-size: 2rem; letter-spacing: -0.05em; margin-bottom: 6px; }
.metric-card span, .matrix-item span { color: #44516a; font-size: .95rem; }
.metric-card.purple { border-top: 4px solid var(--purple); }
.metric-card.cyan { border-top: 4px solid var(--cyan); }
.metric-card.green { border-top: 4px solid var(--success); }
.stack-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 22px; }
.overlay-card { padding: 20px 22px; }
.overlay-card h4 { margin: 0 0 6px; }
.overlay-card p { margin: 0; color: #44516a; }
.overlay-card.accent-purple { border-left: 4px solid var(--purple); }
.overlay-card.accent-cyan { border-left: 4px solid var(--cyan); }
.overlay-card.accent-green { border-left: 4px solid var(--success); }
.statement-panel { padding: 32px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 26px; }
.statement-matrix { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.matrix-item { padding: 20px; }
.band { padding: 0 0 10px; }
.band-grid { grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: -6px; }
.band-item { padding: 18px 20px; }
.band-item strong { display:block; margin-bottom: 2px; }
.band-item span { color: var(--muted); font-size: 0.95rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.split, .service-layout { grid-template-columns: 1.08fr 0.92fr; align-items: start; }
.feature-grid, .engagement-grid, .authority-grid, .contact-grid, .proof-grid, .stats-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card h3, .detail-card h2, .cta-panel h3, .contact-card h3, .proof-card h3, .engagement-card h3, .statement-copy h2, .section-head h2 { margin: 0 0 12px; letter-spacing: -0.04em; line-height: 1.05; }
.card p, .detail-card p, .contact-card p, .proof-card p, .engagement-card p { margin: 0; color: var(--muted); }
.card::after, .detail-card::after, .contact-card::after, .proof-card::after, .engagement-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(11,87,208,.1), rgba(255,109,0,.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
.card:hover, .detail-card:hover, .contact-card:hover, .proof-card:hover, .engagement-card:hover, .band-item:hover, .overlay-card:hover, .metric-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow); transition: .35s ease;
}
.card, .detail-card, .cta-panel, .contact-card, .proof-card, .engagement-card, .visual-card, .statement-panel, .authority-card, .metric-card, .overlay-card, .matrix-item, .band-item { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease; }
.icon-badge, .card-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-badge { width: 52px; height: 52px; border-radius: 18px; background: rgba(11, 87, 208, 0.09); color: var(--primary); border: 1px solid rgba(11,87,208,.14); }
.icon-badge.solid { width: 58px; height: 58px; background: color-mix(in srgb, var(--accent-color, var(--primary)) 14%, white 86%); }
.icon-badge.dark { background: rgba(255,255,255,0.08); color:#fff; border-color: rgba(255,255,255,0.12); }
.icon-svg { width: 22px; height: 22px; display: inline-flex; align-items:center; justify-content:center; }
.icon-svg svg { width: 100%; height: 100%; }
.card-icon-wrap { margin-bottom: 18px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800;
  color: var(--primary); padding: 8px 12px; border-radius: 999px; background: rgba(11,87,208,.08); border: 1px solid rgba(11,87,208,.12);
}
.eyebrow.dark { color: #dce5ff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 20px;
  border-radius: 16px; border: 1px solid transparent; font-weight: 800; transition: .25s ease; cursor: pointer;
}
.btn .icon-svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 14px 36px rgba(11,87,208,.26); }
.btn-primary:hover { background: #0849b4; transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,.92); border-color: rgba(18,27,47,.12); color: var(--text); }
.btn-secondary:hover { background: #fff; transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--primary); margin-top: 18px; }
.text-link .icon-svg { width: 16px; height: 16px; }
.service-kicker { display:block; margin-bottom: 10px; font-size: .93rem; color: var(--muted); }
.mini-list, .check-list, .site-footer ul { list-style: none; padding: 0; margin: 18px 0 0; }
.mini-list li, .check-list li, .footer-grid li { display: flex; gap: 12px; align-items: flex-start; }
.mini-list li + li, .check-list li + li, .footer-grid li + li { margin-top: 12px; }
.mini-list-icon, .check-list .icon-badge { flex: 0 0 auto; }
.mini-list-icon .icon-svg, .notice .icon-svg { width: 16px; height: 16px; }
.notice {
  margin-top: 18px; padding: 16px 18px; border-radius: 18px; background: rgba(11,87,208,.07); border: 1px solid rgba(11,87,208,.11);
  color: #2b3956; display:flex; gap:10px; align-items:flex-start;
}
.card-topline { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 14px; }
.status-dot { display:inline-flex; align-items:center; gap: 8px; font-size: .82rem; font-weight: 700; color: var(--muted); }
.status-dot::before { content:""; width:10px; height:10px; border-radius:999px; background: var(--success); box-shadow: 0 0 0 6px rgba(30,142,62,.14); }
.authority-card { padding: 28px; }
.authority-card h3 { margin: 16px 0 8px; }
.contact-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.contact-card a { font-weight: 800; color: var(--primary); word-break: break-word; }
.proof-card { min-height: 220px; }
.proof-card strong { display:block; font-size: 2rem; margin: 14px 0 8px; }
.service-layout .aside-card { position: sticky; top: 104px; }
.faq-item {
  background: rgba(255,255,255,.78); border: 1px solid rgba(18,27,47,.08); border-radius: 22px; padding: 18px 20px; box-shadow: var(--shadow-soft);
}
.faq-item summary { cursor: pointer; list-style: none; font-weight: 800; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item p { margin: 12px 0 0; color: var(--muted); }
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 80; padding: 12px 0; transition: .28s ease; }
body.menu-open { overflow: hidden; }
.site-header.scrolled { padding: 8px 0; }
.site-header::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 120%; background: linear-gradient(180deg, rgba(237,242,255,.78), rgba(237,242,255,0)); pointer-events: none; z-index: -1; }
.header-shell {
  display:flex; align-items:center; justify-content:space-between; gap:20px; padding: 12px 18px;
  background: rgba(9, 15, 28, 0.94); border:1px solid rgba(255,255,255,.08); border-radius: 24px; box-shadow: 0 22px 54px rgba(5,10,20,.32);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.brand { display:flex; align-items:center; gap:14px; min-width:0; }
.brand-copy { display:grid; gap:2px; min-width:0; }
.brand-copy strong { font-size: 1.1rem; color: #fff; }
.brand-copy small { color: rgba(255,255,255,.68); }
.brand-mark {
  width: 56px; height: 56px; border-radius: 18px; display:grid; place-items:center; background: rgba(91,91,214,.22);
  border:1px solid rgba(255,255,255,.1); overflow:hidden; flex: 0 0 auto; box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.brand-mark.is-compact { width: 48px; height: 48px; }
.brand-logo-media { width: 100%; height: 100%; object-fit: contain; display:none; padding: 8px; }
.brand-mark.has-image .brand-logo-media { display:block; }
.brand-mark.has-image .brand-logo-fallback { display:none; }
.brand-logo-fallback { font-weight: 900; font-size: 1rem; color:#fff; letter-spacing:-.04em; }
.site-nav { display:flex; align-items:center; gap: 8px; }
.site-nav a { color: rgba(255,255,255,.88); font-weight: 700; padding: 12px 14px; border-radius: 14px; }
.site-nav a.active:not(.btn) { background: rgba(255,255,255,.12); color:#fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.site-nav a:not(.btn):hover { background: rgba(255,255,255,.08); }
.nav-cta .icon-svg { color:#fff; }
.nav-toggle { display:none; width:48px; height:48px; border-radius:16px; border:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.06); }
.nav-toggle span { display:block; width:20px; height:2px; background:#fff; margin:5px auto; transition:.24s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-footer { margin-top: 80px; padding: 48px 0 28px; }
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr .9fr; gap: 28px; }
.footer-brand-row { display:flex; align-items:center; gap:14px; margin-bottom: 18px; }
.footer-grid h4 { margin: 0 0 12px; color:#fff; }
.footer-grid a { color: rgba(255,255,255,.8); }
.footer-grid a:hover { color:#fff; }
.footer-badges { display:flex; flex-wrap: wrap; gap:10px; margin-top: 20px; }
.footer-badge { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.08); }
.footer-badge .icon-svg { width: 16px; height: 16px; }
.footer-cta { display:inline-flex; align-items:center; gap:10px; margin-top: 18px; font-weight:800; color:#fff; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.6); }
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60; display:inline-flex; align-items:center; gap:10px; color:#fff;
  background:#198038; border-radius: 999px; padding: 14px 18px; box-shadow: 0 20px 40px rgba(17,96,37,.28); border: 1px solid rgba(255,255,255,.12);
}
.wa-float__icon, .wa-float__icon .icon-svg { display:inline-flex; width:20px; height:20px; }
.wa-float__text { font-weight: 800; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.soft-panel { padding: 26px; border-radius: 24px; background: rgba(255,255,255,.76); border:1px solid rgba(18,27,47,.08); box-shadow: var(--shadow-soft); }
.skip-link { position: absolute; left: 12px; top: -44px; background: #fff; color: var(--text); padding: 10px 14px; border-radius: 12px; font-weight: 800; z-index: 120; box-shadow: var(--shadow-soft); }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid rgba(11,87,208,.28); outline-offset: 3px; }
.hero-signal-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 20px; }
.hero-signal-grid .signal-chip { justify-content:flex-start; }
.hero-signal-grid .icon-svg { width: 16px; height: 16px; color: var(--primary); }
.contact-card strong, .proof-card h3 { display:block; }
.text-center { text-align:center; }
@media (max-width: 1100px) {
  .hero-grid, .split, .service-layout, .statement-panel { grid-template-columns: 1fr; }
  .hero-copy h1, .kicker h1 { max-width: 100%; }
  .hero-visual { min-height: auto; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3, .feature-grid, .engagement-grid, .authority-grid, .contact-grid, .proof-grid, .stats-grid, .metric-strip, .band-grid, .hero-points, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .site-nav {
    position: absolute; left: 16px; right:16px; top: calc(100% + 10px); background: rgba(12,18,33,.95); border:1px solid rgba(255,255,255,.08); border-radius: 22px;
    padding: 12px; display:none; flex-direction: column; align-items: stretch; box-shadow: 0 24px 40px rgba(10,14,24,.24);
  }
  .site-nav.open { display:flex; }
  .nav-toggle { display:block; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-points, .grid-2, .grid-3, .grid-4, .feature-grid, .engagement-grid, .authority-grid, .contact-grid, .proof-grid, .stats-grid, .metric-strip, .band-grid, .hero-signal-grid, .statement-matrix, .stack-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; display:grid; }
}
@media (max-width: 640px) {
  .page-hero, .hero { padding-top: calc(var(--header-offset) + 18px); }
  .site-header { padding: 10px 0; }
  .header-shell { padding: 10px 14px; border-radius: 22px; }
  .brand { gap: 12px; }
  .brand-copy strong { font-size: 0.98rem; }
  .brand-copy small { font-size: .74rem; }
  .brand-mark { width: 46px; height: 46px; border-radius: 16px; }
  .nav-toggle { width: 46px; height: 46px; border-radius: 15px; }
  .hero-copy h1 { font-size: clamp(1.9rem, 8.2vw, 2.45rem); }
  .kicker h1 { font-size: clamp(1.62rem, 6.8vw, 2.15rem); }
  .section { padding: 78px 0; }
  .container { width: min(calc(100% - 24px), var(--max)); }
  .card, .detail-card, .cta-panel, .contact-card, .proof-card, .engagement-card, .visual-card, .statement-panel { padding: 22px; }
  .brand-copy small { font-size: .8rem; }
  .brand-mark { width: 50px; height: 50px; }
  .wa-float { right: 16px; bottom: 16px; padding: 13px 16px; }
}
