/* =====================================================
   HeimOS — marketing site
   Theme: cool obsidian + cycling accent (see script.js)
   ===================================================== */

@property --accent {
    syntax: '<color>';
    inherits: true;
    initial-value: #C7FF3D;
}

@property --accent-text {
    syntax: '<color>';
    inherits: true;
    initial-value: #0A0A0F;
}

:root {
    --bg: #0A0A0F;
    --bg-soft: #12121A;
    --bg-elev: #1A1A24;
    --white: #FAFAFA;
    --dim: rgba(255, 255, 255, 0.6);
    --mute: rgba(255, 255, 255, 0.4);
    --accent: #C7FF3D;
    --accent-text: #0A0A0F;
    --pink: #FF3D88;
    --blue: #3D9FFF;
    --purple: #A855F7;
    --purple-soft: #A78BFA;
    --hairline: rgba(255, 255, 255, 0.08);
    --hairline-strong: rgba(255, 255, 255, 0.14);
    transition: --accent 1.6s ease, --accent-text 1.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter Tight', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: color-mix(in srgb, var(--accent) 30%, transparent);
    color: var(--white);
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: #fafafa;
}

.accent {
    color: var(--accent);
}

.purple {
    color: var(--purple-soft);
}

/* ---------- Background ---------- */
.palette {
    display: none;
}

.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--hairline) 1px, transparent 1px),
        linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 90%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 90%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: var(--accent);
    opacity: 0.12;
}

.orb-2 {
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: var(--pink);
    opacity: 0.1;
}

.orb-3 {
    top: 30%;
    right: -150px;
    width: 450px;
    height: 450px;
    background: var(--blue);
    opacity: 0.09;
}

/* Everything above the background layers */
.nav, .hero, .terminal-wrap, .section, .footer {
    position: relative;
    z-index: 2;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
    font-family: 'Inter Tight', sans-serif;
    letter-spacing: -0.03em;
}

h2 {
    font-weight: 800;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 8px;
    white-space: nowrap;
    transition: filter 150ms, background 150ms, color 1.6s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-text);
}

.btn-primary:hover {
    filter: brightness(1.12);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-sm {
    font-size: 14.5px;
    padding: 10px 22px;
}

.btn-block {
    display: block;
    text-align: center;
    padding: 12px 0;
    font-size: 14.5px;
    margin-top: 8px;
}

/* ---------- Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--accent);
    color: var(--accent-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

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

.nav-links > a:not(.btn) {
    color: var(--dim);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: color 150ms;
}

.nav-links > a:not(.btn):hover {
    color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 112px 32px 72px;
    text-align: center;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 45% at 50% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero h1 {
    font-weight: 900;
    font-size: clamp(52px, 8.5vw, 96px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.tagline {
    max-width: 640px;
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    text-wrap: pretty;
}

.hero-proof {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;          /* required: wraps instead of overflowing on mobile */
    gap: 10px;
    max-width: 100%;
}

.hero-proof-chip {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--accent);
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    border-radius: 5px;
    padding: 2px 7px;
}

.hero-proof-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-proof-text strong {
    color: #fafafa;
    font-weight: 700;
}

.hero-proof-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

.hero-proof-link:hover {
    color: #fafafa;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

/* ---------- Social icon rows ---------- */
.nav-social {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-social a {
    color: rgba(255, 255, 255, 0.45);
    display: inline-flex;
    transition: color 150ms;
}

.nav-social a:hover {
    color: #fafafa;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.45);
    display: inline-flex;
    transition: color 150ms;
}

.footer-social a:hover {
    color: #fafafa;
}

.about-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
}

.about-social a {
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    transition: color 150ms;
}

.about-social a:hover {
    color: #fafafa;
}

/* ---------- Terminal ---------- */
.terminal-wrap {
    padding: 8px 32px 96px;
    max-width: 904px;
    margin: 0 auto;
}

.terminal {
    background: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.term-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.term-bar .dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.term-title {
    margin-left: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--mute);
}

.terminal pre {
    margin: 0;
    padding: 28px 28px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    overflow-x: auto;
}

.terminal .c { color: rgba(255, 255, 255, 0.38); }
.terminal .acc { color: var(--accent); }
.terminal .flag { color: var(--blue); }
.terminal .ok { color: #4ADE80; }

.term-eyebrow {
    margin-top: 40px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- Sections ---------- */
.section {
    padding: 96px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-alt {
    background: #0E0E14;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 820px;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-head-left {
    margin: 0 0 64px;
    text-align: left;
}

.section-head p {
    font-size: 17.5px;
    color: var(--dim);
    text-wrap: pretty;
}


/* ---------- Wedge ---------- */
.wedge-grid {
    display: grid;
    grid-template-columns: 1fr auto 1.1fr auto 1fr;
    align-items: center;
}

.wedge-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wedge-chip {
    background: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 16px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.wedge-line {
    width: 48px;
    height: 1px;
}

.wedge-line-in {
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 50%, transparent));
}

.wedge-line-out {
    background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 50%, transparent), transparent);
}

.wedge-hub {
    background: color-mix(in srgb, var(--accent) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wedge-logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.wedge-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.wedge-pills span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--hairline-strong);
    border-radius: 999px;
    padding: 5px 12px;
}

.wedge-note {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
}

.wedge-dest {
    background: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
}

.wedge-dest-mcp {
    border-color: rgba(168, 85, 247, 0.4);
}

.wedge-dest-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    color: var(--mute);
    margin-bottom: 6px;
}

/* ---------- Routing diagram (animated SVG, replaces the static wedge) ---------- */
.routing-diagram {
    max-width: 960px;
    margin: 8px auto 0;
}
/* The v2 SVG carries its own font-family presentation attributes
   (Inter Tight / JetBrains Mono) — no CSS font override here, it
   would beat the attributes and break the mono labels. */
.routing-diagram svg {
    width: 100%;
    height: auto;
    overflow: visible;
}
.routing-pills {
    margin-top: 20px;
}
.routing-note {
    text-align: center;
    max-width: 620px;
    margin: 12px auto 0;
}
@media (prefers-reduced-motion: reduce) {
    .routing-diagram animate,
    .routing-diagram animateMotion {
        display: none;
    }
}

/* ---------- Features ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 240ms;
}

.feature-card:hover {
    border-color: color-mix(in srgb, var(--accent) 35%, transparent);
}

.feature-card svg {
    color: var(--accent);
}

.feature-card h3 {
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.015em;
}

.feature-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    text-wrap: pretty;
}

/* ---------- Proof ---------- */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.proof-card {
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.proof-num {
    font-weight: 800;
    font-size: 38px;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.proof-num-sm {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-top: 6px;
}

.proof-num-unit {
    font-size: 24px;
}

.proof-outcome {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-top: 6px;
}

.proof-support {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    line-height: 1.5;
}

.proof-note {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 32px;
}

.proof-note a {
    color: var(--accent);
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

.proof-note a:hover {
    color: #fafafa;
}

.proof-mono {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 17px;
    color: var(--accent);
    margin-top: 10px;
}

.proof-label-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

/* ---------- Steps ---------- */
.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 28px;
}

.step-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-line {
    flex: 1;
    width: 1px;
    background: color-mix(in srgb, var(--accent) 20%, transparent);
    min-height: 24px;
}

.step-body {
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-body h3 {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.015em;
}

.step-body p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    text-wrap: pretty;
}

/* ---------- EU AI Act ---------- */
.euact {
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(168, 85, 247, 0.12), transparent 70%), #0B0A10;
}

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

.eu-card {
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eu-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-soft);
}

.eu-card h3 {
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.015em;
}

.eu-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
}

/* ---------- Tenancy ---------- */
.tenancy-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
}

.tenancy-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tenancy-text h2 {
    font-size: clamp(32px, 4.5vw, 48px);
}

.tenancy-text > p {
    font-size: 16.5px;
    color: var(--dim);
    text-wrap: pretty;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.checklist > div {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
}

.check {
    color: var(--accent);
    font-size: 14px;
}

.tenancy-visual {
    background: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tenant-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    color: var(--mute);
}

.tenant-name {
    font-weight: 700;
    font-size: 18px;
}

.tenant-children {
    border-left: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tenant-card {
    background: var(--bg-elev);
    border: 1px solid var(--hairline);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tenant-team {
    font-weight: 600;
    font-size: 15px;
}

.tenant-budget {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    color: var(--mute);
}

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    background: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.price-featured {
    background: #14141C;
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--accent-text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 999px;
    padding: 5px 14px;
    white-space: nowrap;
}

.price-tier {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
}

.price-amount {
    font-weight: 800;
    font-size: 44px;
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-period {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.price-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.price-card li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    padding-left: 24px;
    position: relative;
}

.price-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

/* ---------- About ---------- */
.about-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text h2 {
    font-size: clamp(32px, 4.5vw, 48px);
}

.about-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.62);
    text-wrap: pretty;
}

.about-card {
    background: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-card h4 {
    font-weight: 700;
    font-size: 17px;
}

.about-email {
    color: var(--accent);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
}

.about-links {
    display: flex;
    gap: 20px;
}

.about-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 150ms;
}

.about-links a:hover {
    color: var(--white);
}

/* ---------- CTA ---------- */
.cta {
    padding: 112px 32px;
    background: radial-gradient(ellipse 60% 55% at 50% 100%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%);
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.cta h2 {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
}

.cta > .cta-inner > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.62);
}

.cta-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    color: var(--mute);
}

.accent-dot {
    color: var(--accent);
}

/* ---------- Footer ---------- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 48px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 150ms;
}

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

.footer-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .features-grid, .eu-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wedge-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wedge-line {
        width: 1px;
        height: 32px;
        margin: 0 auto;
    }

    .wedge-line-in {
        background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--accent) 50%, transparent));
    }

    .wedge-line-out {
        background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 50%, transparent), transparent);
    }

    .tenancy-layout, .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links > a:not(.btn) {
        display: none;
    }
}

@media (max-width: 560px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    /* Phone header: logo + CTA only. The social icons still live in the
       footer and the contact card, so nothing is lost — and the CTA no
       longer gets squeezed into a two-line wrap. */
    .nav-social {
        display: none;
    }

    .nav-inner {
        padding: 0 20px;
        height: 60px;
    }

    .nav-links {
        gap: 14px;
    }

    .btn-sm {
        padding: 9px 18px;
        font-size: 14px;
    }
}
