/* Base */
:root {
    --bg: #020617;
    --bg-2: #0f172a;
    --bg-3: #111827;
    --panel: rgba(15, 23, 42, 0.76);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(148, 163, 184, 0.34);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --soft: #94a3b8;
    --accent: #38bdf8;
    --accent-2: #60a5fa;
    --success: #86efac;
    --shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
    --radius: 30px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(56, 189, 248, 0.16), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(96, 165, 250, 0.12), transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(14, 165, 233, 0.1), transparent 35%),
        linear-gradient(180deg, var(--bg), var(--bg-2) 46%, var(--bg-3));
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.72;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(148, 163, 184, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
    content: "";
}

body::after {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image: radial-gradient(circle at 1px 1px, rgba(248, 250, 252, 0.18) 1px, transparent 0);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 70%);
    content: "";
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

::selection {
    background: rgba(56, 189, 248, 0.34);
    color: var(--text);
}

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

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(56, 189, 248, 0.72);
    outline-offset: 4px;
}

svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(280px, auto) 1fr auto;
    align-items: center;
    gap: 28px;
    width: min(1200px, calc(100% - 40px));
    margin: 18px auto 0;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(2, 6, 23, 0.78);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(22px);
    transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(148, 163, 184, 0.26);
    background: rgba(2, 6, 23, 0.9);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.48);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 250px;
    height: 92px;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
    padding: 10px 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 760;
}

.site-nav a {
    position: relative;
    transition: color 180ms ease;
}

.site-nav a::after {
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
    content: "";
}

.site-nav a:hover {
    color: var(--text);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(248, 250, 252, 0.06);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--text);
}

/* Buttons */
.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 860;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.btn.primary {
    border-color: transparent;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 28%),
        linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #020617;
    box-shadow: 0 18px 46px rgba(56, 189, 248, 0.24);
}

.btn.secondary {
    background: rgba(248, 250, 252, 0.06);
    color: var(--text);
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(56, 189, 248, 0.24);
}

.btn.secondary:hover {
    border-color: rgba(56, 189, 248, 0.46);
    background: rgba(56, 189, 248, 0.09);
}

.btn.large {
    min-width: 196px;
    min-height: 58px;
}

/* Layout and typography */
.section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 118px 0;
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(5rem, 10vw, 9rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
}

h2 {
    max-width: 860px;
    margin-bottom: 20px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    font-size: 23px;
    line-height: 1.22;
}

.section p,
.hero-description {
    color: var(--muted);
    font-size: 18px;
}

.section-heading {
    margin-bottom: 46px;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    align-items: center;
    gap: 66px;
    min-height: 88vh;
    padding-top: 112px;
    padding-bottom: 150px;
}

.hero-copy {
    position: relative;
}

.hero-copy::before {
    position: absolute;
    inset: -70px auto auto -60px;
    z-index: -1;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.12);
    filter: blur(40px);
    content: "";
}

.hero-statement {
    max-width: 820px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: clamp(31px, 3.8vw, 54px);
    font-weight: 880;
    line-height: 1.07;
}

.hero-description {
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.22);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.trust-row span::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.78);
    content: "";
}

.trust-row span:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.42);
    background: rgba(15, 23, 42, 0.86);
    color: var(--text);
}

/* Dashboard visual */
.dashboard-stage {
    position: relative;
    perspective: 1400px;
}

.dashboard-ambient {
    position: absolute;
    inset: 7% 2% auto;
    height: 76%;
    border-radius: 44px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(96, 165, 250, 0.12));
    filter: blur(42px);
    opacity: 0.78;
    animation: glowPulse 7s ease-in-out infinite;
}

.dashboard-visual,
.comparison article,
.feature-card,
.pricing-card,
.tech-section,
.final-cta {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.64));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(248, 250, 252, 0.07);
    backdrop-filter: blur(20px);
}

.dashboard-visual {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 26px;
    transform: rotateX(5deg) rotateY(-6deg) translateZ(0);
    transform-style: preserve-3d;
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
    animation: heroFloat 8s ease-in-out infinite;
}

.dashboard-visual:hover {
    border-color: rgba(56, 189, 248, 0.42);
    transform: rotateX(2deg) rotateY(-3deg) translateY(-4px);
    box-shadow: 0 42px 120px rgba(0, 0, 0, 0.5), 0 0 54px rgba(56, 189, 248, 0.12), inset 0 1px 0 rgba(248, 250, 252, 0.1);
}

.dashboard-visual::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(56, 189, 248, 0.18), transparent 28%);
    pointer-events: none;
    content: "";
}

.visual-topbar {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--muted);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span,
.status-indicator span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(148, 163, 184, 0.22);
    background: #64748b;
}

.window-dots span:first-child {
    background: var(--accent);
}

.window-dots span:nth-child(2) {
    background: var(--accent-2);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid rgba(134, 239, 172, 0.28);
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.08);
    color: #bbf7d0;
    font-size: 12px;
    font-weight: 850;
}

.status-indicator span {
    background: var(--success);
    box-shadow: 0 0 18px rgba(134, 239, 172, 0.84);
}

.metric-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 15px;
}

.metric-card {
    position: relative;
    min-height: 132px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.7), rgba(2, 6, 23, 0.42));
    box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.05);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.metric-card.wide {
    grid-row: span 2;
}

.metric-card:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.42);
    background: rgba(15, 23, 42, 0.84);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(248, 250, 252, 0.08);
}

.metric-card span,
.metric-card small {
    display: block;
    color: var(--soft);
    font-size: 13px;
}

.metric-card strong {
    display: block;
    margin: 10px 0 6px;
    font-size: 38px;
    line-height: 1;
}

.metric-card.online strong {
    color: var(--success);
}

.workflow-card {
    position: relative;
    display: grid;
    gap: 14px;
    margin-top: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(248, 250, 252, 0.045);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.workflow-card:hover,
.activity-row:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.34);
    background: rgba(248, 250, 252, 0.065);
}

.workflow-card span {
    display: block;
    color: var(--soft);
    font-size: 13px;
}

.workflow-card strong {
    font-size: 19px;
}

.progress-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
}

.progress-track span {
    display: block;
    width: 76%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.5);
}

.activity-panel {
    position: relative;
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.activity-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.045);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.activity-row span {
    color: var(--soft);
}

/* Problem and solution */
.split-section {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 52px;
    align-items: start;
}

.big-stat {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    padding: 26px;
    border: 1px solid rgba(56, 189, 248, 0.26);
    border-left: 4px solid var(--accent);
    border-radius: 22px;
    background: rgba(56, 189, 248, 0.08);
    box-shadow: 0 24px 70px rgba(14, 165, 233, 0.12), inset 0 1px 0 rgba(248, 250, 252, 0.06);
}

.big-stat::before {
    position: absolute;
    inset: -80% -20% auto 40%;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.18);
    filter: blur(30px);
    content: "";
}

.big-stat strong,
.big-stat span {
    display: block;
}

.big-stat strong {
    position: relative;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
}

.big-stat span {
    position: relative;
    color: var(--muted);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.comparison article {
    border-radius: 26px;
    padding: 30px;
    transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.comparison article:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(248, 250, 252, 0.08);
}

.comparison ul,
.pricing-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comparison li,
.pricing-card li {
    position: relative;
    margin-top: 13px;
    padding-left: 24px;
    color: var(--muted);
}

.comparison li::before,
.pricing-card li::before {
    position: absolute;
    left: 2px;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.54);
    content: "";
}

.comparison article:first-child li::before {
    background: #64748b;
    box-shadow: none;
}

.positive {
    border-color: rgba(56, 189, 248, 0.34);
    background:
        radial-gradient(circle at 80% 0%, rgba(56, 189, 248, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.64));
}

/* Feature cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    min-height: 258px;
    border-radius: 30px;
    padding: 34px;
    transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.feature-card:hover,
.pricing-card:hover,
.benefit-list article:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.48);
    background: rgba(15, 23, 42, 0.92);
    box-shadow: 0 30px 92px rgba(0, 0, 0, 0.38), 0 0 42px rgba(56, 189, 248, 0.08);
}

@media (min-width: 1061px) {
    .feature-card:first-child {
        grid-column: span 2;
        min-height: 280px;
    }
}

.icon,
.benefit-list svg {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border: 1px solid rgba(56, 189, 248, 0.26);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.14), rgba(56, 189, 248, 0.05));
    box-shadow: 0 12px 34px rgba(56, 189, 248, 0.08);
    color: var(--accent);
}

.icon svg {
    width: 25px;
    height: 25px;
}

.feature-card p,
.pricing-card p {
    color: var(--muted);
}

/* Benefits */
.benefit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-list article {
    min-height: 150px;
    padding: 26px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 34%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.54));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(248, 250, 252, 0.05);
    transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.benefit-list svg {
    margin-bottom: 16px;
    padding: 13px;
}

.benefit-list strong {
    display: block;
    font-size: 18px;
    line-height: 1.3;
}

/* Packages */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 430px;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 28px 88px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(248, 250, 252, 0.05);
    transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card.featured {
    border-color: rgba(56, 189, 248, 0.62);
    background:
        radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.22), transparent 38%),
        linear-gradient(180deg, rgba(30, 64, 175, 0.38), rgba(15, 23, 42, 0.84));
    box-shadow: 0 38px 120px rgba(14, 165, 233, 0.28), 0 0 64px rgba(56, 189, 248, 0.11), inset 0 1px 0 rgba(248, 250, 252, 0.08);
    transform: translateY(-12px);
}

.pricing-card.featured:hover {
    transform: translateY(-16px);
}

.badge {
    align-self: flex-start;
    padding: 7px 12px;
    border: 1px solid rgba(56, 189, 248, 0.36);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(96, 165, 250, 0.1));
    box-shadow: 0 12px 28px rgba(56, 189, 248, 0.12);
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

/* Technology and CTA */
.tech-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    border-radius: 34px;
    padding: 56px;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tech-grid span {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.38);
    color: var(--muted);
    font-weight: 820;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.tech-grid span:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.36);
    background: rgba(15, 23, 42, 0.78);
    color: var(--text);
}

.final-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    border-radius: 36px;
    padding: 62px;
}

.final-cta::before {
    position: absolute;
    inset: auto -10% -45% 42%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.16);
    filter: blur(42px);
    pointer-events: none;
    content: "";
}

.final-cta > * {
    position: relative;
}

.cta-copy {
    max-width: 760px;
}

.contact-card,
.footer-imprint {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-card {
    width: fit-content;
    max-width: 100%;
    margin-top: 30px;
    padding: 14px 18px 14px 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    background: rgba(2, 6, 23, 0.34);
    box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.06);
    backdrop-filter: blur(14px);
}

.contact-card img,
.footer-imprint img {
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.96);
}

.contact-card img {
    width: 82px;
    height: 82px;
    padding: 10px;
}

.contact-card strong,
.contact-card a {
    display: block;
}

.contact-card strong {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.25;
}

.contact-card a {
    color: var(--muted);
    font-weight: 760;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.contact-card a:hover {
    color: var(--text);
}

/* Footer */
.site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    align-items: start;
    gap: 32px;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 46px 0 56px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.28));
}

.site-footer strong,
.site-footer span,
.site-footer a {
    display: block;
}

.site-footer strong {
    color: var(--text);
    font-size: 22px;
}

.footer-imprint img {
    width: 58px;
    height: 58px;
    padding: 8px;
}

.footer-imprint strong {
    font-size: 18px;
}

.footer-imprint span {
    color: var(--soft);
}

.footer-contact,
.footer-links {
    display: grid;
    gap: 8px;
    overflow-wrap: anywhere;
}

.footer-links {
    text-align: right;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--text);
}

.footer-contact a,
.footer-links a {
    transition: color 160ms ease, transform 160ms ease;
}

.footer-contact a:hover,
.footer-links a:hover {
    transform: translateX(2px);
}

/* Legal pages */
.legal-page {
    min-height: 70vh;
    padding-top: 112px;
}

.legal-hero,
.legal-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.62));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(248, 250, 252, 0.07);
    backdrop-filter: blur(20px);
}

.legal-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 28px;
    padding: 38px;
    border-radius: 34px;
}

.legal-hero img {
    width: 128px;
    height: 128px;
    object-fit: contain;
    padding: 16px;
    border-radius: 28px;
    background: rgba(248, 250, 252, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.legal-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(48px, 7vw, 88px);
    letter-spacing: -0.05em;
}

.legal-hero p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.legal-card {
    border-radius: 30px;
    padding: 34px;
}

.legal-card h2 {
    margin-bottom: 24px;
    font-size: clamp(30px, 4vw, 44px);
}

.legal-card p {
    color: var(--muted);
}

.legal-card dl {
    display: grid;
    gap: 18px;
    margin: 0;
}

.legal-card dt {
    color: var(--soft);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-card dd {
    margin: 4px 0 0;
    color: var(--text);
    font-size: 20px;
    font-weight: 780;
    overflow-wrap: anywhere;
}

.legal-card a:not(.btn) {
    color: var(--text);
}

.legal-card a:not(.btn):hover {
    color: var(--accent);
}

/* Motion */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -9px;
    }
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.62;
    }

    50% {
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* Responsive */
@media (max-width: 1060px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .brand img {
        width: 210px;
        height: 78px;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .site-header.nav-open .site-nav,
    .site-header.nav-open .header-cta {
        display: grid;
        grid-column: 1 / -1;
        justify-content: stretch;
    }

    .site-header.nav-open .site-nav {
        gap: 0;
    }

    .site-header.nav-open .site-nav a,
    .site-header.nav-open .header-cta {
        padding: 15px 4px;
        border-top: 1px solid var(--line);
    }

    .site-header.nav-open .header-cta {
        margin-top: 6px;
        padding-inline: 18px;
        text-align: center;
    }

    .hero,
    .split-section,
    .legal-grid,
    .tech-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .dashboard-visual {
        transform: none;
    }

    .feature-grid,
    .pricing-grid,
    .benefit-list {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .site-header,
    .section,
    .site-footer {
        width: min(100% - 28px, 1200px);
    }

    .brand img {
        width: 168px;
        height: 62px;
        padding: 8px 12px;
    }

    h1 {
        font-size: clamp(72px, 23vw, 110px);
        letter-spacing: -0.06em;
    }

    h2 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .hero {
        padding-top: 64px;
        padding-bottom: 84px;
    }

    .hero-statement {
        font-size: clamp(28px, 9vw, 38px);
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .comparison,
    .feature-grid,
    .pricing-grid,
    .metric-grid,
    .tech-grid,
    .benefit-list,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .visual-topbar {
        grid-template-columns: 1fr;
    }

    .status-indicator {
        justify-self: start;
    }

    .dashboard-visual,
    .tech-section,
    .legal-hero,
    .legal-card,
    .final-cta {
        border-radius: 24px;
        padding: 24px;
    }

    .legal-page {
        padding-top: 76px;
    }

    .legal-hero img {
        width: 94px;
        height: 94px;
        border-radius: 22px;
    }

    .contact-card,
    .footer-imprint {
        align-items: flex-start;
    }

    .contact-card img {
        width: 66px;
        height: 66px;
    }

    .section {
        padding: 76px 0;
    }

    .footer-links {
        text-align: left;
    }
}
