:root {
    --bg: #f5f7fb;
    --bg-alt: #eef2f8;
    --surface: rgba(255,255,255,.78);
    --surface-solid: #ffffff;
    --surface-soft: #f0f4fa;
    --text: #0c1324;
    --muted: #667085;
    --muted-2: #98a2b3;
    --line: rgba(12,19,36,.10);
    --line-strong: rgba(12,19,36,.16);
    --primary: #2d64ff;
    --primary-2: #6f42ff;
    --primary-soft: rgba(45,100,255,.10);
    --glow: rgba(76,111,255,.22);
    --shadow-sm: 0 12px 34px rgba(27,39,67,.08);
    --shadow: 0 28px 80px rgba(20,32,58,.13);
    --header-bg: rgba(247,249,252,.72);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 34px;
    --container: 1240px;
    --accent: #2d64ff;
    --accent-rgb: 45,100,255;
}

[data-theme="dark"] {
    --bg: #060913;
    --bg-alt: #0a0f1d;
    --surface: rgba(17,23,39,.74);
    --surface-solid: #101727;
    --surface-soft: #111a2d;
    --text: #f3f6ff;
    --muted: #99a5bb;
    --muted-2: #69758b;
    --line: rgba(255,255,255,.09);
    --line-strong: rgba(255,255,255,.15);
    --primary: #6f8cff;
    --primary-2: #9a6cff;
    --primary-soft: rgba(111,140,255,.13);
    --glow: rgba(111,140,255,.22);
    --shadow-sm: 0 14px 36px rgba(0,0,0,.26);
    --shadow: 0 35px 100px rgba(0,0,0,.42);
    --header-bg: rgba(6,9,19,.70);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at var(--mouse-x, 70%) var(--mouse-y, 12%), rgba(66,103,255,.08), transparent 25%),
        var(--bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img, svg { display: block; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }
::selection { background: rgba(80,111,255,.28); }

.page-noise {
    position: fixed; inset: 0; z-index: 1000; pointer-events: none; opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.scroll-progress { position: fixed; z-index: 1100; top: 0; left: 0; width: 100%; height: 2px; background: transparent; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-2)); box-shadow: 0 0 16px var(--primary); }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section-pad { padding: 110px 0; position: relative; }
.site-shell { min-height: 100vh; }

.site-header {
    position: fixed; z-index: 100; top: 0; left: 0; width: 100%;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
    background: var(--header-bg); border-color: var(--line); backdrop-filter: blur(20px) saturate(145%); -webkit-backdrop-filter: blur(20px) saturate(145%);
    box-shadow: 0 8px 26px rgba(12,18,34,.06);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
    position: relative; width: 43px; height: 43px; border-radius: 13px; overflow: hidden;
    display: grid; place-items: center; color: white; background: #0b1020; box-shadow: 0 10px 30px rgba(41,78,255,.22);
}
.brand-mark i { position: absolute; inset: -40% -20%; transform: rotate(25deg); background: linear-gradient(135deg, #2d64ff 15%, #8e52ff 58%, #25c6ff); }
.brand-mark b { position: relative; font-size: 13px; letter-spacing: .06em; }
.brand-copy { display: grid; line-height: 1.25; min-width: 0; }
.brand-copy strong { font-size: 14px; letter-spacing: .015em; white-space: nowrap; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav > a { position: relative; padding: 9px 13px; color: var(--muted); font-size: 14px; font-weight: 650; transition: color .2s ease; }
.site-nav > a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 1px; transform: scaleX(0); background: var(--text); transition: transform .2s ease; }
.site-nav > a:hover { color: var(--text); }
.site-nav > a:hover::after { transform: scaleX(1); }
.icon-button, .card-icon {
    display: inline-grid; place-items: center; border: 1px solid var(--line); background: var(--surface); cursor: pointer; transition: .2s ease;
}
.icon-button { width: 42px; height: 42px; border-radius: 13px; }
.icon-button:hover, .card-icon:hover { transform: translateY(-2px); border-color: var(--line-strong); background: var(--surface-solid); box-shadow: var(--shadow-sm); }
.icon-button svg { width: 19px; height: 19px; }
.command-trigger {
    height: 40px; margin-left: 8px; padding: 0 10px 0 14px; display: flex; align-items: center; gap: 15px;
    color: var(--muted); border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer;
}
kbd { padding: 3px 7px; border: 1px solid var(--line); border-bottom-color: var(--line-strong); border-radius: 6px; background: var(--surface-soft); color: var(--muted); font-size: 10px; font-family: inherit; box-shadow: 0 1px 0 var(--line); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 1.5px; margin: 4px 0; border-radius: 2px; background: var(--text); transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.hero { min-height: 890px; padding-top: 176px; padding-bottom: 58px; overflow: hidden; }
.hero-grid-lines { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 84px 84px; mask-image: linear-gradient(to bottom, black, transparent 82%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.orb-one { width: 590px; height: 590px; top: -220px; right: -120px; background: radial-gradient(circle, rgba(98,83,255,.23), rgba(45,100,255,.08) 48%, transparent 70%); }
.orb-two { width: 480px; height: 480px; left: -220px; top: 390px; background: radial-gradient(circle, rgba(0,196,255,.13), transparent 68%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .93fr) minmax(480px, 1.07fr); align-items: center; gap: 76px; }
.hero-badge, .section-kicker { color: var(--primary); font-weight: 800; letter-spacing: .14em; font-size: 11px; text-transform: uppercase; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); backdrop-filter: blur(16px); }
.hero-badge span { width: 7px; height: 7px; border-radius: 50%; background: #5de7a6; box-shadow: 0 0 0 5px rgba(93,231,166,.11), 0 0 18px rgba(93,231,166,.6); animation: pulse 2s infinite; }
.hero h1, .detail-hero h1 { margin: 0; font-size: clamp(60px, 6.8vw, 92px); line-height: 1.02; letter-spacing: -.058em; font-weight: 760; }
.hero h1 em { color: transparent; font-style: normal; background: linear-gradient(105deg, var(--primary) 10%, #8a61ff 55%, #28bde7); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
    min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 14px; font-weight: 760; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 13px 30px var(--glow); }
.btn-primary:hover { box-shadow: 0 18px 42px var(--glow); }
.btn-secondary { color: var(--text); border-color: var(--line); background: var(--surface); backdrop-filter: blur(15px); }
.btn-secondary:hover { border-color: var(--line-strong); background: var(--surface-solid); }
.btn-ghost { color: var(--muted); border-color: transparent; background: transparent; }
.btn-light { color: #101528; background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.btn-glass { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.11); backdrop-filter: blur(16px); }
.hero-actions .btn kbd { margin-left: 6px; color: inherit; background: rgba(127,127,127,.08); }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 38px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 37px; height: 37px; margin-left: -8px; display: grid; place-items: center; border: 3px solid var(--bg); border-radius: 50%; color: #fff; font-size: 9px; font-weight: 800; background: linear-gradient(135deg, #2d64ff, #7952ff); }
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #11b8e6, #2d64ff); }
.avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #e8489d, #7f55ff); }
.hero-proof p { display: grid; margin: 0; line-height: 1.35; }
.hero-proof strong { font-size: 13px; }
.hero-proof small { color: var(--muted); font-size: 11px; }

.hero-showcase { position: relative; min-height: 530px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(18,25,43,.97), rgba(8,12,23,.98)); box-shadow: 0 45px 120px rgba(20,35,75,.28); transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); transform-style: preserve-3d; transition: transform .35s ease; }
.hero-showcase:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(0deg) translateY(-4px); }
.showcase-toolbar { height: 54px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); color: #8e99ad; font-size: 10px; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #3a4356; }
.window-dots span:first-child { background: #ff6b72; }.window-dots span:nth-child(2) { background: #ffc55b; }.window-dots span:last-child { background: #5ed695; }
.showcase-url { padding: 7px 14px; display: flex; align-items: center; gap: 8px; border-radius: 8px; background: rgba(255,255,255,.05); }
.showcase-url i { width: 5px; height: 5px; border-radius: 50%; background: #5ed695; }
.toolbar-status { color: #6ce5aa; letter-spacing: .12em; }
.showcase-body { min-height: 474px; display: grid; grid-template-columns: 66px 1fr; }
.showcase-side { padding: 20px 0; display: flex; align-items: center; flex-direction: column; gap: 22px; border-right: 1px solid rgba(255,255,255,.07); }
.side-logo { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: white; font-size: 10px; font-weight: 800; background: linear-gradient(135deg, #4b78ff, #8d54ff); }
.showcase-side i { width: 17px; height: 17px; border-radius: 5px; border: 1px solid rgba(255,255,255,.15); }
.showcase-side i.active { background: #587cff; border-color: #587cff; box-shadow: 0 0 18px rgba(88,124,255,.55); }
.showcase-main { padding: 31px 30px; color: #f1f4fb; }
.showcase-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.showcase-head small, .showcase-stats small { color: #718098; font-size: 9px; letter-spacing: .13em; }
.showcase-head h3 { margin: 7px 0 0; font-size: 20px; letter-spacing: -.025em; }
.showcase-head > span { padding: 7px 10px; border-radius: 8px; color: #aebcff; background: rgba(88,124,255,.12); border: 1px solid rgba(88,124,255,.18); font-size: 10px; }
.showcase-chart { height: 150px; margin: 34px 0 24px; padding: 0 6px; display: flex; align-items: end; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.08); background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px); background-size: 100% 37px; }
.showcase-chart span { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; background: linear-gradient(to top, rgba(80,105,255,.28), #607fff); box-shadow: 0 0 20px rgba(80,105,255,.16); animation: rise .9s both; }
.showcase-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.showcase-stats div { padding: 15px; display: grid; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; background: rgba(255,255,255,.035); }
.showcase-stats strong { margin: 3px 0; font-size: 23px; letter-spacing: -.03em; }
.showcase-stats span { color: #6f7d94; font-size: 9px; }
.showcase-activity { margin-top: 12px; padding: 13px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; background: rgba(255,255,255,.035); }
.project-orb { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: rgb(var(--accent-rgb)); }
.showcase-activity p { flex: 1; margin: 0; display: grid; line-height: 1.35; }
.showcase-activity strong { font-size: 11px; }.showcase-activity small, .showcase-activity time { color: #6f7d94; font-size: 9px; }
.floating-chip { position: absolute; z-index: 3; padding: 10px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; color: #dfe6f7; background: rgba(13,19,34,.80); backdrop-filter: blur(14px); box-shadow: 0 16px 35px rgba(0,0,0,.3); font-size: 10px; font-weight: 700; animation: float 4s ease-in-out infinite; }
.chip-one { top: 122px; right: -35px; }.chip-two { left: -30px; bottom: 82px; animation-delay: -2s; }
.hero-metrics { position: relative; z-index: 2; margin-top: 80px; padding-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.hero-metrics div { position: relative; padding-left: 24px; display: grid; }
.hero-metrics div::before { content: ""; position: absolute; left: 0; top: 8px; width: 4px; height: 32px; border-radius: 3px; background: linear-gradient(var(--primary), var(--primary-2)); }
.hero-metrics strong { font-size: 27px; letter-spacing: -.04em; }
.hero-metrics span { color: var(--muted); font-size: 12px; }

.featured { background: var(--bg-alt); }
.featured-card { position: relative; min-height: 500px; padding: 68px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(135deg, #152656, #3a3a93 58%, #6c40a7); box-shadow: var(--shadow); }
.featured-card::before { content: ""; position: absolute; inset: 1px; border: 1px solid rgba(255,255,255,.13); border-radius: inherit; pointer-events: none; }
.featured-glow { position: absolute; width: 520px; height: 520px; right: -120px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(90,201,255,.34), transparent 66%); }
.featured-copy { position: relative; z-index: 2; max-width: 650px; }
.featured-meta { margin-bottom: 45px; display: flex; align-items: center; gap: 14px; }
.featured-card .section-kicker { color: #a8c2ff; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; font-size: 10px; font-weight: 760; line-height: 1; background: rgba(var(--accent-rgb), .11); color: rgb(var(--accent-rgb)); }
.status-pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 9px currentColor; }
.featured-card .status-pill { color: #c4d3ff; background: rgba(255,255,255,.1); }
.overline { margin: 0 0 10px; color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.featured-card h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.05; letter-spacing: -.05em; }
.featured-card h2 + p { max-width: 610px; margin: 22px 0; color: rgba(255,255,255,.73); font-size: 16px; line-height: 1.8; }
.tag-list, .card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); background: var(--surface); font-size: 11px; }
.featured-card .tag-list span { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); }
.featured-actions { display: flex; gap: 10px; margin-top: 32px; }
.featured-visual { position: relative; z-index: 2; width: 380px; height: 380px; justify-self: end; display: grid; place-items: center; }
.visual-ring { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; animation: spin 18s linear infinite; }
.ring-a { width: 350px; height: 350px; border-style: dashed; }.ring-b { width: 270px; height: 270px; animation-direction: reverse; animation-duration: 13s; }.ring-c { width: 190px; height: 190px; border-color: rgba(255,255,255,.25); animation-duration: 9s; }
.visual-ring::after { content: ""; position: absolute; top: -5px; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: #8bdfff; box-shadow: 0 0 20px #8bdfff; }
.visual-core { width: 150px; height: 150px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(255,255,255,.16); border-radius: 38px; background: rgba(255,255,255,.1); backdrop-filter: blur(18px); box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 30px 60px rgba(0,0,0,.20); transform: rotate(6deg); }
.visual-core small { font-size: 9px; letter-spacing: .16em; opacity: .55; }.visual-core strong { font-size: 25px; }.visual-core span { margin-top: 7px; font-size: 25px; }
.visual-label { position: absolute; padding: 8px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(20,24,50,.45); backdrop-filter: blur(12px); font-size: 10px; }
.label-a { left: 12px; top: 94px; }.label-b { right: 7px; top: 170px; }.label-c { left: 52px; bottom: 45px; }

.section-heading { margin-bottom: 45px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-heading.centered { max-width: 820px; margin-left: auto; margin-right: auto; text-align: center; align-items: center; flex-direction: column; gap: 8px; }
.section-heading h2, .content-card h2, .process-intro h2, .contact-card h2 { margin: 8px 0 0; font-size: clamp(37px, 4.5vw, 58px); line-height: 1.12; letter-spacing: -.045em; }
.section-heading p, .process-intro p { margin: 13px 0 0; color: var(--muted); }
.project-view-actions { display: flex; gap: 10px; }
.favorites-only { position: relative; }
.favorites-only.active { color: #ffb341; background: rgba(255,179,65,.11); border-color: rgba(255,179,65,.3); }
.favorite-count { position: absolute; top: -6px; right: -5px; min-width: 18px; height: 18px; padding: 0 5px; display: grid; place-items: center; border: 2px solid var(--bg); border-radius: 10px; color: white; background: var(--primary); font-size: 9px; }
.view-switch { padding: 3px; display: flex; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.view-switch button { width: 35px; height: 35px; display: grid; place-items: center; border: 0; border-radius: 9px; color: var(--muted); background: transparent; cursor: pointer; }
.view-switch button.active { color: var(--text); background: var(--surface-solid); box-shadow: 0 4px 12px rgba(12,20,38,.08); }
.view-switch svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.project-toolbar { display: grid; grid-template-columns: 1fr auto; gap: 14px; margin-bottom: 20px; }
.search-box { min-height: 55px; padding: 0 16px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); transition: .2s ease; }
.search-box:focus-within { border-color: rgba(75,111,255,.55); box-shadow: 0 0 0 4px var(--primary-soft); }
.search-box svg { width: 19px; height: 19px; color: var(--muted); }
.search-box input { flex: 1; min-width: 0; border: 0; outline: 0; color: var(--text); background: transparent; }
.search-box input::placeholder { color: var(--muted-2); }
.sort-wrap { min-width: 205px; height: 55px; padding: 0 13px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.sort-wrap label { color: var(--muted); font-size: 11px; }
.sort-wrap select { flex: 1; border: 0; outline: 0; color: var(--text); background: transparent; cursor: pointer; }
.filter-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-btn { flex: 0 0 auto; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; transition: .2s ease; }
.filter-btn span { margin-left: 5px; font-size: 10px; opacity: .65; }
.filter-btn:hover, .filter-btn.active { color: var(--text); border-color: var(--line-strong); background: var(--surface-solid); box-shadow: var(--shadow-sm); }
.filter-btn.active { color: var(--primary); }
.project-results-meta { min-height: 55px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; }
.clear-filters { border: 0; color: var(--primary); background: transparent; cursor: pointer; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.project-card {
    position: relative; min-height: 430px; padding: 24px; display: flex; flex-direction: column; overflow: hidden;
    border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); backdrop-filter: blur(12px);
    transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.project-card::before { content: ""; position: absolute; width: 260px; height: 260px; right: -120px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),.15), transparent 67%); opacity: .75; transition: .3s ease; }
.project-card:hover { transform: translateY(-7px); border-color: rgba(var(--accent-rgb),.30); box-shadow: var(--shadow); }
.project-card:hover::before { transform: scale(1.2); opacity: 1; }
.card-top { position: relative; display: flex; align-items: center; justify-content: space-between; }
.project-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(var(--accent-rgb),.20); border-radius: 16px; color: rgb(var(--accent-rgb)); background: rgba(var(--accent-rgb),.09); font-size: 22px; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.card-actions { display: flex; gap: 7px; }
.card-icon { width: 36px; height: 36px; border-radius: 11px; color: var(--muted); }
.card-icon svg { width: 16px; height: 16px; }
.favorite-btn.active { color: #ffb341; border-color: rgba(255,179,65,.25); background: rgba(255,179,65,.09); }
.favorite-btn.active svg { fill: currentColor; }
.card-meta { position: relative; margin-top: 25px; display: flex; align-items: center; justify-content: space-between; }
.card-meta time { color: var(--muted-2); font-size: 10px; }
.project-card h3 { position: relative; margin: 20px 0 10px; font-size: 22px; line-height: 1.25; letter-spacing: -.035em; }
.project-card h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.project-card > p { position: relative; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.card-tags { position: relative; margin-top: 18px; }
.card-tags span { padding: 6px 8px; border-radius: 7px; color: var(--muted); background: var(--surface-soft); font-size: 9px; }
.card-footer { position: relative; z-index: 2; margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); }
.version-info { display: grid; line-height: 1.2; }
.version-info small { color: var(--muted-2); font-size: 8px; letter-spacing: .14em; }.version-info strong { margin-top: 4px; font-size: 12px; }
.download-info { margin-left: auto; display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 10px; }.download-info svg { width: 14px; height: 14px; }
.compare-btn { position: relative; z-index: 3; padding: 5px 8px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: transparent; font-size: 9px; cursor: pointer; }
.compare-btn.active { color: var(--primary); border-color: rgba(70,106,255,.32); background: var(--primary-soft); }
.card-arrow { position: relative; z-index: 3; width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; transition: .2s ease; }
.project-card:hover .card-arrow { color: #fff; border-color: rgb(var(--accent-rgb)); background: rgb(var(--accent-rgb)); transform: rotate(8deg); }
.project-grid.list-view { grid-template-columns: 1fr; }
.project-grid.list-view .project-card { min-height: 220px; display: grid; grid-template-columns: 65px 150px minmax(220px, 1.2fr) minmax(260px, 1fr) auto; align-items: center; gap: 24px; }
.project-grid.list-view .card-top { display: contents; }
.project-grid.list-view .card-actions { position: absolute; top: 20px; right: 20px; }
.project-grid.list-view .card-meta { margin: 0; align-items: flex-start; flex-direction: column; gap: 12px; }
.project-grid.list-view h3 { margin: 0; }.project-grid.list-view > .project-card > p { margin: 0; }.project-grid.list-view .card-tags { display: none; }
.project-grid.list-view .card-footer { width: 210px; margin: 0; padding: 0; border: 0; }
.empty-state { padding: 80px 20px; text-align: center; border: 1px dashed var(--line-strong); border-radius: var(--radius); }
.empty-state > span { display: block; color: var(--primary); font-size: 42px; }.empty-state h3 { margin: 8px 0; }.empty-state p { margin: 0 0 20px; color: var(--muted); }

.capabilities { background: var(--bg-alt); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.capability-card { position: relative; min-height: 400px; padding: 35px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: .3s ease; }
.capability-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.capability-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; bottom: -120px; border-radius: 50%; background: radial-gradient(circle, var(--primary-soft), transparent 65%); }
.cap-number { position: absolute; right: 26px; top: 22px; color: var(--muted-2); font-size: 11px; letter-spacing: .14em; }
.cap-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; color: var(--primary); background: var(--primary-soft); font-size: 21px; }
.capability-card h3 { margin: 75px 0 12px; font-size: 24px; letter-spacing: -.03em; }.capability-card p { color: var(--muted); font-size: 14px; }
.capability-card ul { margin: 25px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.capability-card li { display: flex; align-items: center; gap: 8px; font-size: 12px; }.capability-card li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px var(--primary); }

.process-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.process-intro { position: sticky; top: 135px; }
.process-intro h2 { font-size: clamp(40px, 4.5vw, 61px); }
.text-link { display: inline-flex; margin-top: 26px; color: var(--primary); font-size: 13px; font-weight: 750; }
.process-list { border-top: 1px solid var(--line); }
.process-item { position: relative; min-height: 150px; padding: 30px 4px; display: grid; grid-template-columns: 65px 1fr auto; gap: 22px; align-items: start; border-bottom: 1px solid var(--line); transition: padding .25s ease; }
.process-item:hover { padding-left: 15px; }
.process-item > span { color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: .1em; }.process-item h3 { margin: 0 0 7px; font-size: 21px; }.process-item p { margin: 0; color: var(--muted); }.process-item b { color: var(--muted-2); font-size: 9px; letter-spacing: .16em; }

.contact { padding-bottom: 80px; }
.contact-card { position: relative; min-height: 470px; padding: 72px; display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 70px; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(135deg, #101936, #213472 53%, #482c82); box-shadow: var(--shadow); }
.contact-card::after { content: ""; position: absolute; inset: 1px; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; pointer-events: none; }
.contact-orb { position: absolute; right: -120px; top: -180px; width: 580px; height: 580px; border-radius: 50%; background: radial-gradient(circle, rgba(49,190,255,.32), transparent 66%); }
.contact-copy, .contact-actions { position: relative; z-index: 2; }
.contact-card .section-kicker { color: #a8c2ff; }.contact-card h2 { font-size: clamp(44px, 5vw, 68px); }.contact-card p { color: rgba(255,255,255,.68); }
.contact-actions { display: grid; gap: 12px; }
.contact-action { min-height: 91px; padding: 20px; display: grid; grid-template-columns: 1fr auto; align-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(255,255,255,.07); backdrop-filter: blur(15px); transition: .25s ease; }
.contact-action:hover { transform: translateX(6px); background: rgba(255,255,255,.11); }.contact-action.primary { color: #151b31; background: #fff; }.contact-action span, .contact-action strong { grid-column: 1; }.contact-action span { font-size: 10px; opacity: .58; }.contact-action strong { font-size: 15px; }.contact-action b { grid-column: 2; grid-row: 1 / span 2; font-size: 20px; }

.site-footer { padding: 70px 0 25px; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding-bottom: 55px; }
.footer-brand > p { max-width: 430px; margin: 22px 0 0; color: var(--muted); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; }
.footer-links div { display: grid; align-content: start; gap: 11px; }.footer-links strong { margin-bottom: 7px; font-size: 11px; letter-spacing: .12em; }.footer-links a, .footer-links span { color: var(--muted); font-size: 12px; }.footer-links a:hover { color: var(--text); }
.footer-bottom { padding-top: 21px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 10px; }
.footer-bottom a:hover { color: var(--primary); }

.detail-hero { min-height: 760px; padding-top: 175px; overflow: hidden; }
.back-link { display: inline-flex; margin-bottom: 50px; color: var(--muted); font-size: 12px; }
.detail-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.eyebrow-row { margin-bottom: 24px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 11px; }
.detail-hero h1 { font-size: clamp(55px, 6vw, 82px); }.detail-lead { max-width: 760px; margin: 25px 0; color: var(--muted); font-size: 17px; line-height: 1.85; }
.product-stage { position: relative; min-height: 470px; padding: 36px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(var(--accent-rgb),.13), var(--surface)); box-shadow: var(--shadow); }
.product-stage::before { content: ""; position: absolute; width: 350px; height: 350px; right: -100px; top: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),.28), transparent 66%); }
.stage-head { position: relative; display: flex; justify-content: space-between; align-items: center; }.stage-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 19px; color: #fff; background: rgb(var(--accent-rgb)); font-size: 25px; box-shadow: 0 16px 34px rgba(var(--accent-rgb),.26); }
.live-dot { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 10px; }.live-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #5de7a6; box-shadow: 0 0 10px #5de7a6; }
.stage-version { position: relative; margin: 65px 0 50px; display: grid; }.stage-version small { color: var(--muted); font-size: 9px; letter-spacing: .15em; }.stage-version strong { margin-top: 5px; font-size: 52px; letter-spacing: -.055em; }
.stage-specs { position: relative; margin: auto 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }.stage-specs div { padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }.stage-specs dt { color: var(--muted); font-size: 9px; }.stage-specs dd { margin: 4px 0 0; font-size: 12px; font-weight: 700; }
.stage-lines { position: absolute; right: 32px; bottom: 150px; display: flex; gap: 5px; align-items: end; }.stage-lines i { width: 4px; height: 30px; border-radius: 2px; background: rgb(var(--accent-rgb)); opacity: .3; }.stage-lines i:nth-child(2) { height: 50px; opacity: .6; }.stage-lines i:nth-child(3) { height: 70px; opacity: 1; }
.detail-content-section { background: var(--bg-alt); }
.detail-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.content-card { min-height: 490px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.content-card h2 { font-size: 36px; }
.check-list, .change-list { margin: 35px 0 0; padding: 0; list-style: none; display: grid; gap: 0; }
.check-list li { padding: 17px 0; display: flex; align-items: center; gap: 13px; border-bottom: 1px solid var(--line); }.check-list li span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: var(--primary); background: var(--primary-soft); font-size: 11px; }
.change-list li { padding: 17px 0; display: grid; grid-template-columns: 42px 1fr; gap: 14px; border-bottom: 1px solid var(--line); }.change-list li > span { color: var(--primary); font-size: 10px; font-weight: 800; }.change-list p { margin: 0; }
.related-section .section-heading { align-items: end; }
.mini-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.mini-project { min-height: 130px; padding: 22px; display: flex; align-items: center; gap: 15px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); transition: .25s ease; }.mini-project:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }.mini-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; color: rgb(var(--accent-rgb)); background: rgba(var(--accent-rgb),.1); }.mini-project div { flex: 1; display: grid; }.mini-project small, .mini-project span { color: var(--muted); font-size: 9px; }.mini-project strong { font-size: 13px; }

.compare-dock { position: fixed; z-index: 90; left: 50%; bottom: 22px; width: min(calc(100% - 32px), 720px); padding: 12px 14px; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--line-strong); border-radius: 18px; background: var(--surface-solid); box-shadow: var(--shadow); }
.compare-summary, .compare-actions { display: flex; align-items: center; gap: 10px; }.compare-summary > span { font-size: 12px; font-weight: 700; }.compare-summary > strong { color: var(--muted); font-size: 10px; }.compare-thumbs { display: flex; }.compare-thumb { width: 31px; height: 31px; margin-left: -5px; display: grid; place-items: center; border: 2px solid var(--surface-solid); border-radius: 9px; color: rgb(var(--accent-rgb)); background: rgba(var(--accent-rgb),.13); font-size: 12px; }.dock-clear { border: 0; color: var(--muted); background: transparent; cursor: pointer; }
.back-to-top { position: fixed; z-index: 80; right: 24px; bottom: 24px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: var(--text); background: var(--surface-solid); box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s ease; cursor: pointer; }.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }.back-to-top svg { width: 18px; height: 18px; }

.modal, .command-palette { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; visibility: hidden; opacity: 0; transition: .2s ease; }
.modal.open, .command-palette.open { visibility: visible; opacity: 1; }
.modal-backdrop, .command-backdrop { position: absolute; inset: 0; background: rgba(2,5,13,.72); backdrop-filter: blur(10px); }
.modal-panel { position: relative; z-index: 1; width: min(calc(100% - 32px), 920px); max-height: calc(100vh - 50px); overflow: auto; border: 1px solid var(--line-strong); border-radius: 26px; background: var(--surface-solid); box-shadow: 0 45px 130px rgba(0,0,0,.45); transform: translateY(18px) scale(.98); transition: .25s ease; }
.modal.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close { position: absolute; z-index: 3; top: 18px; right: 18px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); cursor: pointer; }.modal-close.inline { position: static; }
.quick-hero { position: relative; min-height: 300px; padding: 45px; overflow: hidden; color: #fff; background: linear-gradient(135deg, #101936, rgb(var(--accent-rgb))); }.quick-hero::after { content: ""; position: absolute; width: 400px; height: 400px; right: -150px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 67%); }.quick-hero > * { position: relative; z-index: 1; }.quick-hero .status-pill { color: #fff; background: rgba(255,255,255,.12); }.quick-hero h2 { max-width: 700px; margin: 18px 0 10px; font-size: 42px; line-height: 1.1; letter-spacing: -.04em; }.quick-hero p { max-width: 720px; color: rgba(255,255,255,.72); }.quick-body { padding: 36px 45px 45px; }.quick-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }.quick-specs div { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }.quick-specs small { color: var(--muted); font-size: 9px; }.quick-specs strong { display: block; margin-top: 4px; font-size: 12px; }.quick-stack { margin: 27px 0; }.quick-stack h3 { margin-bottom: 10px; font-size: 13px; }.quick-actions { display: flex; gap: 10px; }
.compare-panel { width: min(calc(100% - 32px), 1100px); padding: 35px; }.modal-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }.modal-heading h2 { margin: 6px 0 0; font-size: 35px; }.comparison-table-wrap { overflow-x: auto; }.comparison-table { width: 100%; border-collapse: collapse; min-width: 720px; }.comparison-table th, .comparison-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }.comparison-table th { color: var(--muted); font-size: 10px; letter-spacing: .08em; }.comparison-table th:first-child, .comparison-table td:first-child { width: 130px; color: var(--muted); }.comparison-table td { font-size: 12px; }.comparison-table .compare-project-head { display: grid; gap: 5px; }.comparison-table .compare-project-head strong { color: var(--text); font-size: 14px; }.comparison-table .compare-project-head span { color: var(--primary); }

.command-palette { align-items: start; padding-top: min(16vh, 150px); }
.command-panel { position: relative; z-index: 1; width: min(calc(100% - 32px), 650px); overflow: hidden; border: 1px solid var(--line-strong); border-radius: 20px; background: var(--surface-solid); box-shadow: 0 40px 120px rgba(0,0,0,.42); transform: translateY(-15px) scale(.98); transition: .22s ease; }.command-palette.open .command-panel { transform: translateY(0) scale(1); }
.command-search { height: 65px; padding: 0 17px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }.command-search svg { width: 20px; height: 20px; color: var(--muted); }.command-search input { flex: 1; border: 0; outline: 0; color: var(--text); background: transparent; }.command-label { padding: 14px 18px 7px; color: var(--muted-2); font-size: 9px; letter-spacing: .12em; }.command-results { max-height: 390px; overflow: auto; padding: 8px; }.command-item { width: 100%; padding: 11px; display: flex; align-items: center; gap: 12px; border: 0; border-radius: 11px; color: var(--text); text-align: left; background: transparent; cursor: pointer; }.command-item:hover, .command-item.active { background: var(--surface-soft); }.command-item-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; color: rgb(var(--accent-rgb)); background: rgba(var(--accent-rgb),.1); }.command-item div { flex: 1; display: grid; }.command-item strong { font-size: 12px; }.command-item small { color: var(--muted); font-size: 9px; }.command-item > span { color: var(--muted-2); font-size: 11px; }.command-footer { padding: 10px 17px; display: flex; gap: 18px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 9px; }
.toast { position: fixed; z-index: 500; left: 50%; bottom: 35px; padding: 11px 16px; transform: translate(-50%, 20px); border: 1px solid var(--line-strong); border-radius: 11px; color: var(--text); background: var(--surface-solid); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .22s ease; font-size: 12px; }.toast.show { opacity: 1; transform: translate(-50%, 0); }

.accent-blue { --accent-rgb: 45,100,255; }.accent-violet { --accent-rgb: 131,82,255; }.accent-cyan { --accent-rgb: 18,179,218; }.accent-emerald { --accent-rgb: 27,174,117; }.accent-orange { --accent-rgb: 238,140,54; }.accent-rose { --accent-rgb: 225,77,135; }
.status-blue { --accent-rgb: 45,100,255; }.status-violet { --accent-rgb: 131,82,255; }.status-cyan { --accent-rgb: 18,179,218; }.status-emerald { --accent-rgb: 27,174,117; }.status-orange { --accent-rgb: 238,140,54; }.status-rose { --accent-rgb: 225,77,135; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--delay, 0s), transform .7s cubic-bezier(.2,.75,.2,1) var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.82); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes rise { from { height: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

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

@media (max-width: 1080px) {
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 70px; }
    .hero-copy { max-width: 820px; }
    .hero-showcase { width: min(100%, 720px); margin: auto; transform: none; }
    .featured-card { grid-template-columns: 1fr; }.featured-visual { position: absolute; right: -70px; bottom: -80px; opacity: .6; }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .project-grid.list-view .project-card { grid-template-columns: 65px 130px 1fr auto; }.project-grid.list-view .project-card > p { display: none; }
    .process-layout { gap: 55px; }.contact-card { grid-template-columns: 1fr; gap: 40px; }
    .detail-grid { grid-template-columns: 1fr; }.product-stage { max-width: 720px; }
}

@media (max-width: 820px) {
    .section-pad { padding: 82px 0; }
    .nav-wrap { min-height: 68px; }
    .menu-toggle { display: block; }
    .site-nav { position: absolute; top: calc(100% + 8px); left: 20px; right: 20px; padding: 12px; display: none; flex-direction: column; align-items: stretch; gap: 5px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface-solid); box-shadow: var(--shadow); }
    .site-nav.open { display: flex; }.site-nav > a { padding: 11px; }.site-nav > a::after { display: none; }.command-trigger { margin: 3px 0; justify-content: space-between; }.theme-toggle { width: 100%; }
    .hero { padding-top: 135px; }.hero h1 { font-size: clamp(49px, 12vw, 72px); }.hero-copy > p { font-size: 16px; }.hero-showcase { min-height: 470px; }.chip-one { right: 10px; }.chip-two { left: 10px; }
    .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 25px 0; }
    .featured-card { padding: 45px 32px; }.featured-visual { width: 330px; height: 330px; }.section-heading { align-items: flex-start; flex-direction: column; }
    .project-toolbar { grid-template-columns: 1fr; }.sort-wrap { width: 100%; }.project-grid, .capability-grid, .detail-content-grid, .mini-project-grid { grid-template-columns: 1fr; }
    .project-grid.list-view .project-card { min-height: 250px; display: flex; }.project-grid.list-view .card-top { display: flex; }.project-grid.list-view .card-actions { position: static; }.project-grid.list-view .card-meta { margin-top: 20px; flex-direction: row; }.project-grid.list-view .project-card > p { display: block; }.project-grid.list-view .card-footer { width: auto; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
    .process-layout { grid-template-columns: 1fr; }.process-intro { position: static; }.contact-card { padding: 46px 30px; }.contact-card h2 { font-size: 46px; }
    .footer-main { grid-template-columns: 1fr; }.footer-bottom { flex-wrap: wrap; }
    .detail-hero { padding-top: 130px; }.detail-hero h1 { font-size: 54px; }.stage-specs { grid-template-columns: 1fr; }
    .quick-specs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section-pad { padding: 68px 0; }
    .brand-copy strong { max-width: 190px; overflow: hidden; text-overflow: ellipsis; }.brand-copy small { display: none; }
    .hero { padding-top: 116px; }.hero h1 { font-size: 47px; }.hero-copy > p { font-size: 14px; }.hero-actions .btn { width: 100%; }.hero-showcase { min-height: 405px; border-radius: 21px; }.showcase-body { grid-template-columns: 48px 1fr; min-height: 350px; }.showcase-main { padding: 22px 18px; }.showcase-chart { height: 105px; gap: 7px; }.showcase-stats { grid-template-columns: 1fr 1fr; }.showcase-activity { display: none; }.floating-chip { display: none; }
    .hero-metrics { margin-top: 55px; }.hero-metrics div { padding-left: 15px; }.hero-metrics strong { font-size: 22px; }
    .featured-card { min-height: 560px; padding: 34px 24px; align-items: start; }.featured-card h2 { font-size: 42px; }.featured-meta { margin-bottom: 32px; flex-wrap: wrap; }.featured-actions { flex-direction: column; }.featured-visual { right: -125px; bottom: -105px; transform: scale(.75); }
    .section-heading h2, .process-intro h2, .content-card h2 { font-size: 38px; }.project-view-actions { width: 100%; justify-content: space-between; }.project-grid { grid-template-columns: 1fr; }.project-card { min-height: 410px; }.capability-card { min-height: 360px; padding: 28px; }.capability-card h3 { margin-top: 60px; }
    .process-item { grid-template-columns: 45px 1fr; }.process-item b { display: none; }.contact-card { min-height: 570px; padding: 38px 24px; }.contact-card h2 { font-size: 42px; }.contact-action strong { font-size: 13px; }
    .footer-links { grid-template-columns: 1fr; }.footer-bottom { flex-direction: column; }
    .detail-hero h1 { font-size: 45px; }.detail-lead { font-size: 15px; }.product-stage { min-height: 500px; padding: 25px; }.stage-version strong { font-size: 43px; }
    .content-card { min-height: 0; padding: 30px 24px; }.quick-hero { padding: 35px 24px; }.quick-hero h2 { font-size: 34px; }.quick-body { padding: 28px 24px; }.quick-specs { grid-template-columns: 1fr 1fr; }.quick-actions { flex-direction: column; }.compare-panel { padding: 24px 18px; }
    .compare-dock { bottom: 10px; }.compare-summary > span, .compare-summary > strong { display: none; }.back-to-top { right: 14px; bottom: 14px; }
}
