@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Newsreader:opsz,wght@6..72,500;6..72,700&display=swap');

:root {
    --primary: #0B3D91;
    --primary-dark: #072a63;
    --secondary: #00A6A6;
    --ink: #102033;
    --muted: #5d6b7c;
    --paper: #ffffff;
    --soft: #f3f7fb;
    --line: #dce6ef;
    --warning: #f6b445;
    --radius: 24px;
    --shadow: 0 22px 60px rgba(11, 61, 145, 0.12);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.05; color: var(--ink); }
h1, .display-title { font-family: 'Newsreader', Georgia, serif; font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -0.04em; }
h3 { font-size: 1.15rem; letter-spacing: -0.02em; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--primary); color: #fff; padding: 10px 14px; border-radius: 10px; z-index: 20; }
.skip-link:focus { left: 12px; }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.top-strip { background: var(--primary); color: #fff; font-size: 0.84rem; }
.top-strip-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.28rem; letter-spacing: -0.04em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 10px 14px; border-radius: 999px; font-weight: 800; color: var(--muted); transition: 0.22s ease; }
.nav-links a:hover, .nav-links a.active { background: var(--soft); color: var(--primary); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 14px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; }

.hero { padding: 56px 0 36px; background: radial-gradient(circle at top left, rgba(0,166,166,.16), transparent 30%), linear-gradient(180deg, #fff, #f7fbff); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: stretch; }
.hero-copy { padding: 28px 0; }
.kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--primary); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.kicker::before { content: ''; width: 28px; height: 3px; border-radius: 999px; background: var(--secondary); }
.hero h1 { font-size: clamp(3.1rem, 8vw, 6.9rem); letter-spacing: -0.07em; max-width: 820px; }
.hero p { font-size: clamp(1.04rem, 2vw, 1.25rem); color: var(--muted); max-width: 670px; margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 18px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; transition: .22s ease; cursor: pointer; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 14px 34px rgba(11,61,145,.22); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--primary); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--secondary); transform: translateY(-2px); }
.hero-media { position: relative; min-height: 520px; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); background: var(--primary); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; left: 18px; right: 18px; bottom: 18px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-radius: 22px; padding: 18px; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; }
.hero-badge i { color: var(--secondary); }
.hero-badge strong { display: block; }
.hero-badge span { color: var(--muted); font-size: .92rem; }

.ticker { border-block: 1px solid var(--line); background: #fff; overflow: hidden; }
.ticker-track { display: flex; gap: 20px; padding: 14px 0; white-space: nowrap; animation: ticker 26s linear infinite; }
.ticker-track span { font-weight: 900; color: var(--primary); }
.ticker-track span::after { content: '•'; color: var(--secondary); margin-left: 20px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section { padding: 76px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-heading p { color: var(--muted); max-width: 520px; }
.news-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.news-card { position: relative; min-height: 260px; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; transition: .22s ease; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card.featured { min-height: 430px; color: #fff; background: linear-gradient(135deg, var(--primary), #081d3f); }
.news-card.featured h3, .news-card.featured p { color: #fff; }
.news-card.featured::after { content: ''; position: absolute; inset: auto -80px -120px auto; width: 260px; height: 260px; border-radius: 50%; background: rgba(0,166,166,.28); }
.label { align-self: flex-start; display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--soft); color: var(--primary); font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.featured .label { background: rgba(255,255,255,.16); color: #fff; }
.news-card h3 { font-size: clamp(1.25rem, 2vw, 2.05rem); margin: 18px 0 10px; }
.news-card p { color: var(--muted); }
.news-card .meta { color: var(--secondary); font-weight: 900; font-size: .9rem; margin-top: 18px; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: center; }
.panel { background: var(--soft); border: 1px solid var(--line); border-radius: 32px; padding: clamp(24px, 4vw, 44px); }
.panel h2 { margin-bottom: 16px; }
.panel p { color: var(--muted); }
.channel-list { display: grid; gap: 12px; }
.channel-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 18px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.channel-item i { color: var(--secondary); }
.channel-item strong { display: block; color: var(--ink); }
.channel-item span { color: var(--muted); font-size: .95rem; }

.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promise-card { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.promise-card i { color: var(--secondary); width: 34px; height: 34px; margin-bottom: 16px; }
.promise-card p { color: var(--muted); }

.cta-band { margin: 50px auto 0; border-radius: 34px; padding: clamp(28px, 5vw, 54px); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; overflow: hidden; position: relative; }
.cta-band::before { content: ''; position: absolute; inset: -90px -70px auto auto; width: 220px; height: 220px; border-radius: 50%; background: rgba(0,166,166,.35); }
.cta-band h2, .cta-band p { color: #fff; position: relative; }
.cta-band p { opacity: .82; }
.cta-band .btn { position: relative; background: #fff; color: var(--primary); }

.page-hero { padding: 70px 0 42px; background: linear-gradient(180deg, #f7fbff, #fff); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.07em; }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.16rem; margin-top: 16px; }
.empty-blog { display: grid; grid-template-columns: 1fr .8fr; gap: 28px; align-items: center; }
.empty-box { border: 1px dashed rgba(11,61,145,.35); background: var(--soft); border-radius: 34px; padding: clamp(28px, 5vw, 54px); }
.empty-box h2 { margin-bottom: 14px; }
.empty-box p { color: var(--muted); }
.editorial-calendar { display: grid; gap: 12px; }
.calendar-row { display: flex; justify-content: space-between; gap: 18px; padding: 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); font-weight: 800; }
.calendar-row span:last-child { color: var(--secondary); }

.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: stretch; }
.about-card { border: 1px solid var(--line); border-radius: 32px; background: #fff; padding: clamp(24px, 4vw, 42px); box-shadow: 0 14px 34px rgba(11, 61, 145, 0.07); }
.about-card-large { background: radial-gradient(circle at top right, rgba(0,166,166,.14), transparent 34%), #fff; }
.about-card h2 { margin: 12px 0 16px; }
.about-card p { color: var(--muted); }
.about-facts { background: var(--soft); }
.about-facts ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.about-facts li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.about-facts li:last-child { border-bottom: 0; }
.about-facts strong { color: var(--ink); }
.about-facts a { color: var(--primary); font-weight: 900; }
.about-facts a:hover { color: var(--secondary); }

.contact-card { max-width: 780px; border-radius: 34px; border: 1px solid var(--line); box-shadow: var(--shadow); padding: clamp(26px, 5vw, 54px); background: #fff; }
.contact-card p { color: var(--muted); font-size: 1.15rem; }
.email-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; color: var(--primary); font-size: clamp(1.25rem, 4vw, 2rem); font-weight: 900; letter-spacing: -0.04em; word-break: break-word; }
.email-link:hover { color: var(--secondary); }

.not-found { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 70px 0; }
.not-found h1 { font-size: clamp(4rem, 12vw, 9rem); letter-spacing: -0.08em; color: var(--primary); }
.not-found p { color: var(--muted); max-width: 560px; margin-inline: auto; }

.site-footer { margin-top: 40px; background: #081d3f; color: rgba(255,255,255,.78); padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr; gap: 32px; }
.footer-brand { color: #fff; margin-bottom: 14px; }
.site-footer h2 { color: #fff; font-size: 1rem; font-family: 'Inter', sans-serif; letter-spacing: 0; margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; font-size: .9rem; }

.reveal-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
    .hero-grid, .split, .empty-blog, .cta-band, .about-grid { grid-template-columns: 1fr; }
    .hero-media { min-height: 360px; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card.featured { grid-column: 1 / -1; }
    .promise-grid, .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .hide-mobile { display: none; }
    .nav-toggle { display: block; }
    .nav-links { position: absolute; left: 16px; right: 16px; top: 112px; display: none; flex-direction: column; align-items: stretch; padding: 14px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
    .nav-links.open { display: flex; }
    .nav-links a { text-align: center; }
    .hero { padding-top: 34px; }
    .hero h1 { font-size: clamp(3rem, 18vw, 5rem); }
    .section { padding: 54px 0; }
    .section-heading { display: block; }
    .section-heading p { margin-top: 12px; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .ticker-track { animation-duration: 18s; }
}