/* ===== /saleshq — product page styles ===== */
/* Page-specific. Inherits design tokens from /styles.css. */

/* Hero */
.hq-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}
.hq-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.10);
    border: 1px solid rgba(99, 102, 241, 0.32);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 28px;
}
.hq-hero-dot {
    width: 7px; height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: hq-pulse 1.6s ease-in-out infinite;
}
@keyframes hq-pulse {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}
.hq-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.hq-grad {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hq-hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.55;
}
.hq-hero-cta {
    display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.hq-hero-cta .btn { font-size: 15px; padding: 13px 24px; }
.hq-hero-meta {
    margin-top: 40px;
    display: inline-flex; gap: 28px; flex-wrap: wrap; justify-content: center;
    font-size: 12px;
    color: var(--text-subtle);
    font-family: 'IBM Plex Mono', monospace;
}
.hq-hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hq-hero-meta span::before {
    content: ''; width: 5px; height: 5px;
    background: var(--green); border-radius: 50%;
}

/* Three-up capabilities ribbon */
.hq-ribbon {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(99,102,241,0.04) 0%, transparent 100%);
}
.hq-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}
.hq-ribbon-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.hq-ribbon-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}
.hq-ribbon-icon {
    font-size: 24px;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.30);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}

/* TriggerHQ flagship section */
.hq-trigger {
    position: relative;
    padding: 110px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.22) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(34,211,238,0.16) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, #0a0a14 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.hq-trigger::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hq-trigger > .container { position: relative; z-index: 1; text-align: center; }
.hq-trigger-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(139,92,246,0.14);
    border: 1px solid rgba(139,92,246,0.40);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #c4b5fd;
    margin-bottom: 26px;
}
.hq-trigger-eyebrow::before {
    content: ''; width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: hq-pulse 1.6s ease-in-out infinite;
}
.hq-trigger h2 {
    font-size: clamp(34px, 5.2vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.hq-trigger-sub {
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 56px;
}
.hq-trigger-sub strong { color: var(--text); font-weight: 600; }

/* Live-feed mock */
.hq-trigger-feed {
    max-width: 760px;
    margin: 0 auto 56px;
    background: rgba(13,13,20,0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139,92,246,0.30);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px -24px rgba(139,92,246,0.30);
    overflow: hidden;
    text-align: left;
}
.hq-trigger-feed-hd {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(139,92,246,0.20);
    background: rgba(139,92,246,0.05);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-subtle);
}
.hq-trigger-feed-hd-live {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--green);
}
.hq-trigger-feed-hd-live::before {
    content: ''; width: 7px; height: 7px;
    background: var(--green); border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: hq-pulse 1.4s ease-in-out infinite;
}
.hq-trigger-feed-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(139,92,246,0.10);
    font-size: 14px;
}
.hq-trigger-feed-item:last-child { border-bottom: none; }
.hq-trigger-feed-icon {
    font-size: 18px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(139,92,246,0.18);
    border: 1px solid rgba(139,92,246,0.32);
    display: inline-flex; align-items: center; justify-content: center;
}
.hq-trigger-feed-name {
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}
.hq-trigger-feed-meta {
    color: var(--text-subtle);
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.02em;
}
.hq-trigger-feed-signals {
    background: rgba(34,211,238,0.12);
    border: 1px solid rgba(34,211,238,0.32);
    color: var(--cyan);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    white-space: nowrap;
}
.hq-trigger-feed-time {
    color: var(--text-subtle);
    font-size: 11px;
    font-family: 'IBM Plex Mono', monospace;
    white-space: nowrap;
}

/* Power bullets */
.hq-trigger-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
}
.hq-trigger-bullet {
    padding-left: 18px;
    border-left: 2px solid var(--accent);
}
.hq-trigger-bullet strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.hq-trigger-bullet span {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .hq-trigger { padding: 80px 0 70px; }
    .hq-trigger-feed-item {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }
    .hq-trigger-feed-signals { grid-column: 2; }
    .hq-trigger-feed-time { display: none; }
}

/* Feature sections (alternating two-column) */
.hq-feature {
    padding: 90px 0;
}
.hq-feature + .hq-feature { border-top: 1px solid var(--border-subtle); }
.hq-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hq-feature.reverse .hq-feature-grid { direction: rtl; }
.hq-feature.reverse .hq-feature-grid > * { direction: ltr; }
.hq-feature-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
}
.hq-feature h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.hq-feature p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.hq-feature ul {
    list-style: none;
    padding: 0;
    margin-top: 22px;
}
.hq-feature li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 11px;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.55;
}
.hq-feature li::before {
    content: ''; position: absolute;
    left: 0; top: 8px;
    width: 14px; height: 2px;
    background: var(--cyan);
    border-radius: 1px;
}
.hq-feature strong { color: var(--text); font-weight: 600; }

/* Mock visual card next to feature copy */
.hq-mock {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 24px 48px -24px rgba(99,102,241,0.20);
    position: relative;
    overflow: hidden;
}
.hq-mock::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.50), transparent);
}
.hq-mock-row {
    display: flex; align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    gap: 14px;
    font-size: 13.5px;
}
.hq-mock-row:last-child { border-bottom: none; }
.hq-mock-row .hq-mock-name {
    flex: 1; color: var(--text); font-weight: 500;
}
.hq-mock-row .hq-mock-meta {
    color: var(--text-subtle);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
}
.hq-mock-pill {
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10.5px;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}
.hq-pill-green { background: rgba(16, 185, 129, 0.14); color: var(--green); border: 1px solid rgba(16,185,129,0.30); }
.hq-pill-cyan  { background: rgba(34, 211, 238, 0.14); color: var(--cyan);  border: 1px solid rgba(34,211,238,0.30); }
.hq-pill-amber { background: rgba(245, 158, 11, 0.14); color: var(--orange); border: 1px solid rgba(245,158,11,0.30); }
.hq-pill-pink  { background: rgba(236, 72, 153, 0.14); color: var(--pink);  border: 1px solid rgba(236,72,153,0.30); }

.hq-mock-stat {
    display: flex; justify-content: space-between; padding: 8px 0;
    font-size: 13px;
}
.hq-mock-stat-val { color: var(--text); font-weight: 600; font-family: 'IBM Plex Mono', monospace; }
.hq-mock-stat-key { color: var(--text-subtle); }
.hq-mock-bar {
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}
.hq-mock-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    border-radius: 2px;
}

/* Who-it's-for strip */
.hq-who {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(34,211,238,0.04) 100%);
    text-align: center;
}
.hq-who h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.hq-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 36px;
}
.hq-who-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 18px;
    text-align: left;
}
.hq-who-card strong {
    display: block;
    font-size: 14.5px;
    color: var(--text);
    margin-bottom: 4px;
    font-weight: 600;
}
.hq-who-card span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Request access form */
.hq-cta-section {
    padding: 90px 0 120px;
    text-align: center;
}
.hq-cta-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--cyan);
    margin-bottom: 14px;
}
.hq-cta-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.hq-cta-section > .container > p {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 36px;
    font-size: 16px;
    line-height: 1.55;
}
.hq-form {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.hq-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.hq-form-fld { margin-bottom: 14px; }
.hq-form-fld label {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hq-form-fld input,
.hq-form-fld select {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.15s;
}
.hq-form-fld input:focus,
.hq-form-fld select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.18);
}
.hq-form-submit {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: transform 0.15s, opacity 0.15s;
}
.hq-form-submit:hover { transform: translateY(-1px); }
.hq-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.hq-form-note {
    font-size: 11.5px;
    color: var(--text-subtle);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}
.hq-form-err {
    background: rgba(239,68,68,0.10);
    border: 1px solid rgba(239,68,68,0.32);
    color: #fca5a5;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 14px;
    display: none;
}
.hq-form-success {
    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(16,185,129,0.32);
    color: #6ee7b7;
    padding: 18px;
    border-radius: var(--radius);
    text-align: center;
    display: none;
}
.hq-form-success strong { color: var(--text); display: block; margin-bottom: 6px; }

/* Mobile */
@media (max-width: 880px) {
    .hq-hero { padding: 110px 0 60px; }
    .hq-feature-grid { grid-template-columns: 1fr; gap: 40px; }
    .hq-feature.reverse .hq-feature-grid { direction: ltr; }
    .hq-form-row { grid-template-columns: 1fr; }
}
