:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-2: #f0f2f7;
  --text: #11131a;
  --muted: #646a78;
  --line: rgba(17, 19, 26, .10);
  --brand: #8e4fe8;
  --brand-2: #2daeff;
  --brand-dark: #6f31c6;
  --shadow: 0 24px 70px rgba(22, 26, 45, .10);
  --radius: 24px;
  --max: 1180px;
}

[data-theme="dark"] {
  --bg: #090a0f;
  --surface: #11131a;
  --surface-2: #171a23;
  --text: #f3f5fa;
  --muted: #a3a8b7;
  --line: rgba(255,255,255,.10);
  --brand: #a66bff;
  --brand-2: #39b8ff;
  --brand-dark: #8b4be5;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .25s ease, color .25s ease;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 110px 0; }
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--brand), var(--brand-2)); z-index: 100; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-family: "Space Grotesk", sans-serif; font-size: 14px; letter-spacing: -.02em; white-space: nowrap; }
.brand small { color: var(--muted); font-size: 9px; margin-top: 5px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 13px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-picker { position: relative; }
.theme-btn {
  display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line);
  background: var(--surface); color: var(--text); border-radius: 999px; padding: 9px 12px;
  cursor: pointer; font-size: 12px; font-weight: 600;
}
.theme-menu {
  position: absolute; right: 0; top: calc(100% + 10px); width: 150px; padding: 6px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-5px);
  transition: .2s; z-index: 60;
}
.theme-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.theme-menu button {
  display: flex; width: 100%; align-items: center; gap: 10px; padding: 9px 10px;
  border: 0; background: transparent; color: var(--text); border-radius: 9px; cursor: pointer;
  font-size: 12px; text-align: left;
}
.theme-menu button:hover { background: var(--surface-2); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 48px; padding: 0 19px; border-radius: 999px; font-size: 13px; font-weight: 700;
  border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); box-shadow: 0 12px 28px rgba(126, 58, 217, .22); }
.btn-ghost { border-color: var(--line); color: var(--text); background: var(--surface); }
.btn-sm { min-height: 40px; padding-inline: 16px; font-size: 12px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; }

.hero { position: relative; min-height: calc(100vh - 82px); display: flex; align-items: center; overflow: hidden; padding-top: 80px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.hero-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(80px); opacity: .13; pointer-events: none; }
.glow-one { background: var(--brand); top: -200px; left: -170px; }
.glow-two { background: var(--brand-2); bottom: -250px; right: -150px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--brand-dark); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 800; margin-bottom: 18px; }
[data-theme="dark"] .eyebrow { color: var(--brand); }
.pulse { width: 7px; height: 7px; background: var(--brand-2); border-radius: 50%; box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand-2) 13%, transparent); }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; margin: 0; letter-spacing: -.045em; line-height: 1.02; }
h1 { font-size: clamp(56px, 7.2vw, 92px); max-width: 720px; }
h1 span, h2 span { color: var(--brand); }
.hero-text { max-width: 600px; margin: 28px 0 30px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; gap: 11px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 28px; margin-top: 52px; }
.hero-proof div { display: flex; gap: 10px; align-items: flex-start; }
.hero-proof strong { font-family: "Space Grotesk"; font-size: 12px; color: var(--brand); }
.hero-proof span { color: var(--muted); font-size: 10px; line-height: 1.25; text-transform: uppercase; letter-spacing: .07em; }

.visual-card {
  position: relative; min-height: 560px; border: 1px solid var(--line); border-radius: 34px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface) 96%, #fff), var(--surface-2));
  box-shadow: 0 30px 80px rgba(32, 25, 65, .14); overflow: hidden; transform: rotate(.35deg);
  isolation: isolate;
}
.visual-card:before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(circle at 78% 18%, rgba(45,174,255,.15), transparent 30%),
              radial-gradient(circle at 14% 88%, rgba(142,79,232,.18), transparent 34%);
}
.visual-card:after {
  content: ""; position: absolute; inset: 12px; border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: 26px; pointer-events: none; z-index: 5;
}
.visual-orb { position:absolute; border-radius:50%; filter:blur(2px); pointer-events:none; opacity:.45; z-index:0; }
.orb-purple { width:170px; height:170px; background:rgba(142,79,232,.16); right:-65px; top:-55px; }
.orb-blue { width:130px; height:130px; background:rgba(45,174,255,.14); left:-55px; bottom:35px; }
.browser-shell {
  position:absolute; left:28px; right:28px; top:28px; bottom:62px; border:1px solid rgba(17,19,26,.11);
  border-radius:22px; overflow:hidden; background:rgba(255,255,255,.78); box-shadow:0 22px 50px rgba(34,29,63,.12);
  z-index:2; backdrop-filter:blur(10px);
}
[data-theme="dark"] .browser-shell { background:rgba(17,19,26,.88); border-color:rgba(255,255,255,.10); }
.browser-top { height:44px; display:flex; align-items:center; gap:12px; padding:0 14px; border-bottom:1px solid rgba(17,19,26,.08); background:color-mix(in srgb, var(--surface) 92%, transparent); }
.browser-dots { display:flex; gap:5px; }
.browser-dots span { width:7px; height:7px; border-radius:50%; background:#d9dce4; }
[data-theme="dark"] .browser-dots span { background:#3a3f4c; }
.browser-address { flex:1; max-width:280px; margin:auto; height:25px; border:1px solid var(--line); border-radius:7px; display:flex; align-items:center; justify-content:center; gap:6px; color:var(--muted); font:500 8px ui-monospace,monospace; }
.browser-address .lock { color:var(--brand); font-size:10px; }
.browser-menu { color:var(--muted); font-size:11px; letter-spacing:2px; }
.product-ui { display:flex; height:calc(100% - 44px); min-height:0; }
.product-sidebar { width:92px; flex:0 0 92px; padding:15px 9px; background:color-mix(in srgb, var(--surface-2) 70%, transparent); border-right:1px solid var(--line); display:flex; flex-direction:column; gap:5px; }
.mini-brand { height:30px; display:grid; place-items:center; margin-bottom:5px; }
.mini-brand img { width:38px; height:38px; object-fit:contain; }
.sidebar-item { min-height:29px; padding:0 7px; border-radius:7px; display:flex; align-items:center; gap:6px; color:var(--muted); font-size:7px; font-weight:700; white-space:nowrap; }
.sidebar-item span { font-size:10px; color:var(--muted); }
.sidebar-item.active { background:color-mix(in srgb, var(--brand) 12%, transparent); color:var(--brand-dark); }
.sidebar-item.active span { color:var(--brand); }
.sidebar-spacer { flex:1; }
.product-main { flex:1; min-width:0; padding:19px 19px 16px; overflow:hidden; }
.product-header { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:15px; }
.ui-kicker { display:block; color:var(--muted); font-size:6px; letter-spacing:.13em; font-weight:800; margin-bottom:4px; }
.product-header h3 { font-size:19px; letter-spacing:-.04em; }
.avatar { width:28px; height:28px; border-radius:50%; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,var(--brand),var(--brand-2)); font:700 8px Inter; box-shadow:0 7px 18px rgba(112,59,203,.22); }
.metric-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:9px; }
.metric-card { min-height:69px; padding:10px; border:1px solid var(--line); border-radius:10px; background:var(--surface); }
.metric-card span { display:block; color:var(--muted); font-size:6.5px; font-weight:700; }
.metric-card strong { display:block; font:700 18px/1 "Space Grotesk"; margin:7px 0 4px; }
.metric-card small { color:#39a875; font-size:6.5px; font-weight:800; }
.ui-grid { display:grid; grid-template-columns:1.35fr .9fr; gap:8px; }
.chart-card,.activity-card { min-height:183px; padding:11px; border:1px solid var(--line); border-radius:10px; background:var(--surface); }
.ui-card-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.ui-card-head strong { font-size:8px; font-weight:800; }
.ui-card-head span { color:var(--muted); font-size:6px; }
.chart-area { height:135px; position:relative; overflow:hidden; border-radius:7px; background:linear-gradient(to bottom,transparent, color-mix(in srgb,var(--brand) 2%,transparent)); }
.chart-gridline { position:absolute; left:0; right:0; height:1px; background:var(--line); }
.chart-gridline.g1 { top:25%; }.chart-gridline.g2 { top:50%; }.chart-gridline.g3 { top:75%; }
.chart-area svg { position:absolute; inset:7px 0 0; width:100%; height:120px; }
.activity-card { overflow:hidden; }
.activity-row { display:grid; grid-template-columns:22px 1fr auto; align-items:center; gap:7px; padding:10px 0; border-bottom:1px solid var(--line); }
.activity-row:last-child { border-bottom:0; }
.activity-row > i { width:22px; height:22px; display:grid; place-items:center; border-radius:7px; background:color-mix(in srgb,var(--brand) 10%,transparent); color:var(--brand); font:700 7px Inter; font-style:normal; }
.activity-row div { min-width:0; }
.activity-row b { display:block; font-size:7px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.activity-row small { display:block; color:var(--muted); font-size:6px; margin-top:2px; }
.activity-row em { color:#39a875; font-size:6px; font-style:normal; font-weight:800; }
.activity-row em:not(.progress-pill) { color:var(--brand); }
.progress-pill { color:#2b9ad8 !important; }
.floating-badge { position:absolute; z-index:7; display:flex; align-items:center; gap:7px; padding:10px 14px; border:1px solid var(--line); background:color-mix(in srgb,var(--surface) 90%,transparent); backdrop-filter:blur(14px); border-radius:999px; box-shadow:0 14px 35px rgba(0,0,0,.11); font-size:9px; font-weight:800; }
.floating-badge span { color:var(--brand); }
.badge-a { top:31%; left:-13px; }.badge-b { bottom:25%; right:-13px; }
.visual-caption { position:absolute; z-index:7; bottom:18px; left:31px; right:31px; display:flex; align-items:center; gap:7px; color:var(--muted); font-size:8px; }
.visual-caption strong { color:var(--text); font-family:"Space Grotesk"; font-size:9px; }
.visual-caption span:last-child { margin-left:auto; text-align:right; }
.live-dot { width:6px; height:6px; border-radius:50%; background:#3bc18a; box-shadow:0 0 0 4px rgba(59,193,138,.12); }
.marquee-section { border-block: 1px solid var(--line); overflow: hidden; background: var(--surface); }
.marquee { display: flex; align-items: center; gap: 30px; white-space: nowrap; padding: 17px 0; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: "Space Grotesk"; font-weight: 700; font-size: 10px; letter-spacing: .16em; color: var(--muted); }
.marquee b { color: var(--brand); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-35%); } }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 50px; }
.section-heading h2 { font-size: clamp(38px, 5vw, 62px); max-width: 720px; }
.section-heading > p { max-width: 350px; color: var(--muted); font-size: 13px; margin: 0; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.service-card { min-height: 270px; padding: 30px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); display: flex; gap: 22px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); }
.service-icon { flex: 0 0 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, transparent); font-size: 20px; font-weight: 800; }
.card-kicker, .project-type { font-size: 9px; letter-spacing: .14em; color: var(--muted); font-weight: 800; text-transform: uppercase; }
.service-card h3 { font-size: 25px; margin: 10px 0 12px; }
.service-card p { color: var(--muted); font-size: 13px; max-width: 470px; margin: 0 0 22px; }
.service-card a { color: var(--text); font-size: 12px; font-weight: 800; }
.service-card a span { color: var(--brand); margin-left: 5px; }

.work-section { background: var(--surface); border-block: 1px solid var(--line); }
.project-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 12px; }
.project-card { border: 1px solid var(--line); background: var(--bg); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.project-top { display: flex; justify-content: space-between; padding: 19px 20px 0; }
.project-number { font-family: "Space Grotesk"; font-weight: 700; color: var(--brand); font-size: 12px; }
.project-art { height: 230px; margin: 18px; border-radius: 17px; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.art-dashboard { display: flex; padding: 16px; gap: 12px; background: linear-gradient(145deg, color-mix(in srgb, var(--brand) 7%, var(--surface)), var(--surface)); }
.dash-sidebar { width: 24%; border-radius: 9px; background: color-mix(in srgb, var(--brand) 12%, var(--surface)); }
.dash-main { flex: 1; }
.dash-row { display: flex; gap: 7px; margin-bottom: 13px; }
.dash-row i { height: 20px; flex: 1; border-radius: 6px; background: color-mix(in srgb, var(--brand-2) 13%, var(--surface)); }
.dash-row i:nth-child(2) { background: color-mix(in srgb, var(--brand) 13%, var(--surface)); }
.dash-chart { height: 112px; border-radius: 10px; background: linear-gradient(165deg, transparent 55%, color-mix(in srgb, var(--brand) 13%, transparent) 56%, transparent 57%), repeating-linear-gradient(90deg, transparent 0 25px, var(--line) 26px 27px); position: relative; }
.dash-chart:after { content: ""; position: absolute; left: 8%; right: 7%; bottom: 25%; height: 50%; border-top: 3px solid var(--brand); transform: skewY(-8deg); opacity: .8; }
.dash-row.small i { height: 11px; }
.art-pos { display: grid; place-items: center; background: linear-gradient(145deg, color-mix(in srgb, var(--brand-2) 8%, var(--surface)), var(--surface)); }
.pos-screen { width: 75%; height: 76%; padding: 13px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 14px 30px rgba(0,0,0,.06); }
.pos-head, .pos-total { height: 12px; border-radius: 5px; background: color-mix(in srgb, var(--brand) 18%, var(--surface)); margin-bottom: 12px; }
.pos-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.pos-items i { height: 42px; border-radius: 7px; background: var(--surface-2); }
.pos-total { width: 55%; margin: 14px 0 0 auto; background: color-mix(in srgb, var(--brand-2) 20%, var(--surface)); }
.art-code { display: grid; place-items: center; background: #0d1017; }
.terminal { width: 76%; padding: 20px; border-radius: 12px; color: #9ca6ba; font: 10px/2 ui-monospace, monospace; border: 1px solid #252a37; }
.terminal strong { color: #66d6a4; display: block; }
.project-info { padding: 0 20px 23px; }
.project-info h3 { font-size: 20px; margin-bottom: 8px; }
.project-info p { color: var(--muted); font-size: 12px; margin: 0 0 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span { font-size: 9px; padding: 5px 8px; border-radius: 999px; background: var(--surface-2); color: var(--muted); }

.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.about-mark { min-height: 430px; display: grid; place-items: center; position: relative; }
.about-logo-ring { width: 290px; height: 290px; padding: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); box-shadow: var(--shadow); position: relative; z-index: 2; }
.about-logo-ring img { width: 100%; height: 100%; object-fit: contain; }
.orbit { position: absolute; border: 1px dashed color-mix(in srgb, var(--brand) 25%, transparent); border-radius: 50%; }
.orbit-1 { width: 360px; height: 360px; animation: spin 18s linear infinite; }
.orbit-2 { width: 430px; height: 430px; animation: spin 27s linear infinite reverse; }
.orbit:before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); position: absolute; top: 8%; left: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-copy h2 { font-size: clamp(38px, 4.7vw, 59px); max-width: 700px; }
.about-copy > p { color: var(--muted); max-width: 670px; font-size: 14px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 32px; }
.principles div { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.principles strong { display: block; color: var(--brand); font: 700 11px "Space Grotesk"; margin-bottom: 6px; }
.principles span { font-size: 10px; color: var(--muted); }

.process-section { background: var(--surface); border-top: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.process-step { min-height: 250px; padding: 28px 25px; border-right: 1px solid var(--line); position: relative; }
.process-step:last-child { border-right: 0; }
.process-step > span { color: var(--brand); font: 700 11px "Space Grotesk"; }
.process-step h3 { margin: 70px 0 12px; font-size: 23px; }
.process-step p { color: var(--muted); font-size: 12px; margin: 0; }

.cta-section { padding: 100px 0; background: #10121a; color: #fff; position: relative; overflow: hidden; }
.cta-section:before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: var(--brand); opacity: .15; filter: blur(80px); right: -120px; top: -240px; }
.cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; position: relative; z-index: 1; }
.cta-inner .eyebrow { color: #77cfff; }
.cta-inner h2 { font-size: clamp(42px, 5.5vw, 68px); }
.cta-inner p { color: #9fa5b6; margin: 22px 0 0; font-size: 14px; }
.cta-actions { display: flex; flex-direction: column; gap: 9px; min-width: 270px; }
.btn-light { background: #fff; color: #10121a; }
.btn-outline-light { border-color: rgba(255,255,255,.18); color: #fff; background: rgba(255,255,255,.05); }

.footer { background: #0b0c11; color: #fff; }
.footer-top { min-height: 125px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-brand small { color: #777e90; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #8c93a2; font-size: 11px; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 7px; }
.footer-social a { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid #252833; border-radius: 50%; color: #8c93a2; font: 700 9px Inter; }
.footer-social a:hover { color: #fff; border-color: #5c6272; }
.footer-bottom { border-top: 1px solid #20232c; min-height: 65px; display: flex; align-items: center; justify-content: space-between; color: #6f7583; font-size: 9px; }
.footer-bottom b { color: var(--brand); }

.back-top { position: fixed; right: 24px; bottom: 24px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--text); box-shadow: var(--shadow); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s; z-index: 40; }
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 980px) {
  .nav-links { gap: 18px; }
  .nav-cta { display: none; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .hero-visual { max-width: 650px; width: 100%; margin: 0 auto; }
  .visual-card { min-height: 520px; }
  .about-grid { gap: 40px; }
  .about-mark { min-height: 390px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-main { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 80px 0; }
  .nav { height: 72px; }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: 12px; }
  .brand small { font-size: 8px; }
  .nav-links {
    position: fixed; top: 72px; left: 16px; right: 16px; padding: 14px;
    flex-direction: column; align-items: stretch; gap: 2px; background: var(--surface);
    border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { padding: 12px; border-radius: 10px; }
  .nav-links a:hover { background: var(--surface-2); }
  .menu-toggle { display: block; }
  .theme-label { display: none; }
  .theme-btn { width: 38px; height: 38px; padding: 0; justify-content: center; }
  h1 { font-size: clamp(50px, 16vw, 75px); }
  .hero-text { font-size: 15px; }
  .hero-proof { gap: 14px; flex-wrap: wrap; }
  .hero-proof div { flex: 1 1 100px; }
  .visual-card { min-height: 470px; border-radius: 25px; }
  .browser-shell { left: 17px; right: 17px; top: 17px; bottom: 55px; border-radius: 17px; }
  .product-sidebar { width: 72px; flex-basis: 72px; padding-inline: 7px; }
  .product-main { padding: 14px 13px; }
  .metric-card { min-height: 62px; padding: 8px; }
  .metric-card strong { font-size: 15px; }
  .chart-card,.activity-card { min-height: 158px; }
  .chart-area { height: 111px; }
  .chart-area svg { height: 104px; }
  .floating-badge { font-size: 8px; }
  .badge-a { left: -8px; }
  .badge-b { right: -8px; }
  .visual-caption { left: 19px; right: 19px; bottom: 15px; }
  .visual-caption span:last-child { display:none; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .service-grid, .project-grid { grid-template-columns: 1fr; }
  .project-main { grid-column: auto; }
  .project-art { height: 210px; }
  .about-mark { min-height: 350px; }
  .about-logo-ring { width: 220px; height: 220px; padding: 34px; }
  .orbit-1 { width: 275px; height: 275px; }
  .orbit-2 { width: 330px; height: 330px; }
  .principles { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 42px; }
  .cta-inner { display: block; }
  .cta-actions { margin-top: 32px; min-width: 0; }
  .footer-top { padding: 30px 0; flex-wrap: wrap; }
  .footer-links { order: 3; width: 100%; justify-content: space-between; gap: 10px; }
  .footer-bottom { padding: 18px 0; gap: 12px; align-items: flex-start; flex-direction: column; }
}

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


/* Brand banner above the hero headline */
.hero-banner {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 8px 28px rgba(20, 24, 40, .06);
  font-size: 10px;
  color: var(--muted);
  backdrop-filter: blur(12px);
}
.hero-banner strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: -.01em;
}
.hero-banner-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 10%, transparent);
}
.hero-banner-sep { opacity: .45; }
.hero-banner-arrow { color: var(--brand); font-weight: 800; margin-left: 2px; }

.social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 3px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: #fff;
  transition: transform .2s, background .2s, border-color .2s;
}
.social-icons a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
}
.social-icons svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.creator-name { color: #c3c8d5; font-weight: 700; }

@media (max-width: 760px) {
  .hero-banner {
    border-radius: 15px;
    align-items: flex-start;
    flex-wrap: wrap;
    line-height: 1.2;
  }
  .hero-banner-sep { display: none; }
  .hero-banner-arrow { margin-left: auto; }
  .social-icons { flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .visual-card { min-height: 440px; }
  .browser-shell { left: 12px; right: 12px; top: 12px; bottom: 50px; }
  .browser-address { max-width: 180px; font-size: 7px; }
  .product-sidebar { width: 52px; flex-basis: 52px; }
  .sidebar-item { justify-content:center; font-size:0; }
  .sidebar-item span { font-size:11px; }
  .mini-brand img { width:31px; height:31px; }
  .product-main { padding: 12px 10px; }
  .product-header h3 { font-size:16px; }
  .metric-grid { gap:5px; }
  .metric-card { min-height:55px; padding:7px; }
  .metric-card span { font-size:5.5px; }
  .metric-card strong { font-size:13px; margin:5px 0 2px; }
  .metric-card small { font-size:5.5px; }
  .ui-grid { grid-template-columns:1fr; }
  .chart-card { min-height:120px; }
  .activity-card { display:none; }
  .chart-area { height:82px; }
  .chart-area svg { height:78px; }
  .badge-a { top:27%; }
  .badge-b { bottom:20%; }
}
