/* ═══════════════════════════════════════
   HOME.CSS – inzpyre iOS App Landing
   Editorial · Instrument Serif + Plus Jakarta + JetBrains Mono
   Semantic colors: BLUE = old world, TURQUOISE = new world
   ═══════════════════════════════════════ */

:root {
    --ink: #0A0E1D;
    --ink-2: #12182E;
    --bone: #F3EDE0;
    --rule: rgba(255, 255, 255, 0.08);
    --rule-strong: rgba(255, 255, 255, 0.18);
    --cream-rule: rgba(10, 14, 29, 0.1);
    --cream-rule-strong: rgba(10, 14, 29, 0.25);
    --old: var(--blue);
    --new: var(--turquoise);
    --font-serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

body { background: var(--ink); }

.font-serif { font-family: var(--font-serif); }
.font-mono  { font-family: var(--font-mono); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--rule-strong);
}
.eyebrow.on-cream { color: rgba(10, 14, 29, 0.55); }
.eyebrow.on-cream::before { background: var(--cream-rule-strong); }

.record-no {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.display {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.04;
    color: var(--text-primary);
}
.display em { font-style: italic; font-weight: 400; color: var(--new); }
.display em.old { color: var(--old); }
.display em.new { color: var(--new); }
.display.on-cream { color: var(--ink); }
.display.on-cream em { color: var(--new); }
.display.on-cream em.old { color: var(--old); }

/* ── Brand lockup ── */
.nav-logo { gap: 10px; }
.nav-logo .nav-mark {
    width: 30px; height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 177, 234, 0.35));
}
.nav-wordmark {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.footer-brand { gap: 10px; align-items: center; }
.footer-brand .footer-mark {
    width: 26px; height: 26px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 177, 234, 0.25));
}
.footer-wordmark {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* ── App Store button ── */
.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px 11px 18px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font);
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-appstore:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 177, 234, 0.5);
    background: #0c0c0c;
}
.btn-appstore .appstore-apple { width: 26px; height: 26px; flex-shrink: 0; }
.btn-appstore .appstore-copy { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.btn-appstore .appstore-copy small { font-size: 0.62rem; letter-spacing: 0.04em; opacity: 0.85; margin-bottom: 3px; }
.btn-appstore .appstore-copy strong { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero-v2 {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 100px;
    background:
        radial-gradient(ellipse at 85% -10%, rgba(0, 177, 234, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at -10% 30%, rgba(113, 208, 197, 0.06) 0%, transparent 50%),
        var(--ink);
    position: relative;
    overflow: hidden;
}
.hero-v2 .neural-net {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
    mask-image: radial-gradient(ellipse 100% 70% at 50% 40%, black 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 40%, black 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}
.hero-v2 .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 880px) { .hero-v2 .container { grid-template-columns: 1fr; gap: 48px; } }

.hero-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hero-meta span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-meta span + span { position: relative; padding-left: 24px; }
.hero-meta span + span::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 12px; height: 1px;
    background: var(--rule-strong);
    transform: translateY(-50%);
}
/* Prominent eyebrow used for the single-line "Personal System of Records ·
   powered by AI" tagline. Larger, with the brand turquoise + a gentle
   under-rule so it reads as a tagline, not a meta-chip. */
.hero-meta-strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--turquoise);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 14px 8px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--turquoise) 35%, transparent);
}

.hero-v2 .display {
    font-size: clamp(2.8rem, 6.4vw, 5rem);
    margin-bottom: 28px;
}
.hero-v2 .display .strike {
    position: relative;
    display: inline-block;
    color: var(--old);
    font-weight: 400;
}
.hero-v2 .display .strike::after {
    content: '';
    position: absolute;
    left: -3%; right: -3%;
    top: 52%;
    height: 4px;
    background: var(--orange-red);
    transform: skewY(-2deg);
    border-radius: 2px;
    box-shadow: 0 0 18px rgba(199, 62, 29, 0.4);
}
.hero-v2 .display .gestern {
    color: var(--old);
    font-style: italic;
    font-family: var(--font-serif);
}

.hero-lede {
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 40px;
}
.hero-lede strong { color: var(--text-primary); font-weight: 600; }
.hero-lede .highlight-new { color: var(--new); font-weight: 600; }

.hero-ctas-v2 { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Hero phone-mock — Dopafy-Style: schwarzer Frame + Notch + Glow.
   Placeholder-Variante (.phone-mock ohne .has-shot) bleibt für Templates,
   aber der Default ist jetzt die Bild-Variante. */
.phone-mock {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
}
.phone-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 520px;
    background: radial-gradient(ellipse, rgba(0, 177, 234, 0.22) 0%, rgba(113, 208, 197, 0.08) 35%, transparent 70%);
    filter: blur(48px);
    z-index: 1;
    animation: phoneGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
}
.phone-screen {
    background: #000;
    border-radius: 44px;
    padding: 12px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 120px rgba(0, 177, 234, 0.12);
}
.phone-screen .phone-notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 5;
}
.phone-screen img {
    width: 100%;
    border-radius: 34px;
    display: block;
}
.phone-screen span {
    padding: 6px 12px;
    border: 1px dashed var(--rule-strong);
    border-radius: 8px;
    background: rgba(10, 14, 29, 0.6);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Floating callout cards around the hero phone.
   Three variants: search (top-right), classify (mid-left), digest (bottom-right). */
.float-card {
    position: absolute;
    background: rgba(15, 22, 41, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 16px;
    z-index: 10;
    min-width: 168px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: floatCard 6s ease-in-out infinite;
}
/* card-search sits on the right, slightly above card-classify, with the same
   right offset so both right edges align cleanly. Smaller padding/min-width
   since it only carries a short label + 3-word value. */
.float-card.card-search {
    top: 48%;
    right: -90px;
    left: auto;
    animation-delay: 0s;
    min-width: 0;
    padding: 10px 14px;
}
/* card-classify sits on the right, slightly further out, lower down so both
   floats sit side-by-side around the screenshot's middle. */
.float-card.card-classify {
    top: 78%;
    right: -90px;
    animation-delay: -1.5s;
    min-width: 188px;
}
/* Both float-card values get a tighter font — the labels stay UPPERCASE-mono
   for "feature-callout" feel, the values now read more like a quiet caption. */
.float-card.card-search .float-card-value,
.float-card.card-classify .float-card-value {
    font-size: 0.78rem;
    font-weight: 500;
}
.float-card-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #71D0C5;
    margin-bottom: 6px;
}
.float-card-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
}

@keyframes phoneGlowPulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 880px) {
    .phone-mock { margin: 0 auto; max-width: 260px; }
    .float-card { padding: 10px 13px; border-radius: 12px; min-width: 0; }
    .float-card.card-search { top: 50%; right: -10px; left: auto; }
    .float-card.card-classify { top: 78%; right: -10px; left: auto; min-width: 0; }
    .float-card-value { font-size: 0.82rem; }
}

/* ═══════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════ */
.problem-v2 {
    padding: 120px 0;
    background: var(--ink);
    border-top: 1px solid var(--rule);
}
.problem-v2 .problem-head { max-width: 780px; margin-bottom: 72px; }
.problem-v2 .display { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-top: 18px; }
.problem-v2 .problem-kicker {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 24px;
    max-width: 640px;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-cell { padding: 40px 32px 48px; border-right: 1px solid var(--rule); }
.problem-cell:last-child { border-right: none; }
@media (max-width: 820px) {
    .problem-cell { border-right: none; border-bottom: 1px solid var(--rule); }
    .problem-cell:last-child { border-bottom: none; }
}
.problem-cell .record-no { display: block; margin-bottom: 20px; color: rgba(0, 177, 234, 0.85); }
.problem-cell h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.65rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.problem-cell p { color: var(--text-secondary); font-size: 0.97rem; line-height: 1.7; }

/* ═══════════════════════════════════════
   PULLQUOTE
   ═══════════════════════════════════════ */
.pullquote {
    background: var(--bone);
    color: var(--ink);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.pullquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--cream-rule) 1px, transparent 1px);
    background-size: 100% 32px;
    opacity: 0.5;
    pointer-events: none;
}
.pullquote .container { position: relative; max-width: 960px; }
.pullquote-mark {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 8rem;
    line-height: 0.7;
    color: var(--new);
    margin-bottom: -20px;
    display: block;
}
.pullquote blockquote {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 900px;
    margin-bottom: 32px;
}
.pullquote blockquote em { font-style: italic; color: var(--new); font-weight: 400; }
.pullquote blockquote em.old { color: var(--old); }
.pullquote-by {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(10, 14, 29, 0.55);
}
.pullquote-by::before { content: ''; width: 40px; height: 1px; background: var(--cream-rule-strong); }

/* ═══════════════════════════════════════
   FLOW
   ═══════════════════════════════════════ */
.flow { padding: 140px 0 80px; background: var(--ink); border-top: 1px solid var(--rule); }
.flow-head { margin-bottom: 80px; max-width: 760px; }
.flow-head .display { font-size: clamp(2rem, 4.2vw, 3rem); margin-top: 18px; }
.flow-head p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
    margin-top: 24px;
}
.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 72px 0;
    border-top: 1px solid var(--rule);
    align-items: center;
}
.step:last-of-type { border-bottom: 1px solid var(--rule); }
@media (max-width: 880px) {
    .step { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
}
.step:nth-child(even) .step-body { order: 2; }
.step:nth-child(even) .step-visual { order: 1; }
@media (max-width: 880px) {
    .step:nth-child(even) .step-body,
    .step:nth-child(even) .step-visual { order: unset; }
}
.step-body .step-no {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    color: var(--new);
    margin-bottom: 16px;
    display: inline-block;
}
.step-body h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.9rem, 3.3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.step-body p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 480px;
}
.step-body .step-tags { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.step-tags span {
    padding: 6px 12px;
    background: rgba(113, 208, 197, 0.08);
    border: 1px solid rgba(113, 208, 197, 0.2);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--new);
}
.screen-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    padding: 18px;
    background:
        radial-gradient(ellipse at top, rgba(113, 208, 197, 0.06) 0%, transparent 60%),
        linear-gradient(155deg, var(--ink-2), var(--ink));
    border: 1px solid var(--rule-strong);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}
.screen-card::before {
    content: attr(data-label);
    position: absolute;
    top: 14px; left: 18px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.screen-card::after {
    content: 'SCREENSHOT · PLACEHOLDER';
    position: absolute;
    inset: auto 0 0 0;
    text-align: center;
    padding: 14px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    background: linear-gradient(0deg, rgba(10,14,29,0.9) 30%, transparent);
}
.screen-card-inner {
    width: 100%; height: 100%;
    border: 1px dashed var(--rule-strong);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 8px, transparent 8px 16px);
}

/* When a real screenshot is dropped into a .screen-card we treat the card
   as a small phone shell — black bezel, notch, rounded corners — to match
   the hero phone-mock styling. The placeholder furniture (dashed inner box,
   "SCREENSHOT · PLACEHOLDER" overlay, data-label caption) gets suppressed. */
.screen-card.has-shot {
    background: #000;
    border-radius: 36px;
    padding: 10px;
    aspect-ratio: 9 / 19.5;
    max-width: 280px;
    margin: 0 auto;
    border: none;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.06),
        0 30px 80px -15px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(0, 177, 234, 0.1);
    overflow: visible;
}
.screen-card.has-shot::before {
    /* override the data-label caption with a notch */
    content: '';
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 5;
    color: transparent;
    font-size: 0;
    letter-spacing: 0;
    padding: 0;
}
.screen-card.has-shot::after { content: none; }
.screen-card.has-shot img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 28px;
    display: block;
}

/* ═══════════════════════════════════════
   FEATURES (6 in 2x3 grid)
   ═══════════════════════════════════════ */
.features {
    padding: 120px 0;
    background: var(--bone);
    color: var(--ink);
    border-top: 1px solid var(--cream-rule-strong);
}
.features-head { max-width: 780px; margin-bottom: 64px; }
.features-head .display { font-size: clamp(2rem, 4.2vw, 3rem); margin-top: 18px; color: var(--ink); }
.features-head p {
    color: rgba(10, 14, 29, 0.65);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
    margin-top: 24px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--cream-rule-strong);
}
@media (max-width: 820px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
    padding: 40px 28px 48px;
    border-right: 1px solid var(--cream-rule);
    border-bottom: 1px solid var(--cream-rule);
    transition: background 0.3s var(--ease);
}
.feature:hover { background: rgba(10, 14, 29, 0.03); }
.feature:nth-child(3n) { border-right: none; }
@media (max-width: 820px) {
    .feature:nth-child(3n) { border-right: 1px solid var(--cream-rule); }
    .feature:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) { .feature { border-right: none !important; } }
.feature .record-no { color: rgba(10, 14, 29, 0.4); margin-bottom: 16px; display: block; }
.feature h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.feature p { color: rgba(10, 14, 29, 0.68); font-size: 0.95rem; line-height: 1.7; }

/* ═══════════════════════════════════════
   FOUNDER
   ═══════════════════════════════════════ */
.founder {
    padding: 140px 0;
    background: var(--ink);
    border-top: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
}
.founder::before {
    content: '';
    position: absolute;
    top: 0; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(113, 208, 197, 0.05) 0%, transparent 60%);
    pointer-events: none;
}
.founder .container {
    position: relative;
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 880px) { .founder .container { grid-template-columns: 1fr; gap: 48px; } }
.founder-col-1 { position: sticky; top: 120px; }
@media (max-width: 880px) { .founder-col-1 { position: static; } }
.founder-photo {
    width: 200px; height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--rule-strong);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 177, 234, 0.15), rgba(113, 208, 197, 0.05));
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-name { font-family: var(--font-serif); font-weight: 400; font-size: 1.4rem; color: var(--text-primary); margin-bottom: 4px; }
.founder-role { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.founder-col-2 { max-width: 620px; }
.founder-col-2 .display { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-top: 18px; margin-bottom: 36px; }
.founder-col-2 p { font-size: 1.05rem; line-height: 1.85; color: var(--text-secondary); margin-bottom: 24px; }
.founder-col-2 p strong { color: var(--text-primary); font-weight: 600; }
.founder-col-2 p em { font-family: var(--font-serif); font-style: italic; color: var(--old); }
.founder-col-2 p em.new { color: var(--new); }
.signature {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.7rem;
    color: var(--new);
}

/* ═══════════════════════════════════════
   ARCHITECTURE (horizontal flow, 5 stations)
   ═══════════════════════════════════════ */
.architecture {
    padding: 120px 0;
    background: var(--ink);
    border-top: 1px solid var(--rule);
    position: relative;
}
.arch-head { max-width: 780px; margin-bottom: 64px; }
.arch-head .display { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 18px; }
.arch-head p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 620px;
    margin-top: 24px;
}
.arch-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    align-items: stretch;
}
/* Horizontal connecting rail */
.arch-flow::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(113, 208, 197, 0.1) 0%,
        var(--new) 25%, var(--new) 75%,
        rgba(113, 208, 197, 0.1) 100%);
    z-index: 0;
}
.arch-station {
    position: relative;
    padding: 0 16px;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.arch-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--ink);
    border: 1px solid var(--new);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--new);
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px var(--ink), 0 0 24px rgba(113, 208, 197, 0.25);
}
.arch-station .arch-problem {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    line-height: 1.35;
    color: rgba(0, 177, 234, 0.85);
    margin-bottom: 14px;
    min-height: 60px;
    padding: 0 8px;
}
.arch-station .arch-problem::before {
    content: 'Problem';
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 177, 234, 0.55);
    display: block;
    margin-bottom: 4px;
}
.arch-station h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.arch-station .arch-solution-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(113, 208, 197, 0.7);
    margin-bottom: 4px;
}
.arch-station p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 14px;
    min-height: 56px;
}
.arch-tech {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(113, 208, 197, 0.08);
    border: 1px solid rgba(113, 208, 197, 0.2);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--new);
}
@media (max-width: 880px) {
    .arch-flow { grid-template-columns: 1fr; gap: 40px; }
    .arch-flow::before {
        left: 27px; right: auto;
        top: 0; bottom: 0;
        width: 1px; height: auto;
        background: linear-gradient(180deg,
            rgba(113, 208, 197, 0.1) 0%,
            var(--new) 15%, var(--new) 85%,
            rgba(113, 208, 197, 0.1) 100%);
    }
    .arch-station { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; padding: 0; flex-wrap: wrap; }
    .arch-num { flex-shrink: 0; margin-bottom: 0; }
    .arch-station .arch-problem { padding: 0; min-height: auto; margin-bottom: 8px; flex-basis: calc(100% - 76px); }
    .arch-station h4,
    .arch-station p,
    .arch-station .arch-solution-label,
    .arch-station .arch-tech { flex-basis: calc(100% - 76px); margin-left: 76px; }
    .arch-station .arch-problem { margin-left: 76px; flex-basis: calc(100% - 76px); }
    .arch-station > .arch-num + * { margin-left: 0; }
    .arch-station p { min-height: auto; }
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing { padding: 120px 0; background: var(--ink); border-top: 1px solid var(--rule); }
.pricing-head { max-width: 780px; margin-bottom: 64px; }
.pricing-head .display { font-size: clamp(2rem, 4.2vw, 3rem); margin-top: 18px; }
.pricing-head p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
    margin-top: 24px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.price-card {
    position: relative;
    padding: 36px 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
    border: 1px solid var(--rule-strong);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card:hover {
    border-color: rgba(113, 208, 197, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(113, 208, 197, 0.25);
}
.price-card.featured {
    border-color: var(--new);
    background:
        radial-gradient(ellipse at top, rgba(113, 208, 197, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(113, 208, 197, 0.04), rgba(113, 208, 197, 0.01));
    box-shadow: 0 20px 60px -20px rgba(113, 208, 197, 0.32);
}
.price-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--new);
    color: var(--ink);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}
.price-tier {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.price-card.featured .price-tier { color: var(--new); }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.price-value {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.price-unit { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.06em; }
.price-pitch {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}
.price-features { list-style: none; margin-bottom: 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.price-features li {
    position: relative;
    padding-left: 26px;
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--text-secondary);
}
.price-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 14px; height: 7px;
    border-left: 2px solid var(--new);
    border-bottom: 2px solid var(--new);
    transform: rotate(-45deg);
}
.price-features li strong { color: var(--text-primary); font-weight: 600; }
.btn-block { display: flex; justify-content: center; width: 100%; padding: 14px 24px; }
.pricing-note {
    margin-top: 40px;
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    padding: 20px;
    border: 1px dashed var(--rule-strong);
    border-radius: 12px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-note strong { color: var(--new); font-weight: 600; }

/* ═══════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════ */
.newsletter {
    background: var(--bone);
    color: var(--ink);
    padding: 120px 0;
    border-top: 1px solid var(--cream-rule-strong);
}
.newsletter-box { max-width: 720px; margin: 0 auto; text-align: center; }
.newsletter-box h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink) !important;
    margin-bottom: 20px;
}
.newsletter-box h2 em { font-style: italic; color: var(--new); font-weight: 400; }
.newsletter-box > p {
    color: rgba(10, 14, 29, 0.7);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 36px;
}
.newsletter-box .newsletter-meta {
    margin-top: 18px;
    font-size: 0.82rem;
    color: rgba(10, 14, 29, 0.55);
}
.newsletter-form {
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: transparent;
    padding: 0;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--ink);
    font-family: var(--font);
    font-size: 0.96rem;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(10, 14, 29, 0.4); }
.newsletter-form button {
    padding: 16px 28px;
    background: var(--ink);
    color: var(--bone);
    border: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s var(--ease);
}
.newsletter-form button:hover { background: var(--new); color: var(--ink); }
@media (max-width: 500px) {
    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { border-bottom: 1px solid var(--cream-rule-strong); }
}

.divider { display: none; }

/* ═══════════════════════════════════════
   NEURAL NET ANIMATION
   ═══════════════════════════════════════ */
@keyframes nn-pulse {
    0%, 100% { opacity: 0.25; r: 2; }
    50%      { opacity: 0.9;  r: 4; }
}
@keyframes nn-line-flow {
    0%   { stroke-dashoffset: 0;  opacity: 0.15; }
    50%  { opacity: 0.4; }
    100% { stroke-dashoffset: -18; opacity: 0.15; }
}
@keyframes nn-fade {
    0%, 100% { opacity: 0; }
    10%, 90% { opacity: 1; }
}
.neural-net .nn-node { animation: nn-pulse 4s ease-in-out infinite; }
.neural-net .nn-line { stroke-dasharray: 3 6; animation: nn-line-flow 6s linear infinite; }
.neural-net .nn-travel { animation: nn-fade 3.2s ease-in-out infinite; }

/* ═══════════════════════════════════════
   Overrides & additions (Iteration 2)
   ═══════════════════════════════════════ */

/* Hero: prominent primary Warteliste button (orange, larger) */
.btn.btn-large {
    padding: 16px 32px;
    font-size: 1.02rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(199, 62, 29, 0.32);
}
.btn.btn-large:hover {
    box-shadow: 0 12px 32px rgba(199, 62, 29, 0.45);
    transform: translateY(-2px);
}

/* Architecture section — visually flows out of Story via story-bridge element */
.architecture.architecture--continuation {
    padding-top: 0;
    border-top: none;
}

/* Story → Architecture bridge: vertical line + arrow + travelling pulse */
.story-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 40px 0 60px;
}
.story-bridge .bridge-svg {
    width: 40px;
    height: 120px;
    display: block;
}
.story-bridge .bridge-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--new);
    padding: 6px 14px;
    border: 1px solid rgba(113, 208, 197, 0.3);
    border-radius: 999px;
    background: rgba(113, 208, 197, 0.06);
}

/* Language switcher (DE/EN) in the nav */
.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 16px;
    padding: 4px;
    border: 1px solid var(--rule-strong);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}
.language-switcher a {
    padding: 4px 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.language-switcher a:hover { color: var(--text-primary); }
.language-switcher a.active {
    color: var(--ink);
    background: var(--new);
}
@media (max-width: 768px) {
    .language-switcher { margin-left: 8px; order: -1; }
}

/* Pricing: 2-card layout + dual-price display for Premium */
.pricing-grid.pricing-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
    margin: 0 auto;
    gap: 20px;
}
@media (max-width: 720px) {
    .pricing-grid.pricing-grid--two { grid-template-columns: 1fr; max-width: 440px; }
}

.price-duo {
    margin-bottom: 20px;
    padding-bottom: 4px;
}
.price-duo-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.price-duo-main .price-value {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.price-duo-main .price-unit {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}
.price-duo-main .price-save {
    padding: 3px 10px;
    background: rgba(113, 208, 197, 0.15);
    border: 1px solid rgba(113, 208, 197, 0.35);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--new);
}
.price-duo-alt {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.price-duo-alt strong {
    color: var(--text-primary);
    font-weight: 600;
}
.price-duo-alt .price-duo-note {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer: rebalanced 4-column grid (Brand / Produkt / Kontakt / Unternehmen) */
.footer-grid.footer-grid--compact {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 820px) {
    .footer-grid.footer-grid--compact { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .footer-grid.footer-grid--compact { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══════════════════════════════════════
   LEGAL PAGES (Datenschutz / Privacy)
   ═══════════════════════════════════════ */
.legal-page {
    min-height: 100vh;
    padding: 140px 0 80px;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(0, 177, 234, 0.05) 0%, transparent 55%),
        var(--ink);
}
.legal-page .container { max-width: 780px; }
.legal-page h1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.legal-page .eyebrow { margin-bottom: 16px; }
.legal-page .legal-meta {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 56px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--rule);
}
.legal-page h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 16px;
}
.legal-page h2 .num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--new);
    letter-spacing: 0.12em;
    margin-right: 12px;
    vertical-align: 0.2em;
}
.legal-page h3 {
    font-family: var(--font);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 10px;
}
.legal-page p {
    color: var(--text-secondary);
    font-size: 1.0rem;
    line-height: 1.75;
    margin-bottom: 14px;
}
.legal-page p strong { color: var(--text-primary); font-weight: 600; }
.legal-page a { color: var(--new); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(113, 208, 197, 0.4); }
.legal-page a:hover { text-decoration-color: var(--new); }
.legal-page ul {
    margin: 10px 0 20px 0;
    padding-left: 0;
    list-style: none;
}
.legal-page ul li {
    position: relative;
    padding-left: 22px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.legal-page ul li::before {
    content: '·';
    position: absolute;
    left: 6px;
    top: -2px;
    color: var(--new);
    font-weight: 600;
    font-size: 1.4rem;
}
.legal-page .legal-note {
    margin: 32px 0;
    padding: 20px 24px;
    background: rgba(113, 208, 197, 0.05);
    border-left: 2px solid var(--new);
    border-radius: 2px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.legal-page dl {
    margin: 12px 0 20px 0;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 8px 24px;
    font-size: 0.94rem;
}
@media (max-width: 640px) {
    .legal-page dl { grid-template-columns: 1fr; gap: 2px 0; }
}
.legal-page dl dt {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-top: 4px;
}
.legal-page dl dd { color: var(--text-secondary); line-height: 1.6; margin-bottom: 6px; }
@media (max-width: 640px) {
    .legal-page dl dd { margin-bottom: 12px; }
}
