:root {
    --ink: #07111f;
    --ink-60: rgba(7,17,31,0.6);
    --ink-30: rgba(7,17,31,0.3);
    --ink-12: rgba(7,17,31,0.12);
    --ink-08: rgba(7,17,31,0.08);
    --ink-04: rgba(7,17,31,0.04);
    --dark: #060e1d;
    --dark-2: #09142a;
    --cyan: #00bce0;
    --blue: #0059c8;
    --white: #ffffff;
    --paper: #f4f7fc;
    --paper-2: #ebf0f8;
    --ease: cubic-bezier(0.16,1,0.3,1);
    --r-full: 100px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Instrument Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.header {
    position: fixed; top: 0; width: 100%;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 1000;
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto; padding: 1.1rem 2rem;
}
.logo {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    letter-spacing: -0.015em;
}
.logo span { color: white; font-weight: 600; margin-left: 0.27em; }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: white; }
.cta-button {
    background: white;
    color: var(--ink);
    padding: 0.6rem 1.3rem;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
    letter-spacing: 0.005em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.cta-button::after { content: '→'; transition: transform 0.3s var(--ease); }
.cta-button:hover { background: var(--cyan); color: var(--dark); }
.cta-button:hover::after { transform: translateX(3px); }

/* === PAGE HERO === */
.page-hero {
    background: var(--dark);
    padding: 9rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0,188,224,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.75rem;
    position: relative;
}
.page-hero-eyebrow::before, .page-hero-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.2);
}
.page-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 400;
    color: white;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    position: relative;
}
.page-hero h1 span,
.page-hero h1 em {
    font-style: italic;
    color: var(--cyan);
    font-weight: 400;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
}
.last-updated {
    display: inline-block;
    margin-top: 1.75rem;
    position: relative;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

/* === POLICY CONTENT === */
.policy-section {
    padding: 5rem 2rem;
    background: var(--white);
}
.policy-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
}
.policy-container h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    margin: 2.75rem 0 0.85rem;
    letter-spacing: -0.015em;
}
.policy-container h2:first-child { margin-top: 0; }
.policy-container h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
    margin: 2rem 0 0.65rem;
    letter-spacing: -0.01em;
}
.policy-container p {
    color: var(--ink-60);
    margin-bottom: 1rem;
    font-size: 0.98rem;
    line-height: 1.8;
}
.policy-container ul, .policy-container ol {
    color: var(--ink-60);
    margin: 0 0 1.25rem 1.25rem;
    font-size: 0.98rem;
    line-height: 1.8;
}
.policy-container li { margin-bottom: 0.5rem; }
.policy-container a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--ink-30);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
.policy-container a:hover { text-decoration-color: var(--ink); }
.policy-container strong { color: var(--ink); font-weight: 600; }
.policy-callout {
    margin: 1.75rem 0;
    padding: 1.5rem 1.75rem;
    background: var(--paper);
    border-left: 2px solid var(--ink);
    border-radius: 0;
    color: var(--ink);
}
.policy-callout p:last-child { margin-bottom: 0; }
.policy-callout strong { color: var(--ink); }

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}
.footer-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.85rem;
    display: block;
    letter-spacing: -0.015em;
}
.footer-logo span { color: white; margin-left: 0.27em; }
.footer-section h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
}
.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
    display: block;
    transition: color 0.25s;
}
.footer-section a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .nav-menu { gap: 1rem; }
    .nav-menu li:nth-child(2), .nav-menu li:nth-child(3) { display: none; }
    .policy-container { padding: 0; }
    .policy-container h2 { font-size: 1.3rem; }
}
