/* ==========================================================
   EO Marketing — Editorial Brutalist Edition
   ========================================================== */

/* ---------- TOKENS ---------- */
:root {
    /* Neutral – near-black mit warmem Unterton */
    --bg:        #0B0B0F;
    --bg-2:      #131318;
    --bg-3:      #1B1B22;
    --line:      rgba(250, 250, 245, 0.08);
    --line-2:    rgba(250, 250, 245, 0.16);

    /* Text – warmes Cremeweiß statt kühles Off-White */
    --text:      #FAFAF5;
    --text-2:    #C9C9C2;
    --mute:      #76767E;

    /* Signature – Acid Orange. Sparsam, aber dann wirklich. */
    --accent:    #FF5E1A;
    --accent-2:  #FFB088;
    --accent-soft: rgba(255, 94, 26, 0.10);

    /* Schriften */
    --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --f-body:    'Inter', system-ui, -apple-system, sans-serif;
    --f-serif:   'Instrument Serif', Georgia, serif;

    /* Maße */
    --max:       1280px;
    --gutter:    1.5rem;

    /* Easing */
    --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0;
}
em { font-family: var(--f-serif); font-style: italic; font-weight: 400; }
::selection { background: var(--accent); color: var(--bg); }

/* ---------- LAYOUT ---------- */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

/* ---------- NOISE ---------- */
.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.035;
    mix-blend-mode: screen;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- KICKER (kleine Sektionsbeschriftung) ---------- */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 1.5rem;
}
.kicker__num {
    display: inline-block;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 0;
    text-transform: none;
}
.kicker--inverse { color: var(--text-2); }
.kicker--accent  { color: var(--accent); }

.hl {
    color: var(--accent);
    font-style: normal;
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: padding .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav.is-scrolled {
    padding: 0.6rem 0;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    background: rgba(11, 11, 15, 0.7);
    border-bottom: 1px solid var(--line);
}
.nav__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
}
.nav__logo-mark {
    background: var(--accent);
    color: var(--bg);
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: 800;
}
.nav__logo-img {
    height: 112px;
    width: auto;
    display: block;
    /* Logo hat dunkle Schrift auf transparentem Hintergrund -> auf der dunklen Nav weiss invertieren */
    filter: invert(1) brightness(1.8);
}
.nav__logo-divider { color: var(--mute); font-weight: 400; }
.nav__logo-text { color: var(--text); font-weight: 500; }

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__links a {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-2);
    transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__num {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 0.78rem;
    color: var(--mute);
}
.nav__cta {
    background: var(--text);
    color: var(--bg) !important;
    padding: 0.65rem 1.1rem 0.65rem 1.2rem !important;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem !important;
    font-weight: 600 !important;
    transition: all .25s var(--ease);
}
.nav__cta:hover {
    background: var(--accent);
    color: var(--bg) !important;
    transform: translateY(-1px);
}
.nav__cta svg { width: 14px; height: 14px; }

.nav__toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--line-2);
    background: transparent;
    border-radius: 999px;
    padding: 0;
    position: relative;
}
.nav__toggle span {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 18px; height: 1.5px;
    background: var(--text);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
.nav__toggle span:nth-child(2) { transform: translate(-50%, calc(-50% + 5px)); }
.nav__toggle.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 0.96rem;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s var(--ease);
    will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn--primary {
    background: var(--accent);
    color: var(--bg);
}
.btn--primary:hover {
    background: var(--text);
    color: var(--bg);
    transform: translateY(-2px);
}
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-2);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn--ghost:hover svg { transform: translateY(3px); }
.btn--full { width: 100%; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 7rem 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grain {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    opacity: 0.4;
}
.hero__glow {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    aspect-ratio: 1;
    background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
    opacity: 0.15;
    filter: blur(60px);
}

.hero__topline {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-family: var(--f-body);
    font-size: 0.82rem;
    color: var(--mute);
    letter-spacing: 0.05em;
    margin-bottom: 4rem;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--mute);
    flex-shrink: 0;
}
.dot--live {
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(255, 94, 26, 0.7);
    animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 94, 26, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(255, 94, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 26, 0); }
}
.dot--accent { background: var(--accent); }

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.hero__title {
    font-size: clamp(3rem, 9vw, 8.5rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    font-weight: 700;
    margin: 0 0 3rem;
}
.hero__line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: heroLine 1s var(--ease) forwards;
}
.hero__line:nth-child(1) { animation-delay: 0.1s; }
.hero__line:nth-child(2) { animation-delay: 0.3s; position: relative; display: inline-block; padding-right: 0.3em; }
.hero__line:nth-child(3) { animation-delay: 0.55s; }
@keyframes heroLine {
    to { opacity: 1; transform: translateY(0); }
}
.hero__line--strike { color: var(--text-2); }
.hero__line--accent { color: var(--accent); font-style: italic; font-family: var(--f-serif); font-weight: 400; letter-spacing: -0.02em; }

.hero__strike {
    position: absolute;
    top: 50%;
    left: -2%;
    width: 105%;
    height: 18%;
    transform: translateY(-50%);
    color: var(--accent);
    opacity: 0;
    animation: strike 0.7s var(--ease) 1.2s forwards;
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
}
@keyframes strike {
    to { opacity: 1; stroke-dashoffset: 0; }
}

.hero__meta {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: end;
    opacity: 0;
    animation: heroLine 1s var(--ease) 1.4s forwards;
}
.hero__sub p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--text-2);
    max-width: 460px;
    line-height: 1.5;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-end;
}

.hero__hint {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
    z-index: 3;
}
.hero__hint svg {
    width: 16px; height: 16px;
    animation: bounce 2.4s var(--ease) infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(8px); opacity: 0.4; }
}

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.4rem 0;
    overflow: hidden;
    background: var(--bg);
    scroll-margin-top: 6rem;
}
.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 2.4rem;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 2.8vw, 2.4rem);
    letter-spacing: -0.02em;
    color: var(--text);
}
.marquee__track .dot-sep {
    color: var(--accent);
    font-size: 0.6em;
    transform: translateY(-2px);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==========================================================
   TRUTH (Editorial Quote)
   ========================================================== */
.truth {
    padding: 9rem 0;
    border-bottom: 1px solid var(--line);
}
.truth__quote {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 4.5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin: 0 0 3rem;
    max-width: 1100px;
    color: var(--mute);
}
.truth__quote em {
    color: var(--accent);
    font-style: italic;
}
.truth__quote .word {
    display: inline-block;
    color: var(--mute);
    transition: color .3s var(--ease);
}
.truth__quote .word.is-active { color: var(--text); }
.truth__quote em .word.is-active { color: var(--accent); }

.truth__sign {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-family: var(--f-body);
    font-size: 0.92rem;
    color: var(--mute);
}
.truth__sign span:first-child { color: var(--text); font-weight: 500; }

/* ==========================================================
   ACTS (3 Probleme)
   ========================================================== */
.acts {
    background: var(--bg);
    padding: 7rem 0 0;
}
.acts__head {
    margin-bottom: 6rem;
}
.acts__head h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    max-width: 780px;
}

.act {
    border-top: 1px solid var(--line);
    padding: 6rem 0;
}
.act:last-child { border-bottom: 1px solid var(--line); }
.act__inner {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.act--alt .act__inner {
    grid-template-columns: 80px 1fr 1fr;
}
.act--alt .act__copy { order: 2; }
.act--alt .act__visual { order: 1; }
.act--alt .act__num { order: 0; }

.act__num {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}
.act__copy h3 {
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    margin-bottom: 1.5rem;
    line-height: 1.02;
}
.act__copy p {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    color: var(--text-2);
    max-width: 520px;
}
.act__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 240px;
}

/* Act 1 – Badge Card */
.badge-card {
    width: 100%;
    max-width: 360px;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 14px;
    padding: 0;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    transform: rotate(-2deg);
    transition: transform .4s var(--ease);
}
.act:hover .badge-card { transform: rotate(0deg); }
.badge-card__head {
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}
.badge-card__live {
    color: var(--accent);
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
}
.badge-card__body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.badge-card__line {
    padding: 0.7rem 0.9rem;
    background: rgba(255,94,26,0.06);
    border-left: 2px solid var(--accent);
    font-size: 0.92rem;
    color: var(--text-2);
}

/* Act 2 – Clock */
.clock {
    position: relative;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 2px solid var(--line-2);
    background: radial-gradient(circle at 50% 50%, var(--bg-2), var(--bg));
    display: flex;
    align-items: center;
    justify-content: center;
}
.clock::before, .clock::after {
    content: "";
    position: absolute;
    background: var(--mute);
}
.clock::before { top: 8px; left: 50%; width: 2px; height: 8px; transform: translateX(-50%); }
.clock::after  { bottom: 8px; left: 50%; width: 2px; height: 8px; transform: translateX(-50%); }
.clock__hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    background: var(--text);
    border-radius: 2px;
    transform-origin: 50% 100%;
}
.clock__hand--h {
    width: 3px;
    height: 50px;
    transform: translateX(-50%) rotate(120deg);
    animation: hourHand 12s linear infinite;
}
.clock__hand--m {
    width: 2px;
    height: 78px;
    background: var(--accent);
    transform: translateX(-50%) rotate(0deg);
    animation: minHand 3s linear infinite;
}
@keyframes hourHand { to { transform: translateX(-50%) rotate(480deg); } }
@keyframes minHand  { to { transform: translateX(-50%) rotate(360deg); } }
.clock__center {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--accent);
    z-index: 2;
}
.clock__label {
    position: absolute;
    bottom: -2.4rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--mute);
    font-size: 1rem;
}

/* Act 3 – Stack */
.stack {
    position: relative;
    width: 280px; height: 200px;
}
.stack__card {
    position: absolute;
    left: 0; right: 0;
    padding: 1rem 1.2rem;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}
.stack.reveal { opacity: 1; transform: none; transition: none; }
.stack__card { opacity: 0; }
.stack__card--1 { top: 0; transform: translateX(-12px) rotate(-3deg); color: var(--mute); }
.stack__card--2 { top: 50px; transform: translateX(8px) rotate(2deg); color: var(--mute); }
.stack__card--3 {
    top: 100px;
    transform: translateX(-4px) rotate(-1deg);
    color: var(--bg);
    background: var(--accent);
    border-color: var(--accent);
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(255,94,26,0.3);
}
.stack__x { color: #FF4A3D; font-weight: 700; }
.stack__check { font-weight: 800; }

.stack.is-visible .stack__card--1 { animation: stackFadeIn1 0.5s ease-out 0s forwards, stackHop1 2.6s ease-in-out 0.55s infinite; }
.stack.is-visible .stack__card--2 { animation: stackFadeIn2 0.5s ease-out 0.25s forwards, stackHop2 2.6s ease-in-out 0.8s infinite; }
.stack.is-visible .stack__card--3 { animation: stackFadeIn3 0.5s ease-out 0.5s forwards, stackHop3 2.6s ease-in-out 1.05s infinite; }

@keyframes stackFadeIn1 {
    from { opacity: 0; transform: translateX(-12px) translateY(14px) rotate(-3deg); }
    to   { opacity: 0.7; transform: translateX(-12px) translateY(0) rotate(-3deg); }
}
@keyframes stackFadeIn2 {
    from { opacity: 0; transform: translateX(8px) translateY(14px) rotate(2deg); }
    to   { opacity: 0.85; transform: translateX(8px) translateY(0) rotate(2deg); }
}
@keyframes stackFadeIn3 {
    from { opacity: 0; transform: translateX(-4px) translateY(14px) rotate(-1deg); }
    to   { opacity: 1; transform: translateX(-4px) translateY(0) rotate(-1deg); }
}
@keyframes stackHop1 {
    0%, 100% { transform: translateX(-12px) translateY(0) rotate(-3deg); }
    50%      { transform: translateX(-12px) translateY(-6px) rotate(-3deg); }
}
@keyframes stackHop2 {
    0%, 100% { transform: translateX(8px) translateY(0) rotate(2deg); }
    50%      { transform: translateX(8px) translateY(-6px) rotate(2deg); }
}
@keyframes stackHop3 {
    0%, 100% { transform: translateX(-4px) translateY(0) rotate(-1deg); }
    50%      { transform: translateX(-4px) translateY(-8px) rotate(-1deg); }
}

/* ==========================================================
   PIVOT (USP – Sticky Magic)
   ========================================================== */
.pivot {
    background: var(--text);
    color: var(--bg);
    padding: 8rem 0;
    position: relative;
}
.pivot__sticky {
    position: sticky;
    top: 2rem;
    padding-top: 2rem;
    text-align: center;
    z-index: 1;
}
.pivot__sticky .kicker { color: rgba(11,11,15,0.5); }
.pivot__sticky .kicker__num { color: var(--accent); }
.pivot__title {
    font-size: clamp(2.5rem, 7vw, 6.5rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin: 0 auto 1.5rem;
    max-width: 1100px;
}
.pivot__em {
    color: var(--accent);
    font-family: var(--f-serif);
    font-weight: 400;
    font-style: italic;
}
.pivot__sub {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(11,11,15,0.6);
    max-width: 560px;
    margin: 0 auto;
}

.pivot__panels { margin-top: 6rem; position: relative; z-index: 2; }
.pivot__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}
.pivot__panel {
    background: var(--bg);
    color: var(--text);
    padding: 2.2rem;
    border-radius: 18px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease);
}
.pivot__panel:hover { transform: translateY(-4px); }
.pivot__panel-label {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.pivot__panel h4 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    line-height: 1.05;
}
.pivot__panel p {
    color: var(--text-2);
    font-size: 0.96rem;
    margin-top: auto;
}
.pivot__panel--accent {
    background: var(--accent);
    color: var(--bg);
}
.pivot__panel--accent .pivot__panel-label { color: var(--bg); }
.pivot__panel--accent p { color: rgba(11,11,15,0.75); }

/* ==========================================================
   NUMBERS
   ========================================================== */
.numbers {
    padding: 7rem 0;
    border-bottom: 1px solid var(--line);
}
.numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.num {
    border-top: 2px solid var(--text);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.num__big {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--text);
}
.num__label {
    font-size: 0.92rem;
    color: var(--mute);
    line-height: 1.4;
}

/* ==========================================================
   SERVICES (Index-Style Liste)
   ========================================================== */
.services {
    padding: 9rem 0;
    border-bottom: 1px solid var(--line);
}
.services__head {
    margin-bottom: 5rem;
}
.services__head h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    max-width: 880px;
}

.services__list { border-top: 1px solid var(--line-2); }

.service {
    border-bottom: 1px solid var(--line-2);
    padding: 2.4rem 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    position: relative;
    cursor: default;
    transition: padding .3s var(--ease);
}
.service::before {
    content: attr(data-num);
    position: absolute;
    top: 2.4rem;
    left: 0;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--mute);
    transition: color .3s var(--ease), transform .3s var(--ease);
}
.service:hover::before {
    color: var(--accent);
    transform: translateX(-8px);
}
.service__main {
    padding-left: 4rem;
    transition: transform .4s var(--ease);
}
.service:hover .service__main {
    transform: translateX(8px);
}
.service__main h3 {
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    line-height: 1.05;
    margin-bottom: 0.8rem;
    letter-spacing: -0.025em;
    transition: color .3s var(--ease);
}
.service:hover .service__main h3 { color: var(--accent); }
.service__main p {
    color: var(--text-2);
    max-width: 640px;
    font-size: 1rem;
}
.service__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-self: start;
    padding-top: 0.5rem;
    max-width: 240px;
    justify-content: flex-end;
}
.service__tags span {
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    color: var(--text-2);
    white-space: nowrap;
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process {
    padding: 9rem 0;
    border-bottom: 1px solid var(--line);
}
.process__head { margin-bottom: 5rem; }
.process__head h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    max-width: 800px;
    text-wrap: balance;
}

/* Hält die Wortgruppe zusammen, damit sie als Ganzes umbricht statt mittendrin */
.h2-break { display: inline-block; white-space: nowrap; }

.process__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: step;
}
.process__step {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.8rem;
    transition: all .3s var(--ease);
    position: relative;
}
.process__step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.process__step-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.process__step-num {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--accent);
}
.process__step-time {
    font-size: 0.78rem;
    color: var(--mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.process__step h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
    letter-spacing: -0.02em;
}
.process__step p {
    color: var(--text-2);
    font-size: 0.94rem;
    line-height: 1.5;
}

/* ==========================================================
   VALUES
   ========================================================== */
.values {
    padding: 9rem 0;
    border-bottom: 1px solid var(--line);
}
.values__head { margin-bottom: 4rem; }
.values__head h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    max-width: 780px;
}
.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}
.value {
    border-top: 2px solid var(--text);
    padding-top: 1.4rem;
}
.value__num {
    display: block;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}
.value h4 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    letter-spacing: -0.02em;
}
.value p {
    font-size: 0.94rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
    padding: 9rem 0;
    border-bottom: 1px solid var(--line);
}
.faq__container { max-width: 1000px; }
.faq__head { margin-bottom: 4rem; }
.faq__head h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    max-width: 780px;
}

.faq__list {
    border-top: 1px solid var(--line-2);
}
.faq__item {
    border-bottom: 1px solid var(--line-2);
    transition: background .25s var(--ease);
}
.faq__item[open] { background: rgba(255, 94, 26, 0.02); }
.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__q {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    letter-spacing: -0.02em;
}
.faq__icon {
    font-family: var(--f-display);
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--accent);
    transition: transform .3s var(--ease);
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }

.faq__body {
    padding: 0 0 1.8rem;
    max-width: 700px;
    color: var(--text-2);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================
   CTA
   ========================================================== */
.cta {
    padding: 9rem 0;
    background:
        radial-gradient(60% 80% at 100% 0%, rgba(255,94,26,0.15), transparent 60%),
        radial-gradient(50% 70% at 0% 100%, rgba(255,94,26,0.08), transparent 60%),
        var(--bg);
}
.cta__head { margin-bottom: 5rem; }
.cta__title {
    font-size: clamp(2.6rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin: 0;
}

.cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.cta__copy p {
    font-size: 1.1rem;
    color: var(--text-2);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.5;
}
.cta__points {
    margin-bottom: 2.5rem;
}
.cta__points li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
}
.cta__direct {
    padding: 1.5rem;
    border: 1px solid var(--line-2);
    border-radius: 14px;
    background: var(--bg-2);
}
.cta__direct span {
    display: block;
    font-size: 0.85rem;
    color: var(--mute);
    margin-bottom: 0.4rem;
}
.cta__direct a {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.cta__direct a:hover { color: var(--text); }

/* ---------- FORM ---------- */
.form {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 18px;
    padding: 2.2rem;
}
.form__row { margin-bottom: 1.4rem; }
.form__row label:not(.check) {
    display: block;
    font-size: 0.82rem;
    color: var(--mute);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}
.form__opt {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.78rem;
    color: var(--mute);
    font-style: italic;
    font-family: var(--f-serif);
}
.form__row input,
.form__row textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-2);
    padding: 0.7rem 0;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .25s var(--ease);
}
.form__row input:focus,
.form__row textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.form__row input::placeholder,
.form__row textarea::placeholder {
    color: var(--mute);
    opacity: 0.6;
}
.form__row textarea { resize: vertical; min-height: 80px; }

.form__row--check { margin: 1.8rem 0; }
.check {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-2);
    cursor: pointer;
    line-height: 1.45;
}
.check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin: 0;
    margin-top: 1px;
    border: 1.5px solid var(--line-2);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all .15s var(--ease);
}
.check input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}
.check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px; top: 1px;
    width: 5px; height: 10px;
    border: solid var(--bg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.check a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.form__hint {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.88rem;
    color: var(--mute);
    min-height: 1.2em;
}
.form__hint.is-success { color: #4FD18B; }
.form__hint.is-error   { color: #FF4A3D; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: var(--bg); border-top: 1px solid var(--line); }

.footer__big { padding: 5rem 0 3rem; overflow: hidden; }
.footer__big-text {
    display: block;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(4rem, 18vw, 18rem);
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: var(--text);
    text-align: center;
    background: linear-gradient(180deg, var(--text) 0%, transparent 110%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 3fr;
    gap: 3rem;
    padding-bottom: 4rem;
}
.footer__col h4 {
    font-family: var(--f-body);
    font-size: 0.78rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.footer__col a {
    display: block;
    color: var(--text-2);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer__col a:hover { color: var(--accent); transform: translateX(4px); }

.footer__col--brand p {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: -0.02em;
}
.footer__addr {
    color: var(--mute);
    font-family: var(--f-body) !important;
    font-weight: 400 !important;
    font-size: 0.92rem !important;
    margin-top: 0.6rem !important;
    line-height: 1.5;
}

.footer__bottom {
    border-top: 1px solid var(--line);
    padding: 1.5rem 0;
    color: var(--mute);
    font-size: 0.82rem;
}
.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* ==========================================================
   LEGAL PAGES
   ========================================================== */
.legal {
    padding: 10rem 0 6rem;
    max-width: 800px;
    margin: 0 auto;
}
.legal h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}
.legal h2 {
    font-size: 1.4rem;
    margin: 3rem 0 1rem;
    color: var(--text);
    letter-spacing: -0.02em;
}
.legal h3 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; color: var(--accent); }
.legal p, .legal li { color: var(--text-2); margin-bottom: 1rem; line-height: 1.7; }
.legal ul { padding-left: 1.2rem; list-style: disc; margin-bottom: 1rem; }
.legal a { color: var(--accent); text-underline-offset: 3px; text-decoration: underline; }
.legal__back {
    display: inline-block;
    margin-bottom: 3rem;
    color: var(--mute);
    font-size: 0.9rem;
    transition: color .2s var(--ease);
}
.legal__back:hover { color: var(--accent); }
.legal__back::before { content: "← "; color: var(--accent); }

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
    .pivot__grid { grid-template-columns: 1fr; }
    .numbers__grid { grid-template-columns: repeat(2, 1fr); }
    .process__list { grid-template-columns: repeat(2, 1fr); }
    .values__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { grid-template-columns: 1fr 1fr; }

    .act__inner, .act--alt .act__inner {
        grid-template-columns: 60px 1fr;
    }
    .act__visual {
        grid-column: 1 / -1;
        margin-top: 2rem;
        order: 3 !important;
    }
}

@media (max-width: 720px) {
    :root { --gutter: 1.2rem; }

    .nav__links {
        position: fixed;
        top: 0; left: 0; right: 0;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.5rem;
        padding: 4rem var(--gutter);
        background: var(--bg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform .4s var(--ease), opacity .4s var(--ease);
    }
    .nav__links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav__links a {
        font-family: var(--f-display);
        font-size: 2.2rem;
        font-weight: 500;
        letter-spacing: -0.03em;
    }
    .nav__num {
        font-size: 1rem;
    }
    .nav__cta {
        align-self: flex-start;
        margin-top: 1rem;
    }
    .nav__toggle { display: block; z-index: 110; }

    .hero { padding: 6rem 0 5rem; min-height: auto; }
    .hero__topline { margin-bottom: 2.5rem; font-size: 0.74rem; }
    .hero__title { margin-bottom: 2rem; }
    .hero__meta { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
    .hero__cta { justify-content: flex-start; }
    .hero__cta .btn { width: 100%; }
    .hero__hint { display: none; }

    .marquee__track { font-size: 1.4rem; gap: 1.6rem; }

    .truth { padding: 5rem 0; }
    .truth__quote { margin-bottom: 2rem; }

    .acts__head, .services__head, .process__head, .values__head, .faq__head { margin-bottom: 3rem; }
    .acts { padding: 5rem 0 0; }
    .act { padding: 4rem 0; }
    .act__inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .act__num { font-size: 2.5rem; }

    .pivot { padding: 5rem 0; }
    .pivot__sticky { position: relative; top: auto; }
    .pivot__panels { margin-top: 3rem; }
    .pivot__panel { padding: 1.5rem; min-height: auto; }

    .numbers { padding: 4rem 0; }
    .numbers__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .num__big { font-size: 2.8rem; }

    .services, .process, .values, .faq, .cta { padding: 5rem 0; }

    .service {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.8rem 0 1.8rem 2.5rem;
    }
    .service::before { top: 1.8rem; }
    .service__main { padding-left: 0; }
    .service__tags {
        max-width: none;
        justify-content: flex-start;
    }

    .process__list { grid-template-columns: 1fr; }
    .process__step-head { margin-bottom: 1.2rem; }

    .values__grid { grid-template-columns: 1fr; gap: 1.2rem; }

    .cta__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form { padding: 1.5rem; }

    .footer__big { padding: 3rem 0 2rem; }
    .footer__inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
    .footer__bottom .container { justify-content: center; text-align: center; }
}

/* ==========================================================
   ACCESSIBILITY
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero__line, .hero__meta, .hero__strike { opacity: 1; transform: none; animation: none; stroke-dashoffset: 0; }
    .marquee__track { animation: none; }
    .clock__hand--h, .clock__hand--m { animation: none; }
}

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