:root {
    --bg: #050a0e;
    --bg-2: #07111a;
    --surface: #0c1822;
    --surface-2: #11212c;
    --surface-3: #15293a;
    --line: #1f3a4a;
    --line-soft: rgba(212, 236, 229, 0.10);
    --text: #edf7f5;
    --muted: #8aa3a4;
    --soft: #d4ece5;
    --teal: #5fb8b8;
    --teal-2: #93c5fd;
    --green: #8bd450;
    --amber: #f1b44c;
    --blue: #60a5fa;
    --violet: #a78bfa;
    --red: #f87171;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 0 1px rgba(45, 212, 191, 0.18), 0 30px 80px rgba(45, 212, 191, 0.08);
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "JetBrains Mono", Consolas, monospace;
    --radius: 14px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
}

/* ---------------- Animated background orbs / mesh ---------------- */
.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    will-change: transform;
}

.orb-1 {
    top: -180px;
    left: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(125, 175, 235, 0.40), transparent 65%);
    animation: floatA 18s ease-in-out infinite;
}

.orb-2 {
    top: 10%;
    right: -180px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.45), transparent 65%);
    animation: floatB 22s ease-in-out infinite;
}

.orb-3 {
    bottom: -240px;
    left: 30%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.25), transparent 65%);
    animation: floatC 26s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(212, 236, 229, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 236, 229, 0.025) 1px, transparent 1px);
    background-size: 56px 56px, 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
}

@keyframes floatA {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, 40px); }
}

@keyframes floatB {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 60px); }
}

@keyframes floatC {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -50px); }
}

/* ---------------- Header ---------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 14px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line-soft);
    background: rgba(5, 10, 14, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(96, 165, 250, 0.38);
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.20), rgba(125, 175, 220, 0.10));
    color: #e7f1ff;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.18) inset;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 15px;
    letter-spacing: 0;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.header-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.header-nav a {
    min-height: 38px;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    color: var(--soft);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.header-nav a:hover {
    background: rgba(212, 236, 229, 0.07);
    color: #fff;
}

.header-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
    padding: 9px 14px;
    border: 1px solid rgba(45, 212, 191, 0.45);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(96, 165, 250, 0.12));
    color: #dffefa;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.header-nav .nav-cta:hover {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.30), rgba(96, 165, 250, 0.18));
}

.header-nav .nav-cta i {
    font-size: 11px;
}

main {
    position: relative;
    z-index: 1;
}

/* ---------------- Typography ---------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 18px;
    padding: 6px 12px;
    border: 1px solid rgba(125, 175, 220, 0.22);
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.06);
    color: #cfe1ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 12px var(--teal);
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

h1, h2, h3, h4, p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    max-width: 820px;
    font-size: clamp(34px, 5.1vw, 66px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

h2 {
    margin-bottom: 12px;
    color: #f7fffc;
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.015em;
}

h3 {
    margin-bottom: 10px;
    color: #f7fffc;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.005em;
}

.grad-text {
    background: linear-gradient(120deg, #7dd3c8 0%, var(--blue) 35%, var(--violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ---------------- Hero ---------------- */
.hero-section {
    display: flex;
    align-items: center;
    min-height: min(720px, calc(82vh - 72px));
    padding: clamp(46px, 8vw, 96px) clamp(18px, 4vw, 56px) clamp(34px, 6vw, 72px);
}

.hero-copy {
    max-width: 820px;
}

.hero-text,
.section-heading p,
.delivery-section > div p,
.contact-card p {
    color: var(--soft);
    font-size: 16px;
}

.hero-text {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: 17px;
}

.hero-email {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.hero-email a {
    color: var(--teal-2);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.18s ease;
}

.hero-email a:hover {
    color: #fff;
}

.hero-email i {
    margin-right: 4px;
}

.header-nav a.nav-email {
    color: var(--soft);
    border: 1px solid transparent;
}

.header-nav a.nav-email i {
    margin-right: 4px;
    color: var(--teal);
}

.header-nav a.nav-email:hover {
    color: #fff;
    background: rgba(45, 212, 191, 0.10);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--teal-2), var(--teal));
    color: #062235;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.22);
}

.button-primary:hover {
    box-shadow: 0 14px 34px rgba(96, 165, 250, 0.32);
}

.button-secondary {
    border-color: rgba(212, 236, 229, 0.22);
    background: rgba(212, 236, 229, 0.05);
    color: var(--text);
}

.button-secondary:hover {
    border-color: rgba(212, 236, 229, 0.35);
    background: rgba(212, 236, 229, 0.09);
}

.button-ghost {
    color: var(--soft);
    background: transparent;
}

.button-ghost:hover {
    color: #fff;
}

body.dialog-open {
    overflow: hidden;
}

.contract-dialog-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(1, 8, 12, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contract-dialog-backdrop[hidden] {
    display: none;
}

.contract-dialog {
    position: relative;
    width: min(680px, 100%);
    max-height: calc(100vh - 28px);
    overflow: auto;
    padding: 24px;
    border: 1px solid rgba(45, 212, 191, 0.28);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.16), transparent 42%),
        linear-gradient(145deg, rgba(14, 29, 39, 0.98), rgba(6, 13, 20, 0.98));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.dialog-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(212, 236, 229, 0.18);
    border-radius: 10px;
    background: rgba(212, 236, 229, 0.05);
    color: var(--soft);
    cursor: pointer;
}

.dialog-close:hover {
    color: #fff;
    border-color: rgba(45, 212, 191, 0.34);
}

.contract-dialog h2 {
    max-width: 500px;
    margin-bottom: 8px;
    color: #f7fffc;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
}

.dialog-intro {
    max-width: 560px;
    margin-bottom: 14px;
    color: var(--soft);
}

.dialog-mail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 0 auto;
    padding: 0;
    font-size: 12px;
    color: var(--muted);
}

.dialog-mail-label {
    color: var(--muted);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dialog-mail-label i {
    margin-right: 4px;
    opacity: 0.6;
}

.dialog-mail-addr {
    color: #b6c8d8;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12.5px;
    font-weight: 500;
    user-select: all;
}

.dialog-mail-copy {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(125, 175, 200, 0.22);
    border-radius: 4px;
    background: transparent;
    color: #7aa6cc;
    font: inherit;
    font-size: 11px;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.dialog-mail-copy:hover {
    color: #93c5fd;
    border-color: rgba(96, 165, 250, 0.45);
    background: rgba(96, 165, 250, 0.08);
}

.dialog-mail-copy.is-copied {
    color: #93c5fd;
    border-color: rgba(96, 165, 250, 0.55);
    background: rgba(96, 165, 250, 0.14);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dialog-status {
    grid-column: 1 / -1;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.dialog-status[data-kind="ok"] {
    border-color: rgba(45, 212, 191, 0.45);
    background: rgba(45, 212, 191, 0.10);
    color: #cffaee;
}

.dialog-status[data-kind="err"] {
    border-color: rgba(248, 113, 113, 0.50);
    background: rgba(248, 113, 113, 0.10);
    color: #ffd8d8;
}

.contract-form select option,
.contract-form select optgroup {
    background: #0b1620;
    color: var(--text);
}

.footer-mail {
    color: var(--muted);
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    user-select: all;
}

.contract-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.contract-form label {
    display: grid;
    gap: 6px;
}

.contract-form span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contract-form input,
.contract-form select,
.contract-form textarea {
    width: 100%;
    border: 1px solid rgba(212, 236, 229, 0.16);
    border-radius: 10px;
    background: rgba(3, 10, 15, 0.82);
    color: var(--text);
    font: inherit;
    outline: none;
}

.contract-form input,
.contract-form select {
    height: 42px;
    padding: 0 12px;
}

.contract-form textarea {
    min-height: 104px;
    padding: 12px;
    resize: vertical;
}

.contract-form input:focus,
.contract-form select:focus,
.contract-form textarea:focus {
    border-color: rgba(45, 212, 191, 0.55);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.contract-form input:-webkit-autofill,
.contract-form input:-webkit-autofill:hover,
.contract-form input:-webkit-autofill:focus,
.contract-form input:-webkit-autofill:active,
.contract-form select:-webkit-autofill,
.contract-form textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(3, 10, 15, 0.82) inset;
    box-shadow: 0 0 0 1000px rgba(3, 10, 15, 0.82) inset;
    -webkit-text-fill-color: var(--text);
    caret-color: var(--text);
    transition: background-color 9999s ease-in-out 0s;
}

.field-wide,
.dialog-actions {
    grid-column: 1 / -1;
}

.dialog-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.button.button-quiet {
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid rgba(96, 165, 250, 0.32);
    background: rgba(96, 165, 250, 0.10);
    color: #cfe1ff;
    box-shadow: none;
    font-size: 13px;
    font-weight: 700;
}

.button.button-quiet:hover {
    background: rgba(96, 165, 250, 0.18);
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow: none;
    color: #fff;
}

.button.button-quiet:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---------------- Hero visual / ops window ---------------- */
.builder-preview-section {
    padding: 0 clamp(18px, 4vw, 56px) clamp(48px, 7vw, 92px);
}

.builder-preview-section .section-heading {
    margin-bottom: 24px;
}

.seat-policy-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    max-width: 760px;
    margin: 14px auto 0;
    padding: 10px 14px;
    border: 1px solid rgba(45, 212, 191, 0.24);
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.07);
    color: #dffefa;
    font-size: 13px;
    font-weight: 700;
}

.seat-policy-note i {
    color: var(--teal-2);
}

.builder-preview-section .hero-visual {
    max-width: 1080px;
    margin: 0 auto;
}

.builder-preview-section .hero-shot img {
    max-height: 760px;
    object-fit: cover;
    object-position: top center;
}

.hero-visual {
    min-width: 0;
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.18), transparent 65%);
    filter: blur(40px);
    z-index: -1;
}

/* ---------- Hero builder screenshot frame ---------- */
.hero-shot {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(212, 236, 229, 0.14);
    border-radius: var(--radius);
    background: rgba(8, 16, 22, 0.85);
    box-shadow: var(--shadow), var(--shadow-glow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-shot:hover {
    transform: translateY(-3px);
    border-color: rgba(45, 212, 191, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(45, 212, 191, 0.30), 0 0 60px rgba(45, 212, 191, 0.18);
}

.hero-shot-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 11px;
}

.hero-shot-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-shot-bar span:nth-child(1) { background: var(--red); }
.hero-shot-bar span:nth-child(2) { background: var(--amber); }
.hero-shot-bar span:nth-child(3) { background: var(--green); }

.hero-shot-bar strong {
    margin-left: 6px;
    color: var(--soft);
}

.hero-shot-bar .window-status {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(139, 212, 80, 0.13);
    color: #c8f7a7;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
}

.hero-shot-bar .window-status i {
    font-size: 7px;
    animation: pulse 1.6s ease-in-out infinite;
}

.hero-shot img {
    display: block;
    width: 100%;
    height: auto;
    background: #05080d;
}

.demo-video {
    display: block;
    width: 100%;
    max-height: 720px;
    background: #05080d;
    object-fit: cover;
}

.builder-demo-frame:hover {
    transform: none;
}

.desk-monitor-frame {
    margin-top: 18px;
}

.builder-preview-section .desk-monitor-frame img {
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.demo-actions {
    max-width: 1080px;
    margin: 14px auto 0;
}

.hero-shot-caption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 28px);
    padding: 7px 12px;
    border: 1px solid rgba(45, 212, 191, 0.30);
    border-radius: 999px;
    background: rgba(8, 16, 22, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #dffefa;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-shot-caption i {
    color: var(--teal-2);
}

.ops-window {
    overflow: hidden;
    border: 1px solid rgba(212, 236, 229, 0.14);
    border-radius: var(--radius);
    background: rgba(8, 16, 22, 0.85);
    box-shadow: var(--shadow), var(--shadow-glow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 44px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 12px;
}

.window-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-bar span:nth-child(1) { background: var(--red); }
.window-bar span:nth-child(2) { background: var(--amber); }
.window-bar span:nth-child(3) { background: var(--green); }

.window-bar strong {
    margin-left: 8px;
    color: var(--soft);
}

.window-status {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(139, 212, 80, 0.13);
    color: #c8f7a7;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
}

.window-status i {
    font-size: 7px;
    animation: pulse 1.6s ease-in-out infinite;
}

.ops-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
}

.ops-panel {
    min-height: 104px;
    padding: 12px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(21, 35, 44, 0.92), rgba(10, 22, 28, 0.88));
}

.panel-wide {
    grid-column: 1 / -1;
}

.panel-head,
.signal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.panel-head {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.panel-head i {
    color: var(--teal);
}

.chart-lines {
    position: relative;
    height: 128px;
    margin: 14px 0 10px;
    border-bottom: 1px solid var(--line-soft);
    background:
        linear-gradient(rgba(212, 236, 229, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 236, 229, 0.05) 1px, transparent 1px);
    background-size: 100% 32px, 52px 100%;
}

.chart-lines span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 3px;
    border-radius: 99px;
    transform-origin: left center;
}

.chart-lines span:nth-child(1) {
    top: 70px;
    background: linear-gradient(90deg, var(--teal), transparent);
    transform: rotate(-10deg);
}

.chart-lines span:nth-child(2) {
    top: 54px;
    background: linear-gradient(90deg, var(--amber), transparent);
    transform: rotate(7deg);
}

.chart-lines span:nth-child(3) {
    top: 94px;
    background: linear-gradient(90deg, var(--blue), transparent);
    transform: rotate(-18deg);
}

.signal-row b {
    color: #f7fffc;
    font-family: var(--font-mono);
}

.signal-row em {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(139, 212, 80, 0.13);
    color: #c8f7a7;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.metric {
    display: block;
    margin: 28px 0 6px;
    color: #f7fffc;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.ops-panel small {
    color: var(--muted);
}

.device-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.device-stack span {
    display: grid;
    min-height: 72px;
    place-items: center;
    padding: 10px;
    border: 1px solid rgba(45, 212, 191, 0.20);
    border-radius: var(--radius-sm);
    background: rgba(45, 212, 191, 0.07);
    color: #ddfffa;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

/* ---------------- Capabilities strip ---------------- */
.capabilities-section {
    padding: clamp(40px, 6vw, 80px) clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: rgba(8, 16, 22, 0.35);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 28px;
}

.section-heading-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading-center .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.cap-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.cap-strip li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(12, 24, 34, 0.6);
    color: var(--soft);
    font-size: 13px;
    font-weight: 600;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.cap-strip li:hover {
    border-color: rgba(45, 212, 191, 0.4);
    color: #fff;
    background: rgba(45, 212, 191, 0.08);
}

.cap-strip i {
    color: var(--teal);
}

/* ---------------- Section band (Portfolio) ---------------- */
.section-band {
    padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 56px);
    background: linear-gradient(180deg, transparent 0%, rgba(8, 16, 22, 0.45) 100%);
}

.category-block {
    margin-top: 56px;
}

.category-block:first-of-type {
    margin-top: 24px;
}

.category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--line-soft);
}

.category-header h3 {
    margin: 0;
    font-size: clamp(20px, 2.3vw, 28px);
    font-weight: 700;
    color: #f7fffc;
}

.category-sub {
    margin: 10px 0 0;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.55;
}

.category-sub strong {
    color: #f7fffc;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding: 5px 11px;
    border: 1px solid rgba(45, 212, 191, 0.25);
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.08);
    color: #aef0e3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 9px 14px;
    border: 1px solid rgba(212, 236, 229, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(212, 236, 229, 0.04);
    color: var(--soft);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.category-link:hover {
    border-color: rgba(45, 212, 191, 0.4);
    background: rgba(45, 212, 191, 0.08);
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.product-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid-1 {
    grid-template-columns: minmax(0, 1fr);
}

.product-grid-1 .product-card.featured,
.product-grid-1 .product-card.product-card-with-shot.featured-charts {
    grid-column: auto;
}

.product-rows {
    gap: 18px;
}

.product-rows .product-card.product-card-with-shot {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 0;
    padding: 0;
}

.product-rows .product-card.product-card-with-shot .card-shot {
    grid-column: 1;
    grid-row: 1 / span 20;
    display: grid;
    align-items: center;
    min-height: 360px;
    height: 100%;
    margin-bottom: 0;
    padding: 18px;
    border-right: 1px solid var(--line-soft);
    border-bottom: 0;
    background:
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.14), transparent 44%),
        linear-gradient(145deg, rgba(7, 15, 21, 0.98), rgba(10, 20, 29, 0.94));
}

.product-rows .product-card.product-card-with-shot .card-shot img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
    object-position: center;
    border: 1px solid rgba(212, 236, 229, 0.12);
    border-radius: 12px;
    background: rgba(2, 8, 12, 0.72);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.desk-shots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 10px;
}

.desk-shot-item {
    position: relative;
    display: block;
    min-height: 0;
    color: inherit;
    text-decoration: none;
}

.product-rows .gts-desk-card .desk-shot-item img,
.product-rows .gts-desk-card .desk-shot-item video {
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(212, 236, 229, 0.10);
    border-radius: 8px;
    background: rgba(2, 8, 12, 0.72);
    display: block;
}

.desk-shot-video {
    position: relative;
}

.desk-shot-video .demo-video {
    height: 130px;
}

.product-rows .gts-desk-card .desk-shots .shot-caption {
    left: 6px;
    bottom: 6px;
    padding: 3px 7px;
    font-size: 9.5px;
    letter-spacing: 0;
    gap: 4px;
}

@media (max-width: 640px) {
    .desk-shots {
        grid-template-columns: 1fr;
    }
}

.product-rows .product-card.product-card-with-shot > :not(.card-shot) {
    grid-column: 2;
    margin-left: 32px;
    margin-right: 32px;
}

.product-rows .product-card.product-card-with-shot .product-icon {
    margin-top: 30px;
}

.product-rows .product-card.product-card-with-shot .card-cta {
    margin-bottom: 28px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 24px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(17, 33, 44, 0.72), rgba(10, 22, 28, 0.85));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(circle at top right, rgba(45, 212, 191, 0.08), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-card:hover {
    border-color: rgba(45, 212, 191, 0.32);
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.featured {
    grid-column: span 2;
    border-color: rgba(125, 200, 210, 0.16);
    background:
        radial-gradient(circle at top right, rgba(56, 240, 214, 0.05), transparent 60%),
        linear-gradient(180deg, rgba(14, 24, 32, 0.88), rgba(8, 16, 22, 0.92));
}

.product-card.featured::after {
    content: "Featured";
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 4px 10px;
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    color: #cfe1ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card.custom-projects {
    border-color: rgba(96, 165, 250, 0.30);
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(16, 26, 40, 0.92), rgba(10, 18, 28, 0.92));
}

.product-visual {
    position: relative;
    min-height: 150px;
    margin: -4px -4px 20px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 236, 229, 0.12);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.14), transparent 58%),
        linear-gradient(145deg, rgba(5, 12, 18, 0.88), rgba(13, 25, 34, 0.88));
}

.product-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(212, 236, 229, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 236, 229, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
}

.visual-server {
    position: relative;
    z-index: 1;
    height: 34px;
    margin-bottom: 10px;
    border: 1px solid rgba(45, 212, 191, 0.22);
    border-radius: 8px;
    background: rgba(8, 18, 24, 0.9);
}

.visual-server::before,
.visual-server::after {
    content: "";
    position: absolute;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 14px rgba(45, 212, 191, 0.8);
}

.visual-server::before { left: 14px; }
.visual-server::after { left: 32px; opacity: 0.55; }

.visual-terminal,
.code-window,
.alert-line,
.phone-task,
.phone-message,
.phone-route {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 236, 229, 0.12);
    border-radius: 10px;
    background: rgba(4, 10, 14, 0.78);
}

.visual-terminal {
    display: grid;
    gap: 4px;
    padding: 12px;
}

.visual-terminal span,
.code-window span {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 11px;
}

.visual-terminal b,
.code-window b {
    color: #dffefa;
    font-family: var(--font-mono);
    font-size: 12px;
}

.alert-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
    padding: 11px 12px;
    font-size: 12px;
}

.alert-line span {
    color: #dffefa;
    font-family: var(--font-mono);
}

.alert-line b {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.alert-line.up {
    border-color: rgba(45, 212, 191, 0.30);
    background: rgba(45, 212, 191, 0.08);
}

.alert-line.up b {
    color: var(--teal-2);
}

.alert-channel-row {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
}

.alert-channel-row i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 9px;
    background: rgba(96, 165, 250, 0.09);
    color: #bfdbfe;
}

.visual-agentic,
.visual-phone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
    align-items: center;
    gap: 16px;
}

.phone-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    min-height: 128px;
    padding: 18px 12px 12px;
    border: 1px solid rgba(167, 139, 250, 0.30);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(12, 18, 30, 0.96), rgba(6, 12, 18, 0.96));
    box-shadow: inset 0 0 26px rgba(167, 139, 250, 0.10);
}

.phone-shell.small {
    border-color: rgba(45, 212, 191, 0.28);
}

.phone-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: rgba(212, 236, 229, 0.22);
    transform: translateX(-50%);
}

.phone-task,
.phone-message,
.phone-route {
    padding: 8px 9px;
    color: #dffefa;
    font-size: 12px;
}

.phone-message {
    color: var(--soft);
}

.phone-route {
    color: var(--muted);
    font-family: var(--font-mono);
}

.agent-node,
.shield-badge {
    position: relative;
    z-index: 1;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 50%;
    font-size: 24px;
}

.agent-node {
    border: 1px solid rgba(167, 139, 250, 0.36);
    background: rgba(167, 139, 250, 0.14);
    color: #d6c9ff;
}

.shield-badge {
    border: 1px solid rgba(45, 212, 191, 0.34);
    background: rgba(45, 212, 191, 0.12);
    color: #bffef4;
}

.code-window {
    display: grid;
    gap: 6px;
    min-height: 118px;
    padding: 14px;
}

.code-window span {
    color: #c4b5fd;
}

.code-window b {
    color: var(--soft);
    font-weight: 600;
}

.product-card.product-card-with-shot {
    padding: 0 0 24px 0;
    overflow: hidden;
}

.product-card.product-card-with-shot.featured-charts {
    grid-column: span 2;
    border-color: rgba(96, 165, 250, 0.30);
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(16, 26, 40, 0.92), rgba(10, 18, 28, 0.92));
}

.product-card.product-card-with-shot .card-shot {
    position: relative;
    display: block;
    margin-bottom: 22px;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    background: #050a10;
    text-decoration: none;
}

.product-card.product-card-with-shot .card-shot img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.product-card.product-card-with-shot.gts-desk-card .card-shot img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-rows .product-card-bizhub .card-shot {
    min-height: 0;
    align-items: start;
    padding: 14px;
}

.product-rows .product-card-bizhub .card-shot img {
    max-height: 240px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center top;
}

.product-card.product-card-with-shot.gts-desk-card:hover .card-shot img {
    transform: none;
}

.product-card.product-card-with-shot:hover .card-shot img {
    transform: scale(1.03);
}

.product-rows .product-card.product-card-with-shot:hover .card-shot img {
    transform: none;
}

.product-card.product-card-with-shot .shot-caption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border: 1px solid rgba(96, 165, 250, 0.28);
    border-radius: 999px;
    background: rgba(8, 16, 22, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #dceaff;
    font-size: 11px;
    font-weight: 700;
}

.product-card.product-card-with-shot .shot-caption i {
    color: var(--blue);
}

.product-card.product-card-with-shot .product-icon,
.product-card.product-card-with-shot .product-kicker,
.product-card.product-card-with-shot h3,
.product-card.product-card-with-shot .product-site-link,
.product-card.product-card-with-shot p,
.product-card.product-card-with-shot .feature-list,
.product-card.product-card-with-shot .card-cta {
    margin-left: 24px;
    margin-right: 24px;
}

.product-card.product-card-with-shot .product-icon {
    margin-top: -2px;
}

.product-site-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: -6px;
    margin-bottom: 14px;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.product-site-link:hover {
    color: #fff;
}

.product-card.product-card-with-shot.featured-charts::after {
    content: "In-house \00b7 New";
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 4px 10px;
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 999px;
    background: rgba(8, 16, 22, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #cfe1ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card.product-card-with-shot.featured-charts .product-icon {
    border-color: rgba(96, 165, 250, 0.32);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.20), rgba(45, 212, 191, 0.10));
    color: #cfe1ff;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.18) inset;
}

.product-card.product-card-with-shot.featured-charts .card-cta {
    color: #93c5fd;
}

.product-card.product-card-with-shot.featured-charts .card-cta:hover {
    color: #fff;
}

.product-card.product-card-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    min-height: 0;
    padding: 20px 24px;
}

.product-card.product-card-row .product-icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    font-size: 20px;
}

.product-card.product-card-row .row-body {
    min-width: 0;
}

.product-card.product-card-row .product-kicker {
    margin-bottom: 4px;
}

.product-card.product-card-row h3 {
    margin-bottom: 4px;
    font-size: 20px;
}

.product-card.product-card-row p {
    margin: 0;
    color: var(--soft);
    font-size: 14px;
}

.product-card.product-card-row .card-cta {
    margin-top: 0;
    flex-shrink: 0;
}

.product-card.featured-agentic {
    border-color: rgba(96, 165, 250, 0.32);
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 55%),
        radial-gradient(circle at bottom left, rgba(45, 212, 191, 0.06), transparent 55%),
        linear-gradient(180deg, rgba(16, 26, 40, 0.92), rgba(10, 18, 28, 0.92));
}

.product-card.featured-agentic::after {
    content: "Phone API \00b7 New";
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 4px 10px;
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 999px;
    background: rgba(8, 16, 22, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #cfe1ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card.featured-agentic .product-icon {
    border-color: rgba(96, 165, 250, 0.32);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.20), rgba(45, 212, 191, 0.10));
    color: #cfe1ff;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.18) inset;
}

.product-card.featured-agentic .card-cta {
    color: #93c5fd;
}

.product-card.featured-agentic .card-cta:hover {
    color: #fff;
}

.product-card.featured-agentic .feature-list i,
.product-card-pchat .feature-list i,
.product-card.product-card-with-shot.featured-charts .feature-list i,
.product-card-controller .feature-list i,
.product-card-alert-saas .feature-list i {
    color: var(--blue);
}

.product-card.featured-agentic .feature-list-vs strong,
.product-card-pchat .feature-list-vs strong,
.product-card.product-card-with-shot.featured-charts .feature-list-vs strong,
.product-card-controller .feature-list-vs strong,
.product-card-alert-saas .feature-list-vs strong {
    color: #cfe1ff;
}

.product-card-alert-saas {
    border-color: rgba(96, 165, 250, 0.30);
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(16, 26, 40, 0.92), rgba(10, 18, 28, 0.92));
}

.product-card-alert-saas::after {
    content: "Web SaaS \00b7 Free tier";
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 4px 10px;
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 999px;
    background: rgba(8, 16, 22, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #cfe1ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card-alert-saas .product-icon {
    border-color: rgba(96, 165, 250, 0.32);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.20), rgba(45, 212, 191, 0.10));
    color: #cfe1ff;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.18) inset;
}

.product-card-alert-saas .card-cta {
    color: #93c5fd;
}

.product-card-alert-saas .card-cta:hover {
    color: #fff;
}

.product-card-alert-saas .card-shot .shot-caption {
    border-color: rgba(96, 165, 250, 0.28);
    color: #dceaff;
}

.product-card-alert-saas .card-shot .shot-caption i {
    color: var(--blue);
}

.product-card-controller {
    border-color: rgba(96, 165, 250, 0.30);
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(16, 26, 40, 0.92), rgba(10, 18, 28, 0.92));
}

.product-card-controller::after {
    content: "New product";
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 4px 10px;
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 999px;
    background: rgba(8, 16, 22, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #cfe1ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card-controller .product-icon {
    border-color: rgba(96, 165, 250, 0.32);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.20), rgba(45, 212, 191, 0.10));
    color: #cfe1ff;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.18) inset;
}

.product-card-controller .card-cta {
    color: #93c5fd;
}

.product-card-controller .card-cta:hover {
    color: #fff;
}

.product-card-pchat {
    border-color: rgba(45, 212, 191, 0.30);
    background:
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.13), transparent 55%),
        radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.10), transparent 58%),
        linear-gradient(180deg, rgba(15, 35, 43, 0.90), rgba(8, 20, 28, 0.92));
}

.product-card-pchat .product-icon {
    border-color: rgba(45, 212, 191, 0.34);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.20), rgba(96, 165, 250, 0.12));
    color: #bffef4;
}

.pchat-mini {
    margin: -4px -4px 18px;
    padding: 12px;
    border: 1px solid rgba(212, 236, 229, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(5, 12, 18, 0.55);
}

.pchat-mini-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pchat-mini-bar b {
    color: #aef0e3;
    font-size: 10px;
}

.pchat-bubble,
.pchat-transcript {
    border-radius: 12px;
    border: 1px solid rgba(45, 212, 191, 0.18);
}

.pchat-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(45, 212, 191, 0.08);
    color: #eafffb;
    font-size: 12px;
}

.pchat-bubble i {
    color: var(--teal-2);
}

.pchat-bubble span {
    color: var(--muted);
    font-family: var(--font-mono);
}

.pchat-bubble strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pchat-transcript {
    margin-top: 8px;
    padding: 10px;
    background: rgba(96, 165, 250, 0.06);
}

.pchat-transcript small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pchat-transcript p {
    margin: 0;
    color: var(--soft);
    font-size: 12px;
    line-height: 1.35;
}

.product-icon {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    place-items: center;
    border: 1px solid rgba(96, 165, 250, 0.28);
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.18), rgba(45, 212, 191, 0.06));
    color: #cfe1ff;
    font-size: 18px;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.14) inset;
}

.custom-projects .product-icon {
    border-color: rgba(96, 165, 250, 0.32);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.20), rgba(45, 212, 191, 0.08));
    color: #cfe1ff;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.18) inset;
}

.product-kicker {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.product-card h3 {
    color: #f7fffc;
    font-size: 24px;
}

.product-card p {
    color: var(--soft);
    margin-bottom: 16px;
}

.feature-list {
    display: grid;
    gap: 6px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.feature-list.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--soft);
    font-size: 14px;
}

.feature-list i {
    flex-shrink: 0;
    margin-top: 4px;
    width: 14px;
    height: 14px;
    color: var(--blue);
    font-size: 11px;
}

.feature-list-vs i {
    margin-top: 2px;
    width: 16px;
    font-size: 13px;
}

.feature-list-vs strong {
    color: #f7fffc;
    font-weight: 700;
}

.sub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0 18px;
}

.sub-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: rgba(212, 236, 229, 0.04);
    color: var(--soft);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.sub-links a:hover {
    border-color: rgba(45, 212, 191, 0.35);
    background: rgba(45, 212, 191, 0.10);
    color: #dffefa;
}

.sub-links i {
    color: var(--teal);
    font-size: 11px;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.18s ease, color 0.18s ease;
}

.card-cta:hover {
    gap: 12px;
    color: #fff;
}

.custom-projects .card-cta {
    color: #93c5fd;
}

.custom-projects .card-cta:hover {
    color: #fff;
}

/* ---------------- Delivery ---------------- */
.delivery-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: start;
    padding: clamp(58px, 7vw, 96px) clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line-soft);
}

.delivery-section > div:first-child .button {
    margin-top: 18px;
}

.delivery-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.delivery-list > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 4px 14px;
    padding: 18px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(12, 24, 34, 0.6);
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.delivery-list > div:hover {
    border-color: rgba(45, 212, 191, 0.30);
    transform: translateY(-2px);
}

.delivery-list i {
    grid-row: span 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(45, 212, 191, 0.22);
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.14), rgba(96, 165, 250, 0.10));
    color: var(--teal-2);
}

.delivery-list strong {
    color: #f7fffc;
    font-size: 15px;
    font-weight: 700;
}

.delivery-list span {
    color: var(--muted);
    font-size: 14px;
}

/* ---------------- Contact ---------------- */
.contact-section {
    padding: clamp(58px, 7vw, 96px) clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line-soft);
}

.contact-section-inline {
    padding: 0 clamp(18px, 4vw, 56px) clamp(28px, 4vw, 48px);
    border-top: none;
    margin-top: -8px;
}

.contact-card {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 64px);
    border: 1px solid rgba(45, 212, 191, 0.22);
    border-radius: 20px;
    background:
        radial-gradient(circle at 20% 0%, rgba(45, 212, 191, 0.18), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(96, 165, 250, 0.12), transparent 60%),
        linear-gradient(180deg, rgba(15, 30, 40, 0.86), rgba(8, 18, 26, 0.92));
    box-shadow: var(--shadow), 0 0 0 1px rgba(45, 212, 191, 0.10);
    overflow: hidden;
}

.contact-card-compact {
    max-width: 880px;
    padding: 18px clamp(16px, 2.4vw, 26px) 20px;
    border-color: rgba(125, 200, 210, 0.16);
    border-radius: 14px;
    background:
        radial-gradient(circle at 100% 0%, rgba(96, 165, 250, 0.08), transparent 55%),
        linear-gradient(180deg, rgba(14, 24, 32, 0.92), rgba(8, 16, 22, 0.94));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.contact-card-compact::before {
    display: none;
}

.contact-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px 18px;
    margin-bottom: 10px;
}

.contact-card-head-text {
    flex: 1 1 320px;
    min-width: 0;
}

.contact-card-head-cta {
    flex: 0 0 auto;
    margin-top: 4px;
    white-space: nowrap;
}

@media (max-width: 560px) {
    .contact-card-head-cta {
        align-self: stretch;
        justify-content: center;
    }
}

.contact-card-head .eyebrow {
    margin-bottom: 8px;
    padding: 4px 10px;
    font-size: 10px;
}

.contact-card-head h2 {
    margin-bottom: 4px;
    font-size: clamp(17px, 1.9vw, 21px);
    line-height: 1.15;
}

.contact-card-head .dialog-intro {
    margin-bottom: 0;
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--muted);
}

.contact-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.18), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.contact-card p {
    max-width: 760px;
    margin-bottom: 24px;
}

/* ---------------- Footer ---------------- */
.site-footer {
    padding: clamp(40px, 5vw, 60px) clamp(18px, 4vw, 56px) 28px;
    border-top: 1px solid var(--line-soft);
    background: rgba(5, 10, 14, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: clamp(20px, 3vw, 48px);
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 360px;
}

.footer-brand .brand-mark {
    flex: 0 0 auto;
    width: 92px;
    height: 92px;
    font-size: 24px;
    border-radius: var(--radius);
}

.footer-brand strong {
    display: block;
    color: #f7fffc;
    font-size: 15px;
    margin-bottom: 4px;
}

.footer-brand small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.footer-col h4 {
    margin: 0 0 14px;
    color: #f7fffc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    color: var(--soft);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-col a:hover {
    color: var(--teal-2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: 12px;
}

.footer-mono {
    font-family: var(--font-mono);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
    .product-card.featured {
        grid-column: auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid.product-grid-1 {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .hero-section,
    .delivery-section {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .feature-list.two-col {
        grid-template-columns: 1fr;
    }

    .product-rows .product-card.product-card-with-shot {
        grid-template-columns: 1fr;
    }

    .product-rows .product-card.product-card-with-shot .card-shot {
        grid-column: 1;
        grid-row: auto;
        min-height: 260px;
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .product-rows .product-card.product-card-with-shot > :not(.card-shot) {
        grid-column: 1;
    }
}

@media (max-width: 720px) {
    .site-header {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }

    .header-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .header-nav a.nav-cta {
        margin-left: 0;
    }

    .hero-section {
        padding-top: 34px;
    }

    .hero-actions,
    .contact-actions,
    .dialog-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .contract-dialog-backdrop {
        padding: 12px;
    }

    .contract-dialog {
        padding: 22px 16px;
    }

    .contract-form {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .product-grid-2,
    .device-stack,
    .delivery-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ops-grid {
        grid-template-columns: 1fr;
    }

    .panel-wide {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
