/* =========================================
   HCCS — style.css
   Human-Centered Cybersecurity Society
   ========================================= */

/* ============================
   1. CSS Variables
============================ */
:root {
    --navy: #0d1b2a;
    --navy-mid: #1a2f47;
    --navy-light: #243b55;
    --accent: #7ab3cc;
    --accent-gold: #c49a3c;
    --text-light: #e8edf2;
    --text-muted: #8fa8c0;
    --white: #ffffff;
    --bg-section: #f4f7fa;
    --bg-white: #ffffff;
    --border: #dde4eb;
    --serif: 'Noto Serif JP', serif;
    --sans: 'Noto Sans JP', sans-serif;
}

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

body {
    font-family: var(--sans);
    color: var(--navy);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: clip;
}

/* ============================
   3. Navigation
============================ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--navy);
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.15em;
    display: flex;
    align-items: flex-end;
    gap: 0.7rem;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.nav-logo img {
    height: 46px;
    width: auto;
}
.nav-logo-sub {
    font-family: var(--sans, sans-serif);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.7;
    line-height: 1.2;
}
.nav-links {
    display: flex;
    gap: 1.8rem;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--accent); }

/* ============================
   4. Sticky CTA
============================ */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}
.sticky-cta-label {
    background: var(--navy);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}
.sticky-cta-btn {
    display: block;
    background: var(--accent-gold);
    color: var(--navy);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1rem;
    padding: 1rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(232, 184, 75, 0.5);
    border: 2px solid rgba(255,255,255,0.3);
    text-align: center;
    line-height: 1.4;
}
.sticky-cta-btn:hover {
    background: #f0c84f;
    box-shadow: 0 6px 28px rgba(232, 184, 75, 0.7);
}

/* ============================
   5. Hero
============================ */
.hero {
    min-height: 60vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-network-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
}
.hero-network-bg svg { width: 100%; height: 100%; }

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 3.5rem 2rem 3.5rem;
    text-align: center;
}
.hero-logo {
    width: 160px;
    margin: 0 auto 2rem;
    display: block;
}
.hero-badge {
    display: inline-block;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    padding: 0.4rem 1.5rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 2rem;
}
.hero-title em {
    font-style: normal;
    color: var(--accent-gold);
    display: block;
    font-size: 0.6em;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}
.hero-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.btn-primary {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--navy);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1.15rem;
    padding: 1.1rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(232, 184, 75, 0.45);
}
.btn-primary:hover { background: #f0c84f; }
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    padding: 1.1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    border: 1.5px solid var(--accent);
}
.hero-limited {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.hero-limited strong { color: var(--accent-gold); }

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-align: center;
}
.scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 48px;
    background: var(--accent);
    margin: 0.8rem auto 0;
    opacity: 0.5;
}

/* ============================
   6. Authority Ribbon
============================ */
.authority-ribbon {
    background: var(--navy-mid);
    border-top: 1px solid rgba(79, 195, 247, 0.2);
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    padding: 2rem 5%;
}
.authority-ribbon-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 3rem;
    justify-content: center;
}
.authority-label {
    color: var(--text-muted);
    font-size: 0.92rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}
.authority-divider {
    width: 1px;
    height: 24px;
    background: rgba(79, 195, 247, 0.25);
}
.authority-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
}
.authority-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
}
.authority-logo-name {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.08em;
}
.authority-logo-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-align: center;
}

/* ============================
   7. Section Common
============================ */
.section { padding: 6rem 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.section-lead {
    text-align: center;
    text-wrap: balance;
    color: #4a6070;
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 4rem;
    line-height: 1.9;
}

/* ============================
   8. About Section
============================ */
.about-section {
    background: var(--navy);
    border-bottom: 1px solid rgba(122, 179, 204, 0.15);
}
.about-section .section-title { color: var(--white); }
.about-section .section-lead {
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .about-highlights { grid-template-columns: 1fr; gap: 1.5rem; }
}
.about-highlight {
    border-top: 2px solid rgba(122, 179, 204, 0.35);
    padding-top: 1.5rem;
}
.about-highlight-title {
    font-family: var(--serif);
    font-weight: 900;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}
.about-highlight-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
}

/* ============================
   9. Problem Section
============================ */
.problem-section { background: var(--bg-section); }
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
    max-width: 780px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .problem-grid { grid-template-columns: 1fr 1fr; }
}
.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1.3rem 1.5rem;
}
.problem-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--accent);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}
.problem-check svg { display: none; }
.problem-item:hover .problem-check { background: var(--accent); }
.problem-item:hover .problem-check svg { display: block; }
.problem-text {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.6;
}
.problem-note {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-mid);
    font-family: var(--serif);
}
.problem-note strong { color: var(--accent-gold); }

/* ============================
   9b. Judgment Check Section
============================ */
.judgment-check-section { background: var(--bg-section); }
.jcheck-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 780px;
    margin: 0 auto 2.5rem;
}
@media (min-width: 640px) {
    .jcheck-list { grid-template-columns: 1fr 1fr; }
}
.jcheck-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    user-select: none;
}
.jcheck-item.checked {
    border-color: var(--accent);
    background: rgba(122, 179, 204, 0.07);
}
.jcheck-box {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    background: white;
}
.jcheck-item.checked .jcheck-box {
    background: var(--accent);
    border-color: var(--accent);
}
.jcheck-box svg { display: none; }
.jcheck-item.checked .jcheck-box svg { display: block; }
.jcheck-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.6;
}
.jcheck-cta {
    text-align: center;
    margin-bottom: 3rem;
}
.btn-jcheck {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1.05rem;
    padding: 1rem 3rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
}
.btn-jcheck:hover { background: var(--navy-mid); }
.judgment-result {
    display: none;
    max-width: 640px;
    margin: 0 auto;
}
.judgment-result.visible { display: block; }
.jresult-inner {
    background: var(--navy);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
}
.jresult-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.jresult-score {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1rem;
}
.jresult-score span {
    font-size: 1.2rem;
    color: var(--text-muted);
}
.jresult-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}
.jresult-badge.high {
    background: rgba(122, 179, 204, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
}
.jresult-badge.medium {
    background: rgba(196, 154, 60, 0.2);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}
.jresult-badge.low {
    background: rgba(220, 80, 80, 0.15);
    color: #f08080;
    border: 1px solid #f08080;
}
.jresult-badge.critical {
    background: rgba(180, 40, 40, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}
.jresult-badge.complete {
    background: rgba(72, 199, 142, 0.15);
    color: #48c78e;
    border: 1px solid #48c78e;
}
.jresult-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}
.jresult-message {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
    text-align: left;
}
.jresult-focus {
    color: var(--accent);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    text-align: left;
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
}

/* ============================
   9. Philosophy Section
============================ */
.philosophy-section { background: var(--bg-white); }
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .philosophy-grid { grid-template-columns: repeat(3, 1fr); }
}
.philosophy-card {
    border-top: 4px solid var(--accent);
    background: var(--bg-section);
    border-radius: 0 0 8px 8px;
    padding: 2.5rem 2rem;
    text-align: center;
}
.philosophy-card-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--accent);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1rem;
    line-height: 40px;
    text-align: center;
    margin-bottom: 1.2rem;
}
.philosophy-card-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.philosophy-card-text {
    font-size: 0.95rem;
    color: #3a4f62;
    line-height: 1.9;
    text-align: left;
}

.paradox-box {
    margin-top: 4rem;
    background: #fffbf0;
    border: 1.5px solid rgba(196, 154, 60, 0.4);
    border-left: 5px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    padding: 2.5rem 3rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.paradox-box-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.paradox-box-text {
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.9;
}
.paradox-box-text strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--navy);
    margin: 0.8rem 0;
}

/* ============================
   10. Workshop Section
============================ */
.workshop-section { background: var(--bg-section); }
.workshop-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
}
.workshop-step {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-top: 4px solid var(--accent-gold);
    border-radius: 0 0 8px 8px;
    padding: 2rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.workshop-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.workshop-step-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--navy);
}
.workshop-step-desc {
    font-size: 0.88rem;
    color: #4a6070;
    line-height: 1.7;
}

.judgment-flow {
    background: var(--navy);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}
.judgment-flow-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.judgment-flow-steps {
    font-family: var(--serif);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
}
.judgment-flow-steps span {
    color: var(--accent-gold);
    margin: 0 0.5rem;
}

.attack-tags-area { text-align: center; }
.attack-tags-label {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    display: block;
}
.attack-tag {
    display: inline-block;
    background: var(--bg-white);
    color: var(--navy-mid);
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: 0.4rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0.3rem;
}

.workshop-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.workshop-meta-item {
    text-align: center;
}
.workshop-meta-label {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.3rem;
}
.workshop-meta-value {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy);
}

.btn-pdf {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 2.5rem;
}
.btn-pdf:hover { background: rgba(232, 184, 75, 0.1); }

/* ============================
   11. Instructors Section
============================ */
.instructors-section { background: var(--bg-white); }
.instructors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 768px) {
    .instructors-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.instructor-card {
    border-top: 4px solid var(--accent);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
}
.instructor-quote { margin-top: auto; }
.instructor-photo-area {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    margin-bottom: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
}
.instructor-photo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.instructor-role {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.instructor-name {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.instructor-name-en {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1.3rem;
}
.instructor-bio {
    font-size: 0.98rem;
    color: #3a4f62;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.instructor-bio-list {
    margin: 0.6rem 0 0;
    padding: 0;
    list-style: none;
}
.instructor-bio-list li {
    font-size: 0.92rem;
    color: #3a4f62;
    line-height: 1.75;
    padding-left: 1.2rem;
    position: relative;
}
.instructor-bio-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.1rem;
}
.instructor-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.keyword-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    color: var(--navy-mid);
    background: var(--bg-section);
}
.instructor-quote {
    margin-top: 1.8rem;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid var(--accent-gold);
    background: #fffbf0;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--navy);
    font-style: italic;
}

/* HCC Framework */
.hcc-framework {
    margin-top: 5rem;
    padding: 2.5rem;
    background: var(--navy);
    border-radius: 10px;
}
.hcc-framework-title {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
}
.hcc-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 640px) {
    .hcc-pillars { grid-template-columns: repeat(4, 1fr); }
}
.hcc-pillar {
    text-align: center;
    padding: 1.2rem 0.8rem;
    border: 1px solid rgba(79, 195, 247, 0.25);
    border-radius: 6px;
}
.hcc-pillar-en {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.hcc-pillar-ja {
    font-size: 1rem;
    color: var(--white);
    font-weight: 900;
    font-family: var(--serif);
}

/* ============================
   12. Publications Section
============================ */
.publications-section { background: var(--bg-section); }
.pub-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .pub-list { grid-template-columns: 1fr 1fr; }
}
.pub-item {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-decoration: none;
}
.pub-item:hover { border-color: var(--accent); }
.pub-org {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}
.pub-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.6;
}
.pub-arrow {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: auto;
}

/* ============================
   13. Offer / Contact Section
============================ */
.offer-section {
    background: var(--navy);
    padding: 7rem 5%;
}
.offer-inner {
    max-width: 900px;
    margin: 0 auto;
}
.offer-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.offer-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.offer-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.offer-badge {
    background: rgba(79, 195, 247, 0.12);
    border: 1px solid rgba(79, 195, 247, 0.4);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
}
.offer-badge.gold {
    background: rgba(232, 184, 75, 0.15);
    border-color: rgba(232, 184, 75, 0.5);
    color: var(--accent-gold);
}
.offer-lead {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.9;
}
.offer-lead strong { color: var(--accent-gold); }
.offer-pdf-row {
    text-align: center;
    margin-bottom: 3rem;
}
.btn-pdf-light {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    border: 1.5px solid var(--accent-gold);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
}
.btn-pdf-light:hover { background: rgba(232, 184, 75, 0.12); }

.form-container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.form-iframe {
    width: 100%;
    height: 1412px;
    border: none;
    display: block;
}

/* ============================
   14. Footer
============================ */
footer {
    background: var(--navy-mid);
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid rgba(79, 195, 247, 0.15);
}
.footer-logo {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 0.2em;
    display: inline-flex;
    align-items: flex-end;
    gap: 0.6rem;
    margin-bottom: 2rem;
    text-decoration: none;
}
.footer-logo img {
    height: 34px;
    width: auto;
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.footer-nav a {
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}
.footer-nav a:hover { color: var(--accent); }
.footer-divider {
    width: 40px;
    height: 1px;
    background: rgba(122, 179, 204, 0.25);
    margin: 0 auto 1.5rem;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-decoration: none;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
}

/* ============================
   15. Policy Page
============================ */
.policy-hero {
    background: var(--navy);
    padding: 6rem 5% 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(79, 195, 247, 0.15);
}
.policy-hero-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.policy-hero-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}
.policy-hero-date {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.policy-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 5%;
}
.policy-intro {
    font-size: 1rem;
    color: #3a4f62;
    line-height: 1.9;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.policy-article {
    margin-bottom: 3rem;
}
.policy-article-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent);
}
.policy-article p {
    font-size: 0.97rem;
    color: #3a4f62;
    line-height: 1.9;
    margin-bottom: 0.8rem;
}
.policy-article ol,
.policy-article ul {
    padding-left: 1.5rem;
    margin: 0.8rem 0;
}
.policy-article li {
    font-size: 0.97rem;
    color: #3a4f62;
    line-height: 1.9;
    margin-bottom: 0.4rem;
}
.policy-contact-box {
    margin-top: 3rem;
    background: var(--bg-section);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 2rem 2.5rem;
}
.policy-contact-box p {
    font-size: 0.97rem;
    color: #3a4f62;
    line-height: 1.9;
}
.policy-contact-box a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}
.policy-contact-box a:hover { text-decoration: underline; }

/* ============================
   15b. Hamburger
============================ */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1001;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   16. Responsive
============================ */
@media (max-width: 768px) {
    .section { padding: 4.5rem 5%; }
    .offer-section { padding: 5rem 5%; }
    .authority-divider { display: none; }
    .paradox-box { }
    .form-iframe { height: 1600px; }
}
@media (max-width: 600px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0; right: 0; bottom: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 850;
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.1rem; letter-spacing: 0.15em; color: var(--text-light); }
}
@media (max-width: 480px) {
    .sticky-cta { bottom: 1rem; right: 1rem; }
    .sticky-cta-btn { font-size: 0.9rem; padding: 0.8rem 1.2rem; }
}
