/* ── Follow page tokens (light) ──────────────────────── */
.follow-page {
    --ll-surface: #ffffff;
    --ll-border: #d8dde3;
    --ll-text: #10203a;
    --ll-muted: #57606a;
    --ll-body: #374151;
    --ll-accent: #16a34a;
    --ll-accent-hover: #15803d;
    --ll-accent-ink: #0b7c40;
    --ll-accent-line: #0e9f52;
    --ll-shadow: #e9f7ef;
    max-width: 760px;
    margin: 0 auto;
    color: var(--ll-text);
}

/* ── Follow page tokens (dark) ───────────────────────── */
.dark .follow-page {
    --ll-surface: #182b49;
    --ll-border: #2a3f61;
    --ll-text: #e6edf3;
    --ll-muted: #a7b6cc;
    --ll-body: #9ca3af;
    --ll-accent-hover: #22c55e;
    --ll-accent-ink: #60a5fa;
    --ll-accent-line: #60a5fa;
    --ll-shadow: rgba(96, 165, 250, 0.10);
}

/* ── Header ───────────────────────────────────────────── */
.follow-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: clamp(28px, 5vw, 44px);
    border-bottom: 1px solid var(--ll-border);
}

.follow-logo-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    min-height: 44px;
    text-decoration: none;
}

.follow-logo-lockup img {
    width: 32px;
    height: 32px;
    display: block;
}

.follow-wordmark {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ll-text);
}

.follow-name {
    margin: 0 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(28px, 6vw, 38px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ll-text);
}

.follow-credential {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ll-muted);
}

.follow-positioning {
    margin: 0;
    max-width: 34em;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ll-body);
}

/* ── Channel grid ─────────────────────────────────────── */
.follow-nav {
    padding-top: clamp(28px, 5vw, 44px);
}

.follow-kicker {
    margin: 0 0 20px;
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ll-accent-ink);
}

.follow-kicker::before {
    content: "// ";
}

.follow-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}

.follow-grid li {
    display: flex;
}

.follow-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 22px;
    border: 1px solid var(--ll-border);
    background: var(--ll-surface);
    color: var(--ll-text);
    text-decoration: none;
    transition: border-color .15s, box-shadow .15s, color .15s;
}

a.follow-card:hover,
a.follow-card:focus-visible {
    border-color: var(--ll-accent-line);
    box-shadow: 5px 5px 0 var(--ll-shadow);
    color: var(--ll-accent-ink);
}

a.follow-card:focus-visible {
    outline: 2px solid var(--ll-accent-line);
    outline-offset: 3px;
}

.follow-card-coming {
    border: 1px dashed var(--ll-border);
    background: transparent;
    color: var(--ll-muted);
}

.follow-card-icon {
    flex: none;
    margin-top: 2px;
}

.follow-card-icon-logo {
    margin-top: 4px;
}

.follow-card-body {
    display: block;
}

.follow-card-name {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.follow-card-name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.follow-card-name-row .follow-card-name {
    margin-bottom: 0;
    color: var(--ll-text);
}

.follow-card-desc {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ll-muted);
}

.follow-pill {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 7px;
    border: 1px solid var(--ll-border);
    color: var(--ll-muted);
}

/* ── Primary actions ──────────────────────────────────── */
.follow-actions {
    margin-top: clamp(32px, 6vw, 52px);
    padding-top: clamp(28px, 5vw, 40px);
    border-top: 1px solid var(--ll-border);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 220px;
    min-height: 52px;
    padding: 14px 28px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.follow-btn-solid {
    background: var(--ll-accent);
    color: #fff;
    transition: background .15s;
}

.follow-btn-solid:hover,
.follow-btn-solid:focus-visible {
    background: var(--ll-accent-hover);
    color: #fff;
}

.follow-btn-outline {
    border: 1px solid var(--ll-text);
    color: var(--ll-text);
    transition: border-color .15s, color .15s;
}

.follow-btn-outline:hover,
.follow-btn-outline:focus-visible {
    border-color: var(--ll-accent-hover);
    color: var(--ll-accent-ink);
}

/* ── Footer line ──────────────────────────────────────── */
.follow-footer-line {
    margin: 28px 0 0;
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 12px;
    line-height: 1.7;
    color: var(--ll-muted);
}

.follow-footer-line a {
    color: var(--ll-accent-ink);
    text-decoration: none;
}
