/* ═══════════════════════════════════════════════════════════════
   Otama site — black & white minimal theme
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset + tokens ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #FFFFFF;
    --bg-soft: #F7F7F7;
    --bg-elev: #EEEEEE;
    --line: #E5E5E5;
    --line-strong: #D0D0D0;
    --text: #0A0A0A;
    --text-2: rgba(10, 10, 10, 0.65);
    --text-3: rgba(10, 10, 10, 0.45);
    --text-4: rgba(10, 10, 10, 0.25);
    --on-light: #FFFFFF;

    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 0 0 1px var(--line);

    --container: 1180px;
    --gutter: 24px;

    --t-fast: 180ms;
    --t-base: 280ms;
    --t-slow: 600ms;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ── Reveal-on-scroll ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger child reveals when parent is a grid/list */
.features-grid .reveal:nth-child(2) { transition-delay: 60ms; }
.features-grid .reveal:nth-child(3) { transition-delay: 120ms; }
.features-grid .reveal:nth-child(4) { transition-delay: 60ms; }
.features-grid .reveal:nth-child(5) { transition-delay: 120ms; }
.features-grid .reveal:nth-child(6) { transition-delay: 180ms; }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 22px;
    height: 22px;
    background: var(--text);
    border-radius: 6px;
    display: inline-block;
    /* simple monogram block as placeholder — replace with real logo SVG */
    position: relative;
}
.logo-mark::after {
    content: '';
    position: absolute;
    inset: 5px;
    background: var(--bg);
    border-radius: 2px;
}
.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    transition: color var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    padding: 9px 16px;
    background: var(--text);
    color: var(--on-light);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); opacity: 0.9; }

.nav-burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; transition: transform var(--t-fast); }
.nav-mobile { display: none; flex-direction: column; padding: 12px var(--gutter) 24px; border-top: 1px solid var(--line); background: var(--bg); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile .mobile-cta { background: var(--text); color: var(--on-light); border-radius: 10px; padding: 12px; margin-top: 12px; text-align: center; font-weight: 600; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 0;
    transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: var(--text);
    color: var(--on-light);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--text-2); background: var(--bg-soft); }
.btn-large {
    padding: 16px 28px;
    font-size: 15px;
    border-radius: 14px;
}

/* ── Section title shared ───────────────────────────────────── */
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 14px;
}
.section-lead {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--text-2);
    max-width: 640px;
    margin-bottom: 56px;
    line-height: 1.6;
}
.section-lead em { font-style: italic; color: var(--text); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    padding: 60px 0 100px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.hero::before {
    /* subtle radial vignette behind text */
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(0,0,0,0.03), transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
.hero-eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin-bottom: 24px;
}
.hero h1 em { font-style: italic; font-weight: 800; }
.hero-strike {
    color: var(--text-3);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-style: italic;
    font-weight: 700;
}
.hero-sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--text-2);
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 32px;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 12px;
    color: var(--text-3);
}

/* ── Phone frame ─────────────────────────────────────────────── */
.phone-frame {
    background: var(--bg-elev);
    border: 1px solid var(--line-strong);
    border-radius: 28px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 6px 16px rgba(0, 0, 0, 0.04), 0 0 0 1px var(--line);
    transition: transform var(--t-base) var(--ease);
    aspect-ratio: 9 / 19.5;
    max-width: 320px;
    margin: 0 auto;
    overflow: hidden;
}
.phone-frame:hover { transform: translateY(-4px); }
.phone-frame img, .phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: var(--bg-soft); /* fallback while image loads */
}
.feature-icon {
    /* Square tile, sized to read clearly at every breakpoint. Slightly
       smaller than the old feature-img (which used aspect-ratio 4/3 and
       filled the card width) — icons look better with breathing room
       around them than stretched edge-to-edge. */
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--text);
    /* Subtle inner shadow so the tile reads as recessed against the
       feature-card's bg-soft. Matches the visual depth the old image
       cards had. */
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: border-color var(--t-base) var(--ease),
                transform var(--t-base) var(--ease);
}
/* ════════════════════════════════════════════════════════════════
   PATCH: append to styles.css after the existing rules
   Styles for the new "Who Otama is for", "Otama vs other focus apps",
   and condensed pricing strip sections.
   ════════════════════════════════════════════════════════════════ */

/* ── Audience cards ────────────────────────────────────────── */
.audience {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.audience-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.audience-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }

.audience-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.audience-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.audience-card > p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}
.audience-solution {
    margin-top: 6px;
    padding: 18px 20px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.audience-solution strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-3);
    display: block;
    margin-bottom: 10px;
}
.audience-solution ul {
    list-style: none;
    padding: 0;
}
.audience-solution li {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}
.audience-solution li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 1px;
    background: var(--text-3);
}
.audience-solution li strong {
    display: inline;
    font-size: 13px;
    color: var(--text);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
    margin: 0;
}

/* ── Otama vs ─ comparison cards ───────────────────────────── */
.vs {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.vs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.vs-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color var(--t-base) var(--ease);
}
.vs-card:hover { border-color: var(--line-strong); }
.vs-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.vs-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 12px;
}
.vs-card p strong { color: var(--text); font-weight: 600; }
.vs-tldr {
    padding: 12px 14px;
    background: var(--bg);
    border-left: 2px solid var(--text);
    font-size: 13px;
    color: var(--text);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 500;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
}

/* ── Pricing strip ─────────────────────────────────────────── */
.pricing-strip {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.pricing-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    margin-top: 20px;
    margin-bottom: 36px;
}
.strip-col {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.strip-pro {
    background: var(--text);
    color: var(--on-light);
    border-color: var(--text);
}
.strip-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--text-3);
}
.strip-pro .strip-label { color: rgba(255, 255, 255, 0.55); }

.strip-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
.strip-col li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-2);
    border-bottom: 1px solid var(--line);
    line-height: 1.5;
}
.strip-pro li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
.strip-col li:last-child { border-bottom: 0; }

.strip-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 8px;
}
.strip-prices span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.strip-prices strong {
    color: var(--on-light);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    margin-right: 2px;
}
.strip-trial {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.strip-cta {
    display: inline-flex;
    margin: 0 auto;
}
.pricing-strip .container { text-align: center; }
.pricing-strip .section-title,
.pricing-strip .section-lead,
.pricing-strip-grid { text-align: left; }
.pricing-strip-grid { margin-left: auto; margin-right: auto; max-width: 100%; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .audience-grid,
    .vs-grid,
    .pricing-strip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .audience { padding: 70px 0; }
    .vs { padding: 70px 0; }
    .pricing-strip { padding: 70px 0; }
    .audience-card { padding: 24px 22px; }
    .audience-card h3 { font-size: 18px; }
    .vs-card { padding: 22px; }
    .strip-col { padding: 24px; }
}

.feature-card:hover .feature-icon {
    border-color: var(--line-strong);
    transform: translateY(-1px);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* Mobile: shrink slightly so cards stay compact when they go full-width
   in the single-column layout. */
@media (max-width: 500px) {
    .feature-icon { width: 48px; height: 48px; }
    .feature-icon svg { width: 24px; height: 24px; }
}

/* ── Problem ─────────────────────────────────────────────────── */
.problem {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.problem-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.6;
}
.problem-list li:last-child { border-bottom: 0; }
.problem-list strong { color: var(--text); font-weight: 600; }

/* ── How ─────────────────────────────────────────────────────── */
.how {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.how-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.how-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.how-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.how-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    line-height: 1.2;
}
.how-card p { color: var(--text-2); font-size: 14px; line-height: 1.65; }

/* ── Features ────────────────────────────────────────────────── */
.features {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feature-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.feature-img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--bg-elev);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}
.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.feature-card p { color: var(--text-2); font-size: 13px; line-height: 1.6; }

/* ── Games list ──────────────────────────────────────────────── */
.games {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 20px;
}
.game-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    transition: background var(--t-fast) var(--ease);
}
.game-row:hover { background: var(--bg-soft); }
.game-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.game-desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.55;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

/* ── Why / Comparison ────────────────────────────────────────── */
.why {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.comparison {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-soft);
}
.comparison table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.comparison th, .comparison td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.comparison th {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--bg);
}
.comparison th.highlight,
.comparison td.highlight {
    color: var(--text);
    background: rgba(0, 0, 0, 0.03);
    font-weight: 500;
}
.comparison tr:last-child td { border-bottom: 0; }
.comparison td { color: var(--text-2); }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.plan {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}
.plan:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.plan-featured {
    border-color: var(--text);
    background: linear-gradient(180deg, rgba(0,0,0,0.03), transparent 60%);
}
.plan-featured:hover { border-color: var(--text); }
.plan-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 9px;
    background: var(--text);
    color: var(--on-light);
    border-radius: 100px;
    letter-spacing: 0.05em;
}
.plan-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.plan-price {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.plan-period {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 24px;
}
.plan-features {
    flex: 1;
    margin-bottom: 24px;
}
.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-2);
    border-bottom: 1px solid var(--line);
}
.plan-features li:last-child { border-bottom: 0; }
.plan .btn { width: 100%; justify-content: center; }
.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-3);
    margin-top: 32px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}
.faq-list {
    max-width: 820px;
    margin: 40px auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}
.faq-item summary {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--text-3);
    transition: transform var(--t-fast) var(--ease);
    line-height: 1;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    margin-top: 14px;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.7;
    max-width: 720px;
}
.faq-item a {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--text-3);
    text-underline-offset: 3px;
}

/* ── Final CTA ──────────────────────────────────────────────── */
.cta {
    padding: 120px 0;
    text-align: center;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.03), transparent 60%);
}
.cta h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 18px;
}
.cta p {
    color: var(--text-2);
    font-size: 17px;
    margin-bottom: 36px;
}
.cta-fine {
    color: var(--text-3);
    font-size: 12px;
    margin-top: 24px;
}
.cta-fine a { color: var(--text); text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
    padding: 60px 0 30px;
    background: var(--bg);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
}
.footer h4 {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer ul li { margin-bottom: 8px; }
.footer ul li a {
    font-size: 14px;
    color: var(--text-2);
    transition: color var(--t-fast) var(--ease);
}
.footer ul li a:hover { color: var(--text); }
.footer-tagline {
    color: var(--text-3);
    font-size: 13px;
    margin-top: 12px;
}
.footer-bar {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-3);
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:nth-child(4) { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: block; }

    .hero { padding: 40px 0 70px; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }

    .problem { padding: 70px 0; }
    .problem-grid { grid-template-columns: 1fr; gap: 40px; }

    .how { padding: 70px 0; }
    .how-grid { grid-template-columns: 1fr; gap: 16px; }

    .features { padding: 70px 0; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

    .games { padding: 70px 0; }
    .games-grid { grid-template-columns: 1fr; }
    .game-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }

    .gallery { padding: 70px 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .why { padding: 70px 0; }
    .comparison { font-size: 12px; }
    .comparison th, .comparison td { padding: 12px 14px; font-size: 12px; }

    .pricing { padding: 70px 0; }
    .pricing-grid { grid-template-columns: 1fr; }

    .faq { padding: 70px 0; }
    .cta { padding: 70px 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 500px) {
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .phone-frame:hover, .how-card:hover, .feature-card:hover, .plan:hover { transform: none; }
    html { scroll-behavior: auto; }
}
