:root {
    --navy: #083756;
    --navy-deep: #041E2F;
    --navy-soft: #0C4467;
    --gold: #F2932A;
    --gold-light: #F8B968;
    --gold-deep: #D67D14;
    --cream: #f8f5ef;
    --light: #ffffff;
    --gray: #5a6b7d;
    --gray-soft: #e8ecf1;
    --text: #1a2b3d;
    --shadow-sm: 0 2px 10px rgba(8, 55, 86, 0.06);
    --shadow-md: 0 8px 30px rgba(8, 55, 86, 0.10);
    --shadow-lg: 0 20px 60px rgba(8, 55, 86, 0.18);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang TC', 'Microsoft JhengHei', 'Noto Sans TC', 'Hiragino Sans CNS', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, 'PingFang TC', 'Microsoft JhengHei', 'Noto Serif TC', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.01em;
}

/* Chinese typography overrides — applied when html[lang^="zh"] */
html[lang^="zh"] body {
    font-family: 'PingFang TC', 'Microsoft JhengHei', 'Noto Sans TC', 'Hiragino Sans CNS', 'Inter', sans-serif;
    line-height: 1.85;
    letter-spacing: 0;
}
html[lang^="zh"] h1,
html[lang^="zh"] h2,
html[lang^="zh"] h3,
html[lang^="zh"] h4 {
    font-family: 'PingFang TC', 'Microsoft JhengHei', 'Noto Serif TC', 'Source Han Serif TC', 'Cormorant Garamond', serif;
    line-height: 1.35;
    letter-spacing: 0.02em;
    font-weight: 600;
}
html[lang^="zh"] .eyebrow,
html[lang^="zh"] .nav-link,
html[lang^="zh"] .btn,
html[lang^="zh"] .footer h4 {
    text-transform: none;
    letter-spacing: 0.06em;
}
html[lang^="zh"] em {
    font-style: normal !important;
    color: var(--gold-deep);
}
html[lang^="zh"] .hero h1 em,
html[lang^="zh"] .page-hero h1 em {
    color: var(--gold) !important;
}
html[lang^="zh"] .approach-num,
html[lang^="zh"] .market-card .num,
html[lang^="zh"] .stat-number {
    font-style: normal;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }

p { color: var(--gray); }

a {
    color: var(--gold-deep);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--navy); }

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.container-narrow {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2rem;
}

.eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 3rem;
}
.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.25rem;
    height: 1px;
    background: var(--gold);
}
.eyebrow.center {
    padding-left: 0;
    padding: 0 3rem;
}
.eyebrow.center::before { left: 0; }
.eyebrow.center::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 2.25rem;
    height: 1px;
    background: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--light);
    color: var(--navy);
    border-color: var(--light);
}

.btn-dark {
    background: var(--navy);
    color: var(--light);
    border: 1px solid var(--navy);
}
.btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.btn-text {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}
.btn-text:hover {
    background: var(--navy);
    color: var(--light);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
    padding: 1.5rem 0;
}
.header.scrolled,
.header.solid {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.85rem 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}
.brand img {
    height: 50px;
    width: auto;
    transition: all var(--transition);
}
.header.scrolled .brand img,
.header.solid .brand img {
    height: 42px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 0.04em;
    transition: color var(--transition);
}
.brand-tag {
    font-size: 0.65rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.header.scrolled .brand-name,
.header.solid .brand-name { color: var(--navy); }

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 2.25rem;
}
.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light);
    position: relative;
    padding: 0.4rem 0;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.header.scrolled .nav-link,
.header.solid .nav-link { color: var(--navy); }
.nav-link:hover { color: var(--gold-deep); }

.header .btn-header {
    padding: 0.7rem 1.4rem;
    font-size: 0.75rem;
}

/* ===== Language toggle ===== */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition);
    margin-right: 0.5rem;
}
.lang-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.lang-toggle [data-lang] {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}
.lang-toggle [data-lang].active {
    color: var(--gold);
}
.lang-toggle .lang-divider {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}
.header.scrolled .lang-toggle,
.header.solid .lang-toggle {
    color: var(--navy);
    border-color: rgba(8, 55, 86, 0.15);
}
.header.scrolled .lang-toggle [data-lang],
.header.solid .lang-toggle [data-lang] {
    color: var(--gray);
}
.header.scrolled .lang-toggle [data-lang].active,
.header.solid .lang-toggle [data-lang].active {
    color: var(--gold-deep);
}
.header.scrolled .lang-toggle .lang-divider,
.header.solid .lang-toggle .lang-divider {
    color: rgba(8, 55, 86, 0.2);
}
.header.scrolled .lang-toggle:hover,
.header.solid .lang-toggle:hover {
    border-color: var(--gold-deep);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}
.hamburger span {
    display: block;
    position: absolute;
    left: 4px;
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: all var(--transition);
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }
.header.scrolled .hamburger span,
.header.solid .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ===== HERO (home) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--light);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 55, 86, 0.92) 0%, rgba(8, 55, 86, 0.65) 60%, rgba(8, 55, 86, 0.45) 100%),
        url('images/hero.jpg') center/cover no-repeat;
    z-index: -1;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom right, rgba(242, 147, 42, 0.15), transparent 60%);
}
.hero-content {
    max-width: 820px;
    padding: 8rem 0 4rem;
}
.hero h1 {
    color: var(--light);
    margin-bottom: 1.75rem;
    font-weight: 500;
}
.hero h1 .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}
.hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.75rem;
    max-width: 640px;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.hero-eyebrow { color: var(--gold); }
.hero-eyebrow::before { background: var(--gold); }

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(4, 30, 47, 0.85);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(242, 147, 42, 0.25);
    padding: 2rem 0;
}
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat {
    text-align: center;
    position: relative;
}
.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1rem;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(242, 147, 42, 0.25);
}
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--light);
    padding: 11rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(242, 147, 42, 0.18), transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    color: var(--light);
    margin-bottom: 1rem;
    font-weight: 500;
}
.page-hero p {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    max-width: 640px;
    line-height: 1.8;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero-meta {
    margin-top: 2.5rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.page-hero-meta strong {
    color: var(--gold);
    font-weight: 500;
    margin-right: 0.5rem;
}

/* ===== SECTIONS ===== */
section { padding: 7rem 0; }
.section-header {
    max-width: 760px;
    margin-bottom: 4.5rem;
}
.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-header h2 { margin-bottom: 1.25rem; }
.section-header h2 em {
    color: var(--gold-deep);
    font-style: italic;
    font-weight: 500;
}
.lede {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* ===== ABOUT ===== */
.about {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 147, 42, 0.08), transparent 70%);
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image { position: relative; }
.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about-image::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    right: 35px;
    bottom: 35px;
    border: 1px solid var(--gold);
    z-index: -1;
}
.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--navy);
    color: var(--light);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 280px;
}
.about-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 600;
}
.about-badge .lbl {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-top: 0.5rem;
}
.about-text p { margin-bottom: 1.25rem; font-size: 1.02rem; }
.about-features {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}
.about-features li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    margin-top: 0.6rem;
    flex-shrink: 0;
    transform: rotate(45deg);
}

/* ===== CAPABILITIES ===== */
.capabilities { background: var(--light); }
.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.cap-card {
    background: var(--light);
    border: 1px solid var(--gray-soft);
    padding: 3rem 2.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.cap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.cap-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: transparent;
}
.cap-card:hover::before { transform: scaleX(1); }
.cap-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 147, 42, 0.1);
    margin-bottom: 1.75rem;
    color: var(--gold-deep);
}
.cap-icon svg { width: 30px; height: 30px; }
.cap-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.cap-card p { font-size: 0.97rem; line-height: 1.75; }

/* ===== APPROACH ===== */
.approach {
    background: var(--navy);
    color: var(--light);
    position: relative;
    overflow: hidden;
}
.approach::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/approach-bg.jpg') center/cover;
    opacity: 0.06;
    pointer-events: none;
}
.approach h2, .approach h3 { color: var(--light); }
.approach .eyebrow { color: var(--gold); }
.approach .lede { color: rgba(255,255,255,0.78); }
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    position: relative;
}
.approach-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}
.approach-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 500;
    flex-shrink: 0;
    font-style: italic;
}
.approach-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.45rem;
}
.approach-item p {
    color: rgba(255,255,255,0.72);
    font-size: 0.97rem;
}

/* ===== MARKETS ===== */
.markets { background: var(--cream); }
.markets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.market-card {
    background: var(--light);
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-left: 3px solid var(--gold);
    transition: all var(--transition);
}
.market-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}
.market-card .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold-deep);
    font-weight: 600;
    font-style: italic;
    flex-shrink: 0;
}
.market-card h4 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.market-card p { font-size: 0.94rem; line-height: 1.7; margin: 0; }

/* ===== PILLARS ===== */
.pillars { background: var(--light); }
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--gray-soft);
}
.pillar {
    padding: 4rem 3.5rem;
    position: relative;
}
.pillar:first-child { border-right: 1px solid var(--gray-soft); }
.pillar h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.pillar h3::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}
.pillar p { margin-bottom: 1.5rem; }
.pillar-list { list-style: none; }
.pillar-list li {
    padding: 1rem 0;
    border-top: 1px solid var(--gray-soft);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.97rem;
    color: var(--text);
}
.pillar-list li:last-child { border-bottom: 1px solid var(--gray-soft); }
.pillar-list li svg {
    width: 18px;
    height: 18px;
    color: var(--gold-deep);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* ===== GOVERNANCE ===== */
.governance {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.governance::before {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(8, 55, 86, 0.05), transparent 70%);
    pointer-events: none;
}
.gov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.gov-card {
    background: var(--light);
    padding: 2.5rem 2.25rem;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.gov-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.gov-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.gov-card h3 svg {
    width: 22px;
    height: 22px;
    color: var(--gold-deep);
    flex-shrink: 0;
}
.gov-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}
.gov-card ul {
    list-style: none;
    margin-top: 0.75rem;
}
.gov-card ul li {
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: var(--text);
    padding-left: 1.25rem;
    position: relative;
}
.gov-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

/* ===== REGULATORY STATUS ===== */
.regulatory {
    background: var(--navy);
    color: var(--light);
    position: relative;
    overflow: hidden;
}
.regulatory::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(242,147,42,0.05) 100%);
}
.regulatory h2, .regulatory h3 { color: var(--light); }
.regulatory .eyebrow { color: var(--gold); }
.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
}
.reg-statement {
    border-left: 2px solid var(--gold);
    padding-left: 2rem;
}
.reg-statement p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.reg-statement strong {
    color: var(--gold-light);
    font-weight: 500;
}
.reg-points {
    list-style: none;
}
.reg-points li {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.reg-points li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.reg-points li svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.reg-points li h4 {
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.reg-points li p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(242, 147, 42, 0.18), transparent 70%);
}
.cta-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}
.cta h2 { color: var(--light); margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info > p { margin-bottom: 2.5rem; }
.contact-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-channel {
    background: var(--light);
    padding: 1.25rem;
    border-left: 2px solid var(--gold);
}
.contact-channel h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.contact-channel a {
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 500;
    word-break: break-all;
}
.contact-channel a:hover { color: var(--gold-deep); }
.contact-channel small {
    display: block;
    color: var(--gray);
    font-size: 0.78rem;
    margin-bottom: 0.4rem;
}
.contact-list { list-style: none; }
.contact-list li {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-soft);
}
.contact-list li:last-child { border-bottom: 1px solid var(--gray-soft); }
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.4rem;
}
.contact-detail p, .contact-detail a {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}
.contact-detail a:hover { color: var(--gold-deep); }

.map-wrap {
    position: relative;
    height: 600px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

/* ===== POLICY / LEGAL PAGES ===== */
.policy {
    background: var(--light);
    padding: 6rem 0;
}
.policy-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    align-items: start;
}
.toc {
    position: sticky;
    top: 110px;
}
.toc h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-soft);
}
.toc ul { list-style: none; }
.toc ul li { padding: 0.4rem 0; }
.toc ul li a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--transition), padding var(--transition);
    display: block;
    padding-left: 0;
    border-left: 2px solid transparent;
    padding: 0.3rem 0 0.3rem 0.75rem;
}
.toc ul li a:hover {
    color: var(--gold-deep);
    border-left-color: var(--gold);
}

.policy-body section.block {
    padding: 0 0 3rem;
    scroll-margin-top: 110px;
}
.policy-body section.block:not(:last-child) {
    border-bottom: 1px solid var(--gray-soft);
    margin-bottom: 3rem;
}
.policy-body h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}
.policy-body h2 em {
    color: var(--gold-deep);
    font-style: italic;
    font-weight: 500;
}
.policy-body h3 {
    font-size: 1.4rem;
    margin: 1.75rem 0 0.75rem;
    color: var(--navy);
}
.policy-body p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.policy-body ul, .policy-body ol {
    margin: 0 0 1.5rem 1.5rem;
    color: var(--text);
}
.policy-body ul li, .policy-body ol li {
    padding: 0.4rem 0;
    line-height: 1.7;
    font-size: 0.98rem;
}
.policy-body strong { color: var(--navy); font-weight: 600; }
.policy-body em { font-style: italic; color: var(--gray); }
.policy-body a { color: var(--gold-deep); text-decoration: underline; text-decoration-color: rgba(214,125,20,0.3); text-underline-offset: 3px; }
.policy-body a:hover { color: var(--navy); text-decoration-color: var(--navy); }

.callout {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
}
.callout p { margin: 0; font-size: 0.95rem; color: var(--text); }
.callout strong { color: var(--navy); }

.callout-warn {
    background: rgba(214, 125, 20, 0.08);
    border-left-color: var(--gold-deep);
}

/* ===== COMPLIANCE PACK DOC LISTS ===== */
.doc-cluster {
    margin-bottom: 2.5rem;
}
.doc-cluster h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-soft);
}
.doc-list {
    list-style: none;
    margin: 0;
}
.doc-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-soft);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.doc-list li:last-child { border-bottom: none; }
.doc-list li svg {
    width: 20px;
    height: 20px;
    color: var(--gold-deep);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.doc-list li .doc-info { flex: 1; }
.doc-list li .doc-info strong {
    display: block;
    color: var(--navy);
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}
.doc-list li .doc-info span {
    color: var(--gray);
    font-size: 0.85rem;
}
.doc-list li .doc-status {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
    flex-shrink: 0;
}
.doc-status.public {
    background: rgba(34, 121, 71, 0.1);
    color: #1e6e3e;
}
.doc-status.request {
    background: rgba(214, 125, 20, 0.12);
    color: var(--gold-deep);
}
.doc-status.nda {
    background: rgba(8, 55, 86, 0.08);
    color: var(--navy);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 1px;
    background: var(--gold);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}
.footer-brand img { height: 56px; }
.footer-brand .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--light);
    font-weight: 600;
    letter-spacing: 0.04em;
}
.footer-brand .tag {
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-top: 0.2rem;
}
.footer-about p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}
.footer ul { list-style: none; }
.footer ul li { padding: 0.45rem 0; }
.footer ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    transition: all var(--transition);
}
.footer ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
}
.footer-contact p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.footer-contact a {
    color: var(--gold-light);
    font-size: 0.92rem;
}
.footer-disclaimer {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-disclaimer p {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    line-height: 1.7;
    max-width: 1100px;
}
.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
.footer-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.footer-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 2rem;
    color: var(--gold);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .hamburger { display: block; z-index: 1001; }
    .lang-toggle { margin-right: 0.5rem; padding: 0.4rem 0.7rem; font-size: 0.7rem; }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }
    .nav.open { right: 0; }
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .nav-link, .header.scrolled .nav-link, .header.solid .nav-link { color: var(--light); font-size: 0.95rem; }

    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat:nth-child(2)::after { display: none; }

    .about-grid, .cta-inner, .contact-grid, .reg-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-badge { display: none; }
    .about-image img { height: 420px; }
    .about-features, .contact-channels { grid-template-columns: 1fr; }

    .cap-grid, .gov-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; gap: 2rem; }
    .markets-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar:first-child { border-right: none; border-bottom: 1px solid var(--gray-soft); }
    .pillar { padding: 3rem 2rem; }

    .cta-actions { justify-content: flex-start; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
    .footer-meta { flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; }
    .footer-meta span::after { margin-left: 1rem; }

    .policy-layout { grid-template-columns: 1fr; gap: 2rem; }
    .toc { position: static; }

    section { padding: 5rem 0; }
    .container, .container-narrow { padding: 0 1.5rem; }
    .hero-content { padding: 7rem 0 8rem; }
    .hero-stats { padding: 1.5rem 0; }
    .stat-number { font-size: 1.8rem; }
    .brand-text { display: none; }
    .page-hero { padding: 9rem 0 4rem; }
}

@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .map-wrap { height: 400px; }
    .reg-statement { padding-left: 1.25rem; }
}

/* Print */
@media print {
    .header, .hamburger, .cta, .map-wrap, .toc { display: none; }
    .policy-layout { grid-template-columns: 1fr; }
}
