/* ===== RAZORA FITNESS — LANDING PAGE ===== */
/* Fonts werden via /css/fonts.css geladen (gemeinsam mit App) */

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

:root {
    --bg:              #0a0a0f;
    --bg-2:            #0e0e17;
    --bg-card:         #101018;
    --orange:          #f97316;
    --orange-dim:      rgba(249, 115, 22, 0.10);
    --orange-mid:      rgba(249, 115, 22, 0.22);
    --orange-glow:     rgba(249, 115, 22, 0.35);
    --purple:          #8b5cf6;
    --purple-dim:      rgba(139, 92, 246, 0.08);
    --green:           #22c55e;
    --blue:            #3b82f6;
    --text:            #e4e4e7;
    --text-2:          #a1a1aa;
    --text-3:          #52525b;
    --glass:           rgba(255, 255, 255, 0.04);
    --glass-2:         rgba(255, 255, 255, 0.07);
    --glass-border:    rgba(255, 255, 255, 0.07);
    --glass-border-2:  rgba(255, 255, 255, 0.14);
    --nav-bg:          rgba(10, 10, 15, 0.88);
    --grain-opacity:   0.022;
    --font-display:    'Syne', sans-serif;
    --font-mono:       'DM Mono', monospace;
    --font-body:       'Plus Jakarta Sans', sans-serif;
    --r:               20px;
    --r-sm:            12px;
    --ease:            cubic-bezier(0.4, 0, 0.2, 1);
    --t:               0.3s;
}

/* ── Light-Mode-Variablen ──
   Aktiv wenn data-theme="light" auf <html> gesetzt wird (von theme-init.js
   bei Mode 'light' oder System-Default mit Light-OS).
   Brand-Orange bleibt identisch — sorgt für Wiedererkennung. */
:root[data-theme="light"] {
    --bg:              #f5f6f8;
    --bg-2:            #ffffff;
    --bg-card:         #ffffff;
    --orange-dim:      rgba(249, 115, 22, 0.08);
    --orange-mid:      rgba(249, 115, 22, 0.18);
    --orange-glow:     rgba(249, 115, 22, 0.25);
    --purple-dim:      rgba(139, 92, 246, 0.06);
    --text:            #18181b;
    --text-2:          #52525b;
    --text-3:          #a1a1aa;
    --glass:           rgba(15, 23, 42, 0.03);
    --glass-2:         rgba(15, 23, 42, 0.06);
    --glass-border:    rgba(15, 23, 42, 0.08);
    --glass-border-2:  rgba(15, 23, 42, 0.14);
    --nav-bg:          rgba(255, 255, 255, 0.92);
    --grain-opacity:   0.012;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
}

/* ── GRAIN OVERLAY ── */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ── UTILS ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    padding: 4px 14px;
    border: 1px solid var(--orange-mid);
    border-radius: 100px;
    background: var(--orange-dim);
    margin-bottom: 18px;
}

.section-label::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 2s ease-in-out infinite;
}

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

/* ── NAVBAR ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding var(--t) var(--ease),
                background var(--t) var(--ease),
                border-color var(--t) var(--ease),
                backdrop-filter var(--t) var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    padding: 14px 36px;
    background: var(--nav-bg);
    border-bottom-color: var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.nav-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.92;
    text-decoration: none;
    font-family: var(--font-display);
    gap: 2px;
}

.brand-razora {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.brand-fitness {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.21em;
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-2);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: color var(--t);
}

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

.nav-cta {
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: var(--r-sm);
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}

.nav-cta:hover {
    background: #ea6706;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--orange-glow);
}

/* ── HERO ── */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 130px 28px 100px;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.orb-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 65%);
    top: -250px; right: -150px;
    animation: o1 9s ease-in-out infinite;
}

.orb-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 65%);
    bottom: -120px; left: -100px;
    animation: o2 11s ease-in-out infinite;
}

.orb-3 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 65%);
    top: 45%; left: 38%;
    animation: o3 14s ease-in-out infinite;
}

@keyframes o1 { 0%,100%{transform:translate(0,0) scale(1)}  50%{transform:translate(-35px,35px) scale(1.06)} }
@keyframes o2 { 0%,100%{transform:translate(0,0) scale(1)}  50%{transform:translate(30px,-25px) scale(1.09)} }
@keyframes o3 { 0%,100%{transform:translate(0,0)}  33%{transform:translate(25px,-35px)}  66%{transform:translate(-25px,22px)} }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--orange);
    border: 1px solid var(--orange-mid);
    background: var(--orange-dim);
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(16px);
    animation: up .6s var(--ease) .1s forwards;
}

.hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6.5vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 28px;
}

.hero-title .l1,
.hero-title .l2,
.hero-title .l3 {
    display: block;
}

@media (min-width: 641px) {
    .hero-title .l1,
    .hero-title .l2,
    .hero-title .l3 {
        white-space: nowrap;
    }
}

.hero-title .l2,
.hero-title .l3 {
    background: linear-gradient(130deg, var(--orange) 0%, #fb923c 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Char-Reveal für Hero-Headline (von landing.js gesplittet) */
.hero-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.65em);
    animation: charReveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Gradient muss pro Char gerendert werden (background-clip:text vom Parent
   wirkt nicht durch inline-block Kinder). Mit background-attachment:fixed
   bleibt der Gradient viewport-relativ → wirkt wie ein durchgehender. */
.hero-title .l2 .hero-char,
.hero-title .l3 .hero-char {
    background: linear-gradient(130deg, var(--orange) 0%, #fb923c 50%, #fbbf24 100%);
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@keyframes charReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-2);
    max-width: 490px;
    margin: 0 auto 44px;
    line-height: 1.75;
    opacity: 0; transform: translateY(18px);
    animation: up .7s var(--ease) .52s forwards;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0; transform: translateY(18px);
    animation: up .7s var(--ease) .66s forwards;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--t), transform var(--t), box-shadow var(--t),
                color var(--t), border-color var(--t);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
}

.btn-primary:hover {
    background: #ea6706;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--orange-glow);
}

.btn-ghost {
    background: var(--glass);
    color: var(--text-2);
    border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
    background: var(--glass-2);
    color: var(--text);
    border-color: var(--glass-border-2);
    transform: translateY(-1px);
}

.btn-lg { padding: 17px 40px; font-size: 16px; }

.btn svg { flex-shrink: 0; }

/* ── SCROLL HINT ── */
.hero-scroll {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 1.8s forwards, scrollBob 2.4s ease-in-out 2.8s infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,.18), transparent);
}

@keyframes scrollBob {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(7px); }
}

/* ── STATS ── */
.stats {
    position: relative;
    padding: 56px 28px;
    border-top: 1px solid rgba(249,115,22,.12);
    border-bottom: 1px solid rgba(249,115,22,.12);
    background: rgba(249,115,22,.04);
}

.stats-inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat {
    flex: 1;
    text-align: center;
    padding: 16px 20px;
}

.stat-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
    margin-bottom: 6px;
}

.stat-num {
    font-family: var(--font-mono);
    font-size: 52px;
    font-weight: 500;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-family: var(--font-mono);
    font-size: 28px;
    color: var(--orange);
    line-height: 1;
    margin-left: 1px;
}

.stat-label {
    display: block;
    font-size: 12.5px;
    color: var(--text-2);
    letter-spacing: 0.04em;
}

.stat-sep {
    width: 1px;
    height: 56px;
    background: var(--glass-border);
    flex-shrink: 0;
}

.trust-strip {
    max-width: 760px;
    margin: 28px auto 0;
    padding-top: 24px;
    border-top: 1px dashed var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-2);
    letter-spacing: 0.02em;
}

.trust-icon { font-size: 14px; line-height: 1; }

.trust-icon-flag {
    width: 18px;
    height: 13.5px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.trust-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-3);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ── FEATURES ── */
.features {
    padding: 120px 28px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.1;
}

.section-header p {
    color: var(--text-2);
    font-size: 17px;
    font-weight: 300;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    transition: background var(--t), border-color var(--t),
                transform var(--t), box-shadow var(--t);
    cursor: default;
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,.4), transparent);
    opacity: 0;
    transition: opacity var(--t);
}

.feat-card:hover {
    background: var(--glass-2);
    border-color: var(--glass-border-2);
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.feat-card:hover::after { opacity: 1; }

.feat-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--orange-dim);
    border: 1px solid rgba(249,115,22,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: background var(--t), box-shadow var(--t);
}

.feat-card:hover .feat-icon {
    background: var(--orange-mid);
    box-shadow: 0 0 22px rgba(249,115,22,.2);
}

.feat-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 9px;
    letter-spacing: -0.02em;
}

.feat-desc {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.65;
    font-weight: 300;
}

.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 14px;
}

.feat-tag {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: var(--text-3);
    background: rgba(255,255,255,.03);
    border: 1px solid var(--glass-border);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

/* KI-Highlight-Card — spans full grid width */
.feat-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--orange-dim) 0%, rgba(139,92,246,.06) 100%);
    border-color: var(--orange-mid);
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
}

.feat-highlight::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    animation: o3 14s ease-in-out infinite;
}

.feat-highlight:hover {
    background: linear-gradient(135deg, var(--orange-mid) 0%, rgba(139,92,246,.10) 100%);
    border-color: rgba(249,115,22,.4);
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 60px rgba(249,115,22,.12);
}

.feat-highlight-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feat-highlight .feat-icon {
    width: 64px; height: 64px;
    font-size: 28px;
    border-radius: 16px;
    background: var(--orange-mid);
    border-color: rgba(249,115,22,.35);
    box-shadow: 0 0 30px rgba(249,115,22,.25);
    flex-shrink: 0;
    margin-bottom: 0;
}

.feat-highlight .feat-title {
    font-size: 22px;
    margin-bottom: 8px;
}

.feat-highlight .feat-desc {
    font-size: 15px;
    line-height: 1.7;
    max-width: 720px;
}

.feat-highlight .feat-tags { margin-top: 18px; }

@media (max-width: 640px) {
    .feat-highlight { padding: 28px 24px; }
    .feat-highlight-inner { flex-direction: column; gap: 16px; }
    .feat-highlight .feat-icon { width: 52px; height: 52px; font-size: 22px; }
    .feat-highlight .feat-title { font-size: 19px; }
}

/* ── SHOWCASE (Tabbed Phone-Mockup, theme-aware) ── */
.showcase {
    padding: 120px 28px;
    background: var(--bg-2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.showcase-wrap {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-tabs {
    display: flex;
    gap: 6px;
    padding: 6px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.showcase-tab {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 10px 16px;
    border-radius: 100px;
    color: var(--text-2);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--t), color var(--t), transform var(--t);
}

.showcase-tab:hover {
    color: var(--text);
    background: var(--glass-2);
}

.showcase-tab.is-active {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 18px var(--orange-glow);
}

.showcase-tab.is-active:hover {
    background: var(--orange);
    color: #fff;
}

.showcase-tab-icon {
    flex-shrink: 0;
    opacity: 0.85;
}

.showcase-tab.is-active .showcase-tab-icon {
    opacity: 1;
}

.showcase-stage {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
}

.showcase-glow {
    position: absolute;
    inset: -10% 30%;
    background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 60%);
    filter: blur(60px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.showcase-phone {
    position: relative;
    z-index: 1;
    width: 280px;
    aspect-ratio: 9 / 19.5;
    border-radius: 38px;
    border: 1.5px solid var(--glass-border-2);
    background: #000;
    overflow: hidden;
    box-shadow:
        0 50px 110px rgba(0, 0, 0, 0.45),
        0 0 80px var(--orange-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform .4s var(--ease), box-shadow var(--t);
    will-change: transform;
}

.showcase-stage.tilting .showcase-phone {
    transition: transform .12s ease-out;
}

.showcase-screen {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
    pointer-events: none;
}

.showcase-img.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.showcase-captions {
    margin-top: 28px;
    min-height: 64px;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.showcase-caption {
    position: absolute;
    inset: 0;
    color: var(--text-2);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    pointer-events: none;
}

.showcase-caption.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.showcase-bullets {
    margin-top: 36px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
}

.mockup-bullets {
    display: flex;
    flex-direction: column;
    gap: 11px;
    list-style: none;
    padding: 0;
}

.mockup-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-2);
}

.mockup-bullet::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .showcase { padding: 90px 20px; }
    .showcase-tabs { gap: 4px; padding: 5px; margin-bottom: 32px; }
    .showcase-tab { padding: 8px 12px; font-size: 12px; }
    .showcase-tab span:not(.showcase-tab-icon) { font-size: 12px; }
    .showcase-phone { width: 240px; }
    .showcase-caption { font-size: 14px; }
    .showcase-bullets { gap: 10px 16px; font-size: 12.5px; }
}

/* ── PRICING ── */
.pricing {
    padding: 120px 28px;
    background: var(--bg-2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.pricing-grid {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.pricing-card:hover {
    border-color: var(--glass-border-2);
    transform: translateY(-3px);
}

.pricing-pro {
    background: linear-gradient(155deg, var(--orange-dim) 0%, rgba(139,92,246,.04) 100%);
    border-color: var(--orange-mid);
}

.pricing-pro:hover {
    border-color: rgba(249,115,22,.45);
    box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 60px rgba(249,115,22,.10);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(249,115,22,.4);
}

.pricing-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.pricing-pro .pricing-tier {
    background: linear-gradient(135deg, var(--orange) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-pro .pricing-amount {
    background: linear-gradient(135deg, var(--orange) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-per {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.04em;
}

.pricing-alt {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.02em;
    margin-top: 4px;
}

.pricing-tagline {
    font-size: 14.5px;
    color: var(--text-2);
    font-weight: 300;
    line-height: 1.5;
}

.pricing-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pricing-list li {
    position: relative;
    padding-left: 22px;
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.6;
    font-weight: 300;
}

.pricing-list li strong {
    color: var(--text);
    font-weight: 500;
}

.pricing-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 7px;
    border-left: 1.5px solid var(--orange);
    border-bottom: 1.5px solid var(--orange);
    transform: rotate(-45deg);
}

.pricing-cta {
    margin-top: 8px;
    justify-content: center;
    width: 100%;
}

.pricing-actions {
    max-width: 920px;
    margin: 36px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.pricing-main-cta {
    min-width: 220px;
}

.pricing-actions-note {
    color: var(--text-2);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 540px;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-3);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

@media (max-width: 760px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
    }
    .pricing-card { padding: 28px 24px; }
}

/* ── VISION / STORY ── */
.vision {
    padding: 140px 28px;
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(249,115,22,.05) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

.vision-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.vision-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--glass-border-2);
    box-shadow:
        0 30px 80px rgba(0,0,0,.5),
        0 0 60px rgba(249,115,22,.08);
}

.vision-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.vision-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-inner {
    text-align: left;
}

.vision-inner .section-label {
    margin-bottom: 24px;
}

.vision-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 36px;
}

.vision-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 48px;
}

.vision-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-2);
    font-weight: 300;
}

.vision-text strong {
    color: var(--text);
    font-weight: 500;
}

.vision-sign {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.vision-sign-line {
    width: 40px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
}

.vision-sign-text {
    display: flex;
    flex-direction: column;
}

.vision-sign-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
}

.vision-sign-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ── FAQ ── */
.faq {
    padding: 120px 28px;
    background: var(--bg-2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-sm);
    transition: border-color var(--t), background var(--t);
}

.faq-item:hover {
    border-color: var(--glass-border-2);
}

.faq-item[open] {
    background: var(--glass-2);
    border-color: var(--orange-mid);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 300;
    color: var(--orange);
    line-height: 1;
    flex-shrink: 0;
    transition: transform var(--t);
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.75;
    font-weight: 300;
}

.faq-answer p strong {
    color: var(--text);
    font-weight: 500;
}

@media (max-width: 640px) {
    .faq-item summary { padding: 18px 20px; font-size: 15px; }
    .faq-answer { padding: 0 20px 20px; }
}

/* ── CTA FINAL ── */
.cta-final {
    padding: 160px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 55% at 50% 50%, rgba(249,115,22,.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.8vw, 56px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-2);
    font-weight: 300;
    margin-bottom: 40px;
}

/* ── FOOTER ── */
.footer {
    padding: 36px 36px;
    border-top: 1px solid var(--glass-border);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.footer-copy {
    text-align: right;
}

.footer-links {
    justify-self: center;
}

@media (max-width: 720px) {
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .footer-copy { text-align: center; }
}

.footer-brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.92;
    font-family: var(--font-display);
    gap: 1px;
}

.footer-brand .brand-razora {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-2);
}

.footer-brand .brand-fitness {
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.21em;
    color: var(--orange);
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: var(--text-3);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--t);
}

.footer-links a:hover { color: var(--text-2); }

.footer-copy {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    text-align: right;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ── KEYFRAMES ── */
@keyframes up {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 600px;
    }

    .vision-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .mockup-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .mockup-text { max-width: 100%; text-align: center; }
    .mockup-bullets { align-items: flex-start; max-width: 380px; margin: 0 auto; }

    .phones { height: 500px; }
    .phone-center { width: 210px; height: 442px; }
    .phone-side   { width: 180px; height: 378px; }
    .phone-left   { transform: rotate(-10deg) translateX(-120px) translateY(35px); }
    .phone-right  { transform: rotate(8deg) translateX(120px) translateY(15px); }

    .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

    .footer { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
    .nav { padding: 18px 20px; }
    .nav.scrolled { padding: 12px 20px; }
    .nav-link { display: none; }
    /* Header-CTA auf Mobile raus — Hero hat eigenen "Kostenlos starten"-
       Button direkt darunter, Header-CTA quetscht Logo + Sprach-Switcher
       + Theme-Toggle. */
    .nav-cta { display: none; }

    .features-grid { grid-template-columns: 1fr; }

    .hero { padding: 110px 20px 80px; }

    .phones { height: 420px; }
    .phone-center { width: 170px; height: 358px; }
    .phone-side   { width: 145px; height: 305px; }
    .phone-left   { transform: rotate(-12deg) translateX(-90px) translateY(28px); }
    .phone-right  { transform: rotate(10deg) translateX(90px) translateY(10px); }

    .stats-inner { flex-direction: column; gap: 0; }
    .stat-sep    { width: 80px; height: 1px; }
}

/* ===== Lang-Switcher (in Nav-Bar) ===== */

.lang-switcher {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-sm);
    color: var(--text-2);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t);
    font-family: inherit;
    line-height: 1;
}

.lang-switcher-btn:hover {
    background: var(--glass-2);
    border-color: var(--glass-border-2);
    color: var(--text);
}

.lang-switcher-btn:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.lang-switcher-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lang-switcher-code {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.lang-switcher-caret {
    font-size: 10px;
    opacity: 0.7;
}

.lang-switcher-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: var(--bg-2, #14181d);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
    /* Theme-aware Scrollbar (Firefox + Chromium) */
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border-2) transparent;
}

.lang-switcher-menu::-webkit-scrollbar {
    width: 8px;
}

.lang-switcher-menu::-webkit-scrollbar-track {
    background: transparent;
}

.lang-switcher-menu::-webkit-scrollbar-thumb {
    background: var(--glass-border-2);
    border-radius: 100px;
    border: 2px solid var(--bg-2, #14181d);
}

.lang-switcher-menu::-webkit-scrollbar-thumb:hover {
    background: var(--text-3);
}

[data-lang-switcher][data-direction="up"] .lang-switcher-menu {
    top: auto;
    bottom: calc(100% + 6px);
}

.lang-switcher-menu[hidden] { display: none; }

.lang-switcher-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--r-sm);
    cursor: pointer;
    color: var(--text-2);
    font-size: 13.5px;
    transition: background var(--t), color var(--t);
}

.lang-switcher-option:hover {
    background: var(--glass-2);
    color: var(--text);
}

.lang-switcher-option[aria-selected="true"] {
    background: var(--orange-dim);
    color: var(--orange);
    font-weight: 600;
}

.lang-switcher-name {
    flex: 1;
}

@media (max-width: 720px) {
    .lang-switcher-code { display: none; }
    .lang-switcher-btn {
        padding: 7px 10px;
    }
}

/* ===== Theme-Toggle (Sun ↔ Moon, in Nav rechts neben Lang-Switcher) ===== */

.theme-toggle {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-sm);
    color: var(--text-2);
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
    font-family: inherit;
    line-height: 1;
}

.theme-toggle:hover {
    background: var(--glass-2);
    border-color: var(--glass-border-2);
    color: var(--orange);
    transform: translateY(-1px);
}

.theme-toggle:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.theme-toggle-icon {
    flex-shrink: 0;
    transition: opacity var(--t), transform var(--t);
}

/* Default = Dark-Mode → Moon-Icon zeigen (klick um zu Light), Sun versteckt */
.theme-toggle .theme-toggle-icon-sun  { display: none; }
.theme-toggle .theme-toggle-icon-moon { display: inline-block; }

/* Light-Mode → Sun-Icon zeigen (klick um zu Dark), Moon versteckt */
:root[data-theme="light"] .theme-toggle .theme-toggle-icon-sun  { display: inline-block; }
:root[data-theme="light"] .theme-toggle .theme-toggle-icon-moon { display: none; }
