/* =============================================
   TINEK - Deer Hunting Intelligence Platform
   Dark Theme: Black / Off-White / Orange
   ============================================= */

:root {
    --accent: #f07328;
    --accent-strong: #c45010;
    --accent-soft: rgba(240, 115, 40, 0.12);
    --canvas-tint: #0a0c0b;
    --ink: #edeae3;
    --ink-muted: #7a8678;
    --surface: #111412;
    --surface-alt: #191c18;
    --line: rgba(240, 115, 40, 0.13);
    --line-subtle: rgba(255, 255, 255, 0.06);
    --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.55);
    --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.45);
    --shadow-orange: 0 14px 40px rgba(240, 115, 40, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--canvas-tint);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: "Barlow", "Arial Narrow", Arial, sans-serif;
    background:
        radial-gradient(ellipse 70% 45% at 5% 2%, rgba(240, 115, 40, 0.07), transparent),
        radial-gradient(ellipse 55% 55% at 95% 98%, rgba(10, 25, 15, 0.6), transparent),
        #0a0c0b;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

p {
    margin: 0;
    line-height: 1.75;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Oswald", "Trebuchet MS", sans-serif;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

code {
    font-family: "Consolas", "Courier New", monospace;
}

.shell-width {
    width: min(1180px, calc(100% - 2.5rem));
    margin-inline: auto;
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */

.announcement-bar {
    padding: 0.85rem 0;
    background: linear-gradient(90deg, var(--accent-strong), var(--accent));
    color: white;
}

.announcement-bar__inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.announcement-bar__label,
.section-heading__eyebrow,
.detail-card__label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 800;
}

.announcement-bar__label {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =============================================
   SITE HEADER
   ============================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(240, 115, 40, 0.1);
    background: rgba(10, 12, 11, 0.9);
    backdrop-filter: blur(20px);
}

.site-header__inner {
    display: flex;
    gap: 1rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-lockup__logo-img {
    height: 2.8rem;
    width: auto;
    object-fit: contain;
}

.brand-lockup__mark {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
    color: white;
    font-family: "Oswald", "Trebuchet MS", sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(240, 115, 40, 0.35);
}

.brand-lockup__text {
    display: grid;
}

.brand-lockup__text strong {
    font-size: 1.15rem;
    font-family: "Oswald", "Trebuchet MS", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.brand-lockup__text small {
    color: var(--ink-muted);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: var(--ink-muted);
    font-weight: 700;
    font-size: 0.92rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--ink);
    background: rgba(240, 115, 40, 0.1);
    transform: translateY(-1px);
}

/* =============================================
   BUTTONS
   ============================================= */

.button-row {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 28px rgba(240, 115, 40, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(240, 115, 40, 0.4);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
    box-shadow: none;
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(240, 115, 40, 0.28);
    box-shadow: none;
    transform: translateY(-2px);
}

.button--full {
    width: 100%;
    justify-content: center;
}

.site-main {
    padding-top: 1rem;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2.5rem;
    align-items: center;
    padding: 4.5rem 0 2.5rem;
}

.hero-copy {
    display: grid;
    gap: 1.5rem;
}

.section-heading__eyebrow,
.detail-card__label {
    color: var(--accent);
}

.hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.4rem, 8.5vw, 6.6rem);
    line-height: 1.08;
    padding-bottom: 0.08em;
    color: var(--ink);
}

.hero-copy h1 span {
    display: block;
    line-height: 1.12;
    padding-bottom: 0.12em;
    overflow: visible;
    background: linear-gradient(135deg, var(--accent), #ffa048);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-copy__summary {
    max-width: 56ch;
    font-size: 1.08rem;
    color: var(--ink-muted);
    line-height: 1.8;
}

.badge-row,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(240, 115, 40, 0.1);
    border: 1px solid rgba(240, 115, 40, 0.22);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: var(--surface-alt);
    border: 1px solid var(--line-subtle);
    color: var(--ink-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.tag--link:hover {
    color: var(--ink);
    border-color: rgba(240, 115, 40, 0.3);
}

/* =============================================
   HERO DASHBOARD MOCKUP
   ============================================= */

.hero-visual,
.visual-stack,
.contact-stack {
    display: grid;
    gap: 1rem;
}

.hero-dashboard {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.6rem;
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
    box-shadow: var(--shadow-orange), var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-dashboard::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 115, 40, 0.12), transparent 70%);
    pointer-events: none;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line-subtle);
}

.dashboard-logo {
    height: 1.6rem;
    width: auto;
    object-fit: contain;
}

.dashboard-property {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
}

.dashboard-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dashboard-score {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-score-icon {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
}

.dashboard-score-text {
    display: flex;
    flex-direction: column;
}

.score-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.score-value {
    font-size: 2.4rem;
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.score-badge {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.score-badge--high {
    background: rgba(240, 115, 40, 0.15);
    border: 1px solid rgba(240, 115, 40, 0.3);
    color: var(--accent);
}

.dashboard-conditions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.condition-tile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: var(--surface-alt);
    border: 1px solid var(--line-subtle);
    border-radius: 0.75rem;
}

.condition-tile img {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    opacity: 0.9;
}

.condition-tile span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink-muted);
}

.dashboard-window {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    background: rgba(240, 115, 40, 0.08);
    border: 1px solid rgba(240, 115, 40, 0.18);
    border-radius: 1rem;
}

.window-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.window-time {
    font-size: 1.2rem;
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.window-sub {
    font-size: 0.82rem;
    color: var(--ink-muted);
    font-weight: 600;
}

.dashboard-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    background: var(--surface-alt);
    border-radius: 0.85rem;
    overflow: hidden;
}

.dashboard-trend-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.75;
}

.hero-panel {
    padding: 1.25rem;
    display: grid;
    gap: 0.7rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    box-shadow: var(--shadow-md);
}

.hero-panel h2 {
    font-size: 1.15rem;
    color: var(--ink);
}

/* =============================================
   CARDS & SURFACES
   ============================================= */

.media-frame,
.metric-card,
.detail-card,
.highlight-card,
.process-card,
.portfolio-card,
.quote-card,
.faq-card,
.contact-card,
.template-note,
.value-card {
    border: 1px solid rgba(240, 115, 40, 0.1);
    border-radius: 1.4rem;
    background: rgba(17, 20, 18, 0.9);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.media-frame {
    padding: 1rem;
}

.media-frame img,
.media-frame__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    object-fit: cover;
}

.media-frame--hero img,
.media-frame--hero .media-frame__placeholder {
    aspect-ratio: 5 / 4;
}

.media-frame__placeholder {
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(140deg, rgba(240, 115, 40, 0.85), rgba(10, 12, 11, 0.95));
    color: white;
    text-align: center;
    font-family: "Oswald", "Trebuchet MS", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.media-frame figcaption {
    padding-top: 0.75rem;
    color: var(--ink-muted);
    font-size: 0.88rem;
}

.card-surface,
.template-note,
.detail-card,
.highlight-card,
.process-card,
.quote-card,
.contact-card,
.value-card,
.metric-card {
    padding: 1.4rem;
}

.hero-panel h2,
.detail-card h2,
.detail-card h3,
.highlight-card h3,
.process-card h3,
.portfolio-card h3,
.quote-card strong,
.contact-card h2,
.value-card h3 {
    font-size: 1.4rem;
    color: var(--ink);
}

.check-list,
.mini-list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.65rem;
    color: var(--ink-muted);
}

.check-list li::marker {
    color: var(--accent);
}

/* =============================================
   METRIC STRIP
   ============================================= */

.metric-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 0.75rem 0 1.5rem;
}

.metric-card strong {
    display: block;
    font-size: 2rem;
    font-family: "Oswald", "Trebuchet MS", sans-serif;
    color: var(--accent);
    letter-spacing: -0.04em;
}

.metric-card span {
    color: var(--ink-muted);
    font-size: 0.88rem;
}

/* =============================================
   SECTION SPACING & HEADINGS
   ============================================= */

.section-spacing {
    padding: 3rem 0;
}

.section-heading {
    display: grid;
    gap: 0.85rem;
    max-width: 52rem;
    margin-bottom: 2rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.page-banner h1,
.site-footer h2,
.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--ink);
}

.section-heading p,
.page-banner p,
.body-copy,
.site-footer__brand p,
.portfolio-card__body p,
.quote-card span,
.faq-card p,
.contact-card .footer-links,
.value-card p {
    color: var(--ink-muted);
}

/* =============================================
   FEATURE ICON GRID
   ============================================= */

.feature-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-icon-card {
    display: grid;
    gap: 0.85rem;
    padding: 1.5rem;
    border: 1px solid rgba(240, 115, 40, 0.1);
    border-radius: 1.4rem;
    background: rgba(17, 20, 18, 0.9);
    box-shadow: var(--shadow-md);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-icon-card:hover {
    border-color: rgba(240, 115, 40, 0.28);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(240, 115, 40, 0.08);
}

.feature-icon-card h3 {
    font-size: 1.2rem;
    color: var(--ink);
}

.feature-icon-card p {
    color: var(--ink-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.feature-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(240, 115, 40, 0.1);
    border: 1px solid rgba(240, 115, 40, 0.18);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    width: fit-content;
}

/* =============================================
   SERVICE / DETAIL GRID
   ============================================= */

.service-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.detail-card {
    display: grid;
    gap: 0.85rem;
}

.detail-card strong {
    font-size: 0.95rem;
    color: var(--accent);
}

.detail-card--large {
    min-height: 100%;
}

.split-panel,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
    gap: 1.5rem;
    align-items: start;
}

.highlight-stack {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
}

.highlight-stack--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card h3 {
    color: var(--accent);
}

.highlight-card p {
    color: var(--ink-muted);
}

/* =============================================
   PROCESS STEPS
   ============================================= */

.process-grid,
.process-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.process-card {
    display: grid;
    gap: 0.85rem;
}

.process-card span {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(240, 115, 40, 0.3);
}

.process-card p {
    color: var(--ink-muted);
}

/* =============================================
   APP SCREEN FRAME (property map mockup)
   ============================================= */

.app-screen-frame {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.app-screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--line-subtle);
    background: var(--surface-alt);
}

.app-screen-prop-name {
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.app-screen-icon {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
    opacity: 0.7;
}

.app-screen-map {
    min-height: 14rem;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px),
        radial-gradient(ellipse at 60% 40%, rgba(30, 50, 25, 0.6), rgba(10, 15, 10, 0.9));
    position: relative;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-overlay-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.marker-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.map-marker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.map-marker--stand {
    background: rgba(240, 115, 40, 0.2);
    border: 1px solid rgba(240, 115, 40, 0.4);
    color: var(--accent);
}

.map-marker--camera {
    background: rgba(100, 180, 100, 0.15);
    border: 1px solid rgba(100, 180, 100, 0.35);
    color: #7ecf7e;
}

.map-marker--food {
    background: rgba(160, 200, 80, 0.12);
    border: 1px solid rgba(160, 200, 80, 0.3);
    color: #b4d45c;
}

.map-marker--water {
    background: rgba(80, 160, 220, 0.12);
    border: 1px solid rgba(80, 160, 220, 0.3);
    color: #6ab8e0;
}

/* =============================================
   PORTFOLIO / APP SCREENS
   ============================================= */

.portfolio-card {
    overflow: hidden;
}

.portfolio-card .media-frame {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
}

.portfolio-card .media-frame img,
.portfolio-card .media-frame .media-frame__placeholder {
    border-radius: 1.4rem 1.4rem 0 0;
}

.portfolio-card__body {
    display: grid;
    gap: 0.85rem;
    padding: 1.1rem 1.25rem 1.25rem;
}

.app-screen-preview {
    min-height: 10rem;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(240, 115, 40, 0.12), transparent 60%),
        linear-gradient(140deg, rgba(25, 28, 24, 0.98), rgba(10, 12, 11, 0.98));
    border-radius: 1.4rem 1.4rem 0 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
}

.screen-preview-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.screen-preview-title {
    font-size: 1rem;
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    color: var(--ink);
}

/* =============================================
   TESTIMONIALS & FAQ
   ============================================= */

.testimonial-section {
    display: grid;
    gap: 1.75rem;
}

.testimonial-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.quote-card {
    display: grid;
    gap: 0.85rem;
}

.quote-card p {
    font-size: 1.05rem;
    color: var(--ink-muted);
    line-height: 1.8;
}

.quote-card strong {
    font-size: 1.05rem;
    color: var(--ink);
}

.quote-card span {
    font-size: 0.88rem;
    color: var(--ink-muted);
}

.faq-card {
    padding: 1.25rem;
}

.faq-card summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    color: var(--ink);
    font-size: 0.95rem;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card[open] {
    background: rgba(240, 115, 40, 0.05);
    border-color: rgba(240, 115, 40, 0.18);
}

.faq-card p {
    margin-top: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.75;
}

/* =============================================
   PRICING
   ============================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.pricing-card {
    display: grid;
    gap: 1rem;
    padding: 1.75rem;
    border: 1px solid rgba(240, 115, 40, 0.1);
    border-radius: 1.6rem;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing-card--featured {
    border-color: rgba(240, 115, 40, 0.35);
    background: rgba(240, 115, 40, 0.05);
    box-shadow: var(--shadow-orange), var(--shadow-lg);
    transform: translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(240, 115, 40, 0.4);
}

.pricing-tier {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.pricing-amount strong {
    font-family: "Oswald", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-amount span {
    color: var(--ink-muted);
    font-size: 0.9rem;
}

.pricing-desc {
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* =============================================
   FINAL CTA
   ============================================= */

.final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) auto;
    gap: 2rem;
    align-items: center;
    margin: 2rem auto 4.5rem;
    padding: 2rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(240, 115, 40, 0.2);
    background: radial-gradient(ellipse at 30% 50%, rgba(240, 115, 40, 0.09), transparent 60%),
                rgba(17, 20, 18, 0.95);
    box-shadow: var(--shadow-orange), var(--shadow-lg);
}

.final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.final-cta p {
    color: var(--ink-muted);
    margin-top: 0.5rem;
}

/* =============================================
   PAGE BANNER
   ============================================= */

.page-banner {
    display: grid;
    gap: 0.9rem;
    max-width: 62rem;
    padding: 3.5rem 0 1rem;
}

.page-banner h1 {
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    color: var(--ink);
}

.value-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a:hover {
    color: var(--accent);
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    padding: 1rem 0 2.5rem;
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(240, 115, 40, 0.08);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 0.8fr));
    gap: 1.5rem;
    padding-top: 1.25rem;
}

.site-footer__brand {
    display: grid;
    gap: 0.9rem;
}

.site-footer h3 {
    margin-bottom: 0.9rem;
    font-size: 0.78rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.site-footer h2 {
    font-size: 1.4rem;
    color: var(--ink);
}

.site-footer__legal {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line-subtle);
    color: var(--ink-muted);
    font-size: 0.88rem;
}

/* =============================================
   PREDICTIONS PAGE - FACTOR GRID
   ============================================= */

.factor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.factor-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.factor-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    background: var(--surface-alt);
    border: 1px solid var(--line-subtle);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--ink);
    white-space: nowrap;
}

.factor-pill img {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    opacity: 0.75;
}

.factor-pill__emoji {
    font-size: 1rem;
    line-height: 1;
}

.factor-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.4rem;
    border: 1px solid rgba(240, 115, 40, 0.1);
    border-radius: 1.4rem;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.factor-card:hover {
    border-color: rgba(240, 115, 40, 0.25);
    transform: translateY(-2px);
}

.factor-card-icon {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
}

.factor-card-icon--emoji {
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.75rem;
    line-height: 2.2rem;
}

.factor-card h3 {
    font-size: 1.05rem;
    color: var(--ink);
}

.factor-card p {
    color: var(--ink-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* =============================================
   EARLY ACCESS PAGE
   ============================================= */

.early-access-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(240, 115, 40, 0.2);
    border-radius: 1.4rem;
    background: rgba(240, 115, 40, 0.06);
    margin-bottom: 0.5rem;
}

.early-access-banner-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    flex-shrink: 0;
}

.early-access-banner h3 {
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.early-access-banner p {
    color: var(--ink-muted);
    font-size: 0.9rem;
}

/* =============================================
   BLAZOR ERROR
   ============================================= */

#blazor-error-ui {
    display: none;
    position: fixed;
    inset: auto 1rem 1rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(240, 115, 40, 0.95);
    color: white;
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

#blazor-error-ui .reload,
#blazor-error-ui .dismiss {
    margin-left: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   FEATURE CARD READ MORE
   ============================================= */

.feature-icon-card {
    display: flex;
    flex-direction: column;
}

.feature-read-more {
    display: inline-block;
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s;
}

.feature-read-more:hover {
    opacity: 0.75;
}

/* =============================================
   FAQ PAGE
   ============================================= */

.faq-grid--full {
    grid-template-columns: 1fr;
    max-width: 760px;
}

.faq-contact-strip {
    padding-bottom: 5rem;
}

.faq-contact-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
}

.faq-contact-strip__inner h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin: 0 0 0.25rem;
}

.faq-contact-strip__inner p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0;
}

/* =============================================
   NAV SOCIAL ICONS
   ============================================= */

.nav-divider {
    display: inline-block;
    width: 1px;
    height: 1.1rem;
    background: var(--line-subtle);
    margin: 0 0.25rem;
    vertical-align: middle;
    align-self: center;
}

.nav-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
    padding: 0.15rem;
    line-height: 0;
}

.nav-social:hover {
    opacity: 1;
    color: var(--accent);
}

/* =============================================
   PHONE MAP IMAGE
   ============================================= */

.phone-map-img {
    width: 100%;
    max-width: 420px;
    border-radius: 1.4rem;
    display: block;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* =============================================
   SIGHTING ENTRY CARD
   ============================================= */

.sighting-entry-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.6rem;
    padding: 1.75rem;
    display: grid;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
}

.sighting-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.sighting-entry-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0.3rem 0 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sighting-entry-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--ink-muted);
    white-space: nowrap;
    background: var(--surface-alt);
    border: 1px solid var(--line-subtle);
    border-radius: 2rem;
    padding: 0.3rem 0.75rem;
}

.sighting-entry-date-icon {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    opacity: 0.8;
}

.sighting-entry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sighting-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--ink-muted);
    background: var(--surface-alt);
    border: 1px solid var(--line-subtle);
    border-radius: 2rem;
    padding: 0.35rem 0.85rem;
}

.sighting-tag img {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    opacity: 0.85;
}

.sighting-tag--buck {
    background: rgba(240, 115, 40, 0.08);
    border-color: rgba(240, 115, 40, 0.22);
    color: var(--ink);
}

.sighting-entry-notes {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--ink-muted);
    margin: 0;
    padding: 0.85rem 1rem;
    background: var(--surface-alt);
    border-radius: 0.75rem;
    border-left: 3px solid var(--accent-soft);
}

.sighting-entry-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line-subtle);
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.sighting-entry-logo {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    opacity: 0.6;
}

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-page {
    padding: 5rem 0 6rem;
    max-width: 760px;
}

.legal-page__header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line-subtle);
}

.legal-page__header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--ink);
    margin: 0.4rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.legal-page__meta {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0;
}

.legal-page__meta a {
    color: var(--accent);
    text-decoration: none;
}

.legal-page__meta a:hover {
    text-decoration: underline;
}

.legal-page__body section {
    margin-bottom: 2.5rem;
}

.legal-page__body h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.9rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--line-subtle);
}

.legal-page__body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin: 1.5rem 0 0.5rem;
    letter-spacing: 0.01em;
}

.legal-page__body p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--ink-muted);
    margin: 0 0 0.85rem;
}

.legal-page__body ul {
    margin: 0 0 0.85rem 1.25rem;
    padding: 0;
}

.legal-page__body ul li {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--ink-muted);
    margin-bottom: 0.35rem;
}

.legal-page__body a {
    color: var(--accent);
    text-decoration: none;
}

.legal-page__body a:hover {
    text-decoration: underline;
}

.legal-page__body strong {
    color: var(--ink);
    font-weight: 600;
}

/* Footer social links */
.footer-social-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1;
}

.footer-social svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-social:hover {
    color: var(--accent);
}

.footer-social:hover svg {
    opacity: 1;
}

/* Footer legal links */
.site-footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--accent);
}

/* =============================================
   PREDICTION IMAGE (20% smaller than phone-map-img)
   ============================================= */

.phone-prediction-img {
    width: 100%;
    max-width: 372px;
    border-radius: 1.4rem;
    display: block;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* =============================================
   SURVEY / EARLY ACCESS FORM
   ============================================= */

.survey-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3rem;
    align-items: start;
}

.survey-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.survey-form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    padding: 2rem 2.25rem;
}

.survey-form-card h2 {
    font-size: 1.35rem;
    color: var(--ink);
    margin: 0 0 0.35rem;
}

.survey-form-card .form-subtitle {
    font-size: 0.88rem;
    color: var(--ink-muted);
    margin: 0 0 1.5rem;
    line-height: 1.55;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-grid .form-field--full {
    grid-column: 1 / -1;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
    color: var(--ink);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--ink-muted);
    opacity: 0.55;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(240, 115, 40, 0.12);
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8678' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.2rem;
    cursor: pointer;
}

.form-field select option {
    background: var(--surface);
    color: var(--ink);
}

.form-field textarea {
    resize: vertical;
    min-height: 90px;
}

.form-field .validation-message {
    font-size: 0.78rem;
    color: #e05252;
    margin: 0;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-actions .button {
    min-width: 160px;
    justify-content: center;
}

.form-submit-note {
    font-size: 0.78rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

.dashboard-section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dashboard-section-nav__button {
    min-width: 140px;
    justify-content: center;
}

.dashboard-collapsible {
    display: flex;
    justify-content: flex-start;
}

.dashboard-collapsible__toggle {
    min-width: 220px;
    justify-content: center;
}

.account-modal__backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
}

.account-modal__card {
    width: min(520px, 100%);
    padding: 2rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(240, 115, 40, 0.2);
    background: var(--surface);
    box-shadow: var(--shadow-lg), var(--shadow-orange);
}

.account-modal__card h2 {
    margin-top: 0.35rem;
    font-size: 1.65rem;
    color: var(--ink);
}

.account-modal__card p {
    margin-top: 0.8rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

.admin-dashboard-modal {
    width: min(1180px, 100%);
    max-height: min(92vh, 980px);
    display: grid;
    gap: 1.25rem;
    overflow: hidden;
}

.admin-account-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.admin-account-modal__body {
    overflow: auto;
    padding-right: 0.35rem;
}

.admin-analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.admin-analytics-card {
    gap: 0.95rem;
}

.admin-analytics-bars {
    display: grid;
    gap: 0.85rem;
}

.admin-analytics-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
    gap: 0.75rem 1rem;
    align-items: center;
}

.admin-analytics-bar__label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    color: var(--ink);
    font-size: 0.88rem;
}

.admin-analytics-bar__label strong,
.admin-analytics-bar__percent {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-analytics-bar__track {
    grid-column: 1 / 2;
    height: 0.62rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.admin-analytics-bar__fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(240, 115, 40, 0.55), var(--accent));
}

.admin-analytics-bar__percent {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    justify-self: end;
}

.account-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.account-mini-stats div {
    display: grid;
    gap: 0.2rem;
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
    border: 1px solid var(--line-subtle);
    background: rgba(255, 255, 255, 0.03);
}

.account-mini-stats span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.account-mini-stats strong {
    color: var(--ink);
    font-size: 0.94rem;
}

.referral-code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(240, 115, 40, 0.18);
    background: rgba(240, 115, 40, 0.08);
}

.referral-code-box span {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: "Consolas", "Courier New", monospace;
}

.referral-code-box .button {
    flex-shrink: 0;
    min-width: 124px;
}

.admin-email-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.admin-email-list__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid var(--line-subtle);
    background: rgba(255, 255, 255, 0.03);
}

.admin-email-list__row strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--ink);
    font-size: 0.95rem;
}

.admin-email-list__row p {
    color: var(--ink-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

/* Success state */
.survey-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1rem;
}

.survey-success__icon {
    width: 56px;
    height: 56px;
    background: rgba(240, 115, 40, 0.12);
    border: 1px solid rgba(240, 115, 40, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.survey-success__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.survey-success h2 {
    font-size: 1.3rem;
    color: var(--ink);
    margin: 0;
}

.survey-success p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    max-width: 340px;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   MERCH PAGE
   ============================================= */

.merch-banner p {
    max-width: 54rem;
}

.merch-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: stretch;
}

.merch-hero-copy {
    display: grid;
    gap: 1.5rem;
}

.merch-sticker-stage {
    position: relative;
    min-height: 31rem;
    overflow: hidden;
    border-radius: 1.8rem;
    border: 1px solid rgba(240, 115, 40, 0.2);
    background:
        radial-gradient(circle at 18% 18%, rgba(240, 115, 40, 0.22), transparent 34%),
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.05), transparent 28%),
        linear-gradient(160deg, rgba(20, 22, 20, 0.98), rgba(12, 14, 13, 0.96));
    box-shadow: var(--shadow-orange), var(--shadow-lg);
}

.merch-sticker {
    position: absolute;
    width: min(16rem, 62%);
    display: grid;
    gap: 0.75rem;
    padding: 1rem 1rem 0.95rem;
    border-radius: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
}

.merch-sticker img {
    width: 100%;
    height: 9.5rem;
    object-fit: contain;
}

.merch-sticker span {
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.merch-sticker--primary {
    top: 1.35rem;
    left: 1.2rem;
    transform: rotate(-8deg);
}

.merch-sticker--secondary {
    top: 6.4rem;
    right: 1.1rem;
    transform: rotate(8deg);
}

.merch-sticker--accent {
    bottom: 5rem;
    left: 2.3rem;
    width: min(12rem, 47%);
    transform: rotate(-3deg);
}

.merch-stage-note {
    position: absolute;
    right: 1.25rem;
    bottom: 1.2rem;
    width: min(16rem, calc(100% - 2.5rem));
    padding: 1rem 1.05rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(240, 115, 40, 0.18);
    background: rgba(16, 18, 16, 0.92);
}

.merch-stage-note strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ink);
    font-size: 1rem;
}

.merch-stage-note p {
    color: var(--ink-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.merch-item-grid,
.merch-info-grid,
.merch-step-grid {
    align-items: stretch;
}

.merch-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.merch-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merch-item-card {
    position: relative;
    overflow: hidden;
}

.merch-item-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), rgba(240, 115, 40, 0.12));
}

.merch-item-card .mini-list {
    margin-bottom: 1rem;
}

.merch-product-grid {
    align-items: stretch;
}

.merch-product-card {
    position: relative;
    overflow: hidden;
    gap: 1rem;
}

.merch-product-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), rgba(240, 115, 40, 0.12));
}

.merch-product-card--coming-soon {
    opacity: 0.86;
}

.merch-product-card__media {
    display: grid;
    place-items: center;
    min-height: 11rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-subtle);
}

.merch-product-card__media-button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.merch-product-card__media-button:focus-visible {
    outline: 2px solid rgba(240, 115, 40, 0.45);
    outline-offset: 6px;
    border-radius: 1.1rem;
}

.merch-product-card__media img {
    width: 100%;
    max-width: 220px;
    height: 9.5rem;
    object-fit: contain;
}

.merch-product-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.merch-product-card__price {
    color: var(--ink);
    font-family: "Oswald", "Trebuchet MS", sans-serif;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.merch-cart-layout,
.merch-confirmation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 1.5rem;
    align-items: start;
}

.merch-submit-stack {
    display: grid;
    gap: 1.5rem;
}

.merch-cart-card,
.merch-order-form,
.merch-payment-card,
.merch-confirmation-card {
    box-shadow: var(--shadow-orange), var(--shadow-md);
}

.merch-cart-lines {
    display: grid;
    gap: 0.9rem;
}

.merch-cart-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid var(--line-subtle);
    background: rgba(255, 255, 255, 0.03);
}

.merch-cart-line__product {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
}

.merch-cart-line__media-button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.merch-cart-line__media {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(240, 115, 40, 0.16);
    background: rgba(17, 20, 18, 0.48);
    overflow: hidden;
}

.merch-cart-line__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.merch-cart-line__details,
.merch-cart-line__totals {
    display: grid;
    gap: 0.2rem;
}

.merch-cart-line__details strong,
.merch-cart-line__totals strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.merch-cart-line__details span,
.merch-cart-line__totals span {
    color: var(--ink-muted);
    font-size: 0.84rem;
}

.merch-qty-controls {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.merch-qty-controls input {
    width: 4.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.8rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
    text-align: center;
}

.merch-qty-controls input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(240, 115, 40, 0.12);
}

.merch-qty-button {
    min-width: 2.6rem;
    padding-inline: 0;
}

.merch-remove-button {
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
}

.merch-help-stack {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.merch-help-note,
.merch-feedback,
.merch-empty-cart {
    padding: 0.95rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(240, 115, 40, 0.16);
    background: rgba(255, 255, 255, 0.03);
}

.merch-help-note strong,
.merch-feedback p,
.merch-empty-cart strong {
    color: var(--ink);
}

.merch-help-note p,
.merch-empty-cart p {
    margin-top: 0.35rem;
    color: var(--ink-muted);
    line-height: 1.65;
}

.merch-help-note--accent,
.merch-feedback {
    background: rgba(240, 115, 40, 0.08);
    border-color: rgba(240, 115, 40, 0.24);
}

.merch-feedback--error {
    background: rgba(224, 82, 82, 0.08);
    border-color: rgba(224, 82, 82, 0.24);
}

.merch-feedback p {
    margin: 0;
    font-size: 0.9rem;
}

.merch-tax-callout {
    margin: 0.45rem 0 1rem;
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.5;
}

.merch-total-card {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.2rem;
    padding: 1.15rem 1.2rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(240, 115, 40, 0.2);
    background: rgba(240, 115, 40, 0.06);
}

.merch-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink-muted);
    font-size: 0.96rem;
}

.merch-total-row strong {
    color: var(--ink);
}

.merch-total-row--grand {
    padding-top: 0.65rem;
    border-top: 1px solid rgba(240, 115, 40, 0.15);
    color: var(--ink);
    font-size: 1.05rem;
}

.merch-total-row--grand strong {
    font-size: 1.2rem;
    color: var(--accent);
}

.merch-total-note {
    color: var(--ink-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.merch-founder-bonus-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.95rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(240, 115, 40, 0.2);
    background: linear-gradient(135deg, rgba(240, 115, 40, 0.12), rgba(255, 255, 255, 0.03));
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.merch-founder-bonus-card__sticker {
    display: grid;
    place-items: center;
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(240, 115, 40, 0.2);
    background: rgba(17, 20, 18, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.merch-founder-bonus-card__sticker-button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.merch-founder-bonus-card__sticker-button:focus-visible {
    outline: 2px solid rgba(240, 115, 40, 0.45);
    outline-offset: 6px;
    border-radius: 1rem;
}

.merch-founder-bonus-card img {
    width: 2.9rem;
    height: 2.9rem;
    object-fit: contain;
}

.merch-founder-bonus-card strong {
    color: var(--ink);
    display: block;
    margin-bottom: 0.2rem;
}

.merch-founder-bonus-card p {
    margin: 0;
    color: var(--ink-muted);
    line-height: 1.55;
}

.merch-confirmation-card {
    padding: 1.4rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(240, 115, 40, 0.2);
    background: rgba(17, 20, 18, 0.92);
}

.merch-confirmation-card__header {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--line-subtle);
}

.merch-order-number {
    width: fit-content;
    padding: 0.65rem 0.95rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(240, 115, 40, 0.24);
    background: rgba(240, 115, 40, 0.08);
    color: var(--ink);
    font-family: "Consolas", "Courier New", monospace;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.merch-cart-lines--confirmation .merch-cart-line {
    grid-template-columns: minmax(0, 1fr) auto;
}

.merch-image-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(5, 6, 5, 0.82);
    backdrop-filter: blur(8px);
}

.merch-image-modal__card {
    width: min(100%, 860px);
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(240, 115, 40, 0.22);
    background: rgba(17, 20, 18, 0.96);
    box-shadow: var(--shadow-orange), var(--shadow-md);
}

.merch-image-modal__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.merch-image-modal__header h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.35rem, 2.6vw, 1.8rem);
}

.merch-image-modal__media {
    display: grid;
    place-items: center;
    min-height: 22rem;
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid var(--line-subtle);
    background: rgba(255, 255, 255, 0.03);
}

.merch-image-modal__media img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
}

/* =============================================
   PROMOTION PAGE
   ============================================= */

.promotion-gallery {
    display: grid;
    gap: 1.5rem;
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.promotion-card {
    display: grid;
    gap: 1rem;
}

.promotion-card h2 {
    margin: 0.2rem 0 0;
}

.promotion-card__media {
    overflow: hidden;
    border-radius: 1.15rem;
    border: 1px solid var(--line-subtle);
    background: rgba(255, 255, 255, 0.03);
}

.promotion-card__media img {
    display: block;
    width: 100%;
    height: auto;
}

.promotion-card--flyer {
    grid-column: 1 / -1;
}

.promotion-card__media--flyer-crop {
    width: min(360px, 100%);
    min-height: 0;
    display: grid;
    place-items: center;
    margin-inline: auto;
    padding: 0.85rem 0.85rem 1.1rem;
}

.promotion-card__crop-frame {
    position: relative;
    width: 100%;
    margin-inline: auto;
    border-radius: 0.95rem;
}

.promotion-card__crop-frame img {
    position: static;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
    .metric-strip,
    .process-grid,
    .process-rail,
    .service-grid,
    .portfolio-grid,
    .site-footer__grid,
    .feature-icon-grid,
    .factor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .highlight-stack--three,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .merch-cart-layout,
    .merch-confirmation-grid {
        grid-template-columns: 1fr;
    }

    .promotion-grid {
        grid-template-columns: 1fr;
    }

    .promotion-card--flyer {
        grid-column: auto;
    }

    .pricing-card--featured {
        transform: none;
    }

    .final-cta,
    .hero-section,
    .merch-hero-grid,
    .split-panel,
    .contact-layout,
    .survey-layout {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 760px) {
    .shell-width {
        width: min(100% - 0.9rem, 1180px);
    }

    html,
    body {
        overflow-x: hidden;
    }

    .announcement-bar {
        padding: 0.55rem 0;
    }

    .announcement-bar__inner {
        gap: 0.45rem;
    }

    .announcement-bar__inner p {
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .announcement-bar__label {
        padding: 0.28rem 0.5rem;
        font-size: 0.58rem;
    }

    .site-header__inner {
        flex-wrap: nowrap;
        gap: 0.7rem;
        padding: 0.7rem 0;
    }

    .brand-lockup {
        gap: 0.55rem;
        min-width: max-content;
    }

    .brand-lockup__logo-img {
        height: 2.1rem;
    }

    .brand-lockup__text strong {
        font-size: 0.92rem;
    }

    .brand-lockup__text small {
        font-size: 0.6rem;
    }

    .site-nav {
        width: auto;
        flex: 1 1 auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.1rem;
        padding-bottom: 0;
    }

    .site-nav a {
        padding: 0.45rem 0.65rem;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .nav-divider {
        height: 0.9rem;
        margin: 0 0.1rem;
    }

    .nav-social {
        padding: 0.1rem;
    }

    .metric-strip,
    .testimonial-grid,
    .faq-grid,
    .service-grid,
    .portfolio-grid,
    .process-grid,
    .process-rail,
    .site-footer__grid,
    .feature-icon-grid,
    .factor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .pricing-grid,
    .highlight-stack--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .dashboard-conditions {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.45rem;
    }

    .account-mini-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .referral-code-box,
    .admin-email-list__row {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-account-modal__header {
        flex-direction: row;
    }

    .hero-section,
    .merch-hero-grid,
    .split-panel,
    .contact-layout,
    .survey-layout,
    .final-cta,
    .merch-cart-layout,
    .merch-confirmation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
        align-items: start;
    }

    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .section-spacing {
        padding: 1.35rem 0;
    }

    .site-main {
        padding-top: 0.4rem;
    }

    .page-banner {
        padding: 1.35rem 0 0.45rem;
        gap: 0.55rem;
    }

    .page-banner,
    .hero-section {
        padding-top: 1.4rem;
    }

    .section-heading {
        gap: 0.55rem;
        margin-bottom: 1rem;
    }

    .section-heading h2,
    .page-banner h1,
    .site-footer h2,
    .final-cta h2 {
        font-size: clamp(1.55rem, 6vw, 2.25rem);
    }

    .hero-copy {
        gap: 0.8rem;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(1.95rem, 8vw, 2.65rem);
    }

    .hero-copy__summary {
        max-width: none;
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .button-row {
        gap: 0.5rem;
    }

    .button {
        padding: 0.65rem 1rem;
        font-size: 0.74rem;
    }

    .media-frame,
    .metric-card,
    .detail-card,
    .highlight-card,
    .process-card,
    .portfolio-card,
    .quote-card,
    .faq-card,
    .contact-card,
    .template-note,
    .value-card,
    .hero-panel,
    .pricing-card,
    .survey-form-card,
    .merch-cart-card,
    .merch-order-form,
    .merch-payment-card,
    .merch-confirmation-card {
        padding: 0.95rem;
        border-radius: 1rem;
    }

    .metric-card strong {
        font-size: 1.35rem;
    }

    .metric-card span,
    .pricing-desc,
    .feature-icon-card p,
    .faq-card p,
    .quote-card span,
    .contact-card p,
    .value-card p,
    .hero-panel p,
    .body-copy {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .hero-panel h2,
    .detail-card h2,
    .detail-card h3,
    .highlight-card h3,
    .process-card h3,
    .portfolio-card h3,
    .quote-card strong,
    .contact-card h2,
    .value-card h3,
    .feature-icon-card h3,
    .pricing-amount strong,
    .survey-form-card h2 {
        font-size: 1rem;
    }

    .hero-dashboard {
        padding: 0.85rem;
        border-radius: 1rem;
        gap: 0.7rem;
    }

    .score-value {
        font-size: 1.6rem;
    }

    .window-time {
        font-size: 0.95rem;
    }

    .window-sub,
    .score-label,
    .dashboard-property,
    .window-label {
        font-size: 0.65rem;
    }

    .condition-tile {
        padding: 0.45rem 0.55rem;
        gap: 0.35rem;
    }

    .condition-tile span {
        font-size: 0.68rem;
    }

    .process-card span {
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 0.75rem;
        font-size: 0.72rem;
    }

    .quote-card p {
        font-size: 0.82rem;
    }

    .form-field label {
        font-size: 0.64rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 0.55rem 0.7rem;
        font-size: 0.78rem;
    }

    .merch-cart-line {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 0.6rem;
    }

    .merch-cart-line__product {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .merch-cart-line__totals {
        justify-items: end;
    }

    .merch-qty-controls {
        justify-content: flex-end;
    }

    .merch-founder-bonus-card {
        grid-template-columns: auto minmax(0, 1fr);
        justify-items: stretch;
    }

    .merch-image-modal {
        padding: 0.6rem;
    }

    .merch-image-modal__header {
        flex-direction: row;
    }

    .merch-sticker-stage {
        min-height: 18rem;
    }

    .merch-sticker {
        width: min(10rem, 38%);
    }

    .merch-sticker--accent {
        left: 1rem;
        bottom: 3.6rem;
    }

    .admin-analytics-bar {
        grid-template-columns: minmax(0, 1fr) 3rem;
    }

    .admin-analytics-bar__percent {
        grid-column: auto;
        grid-row: auto;
        justify-self: end;
    }

    .final-cta {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .legal-page {
        padding: 2rem 0 2.5rem;
    }

    .site-footer {
        padding: 0.5rem 0 1.5rem;
    }

    .site-footer__legal {
        align-items: flex-start;
        gap: 0.4rem;
    }

    .footer-legal-links {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
}
