:root {
  --bg: #05080d;
  --bg-2: #07101f;
  --surface: rgba(12, 20, 33, .78);
  --surface-strong: #0d1727;
  --surface-soft: rgba(255,255,255,.045);
  --surface-hover: rgba(255,255,255,.065);
  --text: #f4f7fb;
  --muted: #b7c0cc;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.19);
  --gold: #dba437;
  --gold-2: #f3c96a;
  --gold-deep: #a97012;
  --blue: #19375f;
  --blue-2: #2f5c91;
  --silver: #d7dde5;
  --success: #76d7a6;
  --danger: #ff8f8f;
  --shadow: 0 28px 90px rgba(0,0,0,.34);
  --shadow-soft: 0 16px 45px rgba(0,0,0,.18);
  --radius: 26px;
  --container: 1200px;
  --header: 74px;
  --ease: cubic-bezier(.2,.65,.3,1);
}

html[data-theme="light"] {
  --bg: #f4f7fb;
  --bg-2: #eaf0f7;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-soft: #f3f6fa;
  --surface-hover: #edf2f7;
  --text: #0a1625;
  --muted: #526171;
  --line: #d8e0e9;
  --line-strong: #c6d1dd;
  --gold: #a86908;
  --gold-2: #895300;
  --gold-deep: #6d4100;
  --shadow: 0 22px 62px rgba(33,49,68,.13), 0 2px 7px rgba(33,49,68,.04);
  --shadow-soft: 0 10px 30px rgba(33,49,68,.09), 0 1px 4px rgba(33,49,68,.04);
  --danger: #b52b2b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 24px); scrollbar-gutter: stable; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(36,72,116,.22), transparent 28rem),
    radial-gradient(circle at 16% 28%, rgba(194,134,27,.075), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI Variable", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color .25s ease, color .25s ease;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, video { display: block; max-width: 100%; }
::selection { background: rgba(219,164,55,.32); color: var(--text); }

.skip-link { position:fixed; top:12px; left:12px; transform:translateY(-160%); background:var(--gold-2); color:#0b0c0d; z-index:9999; padding:10px 14px; border-radius:10px; font-weight:800; }
.skip-link:focus { transform:none; }
.scroll-progress { position:fixed; inset:0 0 auto; height:2px; z-index:3000; pointer-events:none; }
.scroll-progress span { display:block; width:100%; height:100%; transform-origin:left; transform:scaleX(0); background:linear-gradient(90deg,var(--gold-deep),var(--gold-2),#f8e7bd); box-shadow:0 0 16px rgba(243,201,106,.45); }
#brandParticles { position:fixed; inset:0; width:100%; height:100%; pointer-events:none; opacity:.46; z-index:-1; }
.container { width:min(calc(100% - 40px),var(--container)); margin-inline:auto; }
.section { position:relative; padding:88px 0; }

.site-header {
  position:fixed; inset:0 0 auto; height:var(--header); z-index:1000;
  background:color-mix(in srgb,var(--bg) 80%,transparent);
  border-bottom:1px solid transparent;
  backdrop-filter:blur(20px) saturate(135%);
  -webkit-backdrop-filter:blur(20px) saturate(135%);
  transition:border-color .22s ease,box-shadow .22s ease,background-color .22s ease;
}
.site-header.scrolled { border-bottom-color:var(--line); box-shadow:0 12px 42px rgba(0,0,0,.09); }
.nav-shell { height:100%; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand { display:inline-flex; align-items:center; gap:11px; min-width:max-content; }
.brand-mark { width:43px; height:43px; border-radius:13px; overflow:hidden; display:grid; place-items:center; border:1px solid var(--line); box-shadow:inset 0 0 0 1px rgba(255,255,255,.03),0 7px 22px rgba(0,0,0,.2); background:#0b1018; }
.brand-mark img { width:100%; height:100%; object-fit:cover; transform:scale(1.04); }
.brand-copy { display:grid; line-height:1.03; }
.brand-copy strong { font-size:.95rem; letter-spacing:.015em; font-weight:820; }
.brand-copy small { color:var(--gold-2); text-transform:uppercase; font-size:.61rem; letter-spacing:.16em; margin-top:6px; font-weight:700; }
.desktop-nav { display:flex; align-items:center; gap:29px; margin-left:auto; }
.desktop-nav a,.footer-links a { position:relative; color:var(--muted); font-size:.88rem; font-weight:680; transition:color .2s ease; }
.desktop-nav a::after { content:""; position:absolute; left:50%; right:50%; bottom:-10px; height:2px; border-radius:2px; background:linear-gradient(90deg,var(--gold),var(--gold-2)); transition:left .2s ease,right .2s ease; }
.desktop-nav a:hover,.desktop-nav a.active,.desktop-nav a[aria-current="location"],.footer-links a:hover { color:var(--gold-2); }
.desktop-nav a:hover::after,.desktop-nav a.active::after,.desktop-nav a[aria-current="location"]::after { left:0; right:0; }
.nav-actions { display:flex; align-items:center; gap:10px; }
.icon-btn,.menu-btn,.video-sound,.copy-email,.back-to-top { border:1px solid var(--line); background:var(--surface-soft); cursor:pointer; display:grid; place-items:center; transition:background .2s ease,border-color .2s ease,transform .2s ease,color .2s ease; }
.icon-btn:hover,.menu-btn:hover,.video-sound:hover,.copy-email:hover,.back-to-top:hover { background:var(--surface-hover); border-color:var(--line-strong); }
.icon-btn { width:42px; height:42px; border-radius:50%; }
.icon-btn svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.moon-icon { display:none; }
html[data-theme="light"] .sun-icon { display:none; }
html[data-theme="light"] .moon-icon { display:block; }
.menu-btn { display:none; width:42px; height:42px; border-radius:12px; position:relative; }
.menu-btn span { position:absolute; width:17px; height:1.5px; background:currentColor; transition:transform .25s ease,top .25s ease; }
.menu-btn span:first-child { top:16px; }.menu-btn span:last-child { top:23px; }
.menu-btn[aria-expanded="true"] span:first-child { top:20px; transform:rotate(45deg); }.menu-btn[aria-expanded="true"] span:last-child { top:20px; transform:rotate(-45deg); }
.mobile-menu { border-top:1px solid var(--line); background:color-mix(in srgb,var(--bg) 97%,transparent); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px); box-shadow:0 25px 60px rgba(0,0,0,.15); }
.mobile-menu nav { display:grid; gap:6px; padding-block:17px 24px; }
.mobile-menu nav > a:not(.button) { padding:13px 4px; border-bottom:1px solid var(--line); color:var(--muted); font-weight:720; }
.mobile-menu nav > a.active { color:var(--gold-2); }

.button { min-height:48px; display:inline-flex; align-items:center; justify-content:center; gap:9px; padding:0 20px; border-radius:14px; border:1px solid transparent; font-weight:820; font-size:.9rem; letter-spacing:.005em; transition:transform .2s var(--ease),box-shadow .2s ease,border-color .2s ease,background .2s ease; }
.button:hover { transform:translateY(-2px); }
.button:active { transform:translateY(0) scale(.99); }
.button:focus-visible,.icon-btn:focus-visible,.menu-btn:focus-visible,.video-sound:focus-visible,.copy-email:focus-visible,.back-to-top:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible,a:focus-visible { outline:3px solid rgba(243,201,106,.44); outline-offset:3px; }
.button-small { min-height:42px; padding-inline:17px; }
.button-gold { color:#171006; background:linear-gradient(135deg,#f6d27f 0%,var(--gold-2) 26%,var(--gold) 72%,#b57814 100%); box-shadow:0 10px 30px rgba(219,164,55,.2),inset 0 1px rgba(255,255,255,.45); }
.button-gold:hover { box-shadow:0 15px 38px rgba(219,164,55,.3),inset 0 1px rgba(255,255,255,.45); }
.button-ghost { border-color:var(--line-strong); background:var(--surface-soft); }
.button-ghost:hover { background:var(--surface-hover); }

.hero { min-height:auto; display:grid; align-items:center; padding-top:calc(var(--header) + 64px); padding-bottom:56px; isolation:isolate; overflow:hidden; }
.hero-grid-lines { position:absolute; inset:var(--header) 0 0; z-index:-2; opacity:.22; background-image:linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size:72px 72px; mask-image:linear-gradient(to bottom,rgba(0,0,0,.55),transparent 82%); }
.hero-grid { display:grid; grid-template-columns:1.04fr .86fr; align-items:center; gap:52px; }
.hero-glow { position:absolute; filter:blur(22px); border-radius:50%; opacity:.3; z-index:-1; pointer-events:none; }
.hero-glow-gold { width:350px; height:350px; left:-170px; top:20%; background:radial-gradient(circle,rgba(219,164,55,.44),transparent 68%); }
.hero-glow-blue { width:450px; height:450px; right:-170px; top:9%; background:radial-gradient(circle,rgba(47,92,145,.5),transparent 68%); }
.eyebrow,.kicker { color:var(--gold-2); font-size:.74rem; font-weight:850; text-transform:uppercase; letter-spacing:.18em; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom:24px; }
.status-dot { width:8px; height:8px; border-radius:50%; background:var(--success); box-shadow:0 0 0 6px rgba(118,215,166,.09); }
h1,h2,h3,p { margin-top:0; }
h1 { margin-bottom:22px; max-width:780px; font-size:clamp(3rem,5.15vw,4.95rem); line-height:1.02; letter-spacing:-.052em; font-weight:850; text-wrap:balance; }
.text-gradient { background:linear-gradient(110deg,#f6d47f 8%,var(--gold) 46%,#f5e6be 92%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-lead { max-width:650px; color:var(--muted); font-size:clamp(1rem,1.18vw,1.12rem); line-height:1.72; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.hero-proof { display:flex; align-items:center; flex-wrap:wrap; gap:10px; color:var(--muted); margin-top:28px; font-size:.73rem; font-weight:750; letter-spacing:.04em; text-transform:uppercase; }
.hero-proof i { width:3px; height:3px; border-radius:50%; background:var(--gold); }

.hero-visual { position:relative; display:grid; place-items:center; min-width:0; }
.video-orbit { position:absolute; width:82%; aspect-ratio:1; border:1px solid rgba(219,164,55,.16); border-radius:50%; box-shadow:0 0 0 46px rgba(48,89,139,.04),0 0 0 92px rgba(219,164,55,.025); animation:orbitPulse 6s ease-in-out infinite; }
.video-card { position:relative; width:min(100%,430px); border:1px solid var(--line-strong); border-radius:30px; overflow:hidden; background:rgba(6,10,16,.9); box-shadow:0 42px 120px rgba(0,0,0,.48),0 0 0 1px rgba(219,164,55,.04); transform:rotate(.65deg); }
.video-card::after { content:""; position:absolute; inset:0; pointer-events:none; box-shadow:inset 0 0 0 1px rgba(255,255,255,.028); border-radius:inherit; }
.video-card-top,.video-card-bottom { height:48px; display:flex; align-items:center; gap:7px; padding-inline:16px; border-bottom:1px solid rgba(255,255,255,.07); color:#abb4c1; }
.video-card-bottom { justify-content:center; gap:12px; border-top:1px solid rgba(255,255,255,.07); border-bottom:0; text-transform:uppercase; font-size:.65rem; letter-spacing:.14em; }
.video-card-bottom b { color:var(--gold); }
.window-dot { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.2); }.window-dot:first-child { background:var(--gold); box-shadow:0 0 10px rgba(219,164,55,.4); }
.video-label { margin-left:auto; font-size:.66rem; letter-spacing:.12em; text-transform:uppercase; }
.video-stage { position:relative; height:min(52vh,510px); min-height:400px; background:#000; overflow:hidden; }
.video-stage video { width:100%; height:100%; object-fit:cover; }
.video-stage::after { content:""; position:absolute; inset:0; background:linear-gradient(to bottom,rgba(3,6,10,.04),transparent 55%,rgba(3,6,10,.25)); pointer-events:none; }
.video-sound { position:absolute; z-index:2; right:16px; bottom:16px; width:43px; height:43px; border-radius:50%; color:#f3f5f7; background:rgba(5,8,13,.68); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); }
.video-sound svg { width:18px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.video-sound .sound-on { display:none; }.video-sound.active .sound-on { display:block; }.video-sound.active .sound-off { display:none; }.video-sound.active { color:var(--gold-2); }
@keyframes orbitPulse { 0%,100%{transform:scale(.985);opacity:.72}50%{transform:scale(1.025);opacity:1} }

.capability-strip { margin-top:48px; display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:20px; background:var(--surface-soft); overflow:hidden; backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); box-shadow:var(--shadow-soft); }
.capability-strip div { padding:18px 20px; display:flex; align-items:center; gap:12px; border-right:1px solid var(--line); }.capability-strip div:last-child { border-right:0; }
.capability-strip strong { color:var(--gold); font-size:.71rem; }.capability-strip span { color:var(--muted); font-weight:720; font-size:.82rem; }

.section-heading { max-width:740px; }.section-heading.center { text-align:center; margin-inline:auto; }
.section-heading h2,.contact-copy h2 { margin:10px 0 16px; font-size:clamp(2.1rem,3.25vw,3.55rem); line-height:1.08; letter-spacing:-.038em; text-wrap:balance; }
.section-heading p { color:var(--muted); font-size:1rem; line-height:1.72; }
.split-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:54px; align-items:start; }
.about-copy > p { color:var(--muted); font-size:1.04rem; line-height:1.76; margin-bottom:28px; }
.value-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.value-grid article { padding:23px; border-radius:19px; border:1px solid var(--line); background:linear-gradient(155deg,var(--surface-soft),transparent); transition:transform .25s var(--ease),border-color .25s ease,background .25s ease; }
.value-grid article:hover { transform:translateY(-3px); border-color:rgba(219,164,55,.24); background:var(--surface-hover); }
.value-grid h3 { margin:13px 0 7px; font-size:1rem; }.value-grid p { margin:0; color:var(--muted); font-size:.89rem; }.mini-icon { color:var(--gold-2); }

.services { background:linear-gradient(180deg,transparent,color-mix(in srgb,var(--bg-2) 72%,transparent),transparent); }
.services-grid { margin-top:36px; display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.service-card { position:relative; min-height:264px; padding:26px; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(160deg,var(--surface),color-mix(in srgb,var(--surface) 72%,transparent)); overflow:hidden; box-shadow:var(--shadow-soft); transition:transform .26s var(--ease),border-color .26s ease,box-shadow .26s ease; }
.service-card::before { content:""; position:absolute; width:170px; height:170px; right:-84px; top:-84px; border-radius:50%; background:radial-gradient(circle,rgba(219,164,55,.16),transparent 68%); transition:transform .35s ease; }
.service-card::after { content:""; position:absolute; inset:auto 25px 0; height:1px; background:linear-gradient(90deg,transparent,rgba(243,201,106,.55),transparent); opacity:0; transition:opacity .25s ease; }
.service-card:hover { transform:translateY(-5px); border-color:rgba(219,164,55,.26); box-shadow:var(--shadow); }.service-card:hover::before { transform:scale(1.2); }.service-card:hover::after { opacity:1; }
.service-no { position:absolute; right:26px; top:24px; color:var(--muted); font-size:.69rem; letter-spacing:.1em; }
.service-icon { width:49px; height:49px; display:grid; place-items:center; border-radius:15px; background:rgba(219,164,55,.1); border:1px solid rgba(219,164,55,.19); color:var(--gold-2); }
.service-icon svg { width:23px; height:23px; fill:none; stroke:currentColor; stroke-width:1.65; stroke-linecap:round; stroke-linejoin:round; }
.service-card h3 { margin:22px 0 9px; font-size:1.16rem; }.service-card p { margin:0; color:var(--muted); font-size:.93rem; }

.product-stack { display:grid; gap:20px; margin-top:40px; }
.product-card { display:grid; grid-template-columns:.9fr 1.1fr; min-height:456px; border:1px solid var(--line); border-radius:32px; overflow:hidden; background:var(--surface); box-shadow:var(--shadow); transition:border-color .25s ease,transform .25s var(--ease); }
.product-card:hover { border-color:rgba(219,164,55,.25); transform:translateY(-2px); }.product-card:nth-child(even) .product-art { order:2; }
.product-art { min-height:100%; position:relative; display:grid; place-items:center; overflow:hidden; background:radial-gradient(circle at 40% 35%,rgba(55,95,147,.34),transparent 37%),linear-gradient(145deg,#080f19,#05080d); }
.product-story .product-art { background:radial-gradient(circle at 45% 35%,rgba(100,57,131,.3),transparent 36%),linear-gradient(145deg,#0e0b17,#05080d); }
.product-art::after { content:""; position:absolute; inset:0; 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:36px 36px; mask-image:radial-gradient(circle at center,black,transparent 70%); }
.product-icon { position:relative; z-index:2; width:128px; height:128px; display:grid; place-items:center; border-radius:30px; border:1px solid rgba(255,255,255,.13); box-shadow:0 25px 70px rgba(0,0,0,.35),inset 0 1px rgba(255,255,255,.08); transition:transform .3s var(--ease); }
.product-card:hover .product-icon { transform:translateY(-4px) scale(1.02); }.product-icon svg { width:62px; fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.story-icon { background:linear-gradient(145deg,#8750b8,#3e215d); }.budget-icon { background:linear-gradient(145deg,#e0ad46,#8d5a0b); }
.product-glow { position:absolute; width:250px; height:250px; border-radius:50%; background:rgba(219,164,55,.09); filter:blur(26px); }
.mock-panel { position:absolute; z-index:1; width:130px; padding:14px; border-radius:16px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); }
.mock-panel span { display:block; height:7px; border-radius:9px; background:rgba(255,255,255,.15); margin:7px 0; }.mock-panel span:first-child { background:rgba(243,201,106,.62); width:60%; }.mock-panel-a { left:8%; top:17%; transform:rotate(-7deg); }.mock-panel-b { right:7%; bottom:14%; transform:rotate(8deg); width:112px; }
.chart-orbit { position:absolute; width:310px; aspect-ratio:1; border:1px solid rgba(219,164,55,.16); border-radius:50%; }.chart-orbit i { position:absolute; width:10px; height:10px; border-radius:50%; background:var(--gold); box-shadow:0 0 24px rgba(219,164,55,.55); }.chart-orbit i:nth-child(1){left:7%;top:52%}.chart-orbit i:nth-child(2){right:16%;top:13%}.chart-orbit i:nth-child(3){right:4%;bottom:27%}.chart-orbit i:nth-child(4){left:31%;bottom:4%}
.balance-chip { position:absolute; z-index:3; left:50%; bottom:12%; transform:translateX(-50%); width:72%; padding:15px 18px; border:1px solid rgba(255,255,255,.1); border-radius:16px; background:rgba(7,12,20,.72); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); text-align:center; box-shadow:0 16px 34px rgba(0,0,0,.18); }.balance-chip small { display:block; color:#aab3c0; font-size:.66rem; text-transform:uppercase; letter-spacing:.11em; }.balance-chip strong { display:block; margin-top:5px; color:#f4f6f8; font-size:.84rem; }
.art-label { position:absolute; z-index:4; left:20px; bottom:19px; color:rgba(238,243,249,.62); font-size:.62rem; text-transform:uppercase; letter-spacing:.13em; }
.product-content { padding:clamp(32px,4vw,52px); display:flex; flex-direction:column; justify-content:center; }.product-meta { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:23px; }
.pill { border:1px solid var(--line); border-radius:999px; background:var(--surface-soft); color:var(--muted); font-size:.68rem; text-transform:uppercase; letter-spacing:.1em; padding:7px 10px; font-weight:750; }
.product-content h3 { margin-bottom:13px; font-size:clamp(1.85rem,2.45vw,2.65rem); letter-spacing:-.04em; }.product-content h3 small { display:block; color:var(--gold-2); font-size:.36em; text-transform:uppercase; letter-spacing:.13em; margin-top:8px; }.product-content > p { color:var(--muted); font-size:1.01rem; line-height:1.75; }
.feature-list { display:grid; grid-template-columns:repeat(2,1fr); gap:9px 18px; list-style:none; padding:0; margin:22px 0 29px; }.feature-list li { position:relative; padding-left:17px; color:var(--muted); font-size:.89rem; }.feature-list li::before { content:""; position:absolute; left:0; top:.67em; width:6px; height:6px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 4px rgba(219,164,55,.08); }.product-actions { display:flex; flex-wrap:wrap; gap:10px; }

.process { background:linear-gradient(180deg,transparent,color-mix(in srgb,var(--bg-2) 70%,transparent),transparent); }.process .section-heading p { margin-inline:auto; max-width:680px; }
.timeline { display:grid; grid-template-columns:repeat(4,1fr); margin-top:40px; position:relative; }.timeline::before { content:""; position:absolute; top:31px; left:7%; right:7%; height:1px; background:linear-gradient(90deg,transparent,var(--line-strong) 10%,var(--gold) 50%,var(--line-strong) 90%,transparent); }
.step { position:relative; text-align:center; padding:0 20px; }.step-marker { position:relative; z-index:2; width:64px; height:64px; margin:0 auto 22px; display:grid; place-items:center; border-radius:50%; background:var(--surface-strong); border:1px solid var(--line-strong); color:var(--gold-2); font-weight:850; font-size:.75rem; box-shadow:0 0 0 9px var(--bg),0 10px 30px rgba(0,0,0,.12); }.step h3 { margin-bottom:7px; }.step p { color:var(--muted); font-size:.89rem; }

.brand-panel { display:grid; grid-template-columns:1fr .78fr; gap:34px; align-items:center; padding:clamp(28px,4vw,50px); border-radius:34px; border:1px solid var(--line); background:linear-gradient(135deg,rgba(219,164,55,.08),var(--surface) 35%,rgba(47,92,145,.09)); box-shadow:var(--shadow); overflow:hidden; position:relative; }.brand-panel::before { content:""; position:absolute; width:260px; height:260px; left:-100px; bottom:-140px; border-radius:50%; background:radial-gradient(circle,rgba(219,164,55,.11),transparent 68%); pointer-events:none; }
.brand-panel-copy h2 { margin:10px 0 16px; font-size:clamp(2.05rem,3.1vw,3.3rem); letter-spacing:-.04em; line-height:1.07; }.brand-panel-copy p { color:var(--muted); max-width:650px; }.brand-principles { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }.brand-principles span { padding:7px 10px; border-radius:999px; border:1px solid var(--line); background:var(--surface-soft); color:var(--muted); font-size:.72rem; font-weight:720; }
.swatches { display:flex; gap:9px; margin-top:19px; }.swatches span { width:34px; height:34px; border-radius:50%; border:3px solid color-mix(in srgb,var(--bg) 80%,transparent); box-shadow:0 0 0 1px var(--line); }.swatches span:nth-child(1){background:#07101f}.swatches span:nth-child(2){background:#23466f}.swatches span:nth-child(3){background:#dba437}.swatches span:nth-child(4){background:#f3c96a}.swatches span:nth-child(5){background:#d7dde5}
.brand-logo-frame { border:1px solid var(--line); border-radius:26px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.28); background:#0a1018; }.brand-logo-frame img { width:100%; aspect-ratio:1; object-fit:cover; transition:transform .45s var(--ease); }.brand-logo-frame:hover img { transform:scale(1.018); }

.contact { padding-top:82px; }.contact-shell { display:grid; grid-template-columns:.95fr 1.05fr; gap:42px; align-items:start; padding:clamp(28px,4vw,50px); border-radius:34px; border:1px solid var(--line); background:linear-gradient(145deg,var(--surface),rgba(219,164,55,.055)); box-shadow:var(--shadow); }.contact-copy p { color:var(--muted); max-width:600px; }.contact-email-row { display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin-top:20px; }.contact-email { display:inline-flex; align-items:center; gap:8px; color:var(--gold-2); font-weight:800; word-break:break-word; }.copy-email { min-height:36px; padding:0 11px; border-radius:10px; color:var(--muted); font-size:.72rem; font-weight:750; }
.contact-form { display:grid; gap:16px; }.field-row { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }.contact-form label { display:grid; gap:8px; color:var(--muted); font-size:.79rem; font-weight:750; }.contact-form input,.contact-form textarea,.contact-form select { width:100%; color:var(--text); background:var(--surface-soft); border:1px solid var(--line); border-radius:14px; padding:13px 14px; outline:none; transition:border-color .2s ease,background .2s ease,box-shadow .2s ease; }.contact-form textarea { resize:vertical; min-height:132px; }.contact-form input:hover,.contact-form textarea:hover,.contact-form select:hover { border-color:var(--line-strong); }.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus { border-color:rgba(219,164,55,.6); background:color-mix(in srgb,var(--surface-soft) 90%,rgba(219,164,55,.04)); box-shadow:0 0 0 4px rgba(219,164,55,.07); }.contact-form .invalid { border-color:color-mix(in srgb,var(--danger) 70%,transparent); }.contact-form option { color:#111; }.field-error { min-height:1em; color:var(--danger); font-size:.7rem; font-weight:650; }.field-meta { display:flex; align-items:center; justify-content:space-between; gap:12px; min-height:1em; }.field-meta > small:last-child { color:var(--muted); font-weight:600; }.form-note { margin:0; color:var(--muted); font-size:.74rem; }

.site-footer { border-top:1px solid var(--line); padding:36px 0 max(24px,env(safe-area-inset-bottom)); }.footer-grid { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:24px; }.footer-grid > p { margin:0; color:var(--gold-2); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; text-align:center; }.footer-links { display:flex; justify-content:flex-end; gap:20px; }.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:26px; margin-top:24px; border-top:1px solid var(--line); color:var(--muted); font-size:.75rem; }
.toast { position:fixed; left:50%; bottom:max(24px,env(safe-area-inset-bottom)); transform:translate(-50%,20px); z-index:2200; opacity:0; pointer-events:none; max-width:min(520px,calc(100% - 32px)); padding:12px 16px; border-radius:12px; border:1px solid var(--line); background:var(--surface-strong); color:var(--text); box-shadow:var(--shadow); transition:opacity .2s ease,transform .2s ease; text-align:center; }.toast.show { opacity:1; transform:translate(-50%,0); }
.back-to-top { position:fixed; right:22px; bottom:22px; z-index:900; width:46px; height:46px; border-radius:50%; color:var(--gold-2); background:color-mix(in srgb,var(--surface-strong) 88%,transparent); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); opacity:0; pointer-events:none; transform:translateY(12px); transition:opacity .22s ease,transform .22s var(--ease),background .2s ease; box-shadow:var(--shadow-soft); }.back-to-top.visible { opacity:1; pointer-events:auto; transform:none; }.back-to-top:hover { transform:translateY(-2px); }.back-to-top svg { width:20px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease),transform .7s var(--ease); }.reveal.visible { opacity:1; transform:none; }.reveal-delay-1 { transition-delay:.09s; }.reveal-delay-2 { transition-delay:.17s; }.reveal-delay-3 { transition-delay:.25s; }

@media (max-width:1100px) and (min-width:981px) {
  .desktop-nav { gap:21px; }
  .hero-grid { gap:42px; }
  h1 { font-size:clamp(3.05rem,5.4vw,4.75rem); }
}

@media (max-width:980px) {
  :root { --header:70px; }
  .desktop-nav,.desktop-cta { display:none; }.menu-btn { display:grid; }
  .hero { min-height:auto; }.hero-grid { grid-template-columns:1fr; gap:42px; }.hero-copy { text-align:center; }.hero-copy .hero-lead { margin-inline:auto; }.eyebrow,.hero-actions,.hero-proof { justify-content:center; }.hero-visual { width:min(100%,560px); margin-inline:auto; }.video-card { width:min(84%,410px); transform:none; animation:none; }.video-stage { height:500px; }.capability-strip { grid-template-columns:repeat(2,1fr); }.capability-strip div:nth-child(2) { border-right:0; }.capability-strip div:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .split-grid,.contact-shell,.brand-panel { grid-template-columns:1fr; }.services-grid { grid-template-columns:repeat(2,1fr); }.product-card { grid-template-columns:1fr; }.product-card:nth-child(even) .product-art { order:0; }.product-art { min-height:430px; }.timeline { grid-template-columns:repeat(2,1fr); gap:38px 10px; }.timeline::before { display:none; }.footer-grid { grid-template-columns:1fr auto; }.footer-grid > p { display:none; }
}

@media (max-width:640px) {
  .container { width:min(calc(100% - 28px),var(--container)); }.section { padding:68px 0; }
  .brand-copy small { display:none; }.brand-mark { width:39px; height:39px; }.nav-actions { gap:8px; }
  h1 { font-size:clamp(2.45rem,12vw,3.55rem); line-height:1.03; letter-spacing:-.045em; }.hero { padding-top:calc(var(--header) + 46px); padding-bottom:46px; }.hero-lead { font-size:1rem; }.hero-actions { display:grid; grid-template-columns:1fr; }.hero-actions .button { width:100%; }.hero-proof { gap:8px; font-size:.65rem; }.hero-grid-lines { background-size:56px 56px; }
  .video-card { width:min(94%,360px); border-radius:24px; }.video-stage { min-height:370px; height:455px; }.video-card-top,.video-card-bottom { height:44px; }.video-card-bottom { font-size:.58rem; gap:9px; }.video-orbit { width:78%; box-shadow:0 0 0 32px rgba(48,89,139,.04),0 0 0 64px rgba(219,164,55,.025); }
  .capability-strip { margin-top:36px; grid-template-columns:1fr; }.capability-strip div,.capability-strip div:nth-child(2) { border-right:0; border-bottom:1px solid var(--line); }.capability-strip div:last-child { border-bottom:0; }
  .value-grid,.services-grid,.feature-list,.field-row,.timeline { grid-template-columns:1fr; }.service-card { min-height:0; }.product-art { min-height:360px; }.product-icon { width:108px; height:108px; }.product-icon svg { width:52px; }.mock-panel-a { left:4%; }.mock-panel-b { right:4%; }.chart-orbit { width:260px; }.product-content { padding:32px 24px 36px; }.art-label { left:16px; bottom:14px; font-size:.55rem; }.brand-panel,.contact-shell { padding:27px 20px; border-radius:25px; }.contact-email-row { align-items:flex-start; }.footer-grid { grid-template-columns:1fr; justify-items:start; }.footer-links { justify-content:flex-start; flex-wrap:wrap; }.footer-bottom { flex-direction:column; }.back-to-top { right:14px; bottom:14px; }
}

@media (hover:none) {
  .service-card:hover,.product-card:hover,.value-grid article:hover,.brand-logo-frame:hover img,.button:hover,.back-to-top:hover { transform:none; }
}



/* ===== Corporate profile + light-theme production polish ===== */
.brand-copy { min-width:0; }
.brand-copy small { max-width:255px; line-height:1.2; letter-spacing:.11em; }

.company-profile-card {
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  gap:clamp(22px,3.5vw,44px);
  padding:clamp(24px,3.5vw,38px);
  border:1px solid var(--line);
  border-radius:26px;
  background:linear-gradient(135deg,rgba(219,164,55,.055),var(--surface) 38%,rgba(47,92,145,.055));
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.company-profile-card::after {
  content:"";
  position:absolute;
  width:190px; height:190px; right:-85px; top:-90px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(219,164,55,.11),transparent 70%);
  pointer-events:none;
}
.company-profile-head,.company-profile-grid { position:relative; z-index:1; }
.company-profile-head h3 { margin:8px 0 12px; font-size:clamp(1.35rem,2vw,1.8rem); line-height:1.18; letter-spacing:-.025em; }
.company-profile-head h3 span { display:block; margin-top:5px; color:var(--gold-2); font-size:.66em; letter-spacing:-.01em; }
.company-profile-head p { margin:0; color:var(--muted); font-size:.93rem; line-height:1.68; }
.company-profile-grid { margin:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.company-profile-grid div { min-width:0; padding:14px 15px; border:1px solid var(--line); border-radius:15px; background:var(--surface-soft); }
.company-profile-grid dt { margin-bottom:5px; color:var(--gold-2); font-size:.67rem; font-weight:850; text-transform:uppercase; letter-spacing:.1em; }
.company-profile-grid dd { margin:0; color:var(--text); font-size:.82rem; font-weight:650; line-height:1.5; overflow-wrap:anywhere; }
.company-profile-grid a { color:var(--gold-2); text-decoration:underline; text-decoration-color:color-mix(in srgb,var(--gold-2) 35%,transparent); text-underline-offset:3px; }

/* Light theme: stronger contrast, crisp card boundaries, and readable gold accents. */
html[data-theme="light"] body {
  background:
    radial-gradient(circle at 82% 8%,rgba(45,92,145,.10),transparent 28rem),
    radial-gradient(circle at 15% 30%,rgba(168,105,8,.065),transparent 25rem),
    var(--bg);
}
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .kicker,
html[data-theme="light"] .mini-icon,
html[data-theme="light"] .service-icon,
html[data-theme="light"] .product-content h3 small,
html[data-theme="light"] .contact-email,
html[data-theme="light"] .leader-email,
html[data-theme="light"] .company-profile-grid dt,
html[data-theme="light"] .company-profile-grid a,
html[data-theme="light"] .footer-grid > p,
html[data-theme="light"] .back-to-top { color:#815000; }
html[data-theme="light"] .text-gradient {
  background:linear-gradient(110deg,#714300 4%,#a86908 48%,#7f4d00 94%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
html[data-theme="light"] .button-gold {
  color:#2b1a00;
  background:linear-gradient(135deg,#f8dfa1 0%,#efc461 35%,#dda631 72%,#c28413 100%);
  border-color:#c88e20;
  box-shadow:0 11px 27px rgba(137,83,0,.17),inset 0 1px rgba(255,255,255,.72);
}
html[data-theme="light"] .button-gold:hover { box-shadow:0 15px 34px rgba(137,83,0,.23),inset 0 1px rgba(255,255,255,.75); }
html[data-theme="light"] .value-grid article,
html[data-theme="light"] .service-card,
html[data-theme="light"] .product-card,
html[data-theme="light"] .leadership-card,
html[data-theme="light"] .company-profile-card,
html[data-theme="light"] .contact-shell,
html[data-theme="light"] .brand-panel,
html[data-theme="light"] .capability-strip,
html[data-theme="light"] .hero-brand-card {
  border-color:#d4dde7;
  background-color:#fff;
  box-shadow:0 12px 32px rgba(31,48,68,.09),0 1px 3px rgba(31,48,68,.04);
}
html[data-theme="light"] .value-grid article { background:linear-gradient(155deg,#fff,#f5f8fb); }
html[data-theme="light"] .service-card { background:linear-gradient(155deg,#fff 0%,#f7f9fc 100%); }
html[data-theme="light"] .product-card { background:#fff; }
html[data-theme="light"] .leadership-card { background:linear-gradient(135deg,#fff9ed,#fff 42%,#f3f7fb); }
html[data-theme="light"] .company-profile-card { background:linear-gradient(135deg,#fff9ed,#fff 40%,#f2f7fb); }
html[data-theme="light"] .contact-shell { background:linear-gradient(145deg,#fff,#fffaf0); }
html[data-theme="light"] .brand-panel { background:linear-gradient(135deg,#fff9ec,#fff 36%,#f1f6fb); }
html[data-theme="light"] .company-profile-grid div,
html[data-theme="light"] .leader-tags span,
html[data-theme="light"] .service-tags span,
html[data-theme="light"] .project-tech span,
html[data-theme="light"] .pill,
html[data-theme="light"] .brand-principles span,
html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form textarea,
html[data-theme="light"] .contact-form select { background:#f5f7fa; border-color:#d9e1e9; }
html[data-theme="light"] .about-values .mini-icon,
html[data-theme="light"] .service-icon { background:#fff6e1; border-color:#e5c988; }
html[data-theme="light"] .capability-strip strong,
html[data-theme="light"] .hero-proof i,
html[data-theme="light"] .leader-roles i { color:#895300; background:#895300; }
html[data-theme="light"] .desktop-nav a:hover,
html[data-theme="light"] .desktop-nav a.active,
html[data-theme="light"] .desktop-nav a[aria-current="location"],
html[data-theme="light"] .footer-links a:hover,
html[data-theme="light"] .company-url:hover { color:#754800; }
html[data-theme="light"] .site-header.scrolled { box-shadow:0 8px 24px rgba(31,48,68,.07); }

@media (max-width:980px) {
  .company-profile-card { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  .company-profile-card { padding:19px; border-radius:20px; }
  .company-profile-grid { grid-template-columns:1fr; }
  .company-profile-head h3 { font-size:1.28rem; }
}

@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; }
  #brandParticles { display:none; }
  .video-orbit { animation:none; }
}


/* ===== Final UI/UX polish — compact, readable and motion-rich ===== */
body { font-size:16px; }
p { max-width:72ch; }
.section::after { content:""; position:absolute; left:50%; bottom:0; width:min(calc(100% - 40px),var(--container)); height:1px; transform:translateX(-50%); background:linear-gradient(90deg,transparent,var(--line),transparent); opacity:.62; }
.hero.section::after,.contact.section::after { display:none; }

/* Premium text treatment without oversized typography. */
.text-gradient { background-size:180% 100%; animation:goldFlow 7s ease-in-out infinite alternate; }
@keyframes goldFlow { from{background-position:0% 50%} to{background-position:100% 50%} }

/* Hero motion remains subtle so content stays easy to read. */
.hero-copy > * { will-change:transform,opacity; }
.hero-copy.visible .eyebrow { animation:heroRise .65s var(--ease) both; }
.hero-copy.visible h1 { animation:heroRise .7s .07s var(--ease) both; }
.hero-copy.visible .hero-lead { animation:heroRise .7s .14s var(--ease) both; }
.hero-copy.visible .hero-actions { animation:heroRise .7s .21s var(--ease) both; }
.hero-copy.visible .hero-proof { animation:heroRise .7s .28s var(--ease) both; }
@keyframes heroRise { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
.video-card { animation:cardFloat 7s ease-in-out infinite; }
@keyframes cardFloat { 0%,100%{transform:rotate(.35deg) translateY(0)} 50%{transform:rotate(-.2deg) translateY(-7px)} }

/* Better scanning rhythm and content density. */
.section-heading { max-width:680px; }
.section-heading.center { max-width:700px; }
.kicker,.eyebrow { line-height:1.35; }
.value-grid article,.service-card,.product-card,.brand-panel,.contact-shell { contain:paint; }
.value-grid article { padding:20px; }
.value-grid h3 { margin:11px 0 5px; }
.services-grid { align-items:stretch; }
.service-card p,.value-grid p,.step p,.product-content > p { line-height:1.68; }
.product-content > p { font-size:.97rem; }
.feature-list { margin:18px 0 24px; }
.product-meta { margin-bottom:18px; }

/* Pointer-following highlight adds depth without distracting from copy. */
.service-card,.product-card,.value-grid article,.contact-shell,.brand-panel { --mx:50%; --my:50%; }
.service-card::before { background:radial-gradient(circle at var(--mx) var(--my),rgba(243,201,106,.18),transparent 42%); width:100%; height:100%; inset:0; border-radius:inherit; opacity:.42; transform:none; transition:opacity .25s ease; }
.service-card:hover::before { opacity:.72; transform:none; }
.value-grid article { position:relative; overflow:hidden; }
.value-grid article::after,.product-card::before,.contact-shell::before,.brand-panel::after { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(420px circle at var(--mx) var(--my),rgba(243,201,106,.09),transparent 38%); opacity:0; transition:opacity .25s ease; }
.value-grid article:hover::after,.product-card:hover::before,.contact-shell:hover::before,.brand-panel:hover::after { opacity:1; }
.product-card,.contact-shell,.brand-panel { position:relative; }
.product-card > *,.contact-shell > *,.brand-panel > * { position:relative; z-index:1; }

/* Product art gets lightweight ambient animation. */
.product-glow { animation:glowDrift 6.5s ease-in-out infinite; }
.chart-orbit { animation:orbitSlow 16s linear infinite; }
.mock-panel-a { animation:panelFloatA 6s ease-in-out infinite; }
.mock-panel-b { animation:panelFloatB 7s .5s ease-in-out infinite; }
@keyframes glowDrift { 0%,100%{transform:translate3d(-2%,1%,0) scale(.96);opacity:.72} 50%{transform:translate3d(4%,-3%,0) scale(1.06);opacity:1} }
@keyframes orbitSlow { to{transform:rotate(360deg)} }
@keyframes panelFloatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes panelFloatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* Cards reveal with a polished stagger and slightly smaller travel. */
.reveal { transform:translateY(18px) scale(.992); transition:opacity .6s var(--ease),transform .6s var(--ease); }
.reveal.visible { transform:none; }
.services-grid .reveal:nth-child(2),.value-grid .reveal:nth-child(2) { transition-delay:.06s; }
.services-grid .reveal:nth-child(3),.value-grid .reveal:nth-child(3) { transition-delay:.12s; }
.services-grid .reveal:nth-child(4),.value-grid .reveal:nth-child(4) { transition-delay:.18s; }
.services-grid .reveal:nth-child(5) { transition-delay:.24s; }
.services-grid .reveal:nth-child(6) { transition-delay:.30s; }

/* Timeline animation / hierarchy. */
.step-marker { transition:transform .28s var(--ease),border-color .28s ease,box-shadow .28s ease; }
.step:hover .step-marker { transform:translateY(-4px) scale(1.04); border-color:rgba(243,201,106,.42); box-shadow:0 0 0 9px var(--bg),0 14px 34px rgba(0,0,0,.18),0 0 26px rgba(219,164,55,.12); }
.timeline::before { background-size:200% 100%; animation:timelineGlow 6s linear infinite; }
@keyframes timelineGlow { to{background-position:-200% 0} }

/* Buttons feel responsive but never jump excessively. */
.button { position:relative; overflow:hidden; }
.button::after { content:""; position:absolute; top:-120%; left:-55%; width:38%; height:340%; transform:rotate(20deg); background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent); transition:left .55s var(--ease); pointer-events:none; }
.button:hover::after { left:125%; }

/* Light theme readability improvements. */
html[data-theme="light"] body { background:radial-gradient(circle at 84% 8%,rgba(47,92,145,.10),transparent 26rem),radial-gradient(circle at 14% 28%,rgba(219,164,55,.08),transparent 25rem),var(--bg); }
html[data-theme="light"] .service-card,html[data-theme="light"] .product-card,html[data-theme="light"] .brand-panel,html[data-theme="light"] .contact-shell { box-shadow:0 16px 44px rgba(28,43,62,.085); }

@media (max-width:980px) {
  .section { padding:76px 0; }
  .hero { padding-top:calc(var(--header) + 52px); padding-bottom:48px; }
  .hero-grid { gap:38px; }
  .section-heading h2,.contact-copy h2 { font-size:clamp(2rem,6vw,3.15rem); }
  .product-content { padding:34px 30px 38px; }
  .product-art { min-height:390px; }
}

@media (max-width:640px) {
  body { font-size:15.5px; }
  .section { padding:62px 0; }
  .section-heading h2,.contact-copy h2 { font-size:clamp(1.9rem,9.2vw,2.65rem); line-height:1.1; }
  .section-heading p { font-size:.96rem; }
  .about-copy > p { font-size:1rem; line-height:1.7; }
  .eyebrow,.kicker { font-size:.68rem; letter-spacing:.15em; }
  .hero-proof { justify-content:center; }
  .capability-strip div { padding:15px 17px; }
  .service-card { padding:22px; }
  .service-card h3 { margin-top:18px; }
  .product-art { min-height:330px; }
  .product-content { padding:28px 21px 31px; }
  .product-content h3 { font-size:1.85rem; }
  .brand-panel,.contact-shell { padding:24px 18px; }
  .brand-logo-frame { width:min(100%,390px); margin-inline:auto; }
}

@media (prefers-reduced-motion:reduce) {
  .text-gradient,.video-card,.product-glow,.chart-orbit,.mock-panel-a,.mock-panel-b,.timeline::before { animation:none !important; }
  .hero-copy.visible > * { animation:none !important; }
}


/* ============================================================
   FINAL HERO + ABOUT POLISH — 2026-08-18
   Compact typography, full-frame video, stronger hierarchy,
   reduced dead space and refined motion.
   ============================================================ */

/* Hero: give the copy more breathing width while keeping the media elegant. */
.hero {
  padding-top: calc(var(--header) + 48px);
  padding-bottom: 46px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .72fr);
  gap: clamp(42px, 5vw, 68px);
}
.hero-copy { max-width: 710px; }
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 4.15vw, 4.15rem);
  line-height: 1.035;
  letter-spacing: -.046em;
}
.hero-lead {
  max-width: 625px;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  line-height: 1.68;
}
.hero-actions { margin-top: 22px; }
.hero-proof { margin-top: 22px; }
.capability-strip { margin-top: 38px; }

/* Video: never crop the supplied 9:16 brand film. The soft backdrop fills the frame. */
.hero-visual { align-self: center; }
.video-card {
  width: min(100%, 390px);
  border-radius: 27px;
  transform: none;
  box-shadow: 0 32px 90px rgba(0,0,0,.44), 0 0 0 1px rgba(219,164,55,.05);
}
.video-card-top,.video-card-bottom { height: 44px; }
.video-stage {
  height: clamp(500px, 58vh, 585px);
  min-height: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 26%, rgba(48,89,139,.18), transparent 42%),
    radial-gradient(circle at 50% 58%, rgba(219,164,55,.09), transparent 40%),
    #020407;
}
.video-stage::before {
  content:"";
  position:absolute;
  inset:-10%;
  z-index:0;
  background:
    linear-gradient(180deg,rgba(3,6,10,.08),rgba(3,6,10,.34)),
    url("assets/hs-creators-dark.jpeg") center / cover no-repeat;
  filter: blur(20px) saturate(.82);
  opacity:.28;
  transform:scale(1.08);
  pointer-events:none;
}
html[data-theme="light"] .video-stage::before {
  background:
    linear-gradient(180deg,rgba(3,6,10,.08),rgba(3,6,10,.3)),
    url("assets/hs-creators-light.jpeg") center / cover no-repeat;
  opacity:.22;
}
.video-stage video {
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  filter:contrast(1.02) saturate(1.02);
}
.video-stage::after {
  z-index:2;
  background:
    linear-gradient(to bottom,rgba(3,6,10,.12),transparent 18%,transparent 78%,rgba(3,6,10,.2)),
    linear-gradient(90deg,rgba(0,0,0,.18),transparent 18%,transparent 82%,rgba(0,0,0,.18));
}
.video-sound { z-index:3; }
.video-orbit { width: 88%; opacity:.76; }

/* A restrained entrance animation keeps the media premium rather than busy. */
.hero-visual.visible .video-card { animation: heroMediaIn .78s .08s var(--ease) both, cardFloat 8s 1s ease-in-out infinite; }
.hero-visual.visible .video-stage video { animation: heroFilmIn .9s .16s var(--ease) both; }
@keyframes heroMediaIn { from { opacity:0; transform:translateY(18px) scale(.975); } to { opacity:1; transform:none; } }
@keyframes heroFilmIn { from { opacity:0; transform:scale(.985); } to { opacity:1; transform:none; } }

/* About: two compact intro columns, then four equal cards. No empty half-screen column. */
.about { padding: 68px 0 74px; }
.about-shell { display:grid; gap:30px; }
.about-intro {
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
  gap:clamp(38px,5vw,72px);
  align-items:end;
}
.about .section-heading { max-width:540px; }
.about .section-heading h2 {
  margin:9px 0 0;
  max-width:520px;
  font-size:clamp(2.15rem,3vw,3.05rem);
  line-height:1.08;
  letter-spacing:-.037em;
}
.about-copy { max-width:610px; justify-self:end; }
.about-copy > p {
  margin:0;
  font-size:1rem;
  line-height:1.7;
}
.about-values {
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:13px;
}
.about-values article {
  min-height:166px;
  padding:20px 20px 19px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  background:linear-gradient(155deg,rgba(255,255,255,.045),rgba(255,255,255,.012));
}
.about-values .mini-icon {
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:10px;
  border:1px solid rgba(219,164,55,.16);
  background:rgba(219,164,55,.075);
  font-size:.72rem;
}
.about-values h3 { margin:16px 0 6px; font-size:.98rem; }
.about-values p { font-size:.86rem; line-height:1.62; }
.about-values article::before {
  content:"";
  position:absolute;
  inset:auto 18px 0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(243,201,106,.48),transparent);
  opacity:0;
  transition:opacity .25s ease;
}
.about-values article:hover::before { opacity:1; }

@media (max-width:1100px) and (min-width:981px) {
  .hero-grid { grid-template-columns:minmax(0,1.06fr) minmax(330px,.72fr); gap:38px; }
  .hero h1 { font-size:clamp(2.85rem,4.65vw,3.75rem); }
  .video-card { width:min(100%,365px); }
  .video-stage { height:520px; }
  .about-values { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .about-values article { min-height:150px; }
}

@media (max-width:980px) {
  .hero { padding-top:calc(var(--header) + 38px); padding-bottom:42px; }
  .hero-grid { grid-template-columns:1fr; gap:34px; }
  .hero-copy { max-width:760px; margin-inline:auto; }
  .hero h1 { max-width:700px; margin-inline:auto; font-size:clamp(2.75rem,7vw,4rem); }
  .hero-lead { margin-inline:auto; }
  .video-card { width:min(78vw,365px); }
  .video-stage { height:min(570px,68vh); min-height:470px; }
  .capability-strip { margin-top:34px; }
  .about { padding:62px 0 66px; }
  .about-intro { grid-template-columns:1fr; gap:16px; align-items:start; }
  .about .section-heading,.about .section-heading h2,.about-copy { max-width:720px; justify-self:start; }
  .about-values { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width:640px) {
  .hero { padding-top:calc(var(--header) + 30px); padding-bottom:36px; }
  .hero .eyebrow { margin-bottom:14px; }
  .hero h1 {
    font-size:clamp(2.35rem,10.8vw,3.15rem);
    line-height:1.045;
    letter-spacing:-.042em;
  }
  .hero-lead { line-height:1.62; }
  .hero-actions,.hero-proof { margin-top:18px; }
  .video-card { width:min(92vw,350px); border-radius:23px; }
  .video-stage { height:min(560px,69vh); min-height:440px; }
  .video-card-top,.video-card-bottom { height:42px; }
  .capability-strip { margin-top:28px; }
  .about { padding:54px 0 58px; }
  .about-shell { gap:23px; }
  .about .section-heading h2 { font-size:clamp(1.95rem,8.4vw,2.55rem); }
  .about-copy > p { font-size:.96rem; line-height:1.67; }
  .about-values { grid-template-columns:1fr; gap:11px; }
  .about-values article { min-height:0; padding:18px; }
  .about-values h3 { margin-top:13px; }
}

@media (prefers-reduced-motion:reduce) {
  .hero-visual.visible .video-card,
  .hero-visual.visible .video-stage video { animation:none !important; }
}

/* ============================================================
   BRAND MEDIA FINAL POLISH — 2026-08-18
   Full logo visibility in header + uncropped hero brand film.
   ============================================================ */

/* Keep every edge/pixel of the HS icon visible in the navbar. */
.brand-mark {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  padding: 3px;
  border-radius: 13px;
  overflow: hidden;
  background: linear-gradient(145deg, #111927, #070b11);
}
.brand-mark img,
.brand-mark .theme-brand-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}
html[data-theme="light"] .brand-mark {
  background: linear-gradient(145deg, #ffffff, #eef2f7);
}

/* The film is vertical; contain guarantees the complete logo and typography remain visible. */
.video-stage {
  background: #020407;
}
.video-stage video {
  object-fit: contain !important;
  object-position: 50% 50% !important;
  transform: none;
}
.video-stage video[poster] {
  background: transparent;
}

/* Keep the static company logo artwork uncropped wherever it is used. */
.brand-logo-frame {
  display: grid;
  place-items: center;
  background: #081019;
}
.brand-logo-frame img {
  object-fit: contain !important;
  object-position: center !important;
  transform: none;
}
.brand-logo-frame:hover img { transform: scale(1.008); }

@media (max-width: 640px) {
  .brand-mark { width: 41px; height: 41px; flex-basis: 41px; padding: 3px; }
}

/* ============================================================
   PRODUCTION REFRESH — 2026-08-19
   Brand-first hero (no video), full-stack services, leadership,
   POS case study, official company email and tighter hierarchy.
   ============================================================ */

/* Slightly tighter overall rhythm for a denser industry-standard presentation. */
.section { padding:76px 0; }
.hero { padding-top:calc(var(--header) + 46px); padding-bottom:42px; }
.hero-grid { grid-template-columns:minmax(0,1.08fr) minmax(350px,.78fr); gap:clamp(38px,4.6vw,62px); }
.hero h1 { max-width:680px; font-size:clamp(2.8rem,3.75vw,3.75rem); line-height:1.045; }
.hero-lead { max-width:640px; }
.capability-strip { margin-top:32px; }
.section-heading h2,.contact-copy h2 { font-size:clamp(2rem,2.85vw,3rem); }
.section-heading p { line-height:1.7; }

/* Official theme-aware logo hero. */
.brand-orbit {
  position:absolute;
  width:88%;
  aspect-ratio:1;
  border:1px solid rgba(219,164,55,.14);
  border-radius:50%;
  box-shadow:0 0 0 42px rgba(48,89,139,.038),0 0 0 84px rgba(219,164,55,.022);
  animation:orbitPulse 6.5s ease-in-out infinite;
  pointer-events:none;
}
.hero-brand-card {
  --mx:50%; --my:50%;
  position:relative;
  width:min(100%,430px);
  border:1px solid var(--line-strong);
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(165deg,color-mix(in srgb,var(--surface-strong) 94%,transparent),color-mix(in srgb,var(--surface) 92%,transparent));
  box-shadow:0 34px 95px rgba(0,0,0,.38),0 0 0 1px rgba(219,164,55,.04);
  isolation:isolate;
}
.hero-brand-card::before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(430px circle at var(--mx) var(--my),rgba(243,201,106,.11),transparent 40%);
  opacity:.78;
  z-index:0;
}
.hero-brand-card > * { position:relative; z-index:1; }
.hero-brand-top {
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:11px 16px;
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-size:.68rem;
  letter-spacing:.04em;
}
.brand-status,.brand-availability { display:inline-flex; align-items:center; gap:7px; white-space:nowrap; }
.brand-status i { width:7px; height:7px; border-radius:50%; background:var(--success); box-shadow:0 0 0 5px rgba(118,215,166,.08); }
.brand-availability { color:var(--gold-2); font-weight:760; }
.hero-logo-stage {
  position:relative;
  aspect-ratio:1.02/1;
  display:grid;
  place-items:center;
  padding:18px;
  overflow:hidden;
  background:radial-gradient(circle at 50% 35%,rgba(47,92,145,.17),transparent 42%),#05090f;
}
html[data-theme="light"] .hero-logo-stage { background:radial-gradient(circle at 50% 32%,rgba(47,92,145,.10),transparent 42%),#f9fbfd; }
.hero-logo-stage::before {
  content:"";
  position:absolute;
  inset:0;
  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:34px 34px;
  mask-image:radial-gradient(circle at center,#000,transparent 73%);
  pointer-events:none;
}
html[data-theme="light"] .hero-logo-stage::before { background-image:linear-gradient(rgba(9,27,50,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(9,27,50,.035) 1px,transparent 1px); }
.hero-logo-stage img {
  width:100%;
  height:100%;
  max-height:350px;
  object-fit:contain;
  object-position:center;
  border-radius:18px;
  box-shadow:0 22px 62px rgba(0,0,0,.22);
  transition:transform .45s var(--ease),filter .3s ease;
}
.hero-brand-card:hover .hero-logo-stage img { transform:scale(1.012); }
.brand-scan {
  position:absolute;
  z-index:2;
  left:8%; right:8%; top:-18%; height:34%;
  background:linear-gradient(to bottom,transparent,rgba(243,201,106,.08),rgba(243,201,106,.22),transparent);
  filter:blur(5px);
  transform:skewY(-4deg);
  animation:brandScan 6.5s ease-in-out infinite;
  pointer-events:none;
}
@keyframes brandScan { 0%,20%{transform:translateY(-170%) skewY(-4deg);opacity:0} 38%{opacity:.65} 62%{opacity:.4} 80%,100%{transform:translateY(440%) skewY(-4deg);opacity:0} }
.hero-brand-capabilities {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-top:1px solid var(--line);
}
.hero-brand-capabilities span { display:grid; gap:2px; padding:13px 15px; min-width:0; }
.hero-brand-capabilities span:nth-child(odd) { border-right:1px solid var(--line); }
.hero-brand-capabilities span:nth-child(-n+2) { border-bottom:1px solid var(--line); }
.hero-brand-capabilities strong { font-size:.74rem; letter-spacing:.02em; }
.hero-brand-capabilities small { color:var(--muted); font-size:.66rem; line-height:1.35; }
.hero-visual.visible .hero-brand-card { animation:heroMediaIn .72s .06s var(--ease) both,brandCardFloat 8s 1s ease-in-out infinite; }
@keyframes brandCardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Leadership: compact credibility without a portrait dependency. */
.leadership-card {
  --mx:50%; --my:50%;
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:.9fr 1.2fr auto;
  align-items:center;
  gap:24px;
  padding:22px 24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(135deg,rgba(219,164,55,.06),var(--surface),rgba(47,92,145,.06));
  box-shadow:var(--shadow-soft);
}
.leadership-card::before { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(400px circle at var(--mx) var(--my),rgba(243,201,106,.09),transparent 38%); opacity:.55; }
.leadership-card > * { position:relative; z-index:1; }
.leader-profile { display:flex; align-items:center; gap:15px; min-width:0; }
.leader-monogram { width:56px; height:56px; flex:0 0 56px; display:grid; place-items:center; border-radius:17px; color:#171006; font-weight:900; letter-spacing:-.03em; background:linear-gradient(135deg,#f6d27f,var(--gold),#a97012); box-shadow:0 12px 32px rgba(219,164,55,.18); }
.leader-profile h3 { margin:4px 0 5px; font-size:1.12rem; letter-spacing:-.02em; }
.leader-roles { display:flex; flex-wrap:wrap; align-items:center; gap:7px; margin:0; color:var(--muted); font-size:.72rem; font-weight:680; }
.leader-roles i { width:3px; height:3px; border-radius:50%; background:var(--gold); }
.leader-summary p { margin:0; color:var(--muted); font-size:.9rem; line-height:1.62; }
.leader-tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:11px; }
.leader-tags span,.service-tags span,.project-tech span { padding:5px 8px; border:1px solid var(--line); border-radius:999px; background:var(--surface-soft); color:var(--muted); font-size:.66rem; font-weight:700; }
.leader-email { justify-self:end; min-height:42px; display:inline-flex; align-items:center; gap:7px; padding:0 12px; border:1px solid var(--line); border-radius:12px; color:var(--gold-2); font-size:.78rem; font-weight:760; transition:background .2s ease,border-color .2s ease,transform .2s ease; }
.leader-email:hover { background:var(--surface-hover); border-color:var(--line-strong); transform:translateY(-1px); }

/* Service cards expose the concrete stack while staying easy to scan. */
.service-card { min-height:286px; display:flex; flex-direction:column; }
.service-card p { flex:1; }
.service-tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:18px; position:relative; z-index:2; }

/* Selected work: third POS case study gets its own visual language. */
.product-card { min-height:430px; }
.product-pos .product-art { background:radial-gradient(circle at 45% 34%,rgba(219,164,55,.23),transparent 38%),linear-gradient(145deg,#101116,#06101a); }
.pos-icon { background:linear-gradient(145deg,#152337,#8a5c13); }
.pos-receipt { position:absolute; z-index:2; left:11%; bottom:21%; width:118px; padding:15px 14px 13px; border:1px solid rgba(255,255,255,.12); border-radius:14px; background:rgba(8,13,21,.82); box-shadow:0 20px 48px rgba(0,0,0,.28); transform:rotate(-5deg); }
.pos-receipt span { display:block; height:5px; border-radius:4px; background:rgba(255,255,255,.16); margin-bottom:8px; }
.pos-receipt span:nth-child(2) { width:72%; }
.pos-receipt span:nth-child(3) { width:86%; }
.pos-receipt strong { display:block; color:var(--gold-2); font-size:.68rem; letter-spacing:.14em; margin-top:11px; }
.pos-metrics { position:absolute; z-index:2; right:7%; top:19%; display:grid; gap:8px; }
.pos-metrics span { min-width:102px; padding:9px 10px; border-radius:12px; border:1px solid rgba(255,255,255,.11); background:rgba(8,13,21,.8); box-shadow:0 14px 34px rgba(0,0,0,.22); }
.pos-metrics small,.pos-metrics b { display:block; }
.pos-metrics small { color:#aab4c1; font-size:.58rem; text-transform:uppercase; letter-spacing:.1em; }
.pos-metrics b { color:#f1f4f8; font-size:.76rem; margin-top:2px; }
.project-tech { display:flex; flex-wrap:wrap; gap:7px; margin:-4px 0 22px; }
.product-content h3 { font-size:clamp(1.7rem,2.15vw,2.35rem); }

/* Contact and official identity details. */
.contact-owner { display:grid; gap:2px; margin:20px 0 14px; padding-left:13px; border-left:2px solid var(--gold); }
.contact-owner strong { font-size:.9rem; }
.contact-owner span { color:var(--muted); font-size:.73rem; }
.company-url { display:inline-block; margin-top:9px; color:var(--muted); font-size:.82rem; font-weight:680; transition:color .2s ease; }
.company-url:hover { color:var(--gold-2); }
.contact-email { overflow-wrap:anywhere; }

/* Light theme keeps official light artwork readable without visual noise. */
html[data-theme="light"] .hero-brand-card { box-shadow:0 22px 60px rgba(28,43,62,.12); }
html[data-theme="light"] .leadership-card { box-shadow:0 14px 36px rgba(28,43,62,.08); }
html[data-theme="light"] .pos-receipt,html[data-theme="light"] .pos-metrics span { background:rgba(7,14,24,.90); }

@media (max-width:1100px) and (min-width:981px) {
  .hero-grid { grid-template-columns:minmax(0,1.05fr) minmax(330px,.74fr); gap:36px; }
  .hero h1 { font-size:clamp(2.65rem,4.1vw,3.4rem); }
  .hero-brand-card { width:min(100%,390px); }
  .leadership-card { grid-template-columns:1fr 1.1fr; }
  .leader-email { grid-column:1/-1; justify-self:start; }
}

@media (max-width:980px) {
  .section { padding:68px 0; }
  .hero { padding-top:calc(var(--header) + 34px); padding-bottom:38px; }
  .hero-grid { grid-template-columns:1fr; gap:32px; }
  .hero-brand-card { width:min(80vw,420px); margin-inline:auto; }
  .brand-orbit { width:min(74vw,390px); }
  .leadership-card { grid-template-columns:1fr; gap:16px; }
  .leader-email { justify-self:start; }
}

@media (max-width:640px) {
  .container { width:min(calc(100% - 28px),var(--container)); }
  .section { padding:54px 0; }
  .hero { padding-top:calc(var(--header) + 26px); padding-bottom:32px; }
  .hero h1 { font-size:clamp(2.18rem,10vw,2.9rem); line-height:1.055; }
  .hero-lead { font-size:.96rem; line-height:1.62; }
  .hero-brand-card { width:min(94vw,360px); border-radius:23px; }
  .hero-brand-top { min-height:44px; padding:10px 12px; }
  .brand-availability { display:none; }
  .hero-logo-stage { padding:12px; }
  .hero-brand-capabilities span { padding:11px 10px; }
  .hero-brand-capabilities strong { font-size:.7rem; }
  .hero-brand-capabilities small { font-size:.61rem; }
  .brand-orbit { width:76%; box-shadow:0 0 0 28px rgba(48,89,139,.035),0 0 0 56px rgba(219,164,55,.02); }
  .about { padding:52px 0 56px; }
  .leadership-card { padding:18px; border-radius:20px; }
  .leader-profile { align-items:flex-start; }
  .leader-monogram { width:50px; height:50px; flex-basis:50px; border-radius:15px; }
  .leader-roles { gap:5px; }
  .leader-email { width:100%; justify-content:center; }
  .service-card { min-height:0; }
  .service-tags { margin-top:14px; }
  .product-card { min-height:0; }
  .pos-receipt { left:7%; bottom:18%; transform:scale(.88) rotate(-5deg); transform-origin:left bottom; }
  .pos-metrics { right:4%; top:14%; transform:scale(.88); transform-origin:right top; }
  .contact-owner { margin-top:17px; }
}

@media (prefers-reduced-motion:reduce) {
  .brand-orbit,.brand-scan,.hero-visual.visible .hero-brand-card { animation:none !important; }
}

/* Legal-name header fit: keep the complete company name readable without crowding navigation. */
@media (min-width:981px) {
  .site-header .brand { min-width:0; flex:0 1 auto; }
  .site-header .brand-copy { width:clamp(190px,18vw,245px); }
  .site-header .brand-copy small { max-width:none; white-space:normal; font-size:.54rem; line-height:1.18; letter-spacing:.105em; margin-top:4px; }
}
@media (max-width:1180px) and (min-width:981px) {
  .site-header .brand-copy { width:190px; }
  .desktop-nav { gap:20px; }
  .desktop-nav a { font-size:.83rem; }
  .desktop-cta { padding-inline:15px; }
}


/* =========================================================
   ENTITY SEO / CORPORATE PROFILE PAGES — 2026-08-19
   Dedicated crawlable pages with the same premium UI system.
   ========================================================= */
.inner-page main { min-height:70vh; }
.page-hero { padding-top:calc(var(--header) + 72px); padding-bottom:62px; overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 83% 22%,rgba(47,92,145,.18),transparent 30rem),radial-gradient(circle at 14% 70%,rgba(219,164,55,.07),transparent 26rem); }
.page-hero-grid,.founder-hero-grid { position:relative; display:grid; grid-template-columns:minmax(0,1.12fr) minmax(320px,.7fr); align-items:center; gap:58px; }
.page-hero h1 { max-width:850px; margin:12px 0 20px; font-size:clamp(2.65rem,4.8vw,4.65rem); }
.page-hero p { max-width:760px; color:var(--muted); font-size:1.05rem; line-height:1.75; }
.breadcrumbs { display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-bottom:26px; color:var(--muted); font-size:.74rem; font-weight:720; }
.breadcrumbs a:hover { color:var(--gold-2); }
.breadcrumbs i { opacity:.38; font-style:normal; }
.page-actions,.entity-actions { display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:26px; }
.text-link { color:var(--gold-2); font-weight:780; font-size:.86rem; padding:8px 4px; }
.page-brand-card,.company-seal-card,.service-summary-card,.portfolio-count-card,.official-contact-card { position:relative; overflow:hidden; display:grid; gap:14px; border:1px solid var(--line-strong); border-radius:28px; background:linear-gradient(145deg,var(--surface),color-mix(in srgb,var(--surface) 82%,var(--bg-2))); box-shadow:var(--shadow); }
.page-brand-card,.company-seal-card { padding:20px; }
.page-brand-card img,.company-seal-card img { width:100%; aspect-ratio:1; object-fit:contain; border-radius:20px; border:1px solid var(--line); background:var(--surface-soft); }
.page-brand-card > span,.company-seal-card > span,.official-contact-card > span,.service-summary-card > span { color:var(--gold-2); text-transform:uppercase; letter-spacing:.14em; font-size:.68rem; font-weight:850; }
.page-brand-card > strong,.company-seal-card > div strong { font-size:.9rem; }
.company-seal-card > div { display:grid; gap:3px; }.company-seal-card small { color:var(--muted); }
.compact-section { padding-top:60px; padding-bottom:72px; }
.muted-section { background:linear-gradient(180deg,transparent,color-mix(in srgb,var(--bg-2) 74%,transparent),transparent); }
.content-split { display:grid; grid-template-columns:.85fr 1.15fr; gap:58px; align-items:start; }
.prose-card { padding:28px; border:1px solid var(--line); border-radius:24px; background:var(--surface); box-shadow:var(--shadow-soft); }
.prose-card p { color:var(--muted); line-height:1.78; }.prose-card p:last-child { margin-bottom:0; }
.info-card-grid { display:grid; gap:16px; margin-top:34px; }.info-card-grid.four { grid-template-columns:repeat(4,1fr); }.info-card-grid.three { grid-template-columns:repeat(3,1fr); }.info-card-grid.two { grid-template-columns:repeat(2,1fr); margin-top:0; }
.info-card { min-width:0; padding:24px; border:1px solid var(--line); border-radius:22px; background:var(--surface); box-shadow:var(--shadow-soft); transition:transform .24s var(--ease),border-color .24s ease,box-shadow .24s ease; }
.info-card:hover { transform:translateY(-3px); border-color:color-mix(in srgb,var(--gold) 38%,var(--line)); }
.info-card b { display:block; color:var(--gold); font-size:.72rem; margin-bottom:18px; }.info-card h3 { margin-bottom:8px; font-size:1.04rem; }.info-card p { margin:0; color:var(--muted); font-size:.9rem; line-height:1.66; }
.callout-panel,.identity-panel,.entity-index-shell { display:flex; align-items:center; justify-content:space-between; gap:34px; padding:32px; border:1px solid var(--line); border-radius:28px; background:linear-gradient(135deg,rgba(219,164,55,.065),var(--surface),rgba(47,92,145,.07)); box-shadow:var(--shadow-soft); }
.callout-panel h2,.identity-panel h2,.entity-index-shell h2 { margin:9px 0 9px; font-size:clamp(1.7rem,2.6vw,2.55rem); letter-spacing:-.03em; line-height:1.1; }.callout-panel p,.identity-panel p,.entity-index-shell p { margin:0; color:var(--muted); max-width:720px; }
.profile-facts-grid { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--line); border-radius:26px; overflow:hidden; background:var(--surface); box-shadow:var(--shadow-soft); }
.profile-facts-grid div { display:grid; gap:8px; min-height:132px; padding:24px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }.profile-facts-grid div:nth-child(3n) { border-right:0; }.profile-facts-grid div:nth-last-child(-n+3) { border-bottom:0; }
.profile-facts-grid span { color:var(--gold-2); font-size:.68rem; text-transform:uppercase; letter-spacing:.12em; font-weight:830; }.profile-facts-grid strong { font-size:.94rem; line-height:1.55; overflow-wrap:anywhere; }.profile-facts-grid a:hover { color:var(--gold-2); }
.identity-panel { align-items:flex-start; }.identity-list { min-width:min(100%,520px); display:grid; gap:8px; }.identity-list a { display:grid; gap:2px; padding:13px 15px; border:1px solid var(--line); border-radius:14px; background:var(--surface-soft); transition:background .2s ease,border-color .2s ease,transform .2s ease; }.identity-list a:hover { background:var(--surface-hover); border-color:var(--line-strong); transform:translateX(2px); }.identity-list span { color:var(--muted); font-size:.66rem; text-transform:uppercase; letter-spacing:.1em; }.identity-list strong { font-size:.83rem; overflow-wrap:anywhere; }
.founder-hero-grid { grid-template-columns:minmax(260px,.55fr) minmax(0,1.25fr); }
.founder-monogram-large { width:min(32vw,340px); aspect-ratio:1; display:grid; place-items:center; justify-self:center; border-radius:34%; color:#171006; font-size:clamp(4rem,9vw,8rem); font-weight:900; letter-spacing:-.08em; background:linear-gradient(145deg,#f7d98f,var(--gold),#9d6710); box-shadow:0 35px 100px rgba(219,164,55,.24),inset 0 1px rgba(255,255,255,.6); }
.role-line { color:var(--gold-2)!important; font-size:.9rem!important; font-weight:800; letter-spacing:.04em; }
.service-summary-card { grid-template-columns:repeat(2,1fr); padding:24px; }.service-summary-card > span { grid-column:1/-1; }.service-summary-card strong { padding:14px; border:1px solid var(--line); border-radius:14px; background:var(--surface-soft); font-size:.86rem; }
.service-detail-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }.service-detail-card { position:relative; min-width:0; padding:28px; border:1px solid var(--line); border-radius:25px; background:var(--surface); box-shadow:var(--shadow-soft); }.service-detail-card > span { color:var(--gold); font-size:.7rem; font-weight:850; }.service-detail-card h2 { margin:12px 0 12px; font-size:1.45rem; letter-spacing:-.025em; }.service-detail-card p,.service-detail-card li { color:var(--muted); }.service-detail-card ul { margin:18px 0 0; padding-left:18px; display:grid; gap:7px; font-size:.88rem; }
.portfolio-count-card { place-items:center; align-content:center; min-height:340px; padding:28px; text-align:center; }.portfolio-count-card strong { color:var(--gold-2); font-size:6rem; line-height:.9; letter-spacing:-.08em; }.portfolio-count-card span { font-weight:850; }.portfolio-count-card small { color:var(--muted); }
.project-detail-stack { display:grid; gap:18px; }.project-detail-card { display:grid; grid-template-columns:auto 1fr auto; gap:24px; align-items:center; padding:28px; border:1px solid var(--line); border-radius:26px; background:var(--surface); box-shadow:var(--shadow-soft); }.project-number { width:54px; height:54px; display:grid; place-items:center; border-radius:17px; color:#171006; font-weight:900; background:linear-gradient(135deg,#f6d27f,var(--gold)); }.project-detail-card h2 { margin:7px 0 8px; font-size:1.5rem; }.project-detail-card p { margin:0; color:var(--muted); }.chip-row { display:flex; flex-wrap:wrap; gap:7px; margin-top:15px; }.chip-row span { padding:6px 9px; border:1px solid var(--line); border-radius:999px; background:var(--surface-soft); color:var(--muted); font-size:.68rem; font-weight:740; }
.official-contact-card { padding:28px; align-content:center; min-height:300px; }.official-contact-card strong { font-size:clamp(1.2rem,2vw,1.7rem); overflow-wrap:anywhere; }.official-contact-card small { color:var(--muted); line-height:1.55; }.official-contact-card .copy-email { width:max-content; min-height:42px; padding:0 13px; border-radius:12px; }
.entity-index { padding-top:54px; padding-bottom:54px; }.entity-index-shell { align-items:stretch; }.entity-index-shell > div:first-child { max-width:470px; align-self:center; }.entity-link-grid { flex:1; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }.entity-link-grid a { display:grid; gap:5px; padding:17px; border:1px solid var(--line); border-radius:16px; background:var(--surface-soft); transition:background .2s ease,border-color .2s ease,transform .2s ease; }.entity-link-grid a:hover { background:var(--surface-hover); border-color:var(--line-strong); transform:translateY(-2px); }.entity-link-grid strong { font-size:.86rem; }.entity-link-grid span { color:var(--muted); font-size:.73rem; line-height:1.45; }
.footer-entity-links { display:flex; flex-wrap:wrap; justify-content:center; gap:10px 18px; padding:15px 0; border-top:1px solid var(--line); color:var(--muted); font-size:.73rem; }.footer-entity-links span { color:var(--gold-2); font-weight:820; text-transform:uppercase; letter-spacing:.09em; }.footer-entity-links a:hover { color:var(--gold-2); }
html[data-theme="light"] .page-brand-card,html[data-theme="light"] .company-seal-card,html[data-theme="light"] .service-summary-card,html[data-theme="light"] .portfolio-count-card,html[data-theme="light"] .official-contact-card,html[data-theme="light"] .info-card,html[data-theme="light"] .prose-card,html[data-theme="light"] .profile-facts-grid,html[data-theme="light"] .service-detail-card,html[data-theme="light"] .project-detail-card { background:#fff; border-color:#cfd9e4; box-shadow:0 12px 34px rgba(31,49,70,.09),0 1px 3px rgba(31,49,70,.05); }
html[data-theme="light"] .callout-panel,html[data-theme="light"] .identity-panel,html[data-theme="light"] .entity-index-shell { background:linear-gradient(135deg,#fff8e7,#fff,#f3f7fc); border-color:#d2dbe5; box-shadow:0 12px 34px rgba(31,49,70,.08); }
html[data-theme="light"] .entity-link-grid a,html[data-theme="light"] .identity-list a,html[data-theme="light"] .service-summary-card strong,html[data-theme="light"] .chip-row span { background:#f7f9fc; border-color:#d6dee8; }
html[data-theme="light"] .page-brand-card img,html[data-theme="light"] .company-seal-card img { background:#f8fafc; border-color:#d7e0e9; }
@media (max-width:980px) { .page-hero-grid,.founder-hero-grid,.content-split { grid-template-columns:1fr; gap:34px; }.page-brand-card,.company-seal-card,.service-summary-card,.portfolio-count-card,.official-contact-card { width:min(100%,520px); margin-inline:auto; }.founder-monogram-large { width:min(56vw,300px); }.info-card-grid.four,.info-card-grid.three { grid-template-columns:repeat(2,1fr); }.profile-facts-grid { grid-template-columns:repeat(2,1fr); }.profile-facts-grid div:nth-child(3n) { border-right:1px solid var(--line); }.profile-facts-grid div:nth-child(2n) { border-right:0; }.profile-facts-grid div:nth-last-child(-n+3) { border-bottom:1px solid var(--line); }.profile-facts-grid div:nth-last-child(-n+2) { border-bottom:0; }.callout-panel,.identity-panel,.entity-index-shell { flex-direction:column; align-items:stretch; }.identity-list { min-width:0; width:100%; }.project-detail-card { grid-template-columns:auto 1fr; }.project-detail-card .button { grid-column:1/-1; justify-self:start; }.entity-link-grid { width:100%; }}
@media (max-width:640px) { .page-hero { padding-top:calc(var(--header) + 38px); padding-bottom:44px; }.page-hero h1 { font-size:clamp(2.15rem,10vw,3rem); }.page-hero p { font-size:.96rem; }.info-card-grid.four,.info-card-grid.three,.info-card-grid.two,.service-detail-grid,.profile-facts-grid,.entity-link-grid { grid-template-columns:1fr; }.profile-facts-grid div,.profile-facts-grid div:nth-child(2n),.profile-facts-grid div:nth-child(3n) { border-right:0; border-bottom:1px solid var(--line); min-height:0; }.profile-facts-grid div:last-child { border-bottom:0; }.project-detail-card { grid-template-columns:1fr; gap:16px; padding:21px; }.project-detail-card .button { grid-column:auto; width:100%; }.page-brand-card,.company-seal-card,.service-summary-card,.portfolio-count-card,.official-contact-card { border-radius:22px; }.callout-panel,.identity-panel,.entity-index-shell { padding:22px; border-radius:22px; }.founder-monogram-large { width:min(70vw,260px); }.footer-entity-links { justify-content:flex-start; }}
