:root {
    --prosu-navy: #08110d;
    --prosu-blue: #eef4ee;
    --prosu-green: #7fb55d;
    --prosu-ink: #131c18;
    --prosu-sand: #151f1a;
    --prosu-green-soft: #18251d;
    --prosu-surface: #06100d;
    --prosu-card: #121b17;
    --prosu-line: #22302a;
    --prosu-line-strong: #314039;
    --prosu-text: #eef4ee;
    --prosu-muted: #93a095;
    --prosu-success: #17231c;
    --prosu-poll-blue: #56baf3;
    --prosu-poll-yellow: #f2c85f;
    --prosu-poll-purple: #9364da;
    --prosu-poll-orange: #f0643f;
    --prosu-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
    --prosu-shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.22);
    --radius-2xl: 28px;
    --radius-xl: 22px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 12px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html,
body {
    background: var(--prosu-surface);
    color: var(--prosu-text);
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}

.prosu-page .page__background,
.feed-page .page__background {
    background: var(--prosu-surface);
}

.prosu-page .page__content {
    background: transparent;
}

.onboarding-page .page__content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    scroll-padding-bottom: calc(var(--safe-bottom) + 32px + 32px + 32px);
    touch-action: pan-y;
}

.safe-area {
    padding: calc(env(safe-area-inset-top, 0px) + 18px) 16px calc(var(--safe-bottom) + 18px);
}

.safe-area-x {
    padding-left: 16px;
    padding-right: 16px;
}

.content-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.onboarding-page .safe-area.content-stack {
    min-height: max-content;
    padding-bottom: calc(var(--safe-bottom) + 32px + 32px + 32px);
}

.onboarding-page .content-stack > .primary-button:last-child {
    flex: 0 0 auto;
    margin-bottom: 32px;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3 {
    color: var(--prosu-blue);
}

h1 {
    font-size: clamp(2rem, 6vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

h2 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

p {
    line-height: 1.5;
}

button,
select {
    font: inherit;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

.muted,
.feed-subline,
.section-head p,
.pulse-head p {
    color: var(--prosu-muted);
    font-size: 0.92rem;
}

.eyebrow,
.step-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--prosu-green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prosu-toolbar.toolbar {
    background: rgba(244, 247, 244, 0.94);
    color: var(--prosu-blue);
    border-bottom: 1px solid var(--prosu-line);
    backdrop-filter: blur(10px);
}

.prosu-toolbar .toolbar__title,
.prosu-toolbar .toolbar-button,
.prosu-toolbar ons-back-button,
.prosu-toolbar .back-button__label,
.prosu-toolbar .back-button__icon {
    color: var(--prosu-blue) !important;
    font-weight: 700;
}

.intro-shell {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100vh;
}

.intro-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand-lockup,
.small-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-badge {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--prosu-green-soft);
    color: var(--prosu-green);
    font-size: 1rem;
    flex: 0 0 auto;
}

.brand-badge.small {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 0.92rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-text strong,
.small-brand span:last-child {
    color: var(--prosu-blue);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-text span {
    color: var(--prosu-muted);
    font-size: 0.74rem;
    font-weight: 600;
}

.mini-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--prosu-line);
    border-radius: 999px;
    background: var(--prosu-card);
    color: var(--prosu-blue);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.intro-panel,
.form-section,
.pulse-card,
.feed-header,
.feed-card {
    background: var(--prosu-card);
    border: 1px solid var(--prosu-line);
    border-radius: var(--radius-xl);
    box-shadow: var(--prosu-shadow-soft);
}

.intro-panel {
    background: var(--prosu-navy);
    border-color: rgba(22, 42, 96, 0.2);
    color: #ffffff;
    padding: 22px;
    margin-top: auto;
}

.intro-panel h1,
.intro-panel p,
.intro-panel .eyebrow {
    color: #ffffff;
}

.intro-panel .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 12px;
}

.intro-copy {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 32ch;
}

.intro-points {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.intro-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.intro-point:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.intro-point i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.intro-point strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.intro-point span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    margin-top: 2px;
}

.intro-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.meta-card {
    min-height: 86px;
    padding: 14px 12px;
    border-radius: var(--radius-lg);
    background: var(--prosu-card);
    border: 1px solid var(--prosu-line);
    box-shadow: var(--prosu-shadow-soft);
}

.meta-card strong {
    display: block;
    color: var(--prosu-blue);
    font-size: 0.9rem;
    font-weight: 800;
}

.meta-card span {
    display: block;
    color: var(--prosu-muted);
    font-size: 0.76rem;
    margin-top: 4px;
}

.primary-button.button,
.primary-button.button--large {
    min-height: 54px;
    background: var(--prosu-green);
    color: #ffffff;
    border-radius: 16px;
    border: 0;
    font-size: 0.96rem;
    font-weight: 700;
    box-shadow: 0 14px 26px rgba(5, 121, 71, 0.18);
}

.step-shell {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.step-copy {
    display: grid;
    gap: 6px;
}

.step-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.step-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--prosu-line);
}

.step-dots span.active {
    background: var(--prosu-green);
}

.step-dots span.done {
    background: var(--prosu-blue);
}

.form-section {
    padding: 16px;
}

.section-head,
.pulse-head {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.section-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--prosu-green-soft);
    color: var(--prosu-green);
    font-size: 1rem;
}

.section-icon.small {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.92rem;
}

.choice-grid,
.pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.choice-card,
.pill {
    border: 1px solid var(--prosu-line);
    background: var(--prosu-card);
    color: var(--prosu-text);
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.choice-card {
    min-height: 116px;
    padding: 14px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.choice-card .choice-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--prosu-green-soft);
    color: var(--prosu-green);
    font-size: 1rem;
}

.choice-card strong {
    color: var(--prosu-blue);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.choice-card small {
    color: var(--prosu-muted);
    font-size: 0.76rem;
    line-height: 1.35;
}

.choice-card.selected,
.pill.selected {
    border-color: var(--prosu-green);
    background: var(--prosu-success);
}

.choice-card.selected .choice-icon {
    background: var(--prosu-green);
    color: #ffffff;
}

.pill {
    min-height: 48px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

.field-card {
    padding: 14px;
    border-radius: var(--radius-lg);
    background: var(--prosu-surface);
    border: 1px solid var(--prosu-line);
}

.field-card label {
    display: block;
    color: var(--prosu-blue);
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.field-card select {
    width: 100%;
    height: 46px;
    border: 1px solid var(--prosu-line-strong);
    border-radius: 12px;
    padding: 0 12px;
    background: #ffffff;
    color: var(--prosu-text);
}

.pulse-card {
    padding: 16px;
}

.pulse-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pulse-card button {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--prosu-line);
    border-radius: 999px;
    background: var(--prosu-card);
    color: var(--prosu-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.pulse-card button.selected {
    background: var(--prosu-blue);
    border-color: var(--prosu-blue);
    color: #ffffff;
}

.feed-toolbar.toolbar {
    background: rgba(244, 247, 244, 0.94);
}

.toolbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-right: 6px;
}

.toolbar-icon-button,
.install-button,
.secondary-link-button,
.quick-pulse button,
.bottom-tabs button,
.reaction-chip,
.engagement button,
.cta-button,
.poll-option,
.choice-card,
.pill,
.pulse-card button {
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.toolbar-icon-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    border: 1px solid var(--prosu-line);
    border-radius: 12px;
    background: var(--prosu-card);
    color: var(--prosu-blue);
}

.install-button {
    min-height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    background: var(--prosu-green);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
}

.feed-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    margin-top: 6px;
    margin-bottom: 8px;
}

.feed-title-block {
    display: grid;
    gap: 8px;
}

.feed-title-block h2 {
    font-size: 1.28rem;
}

.feed-status {
    display: inline-flex;
    gap: 6px;
    justify-items: end;
}

.secondary-link-button {
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--prosu-line);
    border-radius: 999px;
    background: var(--prosu-card);
    color: var(--prosu-blue);
    font-size: 0.78rem;
    font-weight: 700;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--prosu-success);
    color: var(--prosu-green);
    font-size: 0.74rem;
    font-weight: 700;
}

.live-badge span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--prosu-green);
}

.quick-pulse {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.quick-pulse button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--prosu-line);
    border-radius: 999px;
    background: var(--prosu-card);
    color: var(--prosu-blue);
    font-size: 0.78rem;
    font-weight: 700;
}

.feed-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: calc(94px + var(--safe-bottom));
}

.feed-card {
    padding: 0 0 16px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--prosu-card);
}

.feed-card > :not(.media-hero) {
    padding-left: 16px;
    padding-right: 16px;
}

.feed-card.generated {
    border-color: rgba(0, 73, 125, 0.18);
}

.feed-card.sponsored {
    border-color: rgba(5, 121, 71, 0.28);
    background: #fbfdfb;
}

.card-topline,
.card-chip-group,
.trend-badges,
.reaction-bar,
.social-summary,
.engagement .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-topline {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    margin-bottom: 12px;
}

.compact-row {
    align-items: center;
}

.source-chip,
.type-chip,
.sponsor-chip,
.trend-badges span {
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.source-chip {
    background: #eef3f8;
    color: var(--prosu-blue);
}

.type-chip {
    background: var(--prosu-green-soft);
    color: var(--prosu-green);
}

.sponsor-chip {
    background: #f3f7ee;
    color: var(--prosu-green);
}

.trend-badges {
    margin-bottom: 12px;
}

.trend-badges span {
    background: #f4f7f4;
    color: var(--prosu-blue);
    border: 1px solid var(--prosu-line);
}

.feed-card h3 {
    margin-bottom: 8px;
    font-size: 1.22rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.headline-group {
    display: grid;
    gap: 6px;
}

.feed-card .hook {
    color: var(--prosu-green);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.38;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-card .body {
    color: var(--prosu-muted);
    font-size: 0.84rem;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-hero {
    position: relative;
    min-height: 214px;
    padding: 18px;
    display: grid;
    align-content: space-between;
    gap: 14px;
    overflow: hidden;
    border-bottom: 1px solid var(--prosu-line);
}

.media-hero::before,
.media-hero::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.media-kicker-row,
.media-hero-content,
.media-footline,
.story-panels,
.chart-stack,
.video-play-shell {
    position: relative;
    z-index: 1;
}

.media-kicker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.media-kicker,
.media-meta-pill {
    min-height: 30px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.media-kicker {
    background: rgba(255, 255, 255, 0.78);
    color: inherit;
}

.media-meta-pill {
    background: rgba(22, 42, 96, 0.12);
    color: inherit;
}

.media-title-stack {
    display: grid;
    gap: 6px;
    max-width: 22ch;
}

.media-title-stack strong {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.media-title-stack span {
    font-size: 0.98rem;
    line-height: 1.28;
    font-weight: 600;
}

.media-footline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.9;
}

.media-hero.tone-sand,
.media-hero.tone-green {
    color: var(--prosu-blue);
}

.media-hero.tone-sand {
    background: var(--prosu-sand);
}

.media-hero.tone-green {
    background: #e7f1ea;
}

.media-hero.tone-blue {
    background: #dbe8f3;
    color: var(--prosu-blue);
}

.media-hero.tone-navy {
    background: var(--prosu-navy);
    color: #ffffff;
}

.media-hero.tone-ink {
    background: var(--prosu-ink);
    color: #ffffff;
}

.media-hero.tone-navy .media-kicker,
.media-hero.tone-ink .media-kicker {
    background: rgba(255, 255, 255, 0.12);
}

.media-hero.tone-navy .media-meta-pill,
.media-hero.tone-ink .media-meta-pill {
    background: rgba(255, 255, 255, 0.16);
}

.story-hero::before,
.offer-hero::before,
.video-hero::before,
.chart-hero::before,
.poll-hero::before {
    right: -18px;
    bottom: -18px;
    width: 132px;
    height: 132px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    transform: rotate(14deg);
}

.story-hero::after,
.video-hero::after {
    top: 24px;
    right: 18px;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
}

.story-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: end;
    min-height: 92px;
}

.story-panels span {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

.story-panels span:nth-child(1) {
    height: 76px;
}

.story-panels span:nth-child(2) {
    height: 104px;
}

.story-panels span:nth-child(3) {
    height: 62px;
}

.poll-hero .poll-pill-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.poll-pill-stack span {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: inherit;
    font-size: 0.78rem;
    font-weight: 700;
}

.chart-stack {
    min-height: 118px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 10px;
}

.chart-column {
    display: grid;
    justify-items: center;
    gap: 8px;
}

.chart-bar {
    width: 100%;
    max-width: 52px;
    min-height: 34px;
    border-radius: 16px 16px 10px 10px;
    background: rgba(255, 255, 255, 0.88);
}

.chart-column small {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.video-play-shell {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.video-play-button,
.offer-badge {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--prosu-blue);
    box-shadow: 0 10px 24px rgba(22, 42, 96, 0.12);
}

.video-play-button i {
    margin-left: 3px;
}

.offer-hero .media-hero-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.offer-badge {
    flex: 0 0 auto;
}

.data-visual,
.region-quote,
.comment-preview,
.poll-option {
    border-radius: 16px;
}

.data-visual {
    margin-top: 14px;
    padding: 14px;
    background: var(--prosu-surface);
    border: 1px solid var(--prosu-line);
}

.data-row {
    display: grid;
    grid-template-columns: 96px 1fr 36px;
    gap: 8px;
    align-items: center;
    margin: 8px 0;
    color: var(--prosu-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.data-row span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.data-row strong {
    color: var(--prosu-blue);
}

.data-bar {
    height: 8px;
    background: #dde6e1;
    border-radius: 999px;
    overflow: hidden;
}

.data-bar span {
    display: block;
    height: 100%;
    background: var(--prosu-green);
    border-radius: 999px;
}

.region-quote {
    margin-top: 14px;
    padding: 14px;
    background: #f7faf8;
    border: 1px solid var(--prosu-line);
}

.quote-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--prosu-green);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.region-quote p {
    margin-top: 8px;
    color: var(--prosu-blue);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.45;
}

.region-quote span:last-child {
    display: inline-block;
    margin-top: 8px;
    color: var(--prosu-muted);
    font-size: 0.8rem;
}

.reaction-bar {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reaction-chip {
    min-height: 46px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--prosu-line);
    border-radius: 16px;
    background: var(--prosu-card);
    color: var(--prosu-blue);
    font-size: 0.78rem;
    font-weight: 700;
}

.reaction-chip.active {
    background: var(--prosu-blue);
    border-color: var(--prosu-blue);
    color: #ffffff;
}

.comment-preview-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.comment-preview {
    padding: 12px 13px;
    background: var(--prosu-surface);
    border: 1px solid var(--prosu-line);
}

.comment-preview strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--prosu-blue);
    font-size: 0.74rem;
    font-weight: 700;
}

.comment-preview p {
    margin-top: 6px;
    color: var(--prosu-muted);
    font-size: 0.84rem;
}

.poll-options {
    display: grid;
    gap: 9px;
    margin-top: 14px;
}

.poll-question {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--prosu-blue);
    font-size: 0.92rem;
}

.poll-option {
    position: relative;
    overflow: hidden;
    min-height: 44px;
    padding: 12px 14px;
    border: 1px solid var(--prosu-line);
    background: var(--prosu-surface);
    color: var(--prosu-text);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: left;
}

.poll-option .bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: rgba(5, 121, 71, 0.12);
}

.poll-option span,
.poll-option small {
    position: relative;
    z-index: 1;
}

.poll-option small {
    float: right;
    color: var(--prosu-green);
}

.muted-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--prosu-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.tags {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 12px;
}

.tags span {
    flex: 0 0 auto;
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--prosu-surface);
    color: var(--prosu-muted);
    font-size: 0.74rem;
    font-weight: 600;
}

.engagement {
    display: grid;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--prosu-line);
}

.social-summary {
    color: var(--prosu-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.social-summary span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.engagement .actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.engagement button,
.cta-button {
    min-height: 46px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--prosu-line);
    border-radius: 16px;
    background: var(--prosu-card);
    color: var(--prosu-blue);
    font-size: 0.78rem;
    font-weight: 700;
}

.cta-button {
    grid-column: 1 / -1;
    background: var(--prosu-green);
    border-color: var(--prosu-green);
    color: #ffffff;
}

.engagement button.active-action {
    background: var(--prosu-success);
    border-color: var(--prosu-green);
    color: var(--prosu-green);
}

.feed-loader {
    display: none;
    color: var(--prosu-muted);
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 14px 0 calc(96px + var(--safe-bottom));
}

.pull-text {
    color: var(--prosu-blue);
    font-size: 0.8rem;
    font-weight: 700;
}

.bottom-tabs {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + var(--safe-bottom));
    height: 70px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--prosu-line);
    border-radius: 24px;
    box-shadow: var(--prosu-shadow);
    overflow: hidden;
    z-index: 20;
}

.bottom-tabs button {
    border: 0;
    background: transparent;
    color: var(--prosu-muted);
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    margin: 6px;
    border-radius: 16px;
}

.bottom-tabs button i {
    font-size: 1rem;
}

.bottom-tabs button.active {
    color: var(--prosu-blue);
    background: #edf3f8;
}

.toolbar-icon-button:hover,
.install-button:hover,
.secondary-link-button:hover,
.quick-pulse button:hover,
.bottom-tabs button:hover,
.reaction-chip:hover,
.engagement button:hover,
.cta-button:hover,
.choice-card:hover,
.pill:hover,
.pulse-card button:hover,
.poll-option:hover {
    transform: translateY(-1px);
}

.toolbar-icon-button:focus-visible,
.install-button:focus-visible,
.secondary-link-button:focus-visible,
.quick-pulse button:focus-visible,
.bottom-tabs button:focus-visible,
.reaction-chip:focus-visible,
.engagement button:focus-visible,
.cta-button:focus-visible,
.choice-card:focus-visible,
.pill:focus-visible,
.pulse-card button:focus-visible,
.poll-option:focus-visible,
.field-card select:focus-visible {
    outline: 2px solid var(--prosu-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .toolbar-icon-button,
    .install-button,
    .secondary-link-button,
    .quick-pulse button,
    .bottom-tabs button,
    .reaction-chip,
    .engagement button,
    .cta-button,
    .poll-option,
    .choice-card,
    .pill,
    .pulse-card button {
        transition: none;
    }
}

@media (max-width: 380px) {
    .engagement .actions,
    .reaction-bar {
        grid-template-columns: 1fr;
    }

    .offer-hero .media-hero-content {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (min-width: 620px) {
    .safe-area,
    .safe-area-x {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    .bottom-tabs {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top center, rgba(127, 181, 93, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%);
    z-index: 0;
}

body,
.safe-area,
.safe-area-x {
    position: relative;
    z-index: 1;
}

.prosu-page .page__background,
.feed-page .page__background {
    background: linear-gradient(180deg, #07110d 0%, #08120f 100%);
}

h1,
h2,
h3 {
    color: var(--prosu-text);
}

.muted,
.feed-subline,
.section-head p,
.pulse-head p,
.brand-text span,
.meta-card span,
.comment-preview p,
.social-summary,
.muted-dark,
.region-quote span:last-child {
    color: var(--prosu-muted);
}

.eyebrow,
.step-label,
.quote-kicker,
.live-badge,
.pull-text {
    color: var(--prosu-green);
}

.prosu-toolbar.toolbar,
.feed-toolbar.toolbar {
    background: rgba(6, 14, 11, 0.92);
    color: var(--prosu-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.prosu-toolbar .toolbar__title,
.prosu-toolbar .toolbar-button,
.prosu-toolbar .back-button,
.prosu-toolbar ons-back-button,
.prosu-toolbar .back-button__label,
.prosu-toolbar .back-button__icon,
.prosu-toolbar .back-button__icon::before {
    color: var(--prosu-text) !important;
}

.prosu-toolbar .back-button__icon svg,
.prosu-toolbar .back-button__icon svg * {
    fill: var(--prosu-text) !important;
    stroke: var(--prosu-text) !important;
}

.intro-shell {
    gap: 18px;
}

.brand-badge,
.brand-badge.small,
.section-icon,
.section-icon.small,
.choice-card .choice-icon,
.toolbar-icon-button {
    background: #17211c;
    color: var(--prosu-green);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.brand-text strong,
.small-brand span:last-child {
    color: var(--prosu-text);
}

.mini-status {
    background: #131c18;
    color: var(--prosu-text);
    border-color: var(--prosu-line);
}

.intro-panel,
.form-section,
.pulse-card,
.feed-header,
.feed-card,
.meta-card,
.field-card,
.data-visual,
.region-quote,
.comment-preview,
.bottom-tabs {
    background: rgba(18, 27, 23, 0.96);
    border-color: rgba(255, 255, 255, 0.055);
    box-shadow: var(--prosu-shadow-soft);
}

.intro-panel {
    padding: 24px;
    margin-top: 10px;
    background:
        radial-gradient(circle at top right, rgba(127, 181, 93, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(18, 27, 23, 0.98), rgba(11, 18, 15, 0.98));
}

.intro-panel .eyebrow {
    background: rgba(127, 181, 93, 0.13);
    border: 1px solid rgba(127, 181, 93, 0.2);
    color: #e9f3e2;
}

.intro-panel h1,
.intro-panel p,
.intro-panel .eyebrow,
.intro-point strong,
.mini-status,
.meta-card strong {
    color: var(--prosu-text);
}

.intro-point {
    border-top-color: rgba(255, 255, 255, 0.055);
}

.intro-point span {
    color: var(--prosu-muted);
}

.intro-point i {
    background: rgba(127, 181, 93, 0.14);
    color: var(--prosu-green);
}

.intro-meta {
    gap: 12px;
}

.meta-card {
    min-height: 92px;
    background: rgba(17, 26, 22, 0.9);
}

.step-dots span {
    background: rgba(255, 255, 255, 0.12);
}

.step-dots span.active,
.step-dots span.done {
    background: var(--prosu-green);
}

.primary-button.button,
.primary-button.button--large,
.install-button,
.cta-button {
    background: var(--prosu-green);
    color: #f5f8f2;
    border: 0;
    box-shadow: none;
}

.primary-button.button,
.primary-button.button--large {
    border-radius: 14px;
    font-weight: 800;
}

.secondary-link-button,
.toolbar-icon-button,
.quick-pulse button,
.engagement button,
.reaction-chip,
.poll-option,
.choice-card,
.pill,
.pulse-card button,
.field-card select {
    background: #17211c;
    color: var(--prosu-text);
    border-color: rgba(255, 255, 255, 0.055);
}

.choice-card,
.pill,
.field-card,
.poll-option,
.reaction-chip,
.engagement button,
.quick-pulse button {
    box-shadow: none;
}

.choice-card strong,
.field-card label,
.poll-question,
.feed-card h3,
.region-quote p,
.comment-preview strong,
.social-summary span,
.source-chip,
.type-chip,
.sponsor-chip {
    color: var(--prosu-text);
}

.choice-card small {
    color: var(--prosu-muted);
}

.choice-card.selected,
.pill.selected,
.pulse-card button.selected,
.engagement button.active-action,
.reaction-chip.active {
    background: rgba(127, 181, 93, 0.2);
    border-color: rgba(127, 181, 93, 0.48);
    color: #ecf5e7;
}

.choice-card.selected .choice-icon {
    background: var(--prosu-green);
    color: #08110d;
}

.field-card select {
    color-scheme: dark;
}

.feed-header {
    padding-top: 20px;
    padding-bottom: 20px;
    background:
        radial-gradient(circle at top right, rgba(127, 181, 93, 0.09), transparent 38%),
        rgba(12, 18, 15, 0.92);
}

.feed-title-block h2 {
    letter-spacing: -0.04em;
}

.live-badge {
    background: rgba(127, 181, 93, 0.16);
    border: 1px solid rgba(127, 181, 93, 0.26);
}

.live-badge span {
    background: var(--prosu-green);
}

.quick-pulse button {
    min-height: 46px;
    border-radius: 14px;
    color: var(--prosu-muted);
}

.quick-pulse button i {
    color: var(--prosu-green);
}

.feed-list {
    gap: 16px;
}

.feed-card {
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(18, 27, 23, 0.98), rgba(13, 21, 17, 0.98));
}

.feed-card.generated {
    border-color: rgba(127, 181, 93, 0.18);
}

.feed-card.sponsored {
    border-color: rgba(127, 181, 93, 0.32);
    background:
        radial-gradient(circle at top right, rgba(127, 181, 93, 0.11), transparent 32%),
        linear-gradient(180deg, rgba(18, 27, 23, 0.98), rgba(13, 21, 17, 0.98));
}

.source-chip,
.type-chip,
.sponsor-chip,
.trend-badges span,
.media-kicker,
.media-meta-pill,
.poll-pill-stack span,
.tags span {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.045);
    color: var(--prosu-text);
}

.type-chip,
.sponsor-chip,
.trend-badges span i,
.source-chip i,
.type-chip i,
.sponsor-chip i {
    color: var(--prosu-green);
}

.feed-card .hook {
    color: #dce7d5;
}

.feed-card .body {
    color: var(--prosu-muted);
}

.media-hero {
    min-height: 188px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(circle at top right, rgba(127, 181, 93, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(19, 30, 24, 0.98), rgba(10, 16, 13, 0.98));
}

.media-hero::before {
    background: rgba(255, 255, 255, 0.05);
}

.media-hero::after {
    background: rgba(127, 181, 93, 0.08);
}

.media-hero.tone-sand,
.media-hero.tone-green,
.media-hero.tone-blue,
.media-hero.tone-navy,
.media-hero.tone-ink {
    color: var(--prosu-text);
}

.media-hero.tone-green {
    background:
        radial-gradient(circle at top right, rgba(127, 181, 93, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(18, 33, 23, 0.98), rgba(11, 18, 14, 0.98));
}

.media-hero.tone-blue {
    background:
        radial-gradient(circle at top right, rgba(206, 174, 76, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(28, 31, 18, 0.98), rgba(14, 16, 11, 0.98));
}

.media-hero.tone-navy {
    background:
        radial-gradient(circle at top right, rgba(127, 181, 93, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(15, 22, 19, 0.98), rgba(8, 14, 11, 0.98));
}

.media-hero.tone-ink {
    background:
        radial-gradient(circle at top right, rgba(209, 93, 61, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(26, 22, 18, 0.98), rgba(14, 12, 10, 0.98));
}

.media-title-stack strong,
.media-title-stack span,
.media-footline,
.chart-column small {
    color: var(--prosu-text);
}

.story-panels span,
.chart-bar,
.video-play-shell,
.video-play-button,
.offer-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--prosu-text);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.chart-column:nth-child(1) .chart-bar {
    background: #7fb55d;
}

.chart-column:nth-child(2) .chart-bar {
    background: #d0b145;
}

.chart-column:nth-child(3) .chart-bar {
    background: #d45a39;
}

.video-play-button,
.offer-badge {
    background: rgba(127, 181, 93, 0.18);
    color: #eef4ee;
}

.data-bar {
    background: rgba(255, 255, 255, 0.08);
}

.data-bar span {
    background: var(--prosu-green);
}

.poll-option .bar {
    background: rgba(127, 181, 93, 0.18);
}

.poll-option small {
    color: #dce7d5;
}

.region-quote,
.comment-preview,
.data-visual,
.field-card {
    background: rgba(20, 29, 25, 0.92);
}

.engagement {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.engagement button,
.secondary-link-button {
    color: var(--prosu-muted);
}

.engagement button i,
.secondary-link-button i,
.toolbar-icon-button i {
    color: var(--prosu-green);
}

.bottom-tabs {
    background: rgba(12, 18, 15, 0.96);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

.bottom-tabs button {
    color: #8f9b90;
}

.bottom-tabs button.active {
    color: var(--prosu-green);
    background: rgba(127, 181, 93, 0.12);
}

.toolbar-icon-button:hover,
.install-button:hover,
.secondary-link-button:hover,
.quick-pulse button:hover,
.bottom-tabs button:hover,
.reaction-chip:hover,
.engagement button:hover,
.cta-button:hover,
.choice-card:hover,
.pill:hover,
.pulse-card button:hover,
.poll-option:hover {
    transform: translateY(-1px);
    border-color: rgba(127, 181, 93, 0.34);
}

.toolbar-icon-button:focus-visible,
.install-button:focus-visible,
.secondary-link-button:focus-visible,
.quick-pulse button:focus-visible,
.bottom-tabs button:focus-visible,
.reaction-chip:focus-visible,
.engagement button:focus-visible,
.cta-button:focus-visible,
.choice-card:focus-visible,
.pill:focus-visible,
.pulse-card button:focus-visible,
.poll-option:focus-visible,
.field-card select:focus-visible {
    outline: 2px solid rgba(127, 181, 93, 0.8);
    outline-offset: 2px;
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 8px;
}

.card-meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    min-width: 0;
    color: var(--prosu-muted);
    font-size: 0.74rem;
    font-weight: 600;
}

.meta-source,
.meta-detail,
.meta-separator {
    color: var(--prosu-muted);
}

.card-meta .meta-separator,
.card-meta .meta-detail {
    display: none;
}

.signal-pill {
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: rgba(127, 181, 93, 0.11);
    border: 1px solid rgba(127, 181, 93, 0.18);
    color: #dce7d5;
    font-size: 0.72rem;
    font-weight: 700;
    flex: 0 0 auto;
}

.signal-pill i {
    color: var(--prosu-green);
}

.feed-card h3 {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.headline-group {
    gap: 4px;
}

.feed-card .hook {
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #dbe4d7;
    -webkit-line-clamp: 1;
}

.feed-card .body {
    margin-top: 6px;
    font-size: 0.78rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
}

.media-kicker-row {
    justify-content: flex-start;
}

.media-kicker {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--prosu-text);
}

.media-footline {
    display: none;
}

.poll-pill-stack span {
    min-height: 30px;
    font-size: 0.74rem;
}

.clean-reaction-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
}

.clean-reaction-chip {
    min-height: 38px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    background: #17211c;
    color: var(--prosu-muted);
    font-size: 0.74rem;
    font-weight: 700;
}

.clean-reaction-chip i {
    color: var(--prosu-green);
}

.clean-reaction-chip.active {
    background: rgba(127, 181, 93, 0.18);
    border-color: rgba(127, 181, 93, 0.46);
    color: #edf4e9;
}

.clean-comment-preview {
    margin-top: 10px;
    padding: 11px 13px;
    border-radius: 14px;
    background: rgba(20, 29, 25, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.clean-comment-preview strong {
    display: block;
    color: var(--prosu-text);
    font-size: 0.74rem;
    font-weight: 700;
}

.clean-comment-preview p {
    margin-top: 5px;
    color: var(--prosu-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.social-summary {
    gap: 10px;
}

.engagement .actions.compact-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 44px;
    gap: 7px;
}

.engagement button,
.cta-button {
    min-height: 44px;
    font-size: 0.76rem;
}

.feed-status .secondary-link-button {
    display: none;
}

.icon-action {
    padding: 0;
    justify-content: center;
}

.icon-action span {
    display: none;
}

.toolbar-feed-title {
    color: var(--prosu-text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.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;
}

.reference-feed-page .page__content {
    padding-top: 0;
}

.reference-feed-page ons-pull-hook,
.reference-feed-page .pull-hook {
    min-height: 0 !important;
    height: 0 !important;
    overflow: hidden;
    background: transparent !important;
    border: 0 !important;
}

.reference-toolbar.toolbar {
    min-height: 0;
    height: 0;
    border: 0;
    background: transparent;
}

.reference-feed-shell {
    padding-top: calc(env(safe-area-inset-top, 0px) + 18px);
    display: grid;
    gap: 18px;
}

.reference-status-row,
.reference-brand-row,
.reference-switch-row,
.reference-filter-row,
.reference-card-head,
.reference-card-footer,
.reference-card-stats {
    display: flex;
    align-items: center;
}

.reference-status-row,
.reference-switch-row {
    justify-content: space-between;
}

.reference-status-row {
    color: #f3f6f1;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.reference-status-icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f3f6f1;
}

.battery-pill {
    width: 24px;
    height: 12px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    position: relative;
}

.battery-pill::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4px;
    width: 3px;
    height: 6px;
    border-radius: 0 2px 2px 0;
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-50%);
}

.reference-brand-row {
    justify-content: space-between;
    margin-top: 2px;
}

.reference-brand {
    color: #f3f6f1;
    font-size: 2.05rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.notify-button,
.filter-square {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(18, 27, 23, 0.92);
    color: #f3f6f1;
    position: relative;
}

.notify-button i,
.filter-square i {
    font-size: 1rem;
}

.notify-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f26a47;
}

.reference-switch-row button,
.reference-filter-row button,
.reference-bottom-nav button,
.reference-card-footer button,
.notify-button,
.filter-square {
    border: 0;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

.reference-switch-row button {
    flex: 1 1 0;
    background: transparent;
    color: rgba(243, 246, 241, 0.56);
    font-size: 1rem;
    font-weight: 700;
    padding: 0 0 10px;
}

.reference-switch-row button.active {
    color: #f3f6f1;
}

.reference-switch-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    margin-top: -10px;
}

.reference-switch-line span {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 2px;
    background: #86be61;
}

.reference-filter-row {
    gap: 12px;
}

.reference-filter-row button {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(18, 27, 23, 0.92);
    color: rgba(243, 246, 241, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
}

.reference-filter-row button.active {
    background: #86be61;
    color: #102114;
}

.reference-filter-row .filter-square {
    margin-left: auto;
    padding: 0;
    background: rgba(18, 27, 23, 0.94);
    color: #f3f6f1;
}

.reference-feed-list {
    padding-top: 16px;
    padding-bottom: calc(108px + var(--safe-bottom));
    gap: 16px;
}

.reference-card {
    padding: 18px;
    border-radius: 26px;
    background: rgba(17, 25, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.reference-card-head {
    justify-content: space-between;
    gap: 12px;
}

.reference-source {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.reference-avatar {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #86be61;
    color: #102114;
    flex: 0 0 auto;
}

.reference-source-copy {
    min-width: 0;
}

.reference-source-copy strong {
    display: block;
    color: #f3f6f1;
    font-size: 0.98rem;
    font-weight: 700;
}

.reference-source-copy span {
    display: block;
    color: rgba(243, 246, 241, 0.52);
    font-size: 0.78rem;
    margin-top: 3px;
}

.reference-head-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.reference-card-pill {
    min-height: 36px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 14px;
    background: rgba(134, 190, 97, 0.14);
    color: #9ad270;
    font-size: 0.88rem;
    font-weight: 700;
}

.reference-more-button {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: transparent;
    color: rgba(243, 246, 241, 0.62);
}

.reference-card-content {
    margin-top: 16px;
}

.reference-card-title {
    color: #f3f6f1;
    font-size: 1.18rem;
    line-height: 1.34;
    letter-spacing: -0.04em;
}

.sound-guess-card .reference-card-title {
    font-size: 1.28rem;
}

.sound-guess-card .reference-card-title span {
    color: #86be61;
}

.reference-card-copy {
    margin-top: 10px;
    color: rgba(243, 246, 241, 0.66);
    font-size: 0.88rem;
    line-height: 1.5;
}

.sound-guess-player {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.sound-play-button {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 2px solid #86be61;
    background: transparent;
    color: #f3f6f1;
}

.sound-waveform {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sound-waveform span {
    width: 3px;
    border-radius: 999px;
    background: #86be61;
    opacity: 0.95;
}

.sound-duration {
    color: rgba(243, 246, 241, 0.68);
    font-size: 0.9rem;
    font-weight: 600;
}

.reference-visual {
    position: relative;
    margin-top: 16px;
    height: 178px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(43, 53, 47, 0.56), rgba(23, 30, 25, 0.96));
}

.tractor-sound-visual {
    background:
        radial-gradient(circle at 84% 20%, rgba(248, 197, 112, 0.42), transparent 24%),
        linear-gradient(180deg, rgba(72, 80, 66, 0.18), rgba(13, 18, 16, 0.94) 78%);
}

.tractor-cabin-glow {
    position: absolute;
    left: 28px;
    top: 46px;
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: radial-gradient(circle at 30% 20%, rgba(151, 227, 255, 0.72), rgba(10, 24, 26, 0.12) 58%, transparent 72%);
    filter: blur(2px);
}

.tractor-body {
    position: absolute;
    inset: 24px 180px 18px 0;
    border-radius: 0 0 28px 0;
    background: linear-gradient(180deg, rgba(31, 66, 40, 0.9), rgba(12, 20, 17, 1));
    box-shadow: inset -30px -10px 50px rgba(0, 0, 0, 0.34);
}

.tractor-wheel {
    position: absolute;
    bottom: -18px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 46%, rgba(100, 88, 68, 0.24), rgba(41, 34, 26, 0.94) 62%);
    box-shadow: inset 0 0 0 14px rgba(191, 176, 143, 0.12);
}

.tractor-wheel-large {
    right: 48px;
    width: 132px;
    height: 132px;
}

.tractor-wheel-small {
    left: 118px;
    width: 88px;
    height: 88px;
}

.visual-field {
    background:
        linear-gradient(180deg, rgba(76, 92, 70, 0.32), rgba(16, 20, 18, 0.96)),
        linear-gradient(125deg, rgba(50, 76, 58, 0.56), rgba(24, 31, 28, 0.98));
}

.visual-gold {
    background:
        linear-gradient(180deg, rgba(125, 102, 56, 0.28), rgba(16, 20, 18, 0.96)),
        linear-gradient(125deg, rgba(82, 67, 37, 0.52), rgba(24, 31, 28, 0.98));
}

.visual-steel {
    background:
        linear-gradient(180deg, rgba(88, 99, 111, 0.28), rgba(16, 20, 18, 0.96)),
        linear-gradient(125deg, rgba(52, 60, 70, 0.54), rgba(24, 31, 28, 0.98));
}

.visual-horizon {
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(25, 30, 26, 0), rgba(12, 17, 15, 0.98));
}

.visual-machine {
    position: absolute;
    inset: auto 26px 18px 26px;
    height: 92px;
    border-radius: 18px 18px 26px 26px;
    background: linear-gradient(180deg, rgba(184, 192, 196, 0.34), rgba(37, 44, 42, 0.9));
    box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.24);
}

.reference-card-footer {
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.reference-card-stats {
    gap: 14px;
}

.reference-stat-button,
.reference-card-cta {
    background: transparent;
    color: rgba(243, 246, 241, 0.72);
}

.reference-stat-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
}

.reference-stat-button i {
    font-size: 1rem;
}

.reference-stat-button.active,
.reference-stat-button.active i,
.reference-card-cta {
    color: #86be61;
}

.reference-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
}

.reference-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 18px calc(18px + var(--safe-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    background: rgba(11, 17, 14, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.3);
    z-index: 25;
}

.reference-bottom-nav button {
    background: transparent;
    color: rgba(243, 246, 241, 0.7);
    display: grid;
    justify-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
}

.reference-bottom-nav button i {
    font-size: 1.25rem;
}

.reference-bottom-nav button.active {
    color: #86be61;
}

.reference-plus-button {
    width: 58px;
    height: 58px;
    margin: -22px auto 0;
    border-radius: 18px;
    background: #86be61 !important;
    color: #102114 !important;
}

.reference-plus-button i {
    font-size: 1.45rem !important;
}

@media (max-width: 380px) {
    .clean-reaction-bar {
        grid-template-columns: 1fr;
    }
}

.reference-feed-page .page__content {
    background: #07110d;
}

.reference-feed-page ons-pull-hook,
.reference-feed-page .pull-hook {
    display: none !important;
}

.reference-feed-shell {
    padding-top: calc(env(safe-area-inset-top, 0px) + 18px);
    gap: 14px;
}

.reference-brand-row {
    margin-top: 0;
}

.reference-brand {
    font-size: 2.6rem;
    letter-spacing: -0.06em;
}

.reference-brand-logo {
    width: auto;
    height: 40px;
    display: block;
}

.notify-button {
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.notify-button i {
    font-size: 1.65rem;
}

.notify-dot {
    top: 1px;
    right: -3px;
}

.reference-switch-row button {
    padding-bottom: 8px;
    font-size: 0.98rem;
}

.reference-switch-line {
    margin-top: -8px;
}

.reference-filter-row {
    gap: 10px;
}

.reference-filter-row button {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 15px;
    font-size: 0.88rem;
    white-space: nowrap;
}

.reference-filter-row .filter-square {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.reference-feed-list {
    padding-top: 14px;
    gap: 14px;
}

.reference-card {
    padding: 16px 16px 14px;
    border-radius: 24px;
    background: rgba(15, 23, 19, 0.98);
    border-color: rgba(255, 255, 255, 0.06);
}

.reference-card-head {
    gap: 10px;
}

.reference-avatar {
    width: 40px;
    height: 40px;
}

.reference-source-copy strong {
    font-size: 0.96rem;
}

.reference-source-copy span {
    margin-top: 2px;
    font-size: 0.76rem;
}

.reference-head-actions {
    gap: 0;
}

.reference-card-pill {
    display: none !important;
}

.reference-more-button {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    padding: 2px 0 2px 6px;
    margin: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    color: rgba(243, 246, 241, 0.56);
}

.reference-more-button i {
    font-size: 1rem;
}

.reference-card-content {
    margin-top: 14px;
}

.reference-card-title {
    font-size: 1.16rem;
    line-height: 1.3;
}

.sound-guess-card .reference-card-title {
    font-size: 1.3rem;
}

.reference-card-copy {
    margin-top: 8px;
    color: rgba(243, 246, 241, 0.64);
    font-size: 0.84rem;
    line-height: 1.46;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sound-guess-card .reference-card-copy {
    max-width: none;
}

.sound-guess-player {
    margin-top: 14px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
}

.sound-play-button {
    width: 42px;
    height: 42px;
}

.sound-waveform {
    height: 28px;
    gap: 3px;
}

.sound-waveform span {
    width: 2px;
}

.sound-waveform .wave-0 { height: 8px; }
.sound-waveform .wave-1 { height: 10px; }
.sound-waveform .wave-2 { height: 13px; }
.sound-waveform .wave-3 { height: 16px; }
.sound-waveform .wave-4 { height: 18px; }
.sound-waveform .wave-5 { height: 20px; }
.sound-waveform .wave-6 { height: 22px; }
.sound-waveform .wave-7 { height: 24px; }
.sound-waveform .wave-8 { height: 26px; }

.reference-visual {
    margin-top: 14px;
    height: 158px;
    border-radius: 20px;
}

.reference-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tractor-sound-visual {
    background:
        radial-gradient(circle at 84% 22%, rgba(232, 180, 103, 0.52), transparent 24%),
        linear-gradient(90deg, rgba(8, 13, 11, 0.86) 0 42%, rgba(27, 35, 31, 0.34) 56%, rgba(101, 80, 47, 0.14) 100%),
        linear-gradient(180deg, rgba(60, 67, 60, 0.14), rgba(12, 18, 15, 0.96) 82%);
}

.tractor-sound-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 14, 12, 0) 38%, rgba(7, 11, 9, 0.9) 100%),
        radial-gradient(circle at 16% 28%, rgba(135, 219, 255, 0.46), transparent 13%);
    pointer-events: none;
}

.tractor-cabin-glow {
    left: 26px;
    top: 52px;
    width: 68px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(182, 240, 255, 0.98), rgba(64, 122, 132, 0.14) 76%);
    filter: blur(1px);
}

.tractor-body {
    inset: 18px 168px 0 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(42, 82, 50, 0.88) 0 20%, rgba(17, 24, 20, 0.96) 22% 100%);
    box-shadow: inset -14px 0 24px rgba(0, 0, 0, 0.26);
}

.tractor-body::before {
    content: "";
    position: absolute;
    left: 0;
    right: 34px;
    top: 20px;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgba(8, 12, 10, 0.08));
}

.tractor-wheel {
    background: radial-gradient(circle at 52% 48%, rgba(113, 98, 76, 0.16), rgba(50, 43, 32, 0.96) 60%);
    box-shadow: inset 0 0 0 10px rgba(176, 159, 123, 0.12);
}

.tractor-wheel-large {
    right: 44px;
    bottom: -16px;
    width: 114px;
    height: 114px;
}

.tractor-wheel-small {
    left: 114px;
    bottom: -8px;
    width: 74px;
    height: 74px;
}

.visual-horizon {
    height: 46%;
}

.visual-machine {
    inset: auto 22px 16px 22px;
    height: 84px;
    border-radius: 16px 16px 22px 22px;
}

.reference-card-footer {
    margin-top: 12px;
    gap: 10px;
}

.reference-card-stats {
    gap: 12px;
}

.reference-stat-button {
    gap: 6px;
    font-size: 0.84rem;
}

.reference-card-cta {
    gap: 6px;
    font-size: 0.88rem;
}

.reference-card-cta i {
    font-size: 0.94rem;
}

.reference-bottom-nav {
    padding: 10px 18px calc(14px + var(--safe-bottom));
    grid-template-columns: 1fr 1fr 72px 1fr 1fr;
}

.reference-bottom-nav button {
    min-height: 0;
    padding: 0;
    gap: 4px;
    font-size: 0.76rem;
}

.reference-plus-button {
    width: 58px;
    height: 58px;
    margin: -18px auto 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: start;
    border-radius: 18px;
    border: 0 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.reference-plus-button span {
    display: none;
}

.prosu-poll-card {
    position: relative;
    padding: 16px 16px 16px;
    overflow: hidden;
}

.prosu-poll-avatar {
    background: var(--prosu-green);
    color: var(--prosu-blue);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.prosu-poll-avatar i {
    font-size: 1.14rem;
}

.prosu-poll-badge {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border-radius: 10px;
    background: var(--prosu-green-soft);
    color: var(--prosu-green);
    font-size: 0.82rem;
    font-weight: 700;
}

.prosu-poll-content {
    margin-top: 20px;
}

.prosu-poll-title {
    max-width: none;
    font-size: 1.3rem;
    line-height: 1.24;
    font-weight: 800;
}

.prosu-poll-copy {
    margin-top: 12px;
    color: rgba(238, 244, 238, 0.72);
    font-size: 0.92rem;
    line-height: 1.42;
    display: block;
    overflow: visible;
    -webkit-line-clamp: initial;
}

.prosu-poll-copy i {
    color: var(--prosu-green);
    margin-left: 4px;
}

.prosu-poll-options {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.prosu-poll-option {
    position: relative;
    min-height: 72px;
    width: 100%;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-rows: 1fr 8px;
    align-items: center;
    column-gap: 12px;
    row-gap: 8px;
    padding: 10px 12px 8px;
    border: 1px solid var(--prosu-line-strong);
    border-radius: 14px;
    background: rgba(18, 27, 23, 0.72);
    color: var(--prosu-blue);
    text-align: left;
}

.prosu-poll-option-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--prosu-green);
    color: var(--prosu-blue);
    font-size: 0.92rem;
}

.prosu-poll-option-icon.tone-weather {
    background: var(--prosu-poll-blue);
    color: var(--prosu-navy);
}

.prosu-poll-option-icon.tone-prices {
    background: var(--prosu-poll-yellow);
    color: var(--prosu-navy);
}

.prosu-poll-option-icon.tone-rules {
    background: var(--prosu-poll-purple);
    color: var(--prosu-blue);
}

.prosu-poll-option-icon.tone-costs {
    background: var(--prosu-poll-orange);
    color: var(--prosu-blue);
}

.prosu-poll-option-label {
    min-width: 0;
    color: var(--prosu-blue);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.28;
}

.prosu-poll-option strong {
    color: rgba(238, 244, 238, 0.76);
    font-size: 1.16rem;
    font-weight: 500;
}

.prosu-poll-track {
    grid-column: 1 / -1;
    position: relative;
    height: 4px;
    margin-left: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(238, 244, 238, 0.1);
}

.prosu-poll-fill {
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: inherit;
    background: var(--prosu-green);
}

.prosu-poll-fill.pct-8 { width: 8%; }
.prosu-poll-fill.pct-11 { width: 11%; }
.prosu-poll-fill.pct-23 { width: 23%; }
.prosu-poll-fill.pct-26 { width: 26%; }
.prosu-poll-fill.pct-32 { width: 32%; }

.prosu-poll-meta {
    margin-top: 16px;
    color: rgba(238, 244, 238, 0.72);
    font-size: 0.86rem;
    line-height: 1.3;
}

.prosu-poll-footer {
    margin-top: 20px;
}

.feed-ad-card {
    position: relative;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: var(--prosu-card);
}

.feed-ad-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 16, 13, 0.96) 0 34%, rgba(6, 16, 13, 0.68) 54%, rgba(6, 16, 13, 0.08) 100%),
        linear-gradient(180deg, rgba(6, 16, 13, 0.08) 0 58%, rgba(6, 16, 13, 0.72) 100%);
    pointer-events: none;
}

.feed-ad-card > * {
    position: relative;
    z-index: 1;
}

.feed-ad-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(6, 16, 13, 0.08), rgba(6, 16, 13, 0.18)),
        url("/images/feed-ad-cow.png") 61% center / auto 100% no-repeat;
}

.feed-ad-stable {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(238, 244, 238, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(6, 16, 13, 0), rgba(6, 16, 13, 0.38));
    opacity: 1;
}

.feed-ad-savings {
    position: absolute;
    right: 14px;
    bottom: 112px;
    width: 148px;
    min-height: 82px;
    padding: 10px;
    border: 1px solid rgba(238, 244, 238, 0.12);
    border-radius: 18px;
    background: rgba(9, 17, 14, 0.8);
    box-shadow: var(--prosu-shadow-soft);
}

.feed-ad-savings span,
.feed-ad-savings small {
    display: block;
    color: rgba(238, 244, 238, 0.7);
    font-size: 0.74rem;
    line-height: 1.2;
}

.feed-ad-savings strong {
    display: block;
    margin-top: 6px;
    color: var(--prosu-green);
    font-size: 1.16rem;
    line-height: 1;
    font-weight: 900;
}

.feed-ad-chart {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: end;
    gap: 5px;
}

.feed-ad-chart i {
    width: 8px;
    border-radius: 2px 2px 0 0;
    background: rgba(127, 181, 93, 0.66);
}

.feed-ad-chart i:nth-child(1) { height: 14px; }
.feed-ad-chart i:nth-child(2) { height: 20px; }
.feed-ad-chart i:nth-child(3) { height: 24px; }
.feed-ad-chart i:nth-child(4) { height: 29px; }
.feed-ad-chart i:nth-child(5) { height: 36px; }

.feed-ad-chart span {
    position: absolute;
    left: -2px;
    right: -2px;
    top: 6px;
    height: 22px;
    border-top: 4px solid var(--prosu-green);
    border-right: 4px solid var(--prosu-green);
    transform: skewY(-24deg);
}

.feed-ad-overlay {
    padding: 16px 16px 0;
}

.feed-ad-avatar {
    background: var(--prosu-blue);
    color: var(--prosu-green);
}

.feed-ad-sponsored {
    color: rgba(238, 244, 238, 0.7);
    font-size: 0.82rem;
    font-weight: 600;
}

.feed-ad-copy {
    margin-top: 22px;
}

.feed-ad-copy h3 {
    max-width: 15.8ch;
    color: var(--prosu-blue);
    font-size: 1.48rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.feed-ad-copy h3 span {
    color: var(--prosu-green);
}

.feed-ad-subtitle {
    max-width: 23ch;
    margin-top: 10px;
    color: rgba(238, 244, 238, 0.86);
    font-size: 0.88rem;
    line-height: 1.28;
    font-weight: 600;
}

.feed-ad-body {
    max-width: 28ch;
    margin-top: 8px;
    color: rgba(238, 244, 238, 0.66);
    font-size: 0.72rem;
    line-height: 1.34;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.feed-ad-benefits {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.feed-ad-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--prosu-blue);
    font-size: 0.78rem;
    font-weight: 700;
}

.feed-ad-benefits i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--prosu-green);
    border-radius: 999px;
    color: var(--prosu-green);
    font-size: 0.72rem;
}

.feed-ad-cta-strip {
    width: 100%;
    min-height: 66px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 10px 16px;
    border: 0;
    background: var(--prosu-green-soft);
    color: var(--prosu-blue);
    text-align: left;
}

.feed-ad-cta-strip strong,
.feed-ad-cta-strip small {
    display: block;
}

.feed-ad-cta-strip strong {
    font-size: 0.84rem;
    line-height: 1.24;
    font-weight: 900;
}

.feed-ad-cta-strip small {
    margin-top: 4px;
    color: rgba(238, 244, 238, 0.72);
    font-size: 0.72rem;
    line-height: 1.2;
}

.feed-ad-cta-icon,
.feed-ad-cta-strip > i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(6, 16, 13, 0.72);
    color: var(--prosu-blue);
    font-size: 1rem;
}

.feed-ad-footer {
    padding: 10px 16px 14px;
}

.building-ad-card::after {
    background:
        linear-gradient(90deg, rgba(6, 16, 13, 0.94) 0 42%, rgba(6, 16, 13, 0.58) 66%, rgba(6, 16, 13, 0.12) 100%),
        linear-gradient(180deg, rgba(6, 16, 13, 0.04) 0 56%, rgba(6, 16, 13, 0.82) 100%);
}

.building-ad-visual {
    background:
        linear-gradient(180deg, rgba(6, 16, 13, 0.04), rgba(6, 16, 13, 0.18)),
        url("/images/feed-ad-building.png") 60% center / auto 100% no-repeat;
}

.building-ad-stable {
    background:
        radial-gradient(circle at 78% 28%, rgba(238, 244, 238, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(6, 16, 13, 0), rgba(6, 16, 13, 0.5));
}

.building-ad-overlay {
    padding-top: 16px;
}

.building-ad-avatar {
    background: var(--prosu-green-soft);
}

.building-ad-copy {
    margin-top: 20px;
}

.building-ad-copy h3 {
    max-width: 12.6ch;
    color: var(--prosu-blue);
    font-size: 1.2rem;
    line-height: 1.12;
}

.building-ad-copy h3 span {
    display: block;
    margin-top: 4px;
    color: var(--prosu-green);
}

.building-ad-body {
    max-width: 26ch;
    margin-top: 8px;
    -webkit-line-clamp: 3;
}

.building-ad-benefits {
    gap: 8px;
    margin-top: 12px;
}

.building-ad-benefits span {
    font-size: 0.76rem;
}

.building-ad-benefits i {
    border-color: rgba(127, 181, 93, 0.72);
    background: rgba(6, 16, 13, 0.54);
}

.building-ad-offer {
    position: absolute;
    right: 12px;
    top: 92px;
    width: 132px;
    padding: 8px;
    border: 1px solid rgba(238, 244, 238, 0.14);
    border-radius: 18px;
    background: rgba(9, 17, 14, 0.82);
    box-shadow: var(--prosu-shadow-soft);
}

.building-ad-offer span,
.building-ad-offer small {
    display: block;
    color: rgba(238, 244, 238, 0.68);
    font-size: 0.68rem;
    line-height: 1.24;
}

.building-ad-offer strong {
    display: block;
    margin-top: 4px;
    color: var(--prosu-blue);
    font-size: 0.76rem;
    line-height: 1.2;
    font-weight: 900;
}

.building-ad-offer small {
    margin-top: 8px;
}

.building-ad-cta-strip {
    margin-top: 12px;
}

.feed-ad-drawer-shell {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, background-color 180ms ease;
}

.feed-ad-drawer-shell.active {
    background: rgba(0, 0, 0, 0.48);
    opacity: 1;
    pointer-events: auto;
}

.feed-ad-drawer {
    width: min(100%, 430px);
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    padding: 10px 16px calc(16px + var(--safe-bottom));
    border: 1px solid var(--prosu-line);
    border-radius: 24px 24px 18px 18px;
    background: var(--prosu-card);
    box-shadow: var(--prosu-shadow);
    transform: translateY(24px);
    transition: transform 180ms ease;
}

.feed-ad-drawer-shell.active .feed-ad-drawer {
    transform: translateY(0);
}

.feed-ad-drawer-handle {
    width: 46px;
    height: 5px;
    display: block;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: rgba(238, 244, 238, 0.18);
}

.feed-ad-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.feed-ad-drawer-top strong,
.feed-ad-drawer-top span {
    display: block;
}

.feed-ad-drawer-top strong {
    color: var(--prosu-blue);
    font-size: 1rem;
    font-weight: 900;
}

.feed-ad-drawer-top span {
    margin-top: 3px;
    color: var(--prosu-muted);
    font-size: 0.78rem;
}

.feed-ad-drawer-top button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--prosu-line);
    border-radius: 999px;
    background: var(--prosu-green-soft);
    color: var(--prosu-blue);
}

.feed-ad-drawer-progress {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.feed-ad-drawer-progress span {
    color: var(--prosu-green);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.feed-ad-drawer-progress div {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(238, 244, 238, 0.08);
}

.feed-ad-drawer-progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--prosu-green);
}

.feed-ad-drawer-progress .step-1 { width: 33.333%; }
.feed-ad-drawer-progress .step-2 { width: 66.666%; }
.feed-ad-drawer-progress .step-3 { width: 100%; }

.feed-ad-drawer-question {
    margin-top: 20px;
}

.feed-ad-drawer-question h3,
.feed-ad-drawer-result h3 {
    color: var(--prosu-blue);
    font-size: 1.22rem;
    line-height: 1.24;
    font-weight: 900;
    letter-spacing: 0;
}

.feed-ad-drawer-question p,
.feed-ad-drawer-result p {
    margin-top: 10px;
    color: rgba(238, 244, 238, 0.68);
    font-size: 0.86rem;
    line-height: 1.44;
}

.feed-ad-drawer-options {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.feed-ad-drawer-options button {
    min-height: 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--prosu-line-strong);
    border-radius: 14px;
    background: rgba(6, 16, 13, 0.48);
    color: var(--prosu-blue);
    text-align: left;
}

.feed-ad-drawer-options span {
    min-width: 0;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.28;
}

.feed-ad-drawer-options i {
    color: var(--prosu-green);
}

.feed-ad-drawer-result {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.feed-ad-result-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--prosu-green-soft);
    color: var(--prosu-green);
    font-size: 1.2rem;
}

.feed-ad-drawer-result h3 span {
    color: var(--prosu-green);
}

.feed-ad-drawer-primary {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    border: 0;
    border-radius: 14px;
    background: var(--prosu-green);
    color: var(--prosu-navy);
    font-weight: 900;
}

.profile-page .page__content {
    background: var(--prosu-surface);
}

.profile-shell {
    display: grid;
    gap: 20px;
    padding-top: calc(env(safe-area-inset-top, 0px) + 22px);
    padding-bottom: calc(112px + var(--safe-bottom));
}

.profile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-topbar h1 {
    color: var(--prosu-blue);
    font-size: 1.86rem;
    line-height: 1.1;
    font-weight: 800;
}

.profile-settings-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--prosu-blue);
    font-size: 1.24rem;
}

.profile-progress-card,
.profile-list-card {
    background: var(--prosu-card);
    border: 1px solid var(--prosu-line);
    border-radius: 24px;
    box-shadow: var(--prosu-shadow-soft);
}

.profile-progress-card {
    display: grid;
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 16px 16px;
}

.profile-progress-ring {
    position: relative;
    width: 94px;
    height: 94px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: conic-gradient(var(--prosu-green) 0 72%, rgba(238, 244, 238, 0.08) 72% 100%);
}

.profile-progress-ring::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    background: var(--prosu-card);
}

.profile-progress-ring span {
    position: relative;
    z-index: 1;
    color: var(--prosu-blue);
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 800;
}

.profile-progress-copy {
    min-width: 0;
    padding-top: 6px;
}

.profile-progress-copy h2 {
    color: var(--prosu-blue);
    font-size: 1.18rem;
    line-height: 1.18;
    font-weight: 800;
}

.profile-progress-copy p {
    margin-top: 10px;
    color: rgba(238, 244, 238, 0.72);
    font-size: 0.88rem;
    line-height: 1.5;
}

.profile-progress-bar {
    height: 6px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(238, 244, 238, 0.08);
}

.profile-progress-bar span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: var(--prosu-green);
}

.profile-complete-button {
    grid-column: 1 / -1;
    min-height: 58px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    border: 1px solid rgba(127, 181, 93, 0.24);
    border-radius: 14px;
    background: var(--prosu-green-soft);
    color: var(--prosu-blue);
    text-align: left;
}

.profile-complete-button span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--prosu-green);
    color: var(--prosu-blue);
}

.profile-complete-button strong {
    min-width: 0;
    font-size: 0.98rem;
    font-weight: 800;
}

.profile-complete-button > i {
    color: var(--prosu-green);
}

.profile-section {
    display: grid;
    gap: 12px;
}

.profile-section h2 {
    color: var(--prosu-blue);
    font-size: 1.16rem;
    line-height: 1.2;
    font-weight: 800;
}

.profile-list-card {
    padding: 4px 14px;
}

.profile-list-row {
    width: 100%;
    min-height: 72px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto 14px;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(238, 244, 238, 0.07);
    background: transparent;
    color: var(--prosu-blue);
    text-align: left;
}

.profile-list-row:last-child {
    border-bottom: 0;
}

.profile-list-row > i:first-child {
    width: 34px;
    display: inline-flex;
    justify-content: center;
    color: var(--prosu-green);
    font-size: 1.24rem;
}

.profile-list-row > span {
    min-width: 0;
}

.profile-list-row strong,
.profile-list-row small {
    display: block;
}

.profile-list-row strong {
    color: var(--prosu-blue);
    font-size: 0.92rem;
    line-height: 1.24;
    font-weight: 800;
}

.profile-list-row small {
    margin-top: 4px;
    color: rgba(238, 244, 238, 0.66);
    font-size: 0.78rem;
    line-height: 1.28;
}

.profile-list-row em {
    min-width: 88px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(238, 244, 238, 0.06);
    color: rgba(238, 244, 238, 0.78);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;
    white-space: nowrap;
}

.profile-list-row em.filled {
    background: var(--prosu-green-soft);
    color: var(--prosu-green);
}

.profile-list-row em.add {
    border: 1px solid var(--prosu-green);
    background: transparent;
    color: var(--prosu-green);
}

.profile-list-row > i:last-child {
    color: rgba(238, 244, 238, 0.62);
    font-size: 1rem;
}

.profile-nav-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-nav-badge {
    position: absolute;
    right: -4px;
    top: -4px;
    width: 9px;
    height: 9px;
    border: 2px solid rgba(11, 17, 14, 0.98);
    border-radius: 999px;
    background: var(--prosu-green);
}

.profile-bottom-nav .active .profile-nav-badge {
    background: var(--prosu-green);
}

@media (max-width: 374px) {
    .prosu-poll-title {
        font-size: 1.22rem;
    }

    .prosu-poll-option {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        column-gap: 8px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .prosu-poll-option-label {
        font-size: 0.78rem;
    }

    .prosu-poll-option strong {
        font-size: 1rem;
    }

    .profile-progress-card {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 12px;
    }

    .profile-progress-ring {
        width: 82px;
        height: 82px;
    }

    .profile-progress-ring span {
        font-size: 1.42rem;
    }

    .profile-list-row {
        grid-template-columns: 34px minmax(0, 1fr) auto 12px;
        gap: 8px;
    }

    .profile-list-row em {
        min-width: 74px;
        font-size: 0.72rem;
    }
}

.reference-plus-button i {
    font-size: 1.55rem !important;
    line-height: 1;
}

.intro-page .page__content {
    background:
        radial-gradient(circle at 18% 18%, rgba(127, 181, 93, 0.1), transparent 28%),
        radial-gradient(circle at 82% 34%, rgba(127, 181, 93, 0.08), transparent 26%),
        var(--prosu-surface);
}

.intro-page .safe-area {
    padding-left: 20px;
    padding-right: 20px;
}

.intro-shell {
    gap: 24px;
    min-height: max(100vh, 780px);
    box-sizing: border-box;
}

.intro-topbar {
    padding-top: 10px;
}

.intro-page .brand-lockup {
    gap: 12px;
}

.intro-page .brand-badge {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: var(--prosu-green);
    font-size: 2.2rem;
}

.intro-page .brand-text strong {
    font-size: 1.5rem;
    line-height: 1;
}

.intro-page .brand-text strong span,
.intro-hero h1 span,
.intro-live-card span,
.intro-social-proof strong,
.intro-footnote strong {
    color: var(--prosu-green);
}

.intro-page .brand-text > span {
    margin-top: 5px;
    color: rgba(238, 244, 238, 0.74);
    font-size: 0.88rem;
}

.intro-page .mini-status {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(6, 16, 13, 0.72);
    border-color: rgba(238, 244, 238, 0.24);
    font-size: 0.9rem;
}

.intro-hero {
    margin-top: 18px;
}

.intro-hero h1 {
    max-width: 11.2ch;
    color: var(--prosu-text);
    font-size: clamp(3.35rem, 11.8vw, 4.6rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
}

.intro-hero p {
    margin-top: 18px;
    max-width: 31ch;
    color: rgba(238, 244, 238, 0.78);
    font-size: 1.15rem;
    line-height: 1.42;
    font-weight: 500;
}

.intro-live-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: rgba(10, 20, 16, 0.8);
    border: 1px solid rgba(238, 244, 238, 0.12);
    box-shadow: var(--prosu-shadow-soft);
}

.intro-live-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--prosu-green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.intro-live-label span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--prosu-green);
}

.intro-live-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--prosu-text);
    font-size: 1.24rem;
    letter-spacing: 0;
    line-height: 1.22;
}

.intro-live-card h2 i {
    color: var(--prosu-green);
}

.intro-live-card h2 span {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(238, 244, 238, 0.78);
}

.intro-signal-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.intro-signal {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.intro-signal i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(238, 244, 238, 0.07);
    color: var(--prosu-green);
}

.intro-signal strong {
    display: block;
    color: var(--prosu-text);
    font-size: 0.98rem;
    line-height: 1.25;
}

.intro-signal small {
    display: block;
    margin-top: 2px;
    color: rgba(238, 244, 238, 0.58);
    font-size: 0.78rem;
    line-height: 1.35;
}

.intro-map {
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(238, 244, 238, 0.2);
}

.intro-map i {
    font-size: 6.6rem;
}

.intro-map span {
    position: absolute;
    right: 30px;
    top: 72px;
    width: 42px;
    height: 28px;
    border-radius: 50% 44% 54% 40%;
    background: var(--prosu-green);
    box-shadow: 0 0 20px rgba(127, 181, 93, 0.45);
    transform: rotate(-18deg);
}

.intro-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.intro-benefits div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    align-items: center;
    min-height: 58px;
    padding-right: 10px;
    border-right: 1px solid rgba(238, 244, 238, 0.16);
}

.intro-benefits div:last-child {
    border-right: 0;
    padding-right: 0;
    padding-left: 10px;
}

.intro-benefits div:nth-child(2) {
    padding-left: 10px;
}

.intro-benefits i {
    grid-row: span 2;
    color: var(--prosu-green);
    font-size: 1.55rem;
}

.intro-benefits strong,
.intro-benefits span {
    overflow-wrap: anywhere;
    line-height: 1.22;
}

.intro-benefits strong {
    color: var(--prosu-text);
    font-size: 0.78rem;
    font-weight: 800;
}

.intro-benefits span {
    color: rgba(238, 244, 238, 0.66);
    font-size: 0.76rem;
}

.intro-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: -2px;
}

.intro-avatar-stack {
    display: flex;
    align-items: center;
}

.intro-avatar-stack span {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 2px solid var(--prosu-surface);
    background:
        linear-gradient(135deg, rgba(127, 181, 93, 0.78), rgba(238, 244, 238, 0.24)),
        var(--prosu-card);
}

.intro-avatar-stack span + span {
    margin-left: -12px;
}

.intro-avatar-stack span:nth-child(2) {
    background:
        linear-gradient(135deg, rgba(238, 244, 238, 0.72), rgba(127, 181, 93, 0.3)),
        var(--prosu-card);
}

.intro-avatar-stack span:nth-child(3) {
    background:
        linear-gradient(135deg, rgba(71, 94, 78, 0.9), rgba(189, 168, 104, 0.54)),
        var(--prosu-card);
}

.intro-social-proof p {
    color: rgba(238, 244, 238, 0.78);
    font-size: 1rem;
    font-weight: 600;
}

.intro-social-proof strong {
    font-weight: 900;
}

.intro-cta.button,
.intro-cta.button--large {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 18px;
    color: #08110d;
    font-size: 1.34rem;
    font-weight: 900;
}

.intro-cta i {
    font-size: 1.25rem;
}

.intro-footnote {
    display: grid;
    gap: 14px;
    justify-items: center;
    color: rgba(238, 244, 238, 0.58);
    font-size: 0.92rem;
    text-align: center;
}

.intro-footnote small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(238, 244, 238, 0.62);
    font-size: 0.86rem;
}

.intro-footnote i {
    color: var(--prosu-green);
}

@media (max-width: 430px) {
    .intro-page .safe-area {
        padding: calc(env(safe-area-inset-top, 0px) + 12px) 16px calc(var(--safe-bottom) + 12px);
    }

    .intro-shell {
        gap: 12px;
        min-height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }

    .intro-page .brand-badge {
        width: 34px;
        height: 34px;
        font-size: 1.55rem;
    }

    .intro-page .brand-text strong {
        font-size: 1.08rem;
    }

    .intro-page .brand-text > span {
        margin-top: 2px;
        font-size: 0.66rem;
    }

    .intro-page .mini-status {
        min-height: 36px;
        padding: 0 10px;
        border-radius: 12px;
        font-size: 0.72rem;
    }

    .intro-hero {
        margin-top: 8px;
    }

    .intro-hero h1 {
        max-width: 12.8ch;
        font-size: clamp(2.55rem, 10.8vw, 3.2rem);
        line-height: 1.02;
    }

    .intro-hero p {
        margin-top: 10px;
        max-width: 33ch;
        font-size: 0.86rem;
        line-height: 1.38;
    }

    .intro-live-card {
        grid-template-columns: minmax(0, 1fr) 62px;
        gap: 8px;
        padding: 12px;
        border-radius: 16px;
    }

    .intro-live-label {
        gap: 6px;
        font-size: 0.66rem;
    }

    .intro-live-label span {
        width: 7px;
        height: 7px;
    }

    .intro-live-card h2 {
        margin-top: 9px;
        font-size: 0.92rem;
        gap: 6px;
    }

    .intro-signal-list {
        gap: 8px;
        margin-top: 10px;
    }

    .intro-signal {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 8px;
    }

    .intro-signal i {
        width: 30px;
        height: 30px;
        font-size: 0.78rem;
    }

    .intro-signal strong {
        font-size: 0.82rem;
        line-height: 1.16;
    }

    .intro-signal small {
        font-size: 0.68rem;
        line-height: 1.22;
    }

    .intro-map {
        min-height: 124px;
    }

    .intro-map i {
        font-size: 3.4rem;
    }

    .intro-map span {
        right: 17px;
        top: 48px;
        width: 24px;
        height: 16px;
    }

    .intro-benefits {
        display: none;
    }

    .intro-social-proof {
        gap: 10px;
        justify-content: flex-start;
        margin-top: 0;
    }

    .intro-social-proof p {
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .intro-avatar-stack span {
        width: 30px;
        height: 30px;
    }

    .intro-avatar-stack span + span {
        margin-left: -10px;
    }

    .intro-cta.button,
    .intro-cta.button--large {
        min-height: 56px;
        border-radius: 16px;
        font-size: 1rem;
    }

    .intro-footnote {
        gap: 6px;
        font-size: 0.76rem;
    }

    .intro-footnote small {
        font-size: 0.72rem;
    }
}

@media (max-height: 760px) and (max-width: 430px) {
    .intro-shell {
        gap: 10px;
    }

    .intro-topbar {
        padding-top: 0;
    }

    .intro-hero {
        margin-top: 4px;
    }

    .intro-hero h1 {
        font-size: clamp(2.25rem, 10vw, 2.8rem);
        max-width: 13.6ch;
    }

    .intro-hero p {
        margin-top: 8px;
        font-size: 0.78rem;
    }

    .intro-live-card {
        padding: 10px;
    }

    .intro-signal-list {
        gap: 6px;
        margin-top: 8px;
    }

    .intro-signal {
        grid-template-columns: 26px minmax(0, 1fr);
        gap: 7px;
    }

    .intro-signal i {
        width: 26px;
        height: 26px;
        font-size: 0.72rem;
    }

    .intro-signal strong {
        font-size: 0.76rem;
    }

    .intro-signal small {
        display: none;
    }

    .intro-map {
        min-height: 100px;
    }

    .intro-social-proof p {
        font-size: 0.78rem;
    }

    .intro-avatar-stack span {
        width: 28px;
        height: 28px;
    }

    .intro-cta.button,
    .intro-cta.button--large {
        min-height: 50px;
    }

    .intro-footnote small {
        display: none;
    }
}
