/* ========== CSS Custom Properties ========== */
:root {
    --color-bg: #050505;
    --color-bg-light: #0b0b0c;
    --color-surface: #141414;
    --color-white: #f4f4f2;
    --color-muted: rgba(244,244,242,0.68);
    --color-dim: rgba(244,244,242,0.42);
    --color-line: rgba(244,244,242,0.18);
    --color-line-strong: rgba(244,244,242,0.42);
    --color-inverse-bg: #f4f4f2;
    --color-inverse-text: #050505;
    --color-inverse-muted: rgba(5,5,5,0.62);

    --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;

    --max-width: 1180px;
    --header-height: 72px;
    --ease: cubic-bezier(.2, .8, .2, 1);

    --radius: 0;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.25);
}

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

html {
    scroll-behavior: smooth;
    background: var(--color-bg);
}

body {
    color: var(--color-white);
    background:
        radial-gradient(circle at 75% 10%, rgba(255,255,255,0.10), transparent 23rem),
        radial-gradient(circle at 20% 55%, rgba(255,255,255,0.07), transparent 18rem),
        var(--color-bg);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    max-width: 100%;
    display: block;
}

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

button, input, select, textarea {
    font: inherit;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 8rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.15;
}

p {
    margin-top: 0;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--color-muted);
    max-width: 600px;
}

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

.kicker {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--color-dim);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.kicker::before {
    content: '';
    width: 2.375rem;
    height: 1px;
    background: var(--color-white);
}

/* ========== Container ========== */
.container {
    width: min(var(--max-width), 100% - 2.5rem);
    margin: 0 auto;
}

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

/* ========== Header ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 40;
    border-bottom: 1px solid rgba(244,244,242,0.12);
    background: rgba(5,5,5,0.72);
    backdrop-filter: blur(18px);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 210px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    color: rgba(244,244,242,0.72);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links a {
    transition: color 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-white);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger .line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    min-height: 42px;
    padding: 0 1.125rem;
    border: 1px solid var(--color-white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
    cursor: pointer;
    border-radius: var(--radius);
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: transparent;
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(244,244,242,0.38);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: var(--color-white);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-large {
    min-height: 56px;
    padding: 0 2rem;
    font-size: 0.875rem;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 3.375rem) 0 2.75rem;
    overflow: hidden;
    display: grid;
    align-items: end;
    border-bottom: 1px solid var(--color-line);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(244,244,242,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244,244,242,0.08) 1px, transparent 1px);
    background-size: 4.5rem 4.5rem;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), transparent 85%);
    opacity: .45;
    animation: gridDrift 18s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto -10vw -18vw -10vw;
    height: 42vw;
    background: radial-gradient(ellipse at center, rgba(244,244,242,.14), transparent 67%);
    filter: blur(18px);
    opacity: .72;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 2.625rem;
    align-items: end;
}

.hero-content {
    max-width: 600px;
}

.hero-content p {
    color: var(--color-muted);
    font-size: clamp(1.0625rem, 1.7vw, 1.375rem);
    line-height: 1.45;
    margin-bottom: 1.875rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-visual {
    position: relative;
    min-height: 610px;
    border-left: 1px solid var(--color-line);
    border-right: 1px solid var(--color-line);
    overflow: hidden;
}

.sci-panel {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(244,244,242,.16) 1px, transparent 1px) 0 0 / 20% 100%,
        linear-gradient(rgba(244,244,242,.08) 1px, transparent 1px) 0 0 / 100% 20%;
    opacity: .36;
}

.side-index {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4.5rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-right: 1px solid var(--color-line);
}

.side-index span {
    border-right: 1px solid var(--color-line);
    color: var(--color-dim);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1.125rem 0;
}

.rings {
    position: absolute;
    inset: 12% 2% 20% 2%;
    display: grid;
    place-items: center;
}

.ring {
    position: absolute;
    width: min(32vw, 360px);
    aspect-ratio: 1.58/1;
    border: 1px solid rgba(244,244,242,.82);
    border-radius: 50%;
    transform: rotateX(64deg) rotateZ(var(--rz)) translateY(var(--y));
    opacity: .82;
    animation: breathe 5.8s var(--ease) infinite;
    animation-delay: var(--d);
    box-shadow: 0 0 18px rgba(244,244,242,.06);
}

.panel-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 68%;
    padding: 1.75rem 1.875rem;
    border-top: 1px solid var(--color-line-strong);
    border-left: 1px solid var(--color-line-strong);
    background: rgba(5,5,5,.74);
    backdrop-filter: blur(8px);
}

.panel-copy strong {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.panel-copy p {
    color: var(--color-muted);
    font-size: 0.8125rem;
    line-height: 1.65;
}

/* ========== Trust Bar ========== */
.trust-bar {
    padding: 1.375rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--color-line);
    background: rgba(244,244,242,0.035);
}

.trust-track {
    display: flex;
    width: max-content;
    gap: 3.375rem;
    animation: marquee 25s linear infinite;
    color: rgba(244,244,242,.54);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.trust-track span {
    display: inline-flex;
    align-items: center;
    gap: 3.375rem;
}

.trust-track span::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    transform: rotate(45deg);
}

/* ========== Sections ========== */
.section {
    padding: 7rem 0;
    border-bottom: 1px solid var(--color-line);
}

.section-light {
    background: var(--color-inverse-bg);
    color: var(--color-inverse-text);
}

.section-light .kicker,
.section-light .muted,
.section-light .service-card p,
.section-light .work-item p {
    color: var(--color-inverse-muted);
}

.section-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 2.375rem;
    align-items: end;
    margin-bottom: 3.625rem;
}

.section-header h2 {
    margin-bottom: 0;
}

.section-header p {
    margin-bottom: 0;
}

/* ========== Services ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
}

.service-card {
    min-height: 284px;
    padding: 1.625rem 1.375rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.28s var(--ease), color 0.28s var(--ease);
}

.service-card:hover {
    background: var(--color-bg);
    color: var(--color-white);
}

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

.service-number {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    opacity: 0.5;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.service-card p {
    margin-bottom: 1.375rem;
    font-size: 0.875rem;
    line-height: 1.55;
}

.service-link {
    font-size: 0.6875rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

/* ========== Map & Countries ========== */
.country-layout {
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    gap: 2.5rem;
    align-items: center;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.875rem;
    max-width: 520px;
}

.country-list span {
    border: 1px solid rgba(5,5,5,0.22);
    padding: 0.5625rem 0.6875rem;
    color: rgba(5,5,5,0.72);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.map-wrap {
    border: 1px solid rgba(5,5,5,0.22);
    background:
        linear-gradient(rgba(5,5,5,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5,5,5,.06) 1px, transparent 1px);
    background-size: 2.75rem 2.75rem;
    min-height: 420px;
    overflow: hidden;
}

.world-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.land { fill: rgba(5,5,5,.08); stroke: rgba(5,5,5,.38); stroke-width: 1; }
.map-line { stroke: rgba(5,5,5,.22); stroke-width: 1; fill: none; }
.pin { fill: var(--color-bg); stroke: var(--color-white); stroke-width: 2; }
.pin-pulse {
    fill: none; stroke: rgba(5,5,5,.34); stroke-width: 1.5;
    animation: pinPulse 2.6s var(--ease) infinite;
    transform-box: fill-box; transform-origin: center;
}
.map-label {
    fill: rgba(5,5,5,.74); font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
}

/* ========== Work Grid ========== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-line);
    border: 1px solid var(--color-line);
}

.work-item {
    min-height: 310px;
    padding: 1.75rem;
    background:
        linear-gradient(135deg, rgba(244,244,242,.06), transparent 45%),
        var(--color-bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.work-item span {
    color: var(--color-dim);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.work-item h3 {
    font-size: 1.5625rem;
    margin-bottom: 0.875rem;
}

.work-item p {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ========== Audit Form ========== */
.audit-layout {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 3.375rem;
    align-items: start;
}

.audit-info h2 {
    margin-bottom: 1.5rem;
}

.audit-info p {
    color: var(--color-muted);
    line-height: 1.6;
    font-size: 1.125rem;
    max-width: 480px;
    margin-bottom: 1.75rem;
}

.contact-details {
    display: grid;
    gap: 0.875rem;
    color: var(--color-muted);
    font-size: 0.875rem;
}

.contact-link {
    display: inline-flex;
    width: fit-content;
    border-bottom: 1px solid rgba(244,244,242,0.36);
    padding-bottom: 3px;
}

.audit-form {
    border: 1px solid var(--color-line-strong);
    padding: 2rem;
    background:
        linear-gradient(90deg, rgba(244,244,242,.08) 1px, transparent 1px) 0 0 / 3.5rem 3.5rem,
        rgba(244,244,242,.035);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-muted);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(244,244,242,0.28);
    border-radius: 0;
    background: rgba(5,5,5,0.8);
    color: var(--color-white);
    min-height: 3rem;
    padding: 0.75rem 0.8125rem;
    outline: none;
    transition: border-color 0.2s var(--ease), background 0.2s;
}

textarea { min-height: 132px; resize: vertical; }

input:focus, select:focus, textarea:focus {
    border-color: var(--color-white);
    background: var(--color-bg);
}

.full-width {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.125rem;
}

.form-note {
    color: var(--color-dim);
    font-size: 0.8125rem;
    line-height: 1.55;
    margin: 1.125rem 0 0;
}

.error-message {
    font-size: 0.75rem;
    color: #f87171;
    display: none;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.875rem;
    padding: 0.75rem;
}

.form-message.success { color: #86efac; }
.form-message.error { color: #fca5a5; }

.hidden { display: none; }

.spinner {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ========== Portfolio ========== */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(5,5,5,.18);
    border: 1px solid rgba(5,5,5,.18);
}

.case-card {
    background: var(--color-white);
    color: var(--color-bg);
    min-height: 390px;
    padding: 1.625rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-tags {
    display: flex;
    justify-content: space-between;
    color: var(--color-inverse-muted);
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 3.125rem;
}

.case-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1.125rem;
}

.case-card p {
    color: var(--color-inverse-muted);
    line-height: 1.58;
}

/* ========== About ========== */
.about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.625rem;
    align-items: start;
}

.director-image {
    position: relative;
    margin: 0;
    aspect-ratio: 4/5;
    border: 1px solid var(--color-line-strong);
    background:
        radial-gradient(circle at 50% 30%, rgba(244,244,242,.15), transparent 22%),
        linear-gradient(90deg, rgba(244,244,242,.12) 1px, transparent 1px) 0 0 / 2.375rem 2.375rem,
        var(--color-bg);
    overflow: hidden;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.director-caption {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.director-caption span:last-child {
    color: var(--color-muted);
    text-align: right;
}

.about-copy p {
    color: var(--color-muted);
    font-size: 1.125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.difference-list {
    margin-top: 2.375rem;
    border-top: 1px solid var(--color-line);
}

.difference-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 1.5rem;
    padding: 1.4375rem 0;
    border-bottom: 1px solid var(--color-line);
}

.difference-item strong {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.difference-item span {
    color: var(--color-muted);
    line-height: 1.55;
}

/* ========== Final CTA ========== */
.final-cta {
    min-height: 58svh;
    display: grid;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 10% 16%;
    border: 1px solid rgba(244,244,242,.18);
    border-radius: 50%;
    transform: rotateX(70deg);
    box-shadow:
        0 0 0 36px rgba(244,244,242,.02),
        0 0 0 72px rgba(244,244,242,.015),
        0 0 0 108px rgba(244,244,242,.01);
    animation: pulse 6s var(--ease) infinite;
}

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

/* ========== Footer ========== */
.site-footer {
    padding: 2rem 0 6rem;
    color: var(--color-dim);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid {
    border-top: 1px solid var(--color-line);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo { width: 190px; opacity: .72; }
.footer-contact a { border-bottom: 1px solid rgba(244,244,242,.3); }
.footer-links { display: flex; gap: 1.5rem; }

/* ========== Floating WhatsApp ========== */
.floating-whatsapp {
    position: fixed;
    right: 1.375rem;
    bottom: 1.375rem;
    z-index: 30;
    width: 58px; height: 58px;
    border: 1px solid var(--color-white);
    background: var(--color-white);
    color: var(--color-bg);
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: -.05em;
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
    transition: transform 0.25s var(--ease);
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }

/* ========== Mobile Bar ========== */
.mobile-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 31;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(244,244,242,.2);
    background: rgba(5,5,5,.88);
    backdrop-filter: blur(16px);
}
.mobile-bar a {
    min-height: 3.5rem;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.mobile-bar a:first-child { border-right: 1px solid rgba(244,244,242,.2); }

/* ========== Information & Join pages ========== */
.page-content { padding-top: calc(var(--header-height) + 2rem); }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.info-card {
    padding: 1.5rem;
    border: 1px solid currentColor;
    background: transparent;
    transition: background 0.2s;
}
.info-card:hover { background: var(--color-bg); color: var(--color-white); }

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.check-list li::before { content: '✓ '; color: #86efac; }

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.who-item {
    padding: 1rem;
    border: 1px solid var(--color-line);
    text-align: center;
    font-size: 0.875rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.benefit-item {
    padding: 0.75rem 1.25rem;
    border: 1px solid currentColor;
    font-size: 0.875rem;
}

.service-chooser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.chooser-card { padding: 2rem; border: 1px solid currentColor; }
.chooser-card p { margin-top: 0.5rem; }

.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--color-line); padding: 1.5rem 0; }
.faq-item summary { font-weight: 700; cursor: pointer; }
.faq-item p { margin-top: 1rem; }

.legal-text { max-width: 800px; margin-top: 2rem; }
.legal-text h2 { font-size: 1.5rem; margin-top: 2rem; }
.legal-text p, .legal-text ul { margin-bottom: 1rem; }

/* ========== Keyframes ========== */
@keyframes gridDrift {
    to { background-position: 4.5rem 4.5rem; }
}
@keyframes breathe {
    0%,100% { transform: rotateX(64deg) rotateZ(var(--rz)) translateY(var(--y)) scale(.98); opacity: .55; }
    50% { transform: rotateX(64deg) rotateZ(var(--rz)) translateY(calc(var(--y) - 7px)) scale(1.03); opacity: .96; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes pulse {
    0%,100% { transform: rotateX(70deg) scale(.98); opacity: .55; }
    50% { transform: rotateX(70deg) scale(1.04); opacity: 1; }
}
@keyframes pinPulse {
    0%,100% { opacity: .4; transform: scale(.72); }
    50% { opacity: 1; transform: scale(1.5); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== Information page – readable typography ========== */
.info-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);   /* much smaller than the hero heading */
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.info-page h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.info-page h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

/* Add comfortable spacing between headings and following paragraphs */
.info-page p {
    margin-top: 0;                  /* reset any unwanted top margin */
    margin-bottom: 1.25rem;
}

/* For the first lead paragraph after the section header */
.info-page .lead {
    margin-top: 0;
    margin-bottom: 2rem;
}

/* Increase spacing inside the info cards for better readability */
.info-page .info-card h3 {
    margin-bottom: 0.5rem;
}
.info-page .info-card p {
    margin-bottom: 0;
}