/* Shared styles for all landing pages (templates/landing/index.html, team.html,
   technology.html). The home page also layers its own inline <style> block on top
   via {% block page_styles %} for page-specific rules. URLs below are relative
   to this file's location. */

:root {
    --color-bg: #F4F3F0;
    --color-surface: #FDFCFA;
    --color-text: #1A1814;
    --color-text-secondary: #6B6560;
    --color-text-tertiary: #9C9590;
    --color-border: #E3E1DD;
    --color-border-light: #EFEEE9;
    --color-primary: #1A6B6A;
    --color-primary-light: #E0F0EF;
    --color-primary-dark: #124A4A;
    --color-gradient-1: #1A6B6A;
    --color-gradient-2: #1F7E7D;
    --color-gradient-3: #1A6B6A;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

/* Navigation — floating pill.
   Selector is scoped to direct children of <body> so that inner <nav> elements
   (e.g. table-of-contents nav on glossary, breadcrumb nav, in-page nav) don't
   inherit `position: fixed` and stack on top of the main nav. */
body > nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo img {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--color-text);
    background: var(--color-border-light);
}

.nav-links a.btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Agents dropdown — /technology → /agents replacement, Concierge flagged distinct */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}
.nav-dropdown-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3.5px solid currentColor;
    opacity: 0.6;
    margin-left: 0.125rem;
    transition: transform 0.15s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger::after {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 340px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-top: 0;                       /* no gap: menu is flush under the trigger */
    z-index: 100;

    /* Hover-exit forgiveness: fade + delayed hide instead of display:none */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.15s ease,
        transform 0.15s ease,
        visibility 0s linear 0.25s;     /* hide after 250ms grace */
}
/* Invisible bridge extending up into the gap between trigger and menu so a
   quick diagonal cursor movement doesn't break hover. */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease,
        visibility 0s linear 0s;
}

/* Dropdown items — icon + name + sub-description row */
.nav-dropdown-item {
    display: flex !important;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.5rem 0.625rem !important;
    border-radius: 8px !important;
    text-decoration: none;
    color: var(--color-text) !important;
    white-space: normal;
    transition: background 0.1s ease;
}
.nav-dropdown-item:hover {
    background: var(--color-border-light) !important;
}
.nav-dd-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.nav-dd-icon svg { width: 16px; height: 16px; }
.nav-dd-icon-intelligence { background: #EEF2FF; color: #4F46E5; }
.nav-dd-icon-signal       { background: #e9f1f9; color: #2B6FB0; }
.nav-dd-icon-contact      { background: #D1FAE5; color: #047857; }
.nav-dd-icon-drafting     { background: #FEF3C7; color: #D97706; }
.nav-dd-icon-concierge    { background: #e9f1f9; color: #2B6FB0; }

/* Industry dropdown icons (palette mirrors /industries page accents) */
.nav-dd-icon-life-sciences { background: #D1FAE5; color: #047857; }
.nav-dd-icon-saas          { background: #e9f1f9; color: #2B6FB0; }
.nav-dd-icon-cybersecurity { background: #F1F5F9; color: #475569; }
.nav-dd-icon-finance       { background: #ECFDF5; color: #065F46; }
.nav-dd-icon-healthcare    { background: #FEE2E2; color: #BE123C; }
.nav-dd-icon-marketing     { background: #FEF3C7; color: #D97706; }
.nav-dd-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}
.nav-dd-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}
.nav-dd-desc {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    line-height: 1.35;
}

.nav-dropdown-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.375rem 0.25rem;
}
@media (max-width: 860px) {
    .nav-links a[href*="features"],
    .nav-links a[href*="briefs"],
    .nav-links a[href*="faq"] {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: url('./images/blue-watercolor.webp') center/cover;
    color: white;
    box-shadow: 0 2px 12px rgba(26, 107, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 107, 106, 0.4);
    filter: brightness(1.1);
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
}

.btn-ghost:hover {
    color: var(--color-text);
    background: var(--color-border-light);
}

/* Watercolor gradient text helper */
.gradient-text {
    background: url('./images/blue-watercolor.webp') center/cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
footer {
    background: url('./images/footer-bg.webp') center/cover no-repeat;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 0.75rem;
    max-width: 280px;
}

/* Social link in the brand column — matches the 50% → 100% white hover pattern */
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    transition: color 0.15s;
}

.footer-social:hover {
    color: white;
}

.footer-social svg {
    display: block;
}

.footer-column h4 {
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8125rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    body > nav {
        padding: 0.75rem 1rem;
    }
    .nav-container {
        padding: 0.5rem 0.75rem;
    }
    .nav-links a:not(.btn) {
        display: none;
    }
    .footer-grid {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========== Auto-growing textarea (interactive prompt on home page) ========== */
/* https://css-tricks.com/the-cleanest-trick-for-autogrowing-textareas/ */
.textarea-grow-wrap {
    display: grid;
    min-width: 0;
}

.textarea-grow-wrap::after {
    content: attr(data-replicated-value) " ";
    white-space: pre-wrap;
    visibility: hidden;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    font-family: inherit;
    border: 0;
    box-sizing: border-box;
}

.textarea-grow-wrap > textarea,
.textarea-grow-wrap::after {
    grid-area: 1 / 1 / 2 / 2;
    min-width: 0;
    min-height: 38px;
    max-height: 400px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.textarea-grow-wrap > textarea {
    overflow-y: auto;
}

/* ========== Legal pages (privacy, terms) ========== */
.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
}

.legal-page h1 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.legal-meta {
    background: var(--color-surface);
    border-left: 3px solid var(--color-primary);
    padding: 0.875rem 1rem;
    margin: 1.5rem 0 2.5rem;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    border-radius: 0 4px 4px 0;
}

.legal-meta strong {
    color: var(--color-text);
}

.legal-page h2 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.legal-page h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: var(--color-primary-light);
    text-underline-offset: 2px;
}

.legal-page a:hover {
    text-decoration-color: var(--color-primary);
}

.legal-page strong {
    color: var(--color-text);
    font-weight: 600;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.legal-page th,
.legal-page td {
    border: 1px solid var(--color-border);
    padding: 0.75rem;
    text-align: left;
    vertical-align: top;
}

.legal-page th {
    background: var(--color-surface);
    font-weight: 600;
    color: var(--color-text);
}

.legal-page td {
    color: var(--color-text-secondary);
}

.legal-callout {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.legal-callout h3 {
    margin-top: 0;
}

.legal-highlights {
    background: var(--color-primary-light);
    border: 1px solid rgba(26, 107, 106, 0.18);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 2rem;
}

.legal-highlights h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    color: var(--color-primary-dark);
    letter-spacing: 0;
}

.legal-highlights ul {
    margin: 0;
    color: var(--color-primary-dark);
}

.legal-page hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2.5rem 0;
}

.legal-footer-note {
    font-weight: 600;
    text-align: center;
    color: var(--color-text);
    margin-top: 2rem;
}

/* ========== Tooltips (chip hints on home page) ========== */
.tooltip-base {
    position: absolute;
    padding: 6px 12px;
    background: #1f2937;
    color: white;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 50;
}

.has-tooltip:hover .tooltip-base {
    opacity: 1;
}

/* ========== Calendar booking modal ========== */
.calendar-modal {
    width: min(90vw, 1200px);
    height: min(90vh, 800px);
    padding: 0;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.calendar-modal::backdrop {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.calendar-modal[open] {
    animation: calendarModalIn 0.18s ease-out;
}
@keyframes calendarModalIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}
.calendar-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.calendar-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--color-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
}
.calendar-modal-close:hover {
    background: #000;
    transform: scale(1.06);
}

/* ========== Shared CTA banner (above footer on every landing page) ========== */
.landing-cta {
    background: radial-gradient(ellipse at center, #2B2D29 0%, var(--color-text) 70%);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.landing-cta-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-cta h2 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.landing-cta p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.landing-cta .btn-primary {
    color: white;
}

.landing-cta-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.landing-cta-book {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .landing-cta {
        padding: 4rem 1.25rem;
    }
}

.tooltip-above {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
}

.tooltip-above::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1f2937;
}

/* ═══════════════════════════════════════════════════════════
   PLAYS MOCKUP — "Today's Plays" UI used across:
     - hero-brief-card on the home page
     - carousel-card on the home page (#briefs section)
     - intel-brief-frame on /agents/intelligence
     - industry-brief-frame on /industries/<slug>
   Action-oriented framing of the daily brief: a bounded play
   count creates a daily finish line. Purple accent (vs site teal)
   marks "plays mode" as a distinct visual surface.
   ═══════════════════════════════════════════════════════════ */
:root {
    --plays-purple: #7c3aed;
    --plays-purple-dark: #5b21b6;
    --plays-purple-light: #f5f3ff;
    --plays-purple-mid: #ede9fe;
    --plays-purple-border: #ddd6fe;
}
/* Top gradient strip — pink → violet → blue */
.plays-gradient-bar {
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6);
}
/* Header — title + ICP context left, date + counts right */
.plays-header {
    padding: 0.625rem 0.875rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
}
.plays-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}
.plays-header-left { flex: 1; min-width: 0; }
.plays-title {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--color-text);
    line-height: 1.1;
    margin: 0;
}
.plays-icp {
    font-size: 0.625rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    margin: 0.2rem 0 0;
    letter-spacing: -0.005em;
}
.plays-stats {
    font-size: 0.5625rem;
    color: var(--color-text-tertiary);
    margin: 0.15rem 0 0;
    line-height: 1.4;
}
.plays-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    min-width: 88px;
    text-align: right;
}
.plays-date {
    font-size: 0.5rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin: 0 0 0.2rem;
}
.plays-count {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    justify-content: flex-end;
    line-height: 1;
}
.plays-count-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plays-purple);
    letter-spacing: -0.02em;
}
.plays-count-label {
    font-size: 0.6875rem;
    color: var(--plays-purple);
    font-weight: 600;
}
.plays-good-to-know-count {
    font-size: 0.5625rem;
    color: var(--color-text);
    margin: 0.15rem 0 0;
}
/* Individual play card — purple-tinted "action needed" container */
.play-card {
    margin: 0.5rem 0.625rem;
    padding: 0.5rem;
    background: var(--plays-purple-light);
    border-radius: 8px;
}
.play-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}
.play-card-title {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--plays-purple-dark);
}
.play-droplet {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--plays-purple);
    flex-shrink: 0;
}
.play-review-btn {
    font-size: 0.5rem;
    font-weight: 600;
    color: white;
    background: var(--plays-purple);
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    white-space: nowrap;
    line-height: 1.1;
}
/* Inner draft card (white, lives inside purple-tinted play card) */
.play-draft {
    background: white;
    border-radius: 6px;
    padding: 0.4rem 0.5rem;
    border: 1px solid var(--plays-purple-border);
}
.play-draft-recipient {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.25rem;
}
/* Recipient avatar — accepts EITHER <span class="play-monogram indigo">DK</span>
   for letter monograms OR <img class="play-monogram" src="..."> for real photos. */
.play-monogram {
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
    overflow: hidden;
    object-fit: cover;
}
.play-monogram.indigo { background: #e0e7ff; color: #4338ca; }
.play-monogram.emerald { background: #d1fae5; color: #065f46; }
.play-monogram.amber { background: #fef3c7; color: #92400e; }
.play-monogram.rose { background: #ffe4e6; color: #be123c; }
.play-monogram.sky { background: #e0f2fe; color: #075985; }
.play-monogram.violet { background: var(--plays-purple-mid); color: var(--plays-purple-dark); }
.play-recipient-text {
    font-size: 0.625rem;
    color: var(--color-text);
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}
.play-recipient-text strong {
    text-decoration: underline;
    text-underline-offset: 1.5px;
    text-decoration-thickness: 1px;
    font-weight: 700;
}
.play-draft-preview {
    font-size: 0.5625rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    font-style: italic;
}
/* "WHAT TRIGGERED THIS" subsection — purple eyebrow + signal entry */
.play-trigger-section { margin-top: 0.4rem; }
.play-trigger-eyebrow {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--plays-purple-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}
.play-trigger-row {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}
.play-trigger-logo {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    background: white;
    border: 1px solid var(--plays-purple-border);
    padding: 1px;
}
.play-trigger-content { flex: 1; min-width: 0; }
.play-trigger-title {
    font-size: 0.625rem;
    line-height: 1.35;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}
.play-trigger-summary {
    font-size: 0.5625rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
}
.play-trigger-summary strong {
    color: inherit;
    font-weight: inherit;
}
/* Inline source citation — appended to end of trigger-summary text. Gray + underlined. */
.play-trigger-source {
    color: var(--color-text-tertiary);
    text-decoration: underline;
    text-underline-offset: 1.5px;
    text-decoration-thickness: 0.5px;
    white-space: nowrap;
    margin-left: 0.125rem;
}
.gtk-summary .play-trigger-source { font-size: inherit; }
/* "GOOD TO KNOW" divider — separates plays from passive intel */
.gtk-divider {
    padding: 0.625rem 1rem 0.3rem;
    margin-top: 0.25rem;
}
.gtk-divider-label {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--plays-purple-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
/* GTK entry — passive intel, no action needed */
.gtk-entry {
    padding: 0.4rem 1rem;
    border-bottom: 1px solid var(--color-border-light);
}
.gtk-entry:last-child { border-bottom: none; }
.gtk-head {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}
.gtk-logo {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    padding: 1px;
}
.gtk-title {
    font-size: 0.625rem;
    line-height: 1.35;
    color: var(--color-text);
    flex: 1;
}
.gtk-summary {
    font-size: 0.5625rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-top: 0.25rem;
    margin-left: 1.5rem;
}
