/* Qort Inc. corporate website
   Designed as a lightweight static site: no framework, no build step.
*/
:root {
  --ink: #12152d;
  --ink-2: #1a1f47;
  --ink-3: #2a3168;
  --paper: #f6f7ff;
  --white: #ffffff;
  --muted: #69738f;
  --line: #e0e5f5;
  --line-dark: rgba(255,255,255,.14);
  --accent: #6a5cff;
  --accent-2: #3aa0ff;
  --accent-3: #a24dff;
  --accent-soft: #efefff;
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1240px;
  --shadow: 0 24px 70px rgba(47, 61, 126, .12);
  --gradient-primary: linear-gradient(135deg, #3f7cff 0%, #6558f5 42%, #8b4dff 100%);
  --gradient-dark: linear-gradient(135deg, #101532 0%, #1e1654 52%, #2348c7 100%);
  --gradient-soft: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(243,245,255,.96) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: #5f64ff; color: #fff; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  background: #fff; color: #000; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--gradient-dark); color: #fff; }
.section-white { background: #ffffff; }
.section-rule { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: #a9a3ff; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.04em; line-height: 1.05; }
h1 { font-size: clamp(48px, 7vw, 92px); font-weight: 650; margin-bottom: 28px; }
h2 { font-size: clamp(38px, 5vw, 66px); font-weight: 630; margin-bottom: 26px; }
h3 { font-size: clamp(24px, 2.4vw, 34px); font-weight: 630; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 10px; }
.lead { font-size: clamp(19px, 2vw, 24px); line-height: 1.5; color: #465070; max-width: 760px; }
.section-dark .lead { color: #c8cad1; }
.muted { color: var(--muted); }
.kicker { font-size: 18px; color: #394367; max-width: 720px; }
.section-dark .kicker { color: #b9bbc2; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(248, 249, 255, .88); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(106,92,255,.08);
  box-shadow: 0 8px 30px rgba(49, 61, 128, .05);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: baseline; gap: 7px; font-weight: 850; letter-spacing: -.055em; font-size: 29px; }
.brand-mark { display: inline-grid; place-items: center; width: 15px; height: 15px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.brand small { font-size: 10px; letter-spacing: .15em; font-weight: 800; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 31px; }
.nav-link { font-size: 14px; font-weight: 650; color: #313a5b; position: relative; padding: 7px 0; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: width .25s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--gradient-primary); color: #fff; padding: 12px 17px; border-radius: 999px; font-size: 13px; font-weight: 700; box-shadow: 0 14px 28px rgba(86,95,255,.22); }
.menu-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; padding: 9px; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); margin: 6px 0; transition: transform .2s ease, opacity .2s ease; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--gradient-dark); color: #fff; min-height: calc(100vh - 82px); display: flex; align-items: center; }
.hero::before {
  content: ""; position: absolute; inset: -12% -10% auto 35%; height: 860px;
  background: radial-gradient(circle at center, rgba(58,160,255,.22), transparent 40%), radial-gradient(circle at 65% 35%, rgba(162,77,255,.26), transparent 48%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; padding: 92px 0; }
.hero h1 { max-width: 780px; }
.hero-copy p { color: #d7dbf0; font-size: 20px; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 14px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 730; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: 0 18px 34px rgba(95,100,255,.24); }
.btn-secondary { border-color: rgba(255,255,255,.32); color: #fff; background: rgba(255,255,255,.06); }
.btn-dark { background: var(--gradient-primary); color: #fff; box-shadow: 0 18px 34px rgba(95,100,255,.22); }
.btn-outline { border-color: #cfd0d2; background: transparent; }
.arrow { font-size: 18px; line-height: 1; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; filter: drop-shadow(0 45px 90px rgba(0,0,0,.4)); }
.hero-caption { position: absolute; left: 8%; right: 8%; bottom: 6%; display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.78); box-shadow: 0 16px 40px rgba(68,80,146,.06); overflow: hidden; }
.stat { padding: 31px 30px 27px; min-height: 148px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 36px; line-height: 1; letter-spacing: -.04em; margin-bottom: 13px; }
.stat span { color: var(--muted); font-size: 13px; }

/* Split / intro */
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.split-balanced { grid-template-columns: 1fr 1fr; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 750; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

/* Business cards */
.cards { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; margin-top: 48px; }
.business-card { grid-column: span 6; min-height: 420px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; box-shadow: 0 14px 34px rgba(68,80,146,.04); }
.business-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.business-card.feature { grid-column: span 7; }
.business-card.small { grid-column: span 5; }
.business-visual { height: 205px; overflow: hidden; background: linear-gradient(135deg, #eef3ff 0%, #f4ecff 100%); }
.business-visual img { width: 100%; height: 100%; object-fit: cover; }
.business-body { padding: 30px 30px 27px; display: flex; flex-direction: column; height: 100%; }
.business-type { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-bottom: 12px; }
.business-body h3 { font-size: 30px; }
.business-body p { color: #5f626b; max-width: 620px; }
.business-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; }
.external { font-size: 13px; font-weight: 750; color: var(--accent); }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); margin-top: 52px; }
.service { background: rgba(11, 16, 42, .28); backdrop-filter: blur(6px); padding: 38px; min-height: 315px; }
.service-num { font-size: 12px; color: #b0b6d9; margin-bottom: 54px; }
.service h3 { color: #fff; font-size: 27px; }
.service p { color: #d2d6ed; font-size: 14px; }
.service ul { list-style: none; padding: 0; margin: 22px 0 0; color: #eef0ff; font-size: 13px; }
.service li { padding: 7px 0; border-top: 1px solid rgba(255,255,255,.09); }

/* Timeline */
.timeline { margin-top: 50px; border-top: 1px solid var(--line); }
.timeline-row { display: grid; grid-template-columns: 160px 1fr; gap: 44px; padding: 33px 0; border-bottom: 1px solid var(--line); }
.timeline-year { font-size: 31px; letter-spacing: -.04em; font-weight: 700; color: var(--accent); }
.timeline-row h3 { font-size: 23px; margin-bottom: 8px; }
.timeline-row p { color: var(--muted); margin: 0; max-width: 780px; }

/* Founder */
.founder-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: .72fr 1.28fr; }
.founder-monogram { min-height: 420px; background: linear-gradient(145deg,#142050 0%, #2d1d6e 55%, #3563ef 100%); color: #fff; display: grid; place-items: center; position: relative; overflow: hidden; }
.founder-monogram::before { content:""; position:absolute; width: 330px; height:330px; border:1px solid rgba(255,255,255,.14); border-radius:50%; }
.founder-monogram::after { content:""; position:absolute; width: 220px; height:220px; border:1px solid rgba(108,126,255,.62); border-radius:50%; }
.founder-monogram span { font-size: 104px; font-weight: 720; letter-spacing: -.08em; z-index: 2; }
.founder-copy { padding: 54px; }
.founder-copy .role { color: var(--accent); font-weight: 740; font-size: 13px; margin-bottom: 17px; }

/* Principles */
.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.principle { border-top: 2px solid #5f64ff; padding-top: 19px; }
.principle span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 31px; }
.principle h4 { font-size: 21px; }
.principle p { color: var(--muted); font-size: 14px; }

/* Global band */
.global-band { background: linear-gradient(135deg, #2d63ff 0%, #6558f5 46%, #8e45ff 100%); color: #fff; border-radius: 32px; padding: 70px; overflow: hidden; position: relative; box-shadow: 0 30px 70px rgba(79,79,212,.22); }
.global-band::after { content:""; position:absolute; width:580px; height:580px; right:-240px; top:-300px; border:1px solid rgba(255,255,255,.25); border-radius:50%; box-shadow: 0 0 0 80px rgba(255,255,255,.04), 0 0 0 160px rgba(255,255,255,.035); }
.global-band h2 { max-width: 760px; }
.global-band p { max-width: 720px; color: rgba(255,255,255,.84); font-size: 19px; position: relative; z-index:1; }

/* CTA */
.cta-block { display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: end; border-top: 1px solid var(--line); padding-top: 70px; }
.cta-block h2 { margin-bottom: 0; max-width: 820px; }

/* Page hero */
.page-hero { background: var(--gradient-dark); color: #fff; padding: 112px 0 94px; overflow: hidden; position: relative; }
.page-hero::after { content:""; position:absolute; right:-180px; top:-230px; width:650px; height:650px; border:1px solid rgba(255,255,255,.12); border-radius:50%; box-shadow: 0 0 0 85px rgba(106,92,255,.08), 0 0 0 170px rgba(58,160,255,.05); }
.page-hero h1 { max-width: 980px; position: relative; z-index:1; }
.page-hero p { color: #d7dbf0; font-size: 20px; max-width: 790px; position: relative; z-index:1; }

/* Business details */
.venture { display: grid; grid-template-columns: .74fr 1.26fr; gap: 70px; padding: 58px 0; border-top: 1px solid var(--line); }
.venture:last-child { border-bottom: 1px solid var(--line); }
.venture-label { font-size: 12px; letter-spacing:.13em; text-transform:uppercase; color: var(--muted); font-weight:800; }
.venture-content h3 { font-size: 36px; }
.venture-content p { max-width: 760px; color: #555963; }
.tags { display:flex; flex-wrap:wrap; gap:8px; margin:24px 0; }
.tag { font-size:12px; border:1px solid #d6d7da; padding:7px 10px; border-radius:999px; background:#fafafa; }

/* Service detail */
.service-detail-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:46px; }
.service-detail { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:36px; min-height:300px; box-shadow: 0 16px 36px rgba(68,80,146,.05); }
.service-detail .num { color:var(--accent); font-size:12px; font-weight:800; letter-spacing:.12em; }
.service-detail h3 { font-size:29px; margin-top:50px; }
.service-detail p { color:var(--muted); }
.service-detail ul { padding-left:19px; color:#4d5058; }

/* Contact */
.contact-layout { display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:start; }
.contact-panel { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:38px; box-shadow: 0 18px 42px rgba(68,80,146,.06); }
.contact-item { padding:25px 0; border-bottom:1px solid var(--line); }
.contact-item:first-child { padding-top:0; }
.contact-item:last-child { border-bottom:0; padding-bottom:0; }
.contact-item .label { text-transform:uppercase; letter-spacing:.13em; font-size:10px; color:var(--muted); font-weight:800; margin-bottom:6px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { margin-bottom:17px; }
.field label { display:block; font-size:12px; font-weight:750; margin-bottom:7px; }
.field input, .field textarea, .field select { width:100%; border:1px solid #cdced1; background:#fff; padding:13px 14px; border-radius:10px; outline:none; transition:border .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(106,92,255,.12); }
.field textarea { min-height:140px; resize:vertical; }
.form-note { color:var(--muted); font-size:12px; margin-top:13px; }
.form-status { min-height:24px; font-size:13px; font-weight:650; margin-top:10px; }
.hp-field { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
button:disabled { opacity:.62; cursor:not-allowed; transform:none !important; }

/* Footer */
.footer { background: linear-gradient(135deg, #0d1128 0%, #1b1448 55%, #273fb2 100%); color:#fff; padding:76px 0 34px; }
.footer-grid { display:grid; grid-template-columns:1.15fr .85fr .85fr 1.15fr; gap:40px; }
.footer .brand { color:#fff; margin-bottom:22px; }
.footer p { color:#b8bed9; font-size:13px; max-width:320px; }
.footer h4 { font-size:12px; text-transform:uppercase; letter-spacing:.13em; color:#adb6da; margin-bottom:22px; }
.footer ul { list-style:none; padding:0; margin:0; }
.footer li { margin:10px 0; }
.footer a { color:#e6e9ff; font-size:13px; }
.footer a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; gap:24px; border-top:1px solid rgba(255,255,255,.12); padding-top:24px; margin-top:55px; color:#bbc3e3; font-size:11px; }

/* Reveals */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* 404/basic */
.note-box { border-left:3px solid var(--accent); padding:18px 22px; background:var(--accent-soft); color:#485070; border-radius:0 10px 10px 0; }

@media (max-width: 980px) {
  .container { width:min(calc(100% - 34px), var(--max)); }
  .section { padding:82px 0; }
  .nav-links { position:fixed; inset:82px 0 0; background:linear-gradient(180deg, rgba(246,247,255,.98) 0%, rgba(238,241,255,.98) 100%); flex-direction:column; align-items:flex-start; padding:36px 25px; gap:18px; transform:translateX(100%); transition:transform .25s ease; }
  .nav-links.open { transform:none; }
  .nav-link { font-size:22px; }
  .nav-cta { margin-top:10px; font-size:15px; }
  .menu-toggle { display:block; }
  .hero { min-height:auto; }
  .hero-grid, .split, .split-balanced, .founder-card, .contact-layout { grid-template-columns:1fr; gap:45px; }
  .hero-grid { padding:72px 0; }
  .hero-visual { max-width:720px; }
  .stats { grid-template-columns:1fr 1fr; }
  .stat:nth-child(2) { border-right:0; }
  .stat:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .business-card, .business-card.feature, .business-card.small { grid-column:span 12; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .principles { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .venture { grid-template-columns:1fr; gap:18px; }
  .service-detail-grid { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  h1 { font-size:46px; }
  h2 { font-size:38px; }
  .container { width:min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height:72px; }
  .nav-links { inset:72px 0 0; }
  .hero-grid { padding:58px 0; }
  .hero-copy p, .page-hero p { font-size:17px; }
  .stats { grid-template-columns:1fr; }
  .stat { border-right:0; border-bottom:1px solid var(--line); }
  .stat:last-child { border-bottom:0; }
  .business-body { padding:25px; }
  .service-grid { grid-template-columns:1fr; }
  .service { min-height:260px; padding:30px; }
  .service-num { margin-bottom:35px; }
  .timeline-row { grid-template-columns:1fr; gap:8px; }
  .founder-monogram { min-height:310px; }
  .founder-copy { padding:30px; }
  .principles { grid-template-columns:1fr; }
  .global-band { padding:42px 27px; border-radius:24px; }
  .cta-block { grid-template-columns:1fr; align-items:start; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .contact-panel { padding:26px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
  .page-hero { padding:82px 0 70px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* ===== Qort Premium Corporate Theme v5 ===== */
:root {
  --navy-950: #0a1027;
  --navy-900: #10173a;
  --navy-800: #182451;
  --blue-600: #3f63ff;
  --blue-500: #4b79ff;
  --violet-600: #6654f4;
  --purple-500: #8b4df4;
  --purple-400: #a46bff;
  --ice: #f7f9ff;
  --lavender: #f2efff;
  --gradient-primary: linear-gradient(118deg, #4167ff 0%, #6555f5 48%, #8f4df3 100%);
  --gradient-dark: linear-gradient(125deg, #0b112b 0%, #111c48 42%, #241656 72%, #273e9e 100%);
  --gradient-premium: linear-gradient(135deg, #15265f 0%, #4934a5 55%, #7b42e7 100%);
  --premium-shadow: 0 28px 70px rgba(43, 53, 121, .14);
}

body {
  background:
    radial-gradient(circle at 10% 5%, rgba(75,121,255,.05), transparent 28%),
    radial-gradient(circle at 92% 32%, rgba(143,77,243,.045), transparent 28%),
    var(--paper);
}

.site-header { transition: background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.site-header.scrolled {
  background: rgba(251,252,255,.94);
  border-color: rgba(93,83,220,.12);
  box-shadow: 0 12px 34px rgba(34,45,100,.08);
}
.brand { color: #151d42; }
.brand-mark { width: 17px; height: 17px; box-shadow: 0 5px 16px rgba(94,86,244,.35); }
.nav-cta { position: relative; overflow: hidden; }
.nav-cta::before, .btn-primary::before, .btn-dark::before {
  content:""; position:absolute; inset:0; background:linear-gradient(110deg, transparent 20%, rgba(255,255,255,.26) 48%, transparent 72%); transform:translateX(-130%); transition:transform .6s ease;
}
.nav-cta:hover::before, .btn-primary:hover::before, .btn-dark:hover::before { transform:translateX(130%); }
.btn-primary, .btn-dark { position: relative; overflow:hidden; }

.hero { isolation:isolate; }
.hero::after {
  content:""; position:absolute; inset:0; pointer-events:none; z-index:-1;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%);
}
.hero-grid { position:relative; z-index:1; }
.hero h1 { font-weight:640; letter-spacing:-.055em; }
.hero-gradient-text {
  background: linear-gradient(100deg, #ffffff 0%, #b9c9ff 38%, #cfaeff 74%, #ffffff 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-copy p { max-width: 760px; }
.hero-visual {
  padding: 10px; border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.13); box-shadow:0 35px 90px rgba(4,7,28,.38);
}
.hero-visual::before {
  content:""; position:absolute; inset:-35px; border-radius:50%; background:radial-gradient(circle, rgba(83,115,255,.18), rgba(139,77,244,.10) 45%, transparent 70%); filter:blur(18px); z-index:-1;
}
.hero-visual img { border-radius:26px; filter:none; }
.hero-proof { display:flex; flex-wrap:wrap; align-items:center; gap:15px; margin-top:34px; color:#aeb8d9; font-size:12px; letter-spacing:.02em; }
.hero-proof strong { color:#fff; font-weight:750; }
.hero-proof i { width:4px; height:4px; border-radius:50%; background:#7e76ef; }

.section-heading-row { display:grid; grid-template-columns:1fr .92fr; gap:70px; align-items:end; margin-bottom:48px; }
.section-heading-row h2 { margin:14px 0 0; }
.section-heading-row .lead { margin:0; }

.value-engine-section { position:relative; overflow:hidden; }
.value-engine-section::before { content:""; position:absolute; width:520px; height:520px; right:-230px; top:15px; border-radius:50%; background:radial-gradient(circle, rgba(104,84,244,.09), transparent 67%); pointer-events:none; }
.value-engine { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.value-card {
  position:relative; min-height:380px; padding:34px; border-radius:26px; overflow:hidden;
  background:linear-gradient(180deg, #fff 0%, #f8f9ff 100%); border:1px solid #e2e6f6;
  box-shadow:0 18px 45px rgba(50,62,128,.07); transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.value-card::after { content:""; position:absolute; width:180px; height:180px; border-radius:50%; right:-80px; bottom:-90px; opacity:.11; background:var(--gradient-primary); }
.value-card:hover { transform:translateY(-7px); box-shadow:var(--premium-shadow); border-color:#cfd5f1; }
.value-index { font-size:11px; font-weight:800; letter-spacing:.14em; color:#8290b7; }
.value-icon { width:54px; height:54px; display:grid; place-items:center; border-radius:16px; margin:58px 0 26px; color:#fff; font-size:20px; font-weight:800; background:var(--gradient-primary); box-shadow:0 14px 30px rgba(92,86,244,.25); }
.value-card h3 { font-size:31px; }
.value-card p { color:#596381; }
.value-card > span { position:absolute; left:34px; bottom:30px; color:#687393; font-size:12px; font-weight:700; letter-spacing:.04em; }
.value-card[data-tone="blue"] .value-icon { background:linear-gradient(135deg,#3978ff,#5166f5); }
.value-card[data-tone="violet"] .value-icon { background:linear-gradient(135deg,#5362f8,#7152ed); }
.value-card[data-tone="purple"] .value-icon { background:linear-gradient(135deg,#6754f0,#9a49ef); }

.stats { margin-top:-34px; position:relative; z-index:5; backdrop-filter:blur(16px); }
.stat strong { color:#17204a; }

.business-card, .service-detail, .contact-panel, .engagement-card, .lens-card, .process-card, .venture {
  --mx: 50%; --my: 50%;
}
.business-card::after, .service-detail::after, .engagement-card::after, .lens-card::after, .process-card::after {
  content:""; position:absolute; inset:0; pointer-events:none; opacity:0; transition:opacity .25s ease;
  background:radial-gradient(320px circle at var(--mx) var(--my), rgba(97,91,244,.08), transparent 60%);
}
.business-card:hover::after, .service-detail:hover::after, .engagement-card:hover::after, .lens-card:hover::after, .process-card:hover::after { opacity:1; }
.business-card { position:relative; box-shadow:0 16px 45px rgba(45,59,122,.06); }
.business-card:hover { box-shadow:0 28px 65px rgba(45,59,122,.14); }
.business-type { color:#5969a4; }
.external { color:#554de7; }

.section-dark { position:relative; overflow:hidden; }
.section-dark::before { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 85% 20%, rgba(139,77,244,.20), transparent 35%), radial-gradient(circle at 10% 80%, rgba(63,99,255,.15), transparent 32%); }
.section-dark > .container { position:relative; z-index:1; }
.service { background:rgba(9,15,41,.30); transition:background .25s ease, transform .25s ease; }
.service:hover { background:rgba(78,67,184,.25); transform:translateY(-2px); }

.portfolio-lens-section { background:linear-gradient(180deg,#f8f9ff 0%,#f1f3ff 100%); }
.portfolio-lens-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.lens-card { position:relative; min-height:265px; background:#fff; border:1px solid var(--line); border-radius:24px; padding:31px; overflow:hidden; box-shadow:0 16px 40px rgba(50,62,128,.05); }
.lens-card > span { display:inline-flex; min-width:44px; height:29px; align-items:center; justify-content:center; border-radius:999px; color:#584fe8; background:#eeefff; font-size:11px; font-weight:800; }
.lens-card h3 { margin-top:62px; font-size:27px; }
.lens-card p { color:var(--muted); margin-bottom:0; }

.venture { border:1px solid #e2e6f4; border-radius:24px; padding:42px; margin-bottom:18px; background:linear-gradient(180deg,#fff,#fbfcff); transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; position:relative; overflow:hidden; }
.venture::before { content:""; position:absolute; width:6px; left:0; top:0; bottom:0; background:var(--gradient-primary); opacity:.85; }
.venture:hover { transform:translateY(-4px); box-shadow:0 24px 55px rgba(48,59,123,.10); border-color:#d2d8ef; }
.venture + .venture { border-top:1px solid #e2e6f4; }
.venture:last-child { border-bottom:1px solid #e2e6f4; }
.venture-label { color:#596ba6; }
.tag { background:#f6f7ff; border-color:#dfe3f3; color:#596581; }

.engagement-section { background:linear-gradient(180deg,#fff 0%,#f7f8ff 100%); }
.engagement-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.engagement-card { position:relative; overflow:hidden; border:1px solid #e0e4f2; background:#fff; border-radius:26px; padding:34px; min-height:410px; box-shadow:0 16px 44px rgba(47,59,121,.06); transition:transform .28s ease, box-shadow .28s ease; }
.engagement-card:hover { transform:translateY(-6px); box-shadow:var(--premium-shadow); }
.engagement-card.featured { background:var(--gradient-premium); color:#fff; border-color:transparent; transform:translateY(-10px); }
.engagement-card.featured:hover { transform:translateY(-15px); }
.engagement-kicker { display:inline-flex; padding:7px 10px; border-radius:999px; background:#eef0ff; color:#5d56e8; font-size:10px; letter-spacing:.14em; font-weight:850; }
.engagement-card.featured .engagement-kicker { background:rgba(255,255,255,.14); color:#fff; }
.engagement-card h3 { margin-top:66px; font-size:29px; }
.engagement-card p { color:#65708e; }
.engagement-card.featured p { color:#dce1ff; }
.engagement-card ul { list-style:none; padding:0; margin:28px 0 0; }
.engagement-card li { padding:11px 0; border-top:1px solid #edf0f7; color:#4f5a79; font-size:13px; }
.engagement-card.featured li { border-color:rgba(255,255,255,.14); color:#eef0ff; }

.service-detail { position:relative; overflow:hidden; transition:transform .25s ease, box-shadow .25s ease; }
.service-detail:hover { transform:translateY(-5px); box-shadow:0 25px 58px rgba(47,59,121,.11); }
.service-detail .num { color:#5c55e9; }

.about-metrics-section { padding-top:0; }
.about-metrics { display:grid; grid-template-columns:repeat(4,1fr); border-radius:28px; overflow:hidden; background:var(--gradient-premium); color:#fff; box-shadow:0 28px 68px rgba(54,51,139,.22); }
.about-metrics > div { padding:35px 30px; border-right:1px solid rgba(255,255,255,.14); }
.about-metrics > div:last-child { border-right:0; }
.about-metrics strong { display:block; font-size:37px; letter-spacing:-.05em; line-height:1; margin-bottom:12px; }
.about-metrics span { display:block; color:#dce1ff; font-size:12px; line-height:1.5; }
.founder-card { box-shadow:0 26px 65px rgba(47,59,121,.10); border-color:#dde2f2; }
.founder-copy { position:relative; }
.founder-quote { margin-top:30px; padding:22px 24px; border-left:3px solid #6755ef; background:#f5f4ff; color:#3e4770; font-size:17px; line-height:1.55; border-radius:0 15px 15px 0; }
.principle { background:#fff; border:1px solid #e3e6f3; border-top:3px solid #6258ef; border-radius:16px; padding:24px; min-height:250px; box-shadow:0 12px 34px rgba(49,62,127,.04); }
.principle span { margin-bottom:38px; color:#6a70a1; }

.contact-process-section { background:linear-gradient(180deg,#f7f8ff,#eef1ff); }
.process-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.process-card { position:relative; overflow:hidden; background:#fff; border:1px solid #dfe4f4; border-radius:22px; padding:30px; min-height:235px; box-shadow:0 14px 38px rgba(50,62,128,.05); }
.process-card span { display:inline-flex; width:38px; height:38px; align-items:center; justify-content:center; border-radius:12px; background:var(--gradient-primary); color:#fff; font-weight:800; font-size:11px; box-shadow:0 10px 24px rgba(88,82,235,.22); }
.process-card h3 { margin-top:38px; font-size:24px; }
.process-card p { color:var(--muted); margin:0; }
.contact-panel { border-color:#dfe3f2; }
.contact-layout > .contact-panel { position:relative; overflow:hidden; }
.contact-layout > .contact-panel::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background:var(--gradient-primary); }
.field input, .field textarea, .field select { border-color:#d6dbea; background:#fcfdff; }
.form-status { color:#5963a0; }

.page-hero { isolation:isolate; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:-1; background-image:linear-gradient(rgba(255,255,255,.024) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.024) 1px,transparent 1px); background-size:64px 64px; }
.page-hero h1 { letter-spacing:-.055em; }

.global-band { background:linear-gradient(120deg,#315bdf 0%,#5b49dd 46%,#8647df 100%); box-shadow:0 34px 80px rgba(62,59,164,.22); }
.cta-block { position:relative; }
.cta-block::before { content:""; position:absolute; left:0; top:-1px; width:120px; height:2px; background:var(--gradient-primary); }

.footer { position:relative; overflow:hidden; background:linear-gradient(128deg,#0a1028 0%,#151947 52%,#2a1d67 100%); }
.footer::before { content:""; position:absolute; width:520px; height:520px; right:-240px; top:-300px; border-radius:50%; background:radial-gradient(circle,rgba(103,83,245,.24),transparent 68%); }
.footer .container { position:relative; z-index:1; }
.footer .brand { color:#fff; }

.reveal { transition-delay:var(--delay,0ms); }

@media (max-width:980px) {
  .section-heading-row { grid-template-columns:1fr; gap:24px; }
  .value-engine, .portfolio-lens-grid, .engagement-grid, .process-grid { grid-template-columns:1fr; }
  .value-card { min-height:330px; }
  .engagement-card.featured { transform:none; }
  .engagement-card.featured:hover { transform:translateY(-6px); }
  .about-metrics { grid-template-columns:1fr 1fr; }
  .about-metrics > div:nth-child(2) { border-right:0; }
  .about-metrics > div:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.14); }
  .venture { padding:34px; }
}

@media (max-width:640px) {
  .hero-proof { gap:10px; }
  .hero-proof i { display:none; }
  .hero-proof span { width:100%; }
  .stats { margin-top:-18px; }
  .value-card { min-height:340px; padding:28px; }
  .value-card > span { left:28px; }
  .about-metrics { grid-template-columns:1fr; }
  .about-metrics > div { border-right:0; border-bottom:1px solid rgba(255,255,255,.14); }
  .about-metrics > div:last-child { border-bottom:0; }
  .portfolio-lens-grid, .process-grid { grid-template-columns:1fr; }
  .venture { padding:28px 24px 28px 30px; }
}
