: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 h3,
.product-card p,
.product-card .product-kicker,
.product-card .feature-list,
.product-card .feature-list li,
.product-card .shot-caption,
.category-header h3,
.category-header p,
.category-sub,
.webchat-quickbits,
.webchat-quickbits li,
.section-heading h2,
.section-heading p,
.delivery-list strong,
.delivery-list span {
    -webkit-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
    cursor: text;
}

.product-card a h3,
.product-card a p {
    cursor: pointer;
}

.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;
        padding-left: 14px;
        padding-right: 14px;
    }

    .header-nav {
        width: 100%;
        gap: 2px;
        padding-bottom: 2px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .header-nav a {
        padding: 8px 10px;
        font-size: 12.5px;
    }

    .header-nav a.nav-cta {
        margin-left: 0;
        padding: 8px 12px;
        gap: 4px;
    }

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

    .delivery-section {
        gap: 18px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .delivery-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .delivery-list > div {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 3px 12px;
        padding: 14px;
    }

    .delivery-list i {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 380px) {
    .header-nav a {
        padding: 8px 8px;
        font-size: 12px;
    }

    .header-nav a.nav-cta {
        padding: 8px 10px;
    }

    .header-nav .nav-cta i {
        display: none;
    }

    .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,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .delivery-list > div {
        grid-template-columns: 1fr;
    }

    .delivery-list i {
        grid-row: auto;
    }

    .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;
    }
}

/* ============================================================
   WebChat — AI-first dedicated section (glassmorphism)
   ============================================================ */

.category-block.category-webchat {
    position: relative;
    margin-top: 28px;
    padding: 36px clamp(20px, 3vw, 44px) 40px;
    border-radius: 22px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    background:
        radial-gradient(circle at 12% -10%, rgba(167, 139, 250, 0.22), transparent 55%),
        radial-gradient(circle at 92% 0%, rgba(45, 212, 191, 0.18), transparent 55%),
        radial-gradient(circle at 50% 110%, rgba(96, 165, 250, 0.16), transparent 60%),
        linear-gradient(180deg, rgba(14, 20, 36, 0.78), rgba(8, 14, 24, 0.86));
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    box-shadow:
        0 0 0 1px rgba(167, 139, 250, 0.10) inset,
        0 40px 110px rgba(7, 11, 22, 0.55),
        0 0 80px rgba(167, 139, 250, 0.08);
    overflow: hidden;
}

.category-block.category-webchat::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(167, 139, 250, 0.55) 0%,
        rgba(96, 165, 250, 0.35) 38%,
        rgba(45, 212, 191, 0.45) 72%,
        rgba(167, 139, 250, 0.30) 100%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

.category-block.category-webchat::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -160px;
    right: -180px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.22), transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.category-webchat > * {
    position: relative;
    z-index: 1;
}

.webchat-header {
    margin-bottom: 28px;
}

.webchat-tag {
    background: linear-gradient(120deg, rgba(167, 139, 250, 0.22), rgba(96, 165, 250, 0.16) 60%, rgba(45, 212, 191, 0.18));
    border: 1px solid rgba(167, 139, 250, 0.40);
    color: #e3dbff;
    box-shadow: 0 0 24px rgba(167, 139, 250, 0.16) inset;
}

.webchat-tag i {
    color: #c4b5fd;
}

.category-webchat .category-header h3 {
    background: linear-gradient(120deg, #ffffff 0%, #c4b5fd 40%, #93c5fd 70%, #5fb8b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.category-webchat .category-sub em {
    font-style: normal;
    color: #c4b5fd;
    font-weight: 600;
}

/* Hero (shot + CTA actions) */
.webchat-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.8fr);
    gap: 22px;
    margin-bottom: 28px;
}

.webchat-shot {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(167, 139, 250, 0.28);
    background: rgba(8, 14, 24, 0.6);
    box-shadow:
        0 30px 80px rgba(7, 11, 22, 0.55),
        0 0 0 1px rgba(167, 139, 250, 0.10) inset;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hero mock chat — 2 AI sessions + 1 human */
.webchat-mock {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(167, 139, 250, 0.30);
    background:
        radial-gradient(circle at 0% 0%, rgba(167, 139, 250, 0.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.14), transparent 55%),
        linear-gradient(180deg, rgba(10, 14, 24, 0.92), rgba(7, 11, 22, 0.96));
    box-shadow:
        0 30px 80px rgba(7, 11, 22, 0.55),
        0 0 0 1px rgba(167, 139, 250, 0.10) inset,
        0 0 80px rgba(167, 139, 250, 0.10);
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    color: var(--text);
}

.webchat-mock:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.55);
    box-shadow:
        0 40px 100px rgba(7, 11, 22, 0.65),
        0 0 0 1px rgba(167, 139, 250, 0.22) inset,
        0 0 80px rgba(167, 139, 250, 0.22);
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(167, 139, 250, 0.18);
    background: linear-gradient(180deg, rgba(16, 20, 36, 0.75), rgba(10, 14, 24, 0.55));
}

.mock-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text);
}

.mock-title strong {
    font-family: var(--font-mono);
    font-weight: 700;
    color: #d8caff;
    letter-spacing: 0.01em;
}

.mock-meta {
    color: var(--muted);
    font-size: 12px;
}

.mock-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.65);
    animation: webchatPulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

.mock-badges {
    display: flex;
    gap: 6px;
}

.mock-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid;
}

.mock-pill-ai {
    background: rgba(167, 139, 250, 0.16);
    border-color: rgba(167, 139, 250, 0.45);
    color: #e3dbff;
}

.mock-pill-ai i {
    color: #c4b5fd;
}

.mock-pill-user {
    background: rgba(96, 165, 250, 0.16);
    border-color: rgba(96, 165, 250, 0.45);
    color: #dceaff;
}

.mock-pill-user i {
    color: #93c5fd;
}

.mock-stream {
    flex: 1;
    padding: 18px 18px 4px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
}

.mock-msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.mock-msg.mock-user {
    flex-direction: row-reverse;
}

.mock-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.avatar-user {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    border: 2px solid rgba(96, 165, 250, 0.55);
}

.avatar-ai-a {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    border: 2px solid rgba(167, 139, 250, 0.55);
}

.avatar-ai-a i {
    font-size: 13px;
}

.avatar-ai-b {
    background: linear-gradient(135deg, #5fb8b8, #0891b2);
    border: 2px solid rgba(45, 212, 191, 0.55);
}

.avatar-ai-b i {
    font-size: 13px;
}

.mock-bubble {
    position: relative;
    max-width: 78%;
    padding: 10px 14px 12px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text);
    border: 1px solid;
}

.mock-bubble header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 12px;
}

.mock-bubble header b {
    color: var(--text);
    font-weight: 700;
}

.mock-bubble header .mock-time {
    margin-left: auto;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10.5px;
}

.mock-badge-ai {
    padding: 1px 6px;
    border-radius: 999px;
    background: rgba(167, 139, 250, 0.20);
    border: 1px solid rgba(167, 139, 250, 0.45);
    color: #e3dbff;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.bubble-user {
    border-color: rgba(96, 165, 250, 0.35);
    background: linear-gradient(180deg, rgba(40, 60, 110, 0.70), rgba(20, 32, 64, 0.85));
    border-bottom-right-radius: 4px;
}

.bubble-ai-a {
    border-color: rgba(167, 139, 250, 0.32);
    background: linear-gradient(180deg, rgba(34, 26, 60, 0.78), rgba(16, 14, 32, 0.88));
    border-bottom-left-radius: 4px;
}

.bubble-ai-b {
    border-color: rgba(45, 212, 191, 0.28);
    background: linear-gradient(180deg, rgba(16, 38, 44, 0.78), rgba(8, 22, 28, 0.88));
    border-bottom-left-radius: 4px;
}

.mock-bubble code {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: #cfe1ff;
    background: rgba(0, 0, 0, 0.35);
    padding: 1px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Typing dots */
.mock-typing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
}

.mock-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.85);
    animation: mockTyping 1.2s ease-in-out infinite;
}

.mock-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.mock-typing span:nth-child(3) {
    animation-delay: 0.30s;
}

@keyframes mockTyping {
    0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-3px); }
}

.mock-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 12px 18px;
    border-top: 1px solid rgba(167, 139, 250, 0.18);
    background: linear-gradient(180deg, rgba(10, 14, 24, 0.55), rgba(16, 20, 36, 0.75));
    color: var(--muted);
    font-size: 11.5px;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

.mock-footer i {
    color: #93c5fd;
    margin-right: 4px;
}

.mock-footer .mock-open {
    margin-left: auto;
    color: #c4b5fd;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mock-footer .mock-open i {
    color: #c4b5fd;
}

@media (max-width: 640px) {
    .mock-bubble {
        max-width: 88%;
        font-size: 12.5px;
    }
    .mock-header {
        padding: 12px 14px;
    }
    .mock-stream {
        padding: 14px 14px 2px;
        gap: 12px;
    }
    .mock-footer {
        font-size: 10.5px;
        gap: 10px;
    }
}

.webchat-shot:hover {
    transform: translateY(-3px);
    box-shadow:
        0 40px 100px rgba(7, 11, 22, 0.65),
        0 0 0 1px rgba(167, 139, 250, 0.22) inset,
        0 0 60px rgba(167, 139, 250, 0.18);
}

.webchat-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.shot-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 12px 12px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(167, 139, 250, 0.35);
    background: rgba(10, 14, 22, 0.86);
    color: #e3dbff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.shot-pill i {
    color: #4ade80;
    font-size: 8px;
    animation: webchatPulse 2.2s ease-in-out infinite;
}

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

.webchat-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.webchat-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.webchat-cta.primary {
    color: #fff;
    border: 1px solid rgba(167, 139, 250, 0.6);
    background: linear-gradient(120deg, rgba(167, 139, 250, 0.95) 0%, rgba(96, 165, 250, 0.92) 55%, rgba(45, 212, 191, 0.85) 100%);
    box-shadow: 0 12px 32px rgba(167, 139, 250, 0.30), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.webchat-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(167, 139, 250, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.webchat-cta.secondary {
    color: #e3dbff;
    border: 1px solid rgba(167, 139, 250, 0.28);
    background: rgba(14, 18, 30, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.webchat-cta.secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(167, 139, 250, 0.55);
    background: rgba(20, 26, 42, 0.75);
    color: #fff;
}

.webchat-cta.roadmap {
    border-color: rgba(45, 212, 191, 0.34);
    background: rgba(8, 31, 42, 0.68);
}

.webchat-cta.roadmap:hover {
    border-color: rgba(45, 212, 191, 0.7);
    box-shadow: 0 14px 36px rgba(45, 212, 191, 0.14);
}

.webchat-cta i {
    font-size: 13px;
}

.webchat-phone-qr {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(45, 212, 191, 0.32);
    background: rgba(8, 31, 42, 0.72);
    box-shadow: 0 14px 34px rgba(45, 212, 191, 0.10);
}

.webchat-phone-qr img {
    display: block;
    width: 82px;
    height: 82px;
    padding: 6px;
    border-radius: 10px;
    background: #fff;
}

.webchat-phone-qr strong,
.webchat-phone-qr span,
.webchat-phone-qr small {
    display: block;
}

.webchat-phone-qr strong {
    color: #f8fbff;
    font-size: 13px;
    line-height: 1.25;
}

.webchat-phone-qr span {
    margin-top: 3px;
    color: #a7f3d0;
    font-size: 12px;
    line-height: 1.35;
}

.webchat-phone-qr small {
    margin-top: 5px;
    color: #cfe1ff;
    font-size: 11px;
    line-height: 1.35;
}

/* Use case scenarios */
.webchat-scenarios {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.scenario-card {
    position: relative;
    padding: 18px 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(167, 139, 250, 0.18);
    background: linear-gradient(180deg, rgba(20, 26, 42, 0.65), rgba(10, 14, 24, 0.78));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 18px 50px rgba(7, 11, 22, 0.55), 0 0 0 1px rgba(167, 139, 250, 0.15) inset;
}

.scenario-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.scenario-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #c4b5fd;
}

.scenario-card header i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.20), rgba(96, 165, 250, 0.14));
    border: 1px solid rgba(167, 139, 250, 0.28);
    color: #e3dbff;
    font-size: 13px;
}

.scenario-card h4 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.3;
    color: var(--text);
}

.scenario-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

/* Pillar grid (full feature surface) */
.webchat-pillars {
    margin-bottom: 30px;
}

.pillars-title {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c4b5fd;
}

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

.pillar {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(167, 139, 250, 0.14);
    background: linear-gradient(180deg, rgba(16, 22, 36, 0.55), rgba(10, 14, 24, 0.72));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    border-color: rgba(167, 139, 250, 0.40);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(7, 11, 22, 0.45);
}

.pillar.pillar-accent {
    border-color: rgba(167, 139, 250, 0.40);
    background:
        radial-gradient(circle at top right, rgba(167, 139, 250, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(20, 22, 42, 0.70), rgba(12, 14, 28, 0.82));
    box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.12) inset, 0 18px 50px rgba(7, 11, 22, 0.50);
}

.pillar header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(167, 139, 250, 0.10);
}

.pillar header i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.20), rgba(45, 212, 191, 0.12));
    border: 1px solid rgba(167, 139, 250, 0.26);
    color: #d8caff;
    font-size: 12px;
}

.pillar header span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
}

.pillar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pillar li {
    position: relative;
    padding-left: 14px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--muted);
}

.pillar li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4b5fd, #5fb8b8);
}

.pillar code {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #c4b5fd;
    background: rgba(167, 139, 250, 0.10);
    padding: 1px 5px;
    border-radius: 4px;
}

/* API + worker terminal */
.webchat-api {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 22px;
    margin-bottom: 30px;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    background:
        radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(14, 20, 36, 0.55), rgba(10, 14, 24, 0.78));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.api-side {
    align-self: center;
}

.api-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 10px;
}

.api-side h4 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    color: var(--text);
}

.api-side p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.api-side p code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #93c5fd;
    background: rgba(96, 165, 250, 0.10);
    padding: 1px 6px;
    border-radius: 4px;
}

.api-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #93c5fd;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    transition: color 0.2s ease;
}

.api-link:hover {
    color: #fff;
}

.api-terminal {
    border-radius: 14px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    background: rgba(5, 9, 16, 0.85);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(7, 11, 22, 0.45) inset, 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.api-terminal .terminal-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(20, 26, 42, 0.65);
    border-bottom: 1px solid rgba(96, 165, 250, 0.15);
}

.api-terminal .terminal-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(167, 139, 250, 0.55);
}

.api-terminal .terminal-bar span:nth-child(2) {
    background: rgba(96, 165, 250, 0.55);
}

.api-terminal .terminal-bar span:nth-child(3) {
    background: rgba(45, 212, 191, 0.55);
}

.api-terminal .terminal-bar b {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.api-terminal pre {
    margin: 0;
    padding: 16px 18px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.65;
    color: #d4e3ff;
    overflow-x: auto;
}

.api-terminal pre .t-comment {
    color: #7a8bb0;
    font-style: italic;
}

/* Quickbits on the teaser card (gts-team home) */
.webchat-quickbits {
    margin: 18px 0 0;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 22px;
    list-style: none;
    border-radius: 12px;
    border: 1px solid rgba(167, 139, 250, 0.16);
    background: rgba(10, 14, 24, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.webchat-quickbits li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.webchat-quickbits li i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #d8caff;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.20), rgba(45, 212, 191, 0.12));
    border: 1px solid rgba(167, 139, 250, 0.24);
    font-size: 11px;
    flex-shrink: 0;
}

.webchat-quickbits strong {
    color: var(--text);
    font-weight: 700;
}

/* Connect block — how an AI session joins */
.webchat-connect {
    margin-bottom: 30px;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(45, 212, 191, 0.24);
    background:
        radial-gradient(circle at 0% 0%, rgba(45, 212, 191, 0.13), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(167, 139, 250, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(14, 22, 30, 0.62), rgba(10, 14, 24, 0.80));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.connect-header {
    margin-bottom: 20px;
    max-width: 820px;
}

.connect-eyebrow {
    color: #5fb8b8;
}

.connect-header h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text);
}

.connect-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.connect-header em {
    font-style: normal;
    color: #bffef4;
    font-weight: 600;
}

.connect-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 22px;
    align-items: start;
}

.connect-steps {
    margin: 0;
    padding: 6px 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    counter-reset: step;
}

.connect-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(45, 212, 191, 0.16);
    background: rgba(8, 18, 24, 0.55);
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.4;
}

.connect-steps .step-n {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.30), rgba(96, 165, 250, 0.18));
    border: 1px solid rgba(45, 212, 191, 0.35);
    color: #bffef4;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.connect-steps li i {
    color: #93c5fd;
    font-size: 13px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.connect-steps li code {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #bffef4;
    background: rgba(45, 212, 191, 0.10);
    padding: 1px 5px;
    border-radius: 4px;
}

.connect-terminal pre code .t-str {
    color: #fde68a;
}

@media (max-width: 1100px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
}

/* AI Job Center */
.webchat-jobs {
    margin-bottom: 30px;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    background:
        radial-gradient(circle at 100% 0%, rgba(167, 139, 250, 0.14), transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(45, 212, 191, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(14, 20, 36, 0.62), rgba(10, 14, 24, 0.80));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.jobs-header {
    margin-bottom: 18px;
    max-width: 820px;
}

.jobs-eyebrow {
    color: #c4b5fd;
}

.jobs-header h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text);
}

.jobs-header h4 strong {
    background: linear-gradient(120deg, #c4b5fd 0%, #93c5fd 50%, #5fb8b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.jobs-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.jobs-header p code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #c4b5fd;
    background: rgba(167, 139, 250, 0.10);
    padding: 1px 6px;
    border-radius: 4px;
}

.jobs-header p strong {
    color: #c4b5fd;
    font-weight: 800;
}

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

.job {
    position: relative;
    padding: 16px 16px 14px;
    border-radius: 14px;
    border: 1px solid rgba(167, 139, 250, 0.14);
    background: linear-gradient(180deg, rgba(18, 22, 36, 0.55), rgba(10, 14, 24, 0.78));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.job:hover {
    transform: translateY(-2px);
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 14px 38px rgba(7, 11, 22, 0.50);
}

.job-num {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #7a6dbf;
}

.job header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    padding-right: 32px;
}

.job header i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), rgba(45, 212, 191, 0.14));
    border: 1px solid rgba(167, 139, 250, 0.28);
    color: #d8caff;
    font-size: 12px;
}

.job header span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
}

.job p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
}

.job-cmd {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(96, 165, 250, 0.16);
    background: rgba(5, 9, 16, 0.75);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.45;
    color: #cfe1ff;
    word-break: break-word;
}

.jobs-foot {
    margin: 18px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(45, 212, 191, 0.22);
    background: rgba(8, 18, 24, 0.55);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.jobs-foot i {
    color: #5fb8b8;
    margin-right: 6px;
}

.jobs-foot a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 700;
}

.jobs-foot a:hover {
    color: #fff;
}

/* Docs & examples */
.webchat-docs {
    margin-bottom: 30px;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    background:
        radial-gradient(circle at 0% 100%, rgba(96, 165, 250, 0.14), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(167, 139, 250, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(14, 20, 36, 0.62), rgba(10, 14, 24, 0.80));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.docs-header {
    margin-bottom: 18px;
    max-width: 880px;
}

.docs-eyebrow {
    color: #93c5fd;
}

.docs-header h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text);
}

.docs-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.docs-header code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #93c5fd;
    background: rgba(96, 165, 250, 0.10);
    padding: 1px 6px;
    border-radius: 4px;
}

.aud {
    display: inline-block;
    padding: 2px 7px;
    margin-right: 4px;
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid;
}

.aud-user { color: #bffef4; border-color: rgba(45, 212, 191, 0.45); background: rgba(45, 212, 191, 0.12); }
.aud-ai   { color: #e3dbff; border-color: rgba(167, 139, 250, 0.50); background: rgba(167, 139, 250, 0.14); }
.aud-dev  { color: #dceaff; border-color: rgba(96, 165, 250, 0.50); background: rgba(96, 165, 250, 0.14); }

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.doc-card {
    padding: 14px 16px 12px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.14);
    background: linear-gradient(180deg, rgba(16, 22, 36, 0.55), rgba(10, 14, 24, 0.78));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.40);
}

.doc-card.primary-doc {
    border-color: rgba(167, 139, 250, 0.32);
    background:
        radial-gradient(circle at top right, rgba(167, 139, 250, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(20, 22, 42, 0.65), rgba(10, 14, 24, 0.85));
}

.doc-card.roadmap-doc {
    border-color: rgba(45, 212, 191, 0.28);
    background:
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.12), transparent 58%),
        linear-gradient(180deg, rgba(10, 29, 38, 0.62), rgba(10, 14, 24, 0.86));
}

.doc-card header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.doc-card header i {
    color: #93c5fd;
    width: 14px;
    text-align: center;
}

.doc-card header code {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: #dceaff;
    background: rgba(96, 165, 250, 0.10);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.doc-card p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
}

.docs-examples {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(96, 165, 250, 0.18);
}

.examples-title {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #93c5fd;
}

.examples-title i {
    margin-right: 8px;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 14px;
}

.example-term pre {
    max-height: 280px;
}

.example-term pre code .t-str {
    color: #fde68a;
}

/* Full REST endpoint surface */
.webchat-endpoints {
    margin-bottom: 30px;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    background:
        radial-gradient(circle at 100% 0%, rgba(96, 165, 250, 0.12), transparent 55%),
        linear-gradient(180deg, rgba(14, 20, 36, 0.62), rgba(10, 14, 24, 0.80));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.endpoints-header {
    margin-bottom: 16px;
    max-width: 880px;
}

.endpoints-eyebrow {
    color: #93c5fd;
}

.endpoints-header h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text);
}

.endpoints-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.endpoints-header code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #93c5fd;
    background: rgba(96, 165, 250, 0.10);
    padding: 1px 6px;
    border-radius: 4px;
}

.endpoints-header a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 700;
}

.endpoints-header a:hover {
    color: #fff;
}

.endpoint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.endpoint-group {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.14);
    background: linear-gradient(180deg, rgba(16, 22, 36, 0.55), rgba(10, 14, 24, 0.78));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.endpoint-group h5 {
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(96, 165, 250, 0.14);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.01em;
}

.endpoint-group h5 i {
    color: #93c5fd;
    width: 16px;
    text-align: center;
}

.endpoint-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    line-height: 1.45;
    color: #cfe1ff;
}

.endpoint-group li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.endpoint-group li b {
    display: inline-block;
    min-width: 56px;
    padding: 1px 5px;
    margin-right: 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    color: #c4b5fd;
    background: rgba(167, 139, 250, 0.14);
    border: 1px solid rgba(167, 139, 250, 0.30);
}

/* Everyday chat features (regular messenger expectations) */
.webchat-everyday {
    margin-bottom: 30px;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(45, 212, 191, 0.22);
    background:
        radial-gradient(circle at 0% 0%, rgba(45, 212, 191, 0.12), transparent 55%),
        linear-gradient(180deg, rgba(14, 22, 30, 0.62), rgba(10, 14, 24, 0.80));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.everyday-header {
    margin-bottom: 18px;
    max-width: 880px;
}

.everyday-eyebrow {
    color: #5fb8b8;
}

.everyday-header h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text);
}

.everyday-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.everyday-header em {
    font-style: normal;
    color: #bffef4;
    font-weight: 600;
}

.everyday-group {
    margin-bottom: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(45, 212, 191, 0.14);
    background: linear-gradient(180deg, rgba(15, 30, 36, 0.55), rgba(8, 18, 24, 0.75));
}

.everyday-group:last-child {
    margin-bottom: 0;
}

.everyday-group h5 {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #bffef4;
}

.everyday-group h5 i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #bffef4;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.22), rgba(96, 165, 250, 0.12));
    border: 1px solid rgba(45, 212, 191, 0.30);
    font-size: 12px;
}

.everyday-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4px 18px;
}

.everyday-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.4;
}

.everyday-list li i {
    color: #5fb8b8;
    font-size: 11px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

/* App setup (hosted relay) */
.webchat-setup {
    margin-bottom: 30px;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(45, 212, 191, 0.22);
    background:
        radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.13), transparent 55%),
        linear-gradient(180deg, rgba(14, 22, 30, 0.62), rgba(10, 14, 24, 0.80));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.setup-header {
    margin-bottom: 16px;
    max-width: 880px;
}

.setup-eyebrow {
    color: #5fb8b8;
}

.setup-header h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text);
}

.setup-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.setup-header em {
    font-style: normal;
    color: #bffef4;
    font-weight: 600;
}

.setup-header strong {
    color: #c4b5fd;
    font-weight: 700;
}

.setup-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.setup-field {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(45, 212, 191, 0.20);
    background: linear-gradient(180deg, rgba(14, 28, 34, 0.65), rgba(8, 18, 24, 0.80));
}

.setup-field header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.01em;
}

.setup-field header i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.25), rgba(96, 165, 250, 0.14));
    border: 1px solid rgba(45, 212, 191, 0.32);
    color: #bffef4;
    font-size: 12px;
}

.setup-field p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
}

.setup-field p code {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: #bffef4;
    background: rgba(45, 212, 191, 0.10);
    padding: 1px 5px;
    border-radius: 4px;
}

.setup-val {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(96, 165, 250, 0.16);
    background: rgba(5, 9, 16, 0.75);
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: #cfe1ff;
    word-break: break-word;
}

.setup-foot {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(96, 165, 250, 0.20);
    background: rgba(10, 18, 28, 0.55);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.setup-foot i {
    color: #93c5fd;
    margin-right: 6px;
}

/* Private server install — flow + meta */
.webchat-install {
    margin-bottom: 30px;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    background:
        radial-gradient(circle at 100% 0%, rgba(167, 139, 250, 0.14), transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(96, 165, 250, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(14, 20, 36, 0.62), rgba(10, 14, 24, 0.80));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.install-header {
    margin-bottom: 18px;
    max-width: 880px;
}

.install-eyebrow {
    color: #c4b5fd;
}

.install-header h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text);
}

.install-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.install-header code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #c4b5fd;
    background: rgba(167, 139, 250, 0.10);
    padding: 1px 6px;
    border-radius: 4px;
}

.install-flow {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.install-step {
    position: relative;
    padding: 16px 18px 18px 64px;
    border-radius: 14px;
    border: 1px solid rgba(167, 139, 250, 0.18);
    background: linear-gradient(180deg, rgba(20, 24, 42, 0.62), rgba(10, 14, 24, 0.80));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.install-n {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.32), rgba(96, 165, 250, 0.18));
    border: 1px solid rgba(167, 139, 250, 0.42);
    color: #e3dbff;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 800;
}

.install-step > header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
}

.install-step > header i {
    color: #c4b5fd;
}

.install-step > header code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #c4b5fd;
    background: rgba(167, 139, 250, 0.12);
    padding: 1px 5px;
    border-radius: 4px;
}

.install-term pre {
    max-height: 360px;
}

.install-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.install-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: ck;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.install-checklist li {
    counter-increment: ck;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(167, 139, 250, 0.18);
    background: rgba(14, 18, 30, 0.55);
    color: var(--text);
    font-size: 13px;
    line-height: 1.5;
}

.install-checklist li::before {
    content: counter(ck);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.30), rgba(96, 165, 250, 0.16));
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #e3dbff;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
}

.install-checklist li em {
    font-style: normal;
    color: #c4b5fd;
    font-weight: 600;
}

.install-meta {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.install-meta-card {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(167, 139, 250, 0.18);
    background: linear-gradient(180deg, rgba(16, 22, 36, 0.58), rgba(10, 14, 24, 0.78));
}

.install-meta-card h5 {
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
}

.install-meta-card h5 i {
    color: #c4b5fd;
    width: 16px;
    text-align: center;
}

.install-meta-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.55;
}

.install-meta-card p code {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: #cfe1ff;
    background: rgba(96, 165, 250, 0.10);
    padding: 1px 5px;
    border-radius: 4px;
}

.install-meta-card p em {
    font-style: italic;
    color: #c4b5fd;
}

.install-qr-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.install-qr-card img {
    display: block;
    width: 92px;
    height: 92px;
    padding: 7px;
    border-radius: 10px;
    background: #fff;
}

@media (max-width: 1100px) {
    .install-two-col {
        grid-template-columns: 1fr;
    }
}

/* Public vs private relay compare */
.webchat-relay-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.relay-pill {
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid rgba(167, 139, 250, 0.18);
    background: linear-gradient(180deg, rgba(20, 26, 42, 0.55), rgba(10, 14, 24, 0.72));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.relay-pill:hover {
    transform: translateY(-2px);
}

.relay-pill.public {
    border-color: rgba(45, 212, 191, 0.30);
    background:
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.12), transparent 60%),
        linear-gradient(180deg, rgba(15, 30, 36, 0.72), rgba(8, 18, 24, 0.85));
}

.relay-pill.public:hover {
    border-color: rgba(45, 212, 191, 0.50);
}

.relay-pill.private {
    border-color: rgba(167, 139, 250, 0.32);
    background:
        radial-gradient(circle at top right, rgba(167, 139, 250, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(22, 18, 36, 0.72), rgba(12, 10, 22, 0.85));
}

.relay-pill.private:hover {
    border-color: rgba(167, 139, 250, 0.52);
}

.relay-pill header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(167, 139, 250, 0.10);
}

.relay-pill header i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #fff;
    font-size: 13px;
}

.relay-pill.public header i {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.35), rgba(96, 165, 250, 0.20));
    border: 1px solid rgba(45, 212, 191, 0.40);
    color: #bffef4;
}

.relay-pill.private header i {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.32), rgba(96, 165, 250, 0.18));
    border: 1px solid rgba(167, 139, 250, 0.42);
    color: #e3dbff;
}

.relay-pill header span {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.01em;
}

.relay-pill header b {
    margin-left: auto;
    padding: 3px 9px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.relay-pill.public header b {
    background: rgba(45, 212, 191, 0.18);
    border: 1px solid rgba(45, 212, 191, 0.40);
    color: #bffef4;
}

.relay-pill.private header b {
    background: rgba(167, 139, 250, 0.20);
    border: 1px solid rgba(167, 139, 250, 0.42);
    color: #e3dbff;
}

.relay-pill ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.relay-pill li {
    position: relative;
    padding-left: 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.relay-pill li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c4b5fd;
    font-weight: 800;
}

.relay-pill.public li::before {
    color: #5fb8b8;
}

/* Responsive */
@media (max-width: 1100px) {
    .webchat-hero {
        grid-template-columns: 1fr;
    }
    .webchat-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .webchat-cta {
        flex: 1 1 200px;
        justify-content: center;
    }
    .webchat-scenarios,
    .pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .webchat-api {
        grid-template-columns: 1fr;
    }
    .webchat-relay-compare {
        grid-template-columns: 1fr;
    }
    .job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .category-block.category-webchat {
        padding: 26px 18px 30px;
    }
    .webchat-scenarios,
    .pillar-grid,
    .job-grid {
        grid-template-columns: 1fr;
    }
    .webchat-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        flex-direction: initial;
        gap: 5px;
    }
    .webchat-shot img {
        transform: scale(1.3);
        transform-origin: center center;
    }
    .webchat-cta {
        padding: 4px 8px;
        font-size: 10.5px;
        line-height: 1.15;
        gap: 5px;
        border-radius: 7px;
        flex: 0 0 auto;
        min-height: 0;
        justify-content: center;
        text-align: center;
        letter-spacing: 0;
    }
    .webchat-cta i {
        font-size: 9px;
    }
    .webchat-phone-qr {
        grid-column: 1 / -1;
        grid-template-columns: 72px minmax(0, 1fr);
        padding: 9px;
    }
    .webchat-phone-qr img {
        width: 72px;
        height: 72px;
    }
    .webchat-phone-qr strong {
        font-size: 12px;
    }
    .webchat-phone-qr span {
        font-size: 11px;
    }
    .webchat-phone-qr small {
        font-size: 10px;
    }
}

@media (min-width: 641px) and (max-width: 720px) {
    .webchat-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .webchat-cta {
        padding: 6px 10px;
        font-size: 12px;
        line-height: 1.2;
        gap: 6px;
        border-radius: 8px;
        flex: 0 0 auto;
        min-height: 0;
        justify-content: center;
        text-align: center;
    }
    .webchat-cta i {
        font-size: 10px;
    }
}
