/* ============================================================
   FocusFlow Landing — sıcak editoryal tasarım sistemi
   Krem zemin · mürekkep siyahı · mercan vurgu · Fraunces serif
   ============================================================ */

:root {
    --cream: #FAFAF7;
    --cream-2: #F5F2EA;
    --coral: #E5604A;
    --coral-deep: #C8472F;
    --coral-soft: #F0937E;
    --coral-tint: #FBE7E0;
    --ink: #1B1916;
    --ink-2: #25211C;
    --muted: #6B6359;
    --tertiary: #9C9388;
    --line: #E6DFD3;
    --line-soft: #EFEAE0;
    --line-dark: rgba(250, 250, 247, 0.09);

    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Geist", -apple-system, "Segoe UI", sans-serif;
    --font-mono: "Geist Mono", "SF Mono", monospace;

    --shadow-sm: 0 2px 8px rgba(27, 25, 22, 0.04);
    --shadow-md: 0 8px 24px rgba(27, 25, 22, 0.06);
    --shadow-lg: 0 20px 48px rgba(27, 25, 22, 0.10);

    --radius-btn: 16px;
    --ease-out: cubic-bezier(0.05, 0.7, 0.1, 1);

    --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection { background: var(--coral); color: var(--cream); }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============ Tipografi ============ */

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 560;
    letter-spacing: -0.022em;
    line-height: 1.06;
    font-variation-settings: "opsz" 100;
}

/* İmzamız: serif başlık içinde mercan italik kelime */
h1 em, h2 em {
    font-style: italic;
    font-weight: 480;
    color: var(--coral);
}

/* ============ Eyebrow: mono numara rozeti + etiket ============ */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.eyebrow-center { justify-content: center; }

.eyebrow-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--coral-deep);
    background: var(--coral-tint);
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

.eyebrow-label {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral-deep);
}

.eyebrow-dark .eyebrow-num {
    background: rgba(229, 96, 74, 0.16);
    color: var(--coral-soft);
}

.eyebrow-dark .eyebrow-label { color: var(--coral-soft); }

/* ============ Butonlar ============ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: var(--radius-btn);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    will-change: transform;
}

.btn-primary {
    background: var(--coral);
    color: var(--cream);
    box-shadow: 0 2px 8px rgba(229, 96, 74, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--coral-deep);
    box-shadow: 0 10px 24px rgba(229, 96, 74, 0.32);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(27, 25, 22, 0.16);
    color: var(--ink);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(27, 25, 22, 0.34);
    box-shadow: var(--shadow-sm);
}

.btn-pill { border-radius: 999px; padding: 10px 20px; font-size: 14px; }

/* ============ Header ============ */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: var(--header-h);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(250, 250, 247, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--line);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--coral);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.site-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

/* Nav'da çevirmeli hover: etiket yukarı kayar, mono numara gelir */
.nav-link { font-size: 14.5px; font-weight: 500; color: var(--muted); }

.flip {
    display: inline-block;
    height: 1.45em;
    overflow: hidden;
    vertical-align: middle;
}

.flip-inner {
    display: flex;
    flex-direction: column;
    transition: transform 0.32s var(--ease-out);
}

.flip-inner > span { height: 1.45em; line-height: 1.45em; }

.flip-alt {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--coral);
}

.nav-link:hover .flip-inner { transform: translateY(-1.45em); }

.nav-link:hover { color: var(--ink); }

/* ============ Hero ============ */

.hero {
    padding: calc(var(--header-h) + 88px) 0 120px;
    overflow: hidden;
}

.hero-inner { text-align: center; }

.hero-title {
    font-size: clamp(46px, 7.2vw, 88px);
    margin: 18px auto 26px;
    max-width: 14ch;
}

.hero-sub {
    font-size: 18.5px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 58ch;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Kelime makarası: momentum easing ile dönen görev örnekleri */
.hero-reel {
    margin-top: 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.1em;
    color: var(--tertiary);
}

.reel-label { text-transform: uppercase; }

.reel-window {
    display: inline-block;
    height: 1.5em;
    overflow: hidden;
    vertical-align: bottom;
}

.reel-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.9s var(--ease-out);
}

.reel-word {
    height: 1.5em;
    line-height: 1.5em;
    color: var(--coral-deep);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: left;
    white-space: nowrap;
}

/* ============ Telefon maketi ============ */

.hero-stage {
    position: relative;
    margin-top: 84px;
    display: flex;
    justify-content: center;
}

/* ---- Terra telefon maketi: uygulamanın gerçek görsel dili ----
   Krem zemin, orman yeşili, adaçayı organik blob'lar, serif sayaç. */
.phone {
    --terra-canvas: #F8F4EC;
    --terra-ink: #2F3A33;
    --terra-muted: #6E7B70;
    --terra-forest: #3F7652;
    --terra-forest-deep: #336043;
    --terra-sage: #A8BFA0;
    --terra-sand: #E9E0CE;
    width: 300px;
    background: #23291F;
    border-radius: 46px;
    padding: 10px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(27, 25, 22, 0.08);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 86px;
    height: 22px;
    background: #23291F;
    border-radius: 999px;
    z-index: 2;
}

.phone-screen {
    background: var(--terra-canvas);
    border-radius: 38px;
    padding: 52px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 560px;
    overflow: hidden;
}

.phone-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.phone-greet {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-greet-hi {
    font-size: 11px;
    color: var(--terra-muted);
}

.phone-greet-name {
    font-family: "Cormorant Garamond", var(--font-display);
    font-size: 21px;
    font-weight: 600;
    color: var(--terra-ink);
}

.phone-streak {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--terra-forest);
    background: rgba(63, 118, 82, 0.1);
    border-radius: 999px;
    padding: 4px 10px;
}

.phone-modes {
    display: flex;
    gap: 6px;
    background: var(--terra-sand);
    padding: 4px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.phone-mode {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--terra-muted);
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 7px 13px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.phone-mode.active {
    background: var(--terra-forest);
    color: var(--terra-canvas);
}

/* Organik blob katmanları: uygulamadaki asimetrik Bézier morfunun CSS hali */
.phone-blob-wrap {
    position: relative;
    width: 210px;
    height: 210px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-blob {
    position: absolute;
    inset: 0;
    border-radius: 47% 53% 58% 42% / 51% 45% 55% 49%;
}

.phone-blob-a {
    background: rgba(168, 191, 160, 0.4);
    transform: scale(1.04) rotate(6deg);
}

.phone-blob-b {
    background: rgba(63, 118, 82, 0.16);
    border-radius: 55% 45% 44% 56% / 46% 57% 43% 54%;
    transform: scale(0.94) rotate(-9deg);
}

.phone-blob-c {
    background: var(--terra-canvas);
    border-radius: 50% 50% 46% 54% / 53% 47% 53% 47%;
    inset: 22px;
    box-shadow: 0 10px 30px rgba(47, 58, 51, 0.10);
}

.timer-running .phone-blob-a { animation: blob-morph-a 9s ease-in-out infinite alternate; }
.timer-running .phone-blob-b { animation: blob-morph-b 11s ease-in-out infinite alternate; }

@keyframes blob-morph-a {
    from { border-radius: 47% 53% 58% 42% / 51% 45% 55% 49%; transform: scale(1.04) rotate(6deg); }
    to { border-radius: 58% 42% 45% 55% / 44% 56% 46% 54%; transform: scale(1.0) rotate(-4deg); }
}

@keyframes blob-morph-b {
    from { border-radius: 55% 45% 44% 56% / 46% 57% 43% 54%; transform: scale(0.94) rotate(-9deg); }
    to { border-radius: 44% 56% 57% 43% / 55% 44% 56% 45%; transform: scale(0.99) rotate(7deg); }
}

@media (prefers-reduced-motion: reduce) {
    .timer-running .phone-blob-a,
    .timer-running .phone-blob-b { animation: none; }
}

.phone-time {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 1;
}

.phone-clock {
    font-family: "Cormorant Garamond", var(--font-display);
    font-size: 46px;
    font-weight: 500;
    color: var(--terra-ink);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}

.phone-clock-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    color: var(--terra-muted);
}

.phone-start {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--terra-canvas);
    background: var(--terra-forest);
    border: none;
    border-radius: 999px;
    padding: 13px;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.phone-start:hover { background: var(--terra-forest-deep); transform: translateY(-1px); }

.phone-start.paused { background: var(--terra-sand); color: var(--terra-ink); }
.phone-start.paused:hover { background: #DFD4BE; }

.phone-tabbar {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(47, 58, 51, 0.08);
}

.phone-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 500;
    color: var(--terra-muted);
}

.phone-tab.active { color: var(--terra-forest); }

/* Yüzen bilgi kartları */
.float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 14px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: floaty 7s ease-in-out infinite alternate;
}

.float-chip svg { color: var(--coral); flex-shrink: 0; }

.float-chip-xp { top: 6%; left: calc(50% - 320px); animation-delay: 0s; }
.float-chip-dump { bottom: 22%; right: calc(50% - 330px); animation-delay: 1.8s; }
.float-chip-coin { bottom: 4%; left: calc(50% - 300px); animation-delay: 3.4s; }

.float-chip.pulse { animation: chip-pulse 0.6s var(--ease-out); }

@keyframes floaty {
    from { transform: translateY(-5px); }
    to { transform: translateY(6px); }
}

@keyframes chip-pulse {
    0% { transform: scale(1); }
    35% { transform: scale(1.07); box-shadow: 0 14px 34px rgba(229, 96, 74, 0.22); }
    100% { transform: scale(1); }
}

/* ============ Bölümler ============ */

.section {
    padding: 116px 0;
    border-top: 1px solid var(--line);
}

.sec-title {
    font-size: clamp(36px, 4.8vw, 58px);
    max-width: 22ch;
    margin-bottom: 24px;
}

.sec-title-center { margin-left: auto; margin-right: auto; text-align: center; }

.sec-lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 52ch;
    margin-bottom: 64px;
}

/* 01 — asimetrik iki kolon */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.split-body > p {
    font-size: 17.5px;
    color: var(--muted);
    margin-bottom: 44px;
    max-width: 56ch;
}

.point-list { border-top: 1px solid var(--line); }

.point {
    display: flex;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.point-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--coral-deep);
    padding-top: 4px;
    flex-shrink: 0;
}

.point h3 {
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.point p { font-size: 15.5px; color: var(--muted); line-height: 1.6; }

/* 02 — üç adım */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 72px;
}

.step {
    border-top: 1px solid var(--ink);
    padding-top: 26px;
    position: relative;
}

.step-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--tertiary);
    letter-spacing: 0.08em;
}

.step-icon {
    width: 34px;
    height: 34px;
    color: var(--coral-deep);
    display: block;
    margin: 22px 0 18px;
}

.step h3 {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.step p { font-size: 15.5px; color: var(--muted); line-height: 1.65; }

/* 03 — koyu mentor bölümü */
.section-dark {
    background: var(--ink);
    color: var(--cream);
    border-top: none;
}

.section-dark .sec-title em { color: var(--coral-soft); }

.section-dark .sec-lead { color: var(--tertiary); }

.mentors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mentor {
    border: 1px solid var(--line-dark);
    border-radius: 20px;
    padding: 30px 28px 34px;
    background: var(--ink-2);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.mentor:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 96, 74, 0.4);
}

.mentor figcaption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-dark);
}

.mentor-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
}

.mentor-trait {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--coral-soft);
}

.mentor blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 21px;
    font-weight: 460;
    line-height: 1.42;
    letter-spacing: -0.01em;
    color: rgba(250, 250, 247, 0.88);
}

/* 04 — detay satırları */
.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 72px 0;
    border-top: 1px solid var(--line-soft);
    margin-top: 24px;
}

.detail-row-flip .detail-text { order: 2; }
.detail-row-flip .detail-visual { order: 1; }

.detail-text h3 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 18px;
}

.detail-text p { font-size: 16.5px; color: var(--muted); max-width: 46ch; }

.detail-note {
    margin-top: 18px;
    font-family: var(--font-mono);
    font-size: 11.5px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral-deep) !important;
}

/* Detay görselleri: CSS ile çizilmiş mini UI'lar */
.detail-visual { display: flex; justify-content: center; }

.audio-card, .dump, .room {
    width: 100%;
    max-width: 420px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-md);
}

/* Focus Audio kartı: uygulamadaki soundscape listesinin mini hali */
.audio-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: var(--muted);
}

.audio-row + .audio-row { border-top: 1px solid var(--line); }

.audio-row.playing { color: var(--ink); }

.audio-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.audio-cat {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    color: var(--tertiary);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px 9px;
}

.audio-row.playing .audio-cat {
    color: var(--coral-deep);
    border-color: var(--coral-soft);
}

.audio-eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 2.5px;
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.audio-eq i {
    width: 2.5px;
    background: var(--coral);
    border-radius: 2px;
    animation: eq-bounce 1.1s ease-in-out infinite;
}

.audio-eq i:nth-child(1) { height: 55%; animation-delay: 0s; }
.audio-eq i:nth-child(2) { height: 100%; animation-delay: 0.22s; }
.audio-eq i:nth-child(3) { height: 70%; animation-delay: 0.44s; }

@keyframes eq-bounce {
    0%, 100% { transform: scaleY(0.55); }
    50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    .audio-eq i { animation: none; }
}

.dump-input-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.dump-placeholder { font-size: 13.5px; color: var(--tertiary); }

.dump-lock-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--cream);
    background: var(--ink);
    border-radius: 8px;
    padding: 7px 11px;
    flex-shrink: 0;
}

.dump-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--muted);
    padding: 9px 0;
}

.dump-item svg { color: var(--tertiary); flex-shrink: 0; }

.room-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.room-title { font-size: 15px; font-weight: 600; }

.room-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--coral-deep);
}

.room-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
    animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.room-avatars { display: flex; margin-bottom: 22px; }

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--a);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid var(--cream-2);
    margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.avatar-more {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px dashed var(--tertiary);
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.room-timer {
    font-family: var(--font-mono);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.room-timer span {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tertiary);
    margin-left: 10px;
}

/* 05 — fiyat */
.plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 880px;
    margin: 72px auto 0;
    align-items: stretch;
}

.plan {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 38px 36px;
    background: var(--cream);
    display: flex;
    flex-direction: column;
}

.plan-pro {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 36px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    background: var(--coral);
    color: var(--cream);
    padding: 6px 12px;
    border-radius: 999px;
}

.plan-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.plan-pro .plan-name { color: var(--coral-soft); }

.plan-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }

.plan-amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 560;
    letter-spacing: -0.03em;
    line-height: 1;
}

.plan-period {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--tertiary);
    letter-spacing: 0.04em;
}

.plan-desc { font-size: 14.5px; color: var(--muted); margin-bottom: 28px; }
.plan-pro .plan-desc { color: var(--tertiary); }

.plan-list {
    list-style: none;
    border-top: 1px solid var(--line);
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-pro .plan-list { border-top-color: var(--line-dark); }

.plan-list li {
    font-size: 15px;
    color: var(--muted);
    padding: 13px 0 13px 26px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
}

.plan-pro .plan-list li { color: rgba(250, 250, 247, 0.72); border-bottom-color: var(--line-dark); }

.plan-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 20px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
}

.plan-btn { width: 100%; }

.plan-pro .btn-primary { box-shadow: none; }

.plans-note {
    max-width: 62ch;
    margin: 32px auto 0;
    text-align: center;
    font-size: 13.5px;
    color: var(--tertiary);
}

/* ============ CTA (mercan) ============ */

.cta {
    background: var(--coral);
    color: var(--cream);
    padding: 128px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(38px, 5.4vw, 66px);
    max-width: 20ch;
    margin: 0 auto 22px;
}

.cta-title em { color: var(--ink); }

.cta-sub {
    font-size: 18px;
    color: rgba(250, 250, 247, 0.85);
    margin-bottom: 44px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 14px;
    padding: 12px 22px;
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(27, 25, 22, 0.28);
}

/* Play is still in closed testing, so its button stays a placeholder — but it
   should look like one rather than like a link that silently does nothing. */
.store-btn-soon {
    opacity: .55;
    cursor: not-allowed;
}

.store-btn-soon:hover {
    transform: none;
}

.store-btn small {
    display: block;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 250, 247, 0.6);
    margin-bottom: 2px;
}

.store-btn span { font-size: 16.5px; font-weight: 500; line-height: 1.2; }

/* ============ Footer ============ */

.footer {
    background: var(--ink);
    color: var(--cream);
    padding: 56px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-footer .brand-name { color: var(--cream); }

.footer-nav { display: flex; gap: 24px; margin-left: auto; }

.footer-nav a {
    font-size: 13.5px;
    color: var(--tertiary);
    transition: color 0.15s ease;
}

.footer-nav a:hover { color: var(--cream); }

.footer-note {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--tertiary);
    border-top: 1px solid var(--line-dark);
    padding-top: 24px;
}

/* ============ Responsive ============ */

@media (max-width: 960px) {
    .grid-split { grid-template-columns: 1fr; gap: 40px; }
    .steps { grid-template-columns: 1fr; gap: 36px; }
    .mentors { grid-template-columns: 1fr; }
    .detail-row { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
    .detail-row-flip .detail-text { order: 1; }
    .detail-row-flip .detail-visual { order: 2; }
    .plans { grid-template-columns: 1fr; }

    .float-chip-xp { left: 4%; }
    .float-chip-coin { left: 2%; }
    .float-chip-dump { right: 3%; }
}

@media (max-width: 760px) {
    .site-nav { display: none; }
    .header-side { margin-left: auto; }
    .header-cta { display: none; }

    .hero { padding: calc(var(--header-h) + 56px) 0 88px; }
    .hero-sub { font-size: 16.5px; }

    .section { padding: 84px 0; }

    .hero-stage { margin-top: 64px; }

    .float-chip { font-size: 10.5px; padding: 8px 11px; }
    .float-chip-xp { top: -3%; left: 0; }
    .float-chip-dump { bottom: 30%; right: -2%; }
    .float-chip-coin { bottom: -3%; left: 4%; }

    .plan { padding: 30px 26px; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .footer-nav { margin-left: 0; flex-wrap: wrap; }
}

/* ============ Dil seçici ============ */

.header-side {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch { position: relative; }

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 13px;
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.lang-btn:hover { color: var(--ink); border-color: var(--tertiary); }

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 6px;
    box-shadow: var(--shadow-md);
    list-style: none;
    display: none;
    z-index: 60;
}

.lang-menu.open { display: block; }

.lang-menu li {
    font-size: 14px;
    color: var(--muted);
    border-radius: 9px;
    padding: 9px 12px;
    cursor: pointer;
}

.lang-menu li:hover { background: var(--cream-2); color: var(--ink); }

.lang-menu li[aria-selected="true"] {
    color: var(--coral-deep);
    font-weight: 600;
}

/* ============ Yasal / destek sayfaları ============ */

.legal-main {
    max-width: 760px;
    margin: 0 auto;
    padding: calc(var(--header-h) + 56px) 24px 96px;
}

.legal-main h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.legal-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--tertiary);
    margin-bottom: 34px;
}

.legal-notice {
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 14.5px;
    color: var(--muted);
    margin-bottom: 40px;
}

.legal-main h2 {
    font-family: var(--font-display);
    font-size: 24px;
    margin: 42px 0 12px;
}

.legal-main h3 { font-size: 17px; margin: 26px 0 8px; }

.legal-main p, .legal-main li {
    font-size: 16px;
    color: var(--ink-2);
    margin-bottom: 12px;
}

.legal-main ul { padding-left: 22px; margin-bottom: 16px; }

.legal-main a { color: var(--coral-deep); text-decoration: underline; text-underline-offset: 3px; }

.legal-back {
    display: inline-block;
    margin-bottom: 36px;
    font-size: 14.5px;
    color: var(--muted) !important;
    text-decoration: none !important;
}

.legal-back:hover { color: var(--ink) !important; }

.support-card {
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 28px;
    margin: 28px 0 44px;
}

.support-card h2 { margin-top: 0 !important; }

.support-email {
    font-family: var(--font-mono);
    font-size: 17px;
    font-weight: 500;
}

/* ============ Hareket azaltma ============ */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .float-chip, .room-live-dot { animation: none; }
    .reel-track { transition: none; }
    .btn, .mentor, .store-btn { transition: none; }
    .btn:hover, .mentor:hover, .store-btn:hover { transform: none; }
    .flip-inner { transition: none; }
}
