@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Source+Serif+4:wght@500;600&display=swap");

:root {
    --color-midnight: #0b1f33;
    --color-slate: #1e2f3f;
    --color-ink: #2d3b4b;
    --color-cloud: #f5f7fa;
    --color-azure: #2563eb;
    --color-teal: #1cb5a3;
    --color-white: #ffffff;
    --color-muted: #6b7a8c;
    --color-border: rgba(12, 28, 44, 0.12);
    --shadow-soft: 0 20px 45px rgba(11, 31, 51, 0.12);
    --shadow-subtle: 0 10px 30px rgba(11, 31, 51, 0.08);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --space-2xs: 0.5rem;
    --space-xs: 0.75rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
    --font-body: "Manrope", system-ui, sans-serif;
    --font-heading: "Source Serif 4", "Times New Roman", serif;
    --transition-base: all 0.35s ease;
    --max-width: 1180px;
    --max-width-wide: 1320px;
    --gap-grid: clamp(1.2rem, 2vw, 2.2rem);
    --hero-min-height: clamp(68vh, 85vh, 92vh);
    --step--1: clamp(0.85rem, 0.82rem + 0.2vw, 0.95rem);
    --step-0: clamp(1rem, 0.95rem + 0.4vw, 1.125rem);
    --step-1: clamp(1.15rem, 1.06rem + 0.6vw, 1.35rem);
    --step-2: clamp(1.35rem, 1.18rem + 1vw, 1.65rem);
    --step-3: clamp(1.6rem, 1.3rem + 1.3vw, 2.2rem);
    --step-4: clamp(2.1rem, 1.7rem + 1.8vw, 2.9rem);
    --step-5: clamp(2.8rem, 2.1rem + 2.2vw, 3.8rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.65;
    color: var(--color-midnight);
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent 45%), var(--color-cloud);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

picture {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover,
a:focus {
    color: var(--color-teal);
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-midnight);
    margin: 0 0 var(--space-sm);
    line-height: 1.25;
}

p {
    margin: 0 0 var(--space-sm);
}

ul,
ol {
    padding-left: 1.1rem;
    margin: 0 0 var(--space-sm);
}

button {
    font-family: inherit;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.container-wide {
    max-width: var(--max-width-wide);
}

.section {
    padding: var(--space-xl) 0;
}

.section.compact-section {
    padding: var(--space-lg) 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: var(--step--1);
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-muted);
}

.section-title {
    font-size: var(--step-3);
    color: var(--color-slate);
    letter-spacing: -0.02em;
}

.section-description {
    max-width: 640px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(245, 247, 250, 0.82);
    border-bottom: 1px solid rgba(12, 28, 44, 0.08);
    box-shadow: 0 6px 24px rgba(11, 31, 51, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: var(--space-sm);
    padding: clamp(0.85rem, 1.4vw, 1.4rem) 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(28, 181, 163, 0.25));
    display: grid;
    place-items: center;
    color: var(--color-azure);
    font-weight: 700;
    font-size: var(--step-1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text span:first-child {
    font-weight: 700;
    font-size: var(--step-1);
    color: var(--color-slate);
    letter-spacing: -0.01em;
}

.brand-text span:last-child {
    font-size: var(--step--1);
    color: var(--color-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.8rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--color-ink);
    font-size: var(--step--1);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-azure), var(--color-teal));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(28, 181, 163, 0.2));
    color: var(--color-azure);
    font-weight: 600;
    font-size: var(--step--1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.nav-toggle {
    display: none;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 0.55rem 0.75rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-ink);
    margin: 5px 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Hero */
.page-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
    position: relative;
}

.page-hero.homepage-hero {
    min-height: var(--hero-min-height);
    background: conic-gradient(from 180deg at 50% 0%, rgba(37, 99, 235, 0.15), rgba(28, 181, 163, 0.2), rgba(11, 31, 51, 0.1), rgba(37, 99, 235, 0.15));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero.homepage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(28, 181, 163, 0.14), transparent 46%), radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.18), transparent 50%);
    mix-blend-mode: screen;
    opacity: 0.9;
}

.hero-inner {
    position: relative;
    display: grid;
    gap: var(--space-xl);
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hero-eyebrow {
    font-size: var(--step--1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: var(--step-5);
    color: var(--color-white);
    text-shadow: 0 15px 35px rgba(11, 31, 51, 0.4);
    letter-spacing: -0.015em;
}

.hero-description {
    color: rgba(245, 247, 250, 0.9);
    font-size: var(--step-1);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xs);
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: var(--step--1);
    background: linear-gradient(135deg, var(--color-azure), var(--color-teal));
    color: var(--color-white);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.28);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(28, 181, 163, 0.3);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 247, 250, 0.7);
    background: rgba(11, 31, 51, 0.18);
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: var(--step--1);
}

.hero-insights {
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(245, 247, 250, 0.14);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(245, 247, 250, 0.25);
    box-shadow: 0 26px 60px rgba(11, 31, 51, 0.28);
}

.hero-card {
    display: grid;
    gap: var(--space-2xs);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
}

.hero-card strong {
    font-size: var(--step-2);
    color: var(--color-white);
}

.hero-card span {
    color: rgba(245, 247, 250, 0.72);
    font-size: var(--step--1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Grid and Cards */
.grid {
    display: grid;
    gap: var(--gap-grid);
}

.grid.featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: var(--space-lg);
}

.grid.two-columns {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid.three-columns {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    position: relative;
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(12, 28, 44, 0.06);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.08), transparent 45%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 68px rgba(11, 31, 51, 0.18);
}

.card:hover::before {
    opacity: 1;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card-eyebrow {
    font-size: var(--step--1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-teal);
}

.card-title {
    font-size: var(--step-2);
    letter-spacing: -0.015em;
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    font-size: var(--step--1);
    color: var(--color-muted);
}

.data-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--color-azure);
    font-size: var(--step--1);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.outline-badge {
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-azure);
}

.table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-subtle);
}

.table thead {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(28, 181, 163, 0.18));
}

.table th,
.table td {
    padding: 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(12, 28, 44, 0.06);
    font-size: var(--step-0);
}

.table tbody tr:hover {
    background: rgba(37, 99, 235, 0.04);
}

/* Lists */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.tag-item {
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: rgba(11, 31, 51, 0.08);
    color: var(--color-ink);
    font-weight: 600;
    font-size: var(--step--1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-item.is-active {
    background: linear-gradient(135deg, var(--color-azure), var(--color-teal));
    color: var(--color-white);
}

/* Posts Listing */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    margin-bottom: var(--space-lg);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.filter-chip {
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: var(--step--1);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-chip.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(28, 181, 163, 0.25));
    color: var(--color-azure);
    border-color: rgba(28, 181, 163, 0.4);
}

.search-field {
    flex: 1 1 260px;
    min-width: 240px;
    position: relative;
}

.search-field input {
    width: 100%;
    padding: 0.95rem 1.1rem 0.95rem 3.3rem;
    border-radius: 999px;
    border: 1px solid rgba(12, 28, 44, 0.12);
    background: rgba(255, 255, 255, 0.95);
    font-size: var(--step--1);
    letter-spacing: 0.04em;
    transition: var(--transition-base);
    box-shadow: inset 0 1px 1px rgba(11, 31, 51, 0.02);
}

.search-field input:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.search-field svg {
    position: absolute;
    top: 50%;
    left: 1.35rem;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    color: var(--color-muted);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
}

.page-link {
    padding: 0.72rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(12, 28, 44, 0.12);
    background: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: var(--step--1);
    min-width: 44px;
    text-align: center;
}

.page-link.active {
    background: linear-gradient(135deg, var(--color-azure), var(--color-teal));
    border-color: transparent;
    color: var(--color-white);
}

/* Article Layout */
.article-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(28, 181, 163, 0.18));
}

.article-header {
    display: grid;
    gap: var(--space-md);
    max-width: 780px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    color: var(--color-muted);
    font-size: var(--step--1);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.article-hero figure {
    margin: var(--space-lg) 0 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.article-body {
    padding: var(--space-xl) 0;
}

.article-body .container {
    max-width: 860px;
}

.article-body p {
    margin-bottom: var(--space-md);
    font-size: var(--step-0);
    color: var(--color-ink);
}

.article-body h2 {
    margin-top: var(--space-lg);
    font-size: var(--step-3);
}

.article-body h3 {
    margin-top: var(--space-md);
    font-size: var(--step-2);
}

.pull-quote {
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(37, 99, 235, 0.08);
    border-left: 5px solid var(--color-teal);
    font-size: var(--step-2);
    font-family: var(--font-heading);
    color: var(--color-slate);
}

.related-articles {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: rgba(11, 31, 51, 0.02);
}

/* About */
.values-grid {
    display: grid;
    gap: var(--gap-grid);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.value-item {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 31, 51, 0.08);
    background: var(--color-white);
    box-shadow: var(--shadow-subtle);
}

.methodology-panel {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(28, 181, 163, 0.18));
    box-shadow: var(--shadow-soft);
}

/* Contact */
.contact-wrapper {
    display: grid;
    gap: var(--gap-grid);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
}

.contact-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(11, 31, 51, 0.08);
}

.contact-details {
    display: grid;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.contact-details a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-azure);
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
}

label {
    font-weight: 600;
    color: var(--color-slate);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: var(--step--1);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(12, 28, 44, 0.12);
    background: rgba(255, 255, 255, 0.95);
    font-size: var(--step-0);
    font-family: inherit;
    transition: var(--transition-base);
    min-height: 56px;
}

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

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(28, 181, 163, 0.45);
    box-shadow: 0 0 0 4px rgba(28, 181, 163, 0.18);
}

input::placeholder,
textarea::placeholder {
    color: rgba(11, 31, 51, 0.35);
}

.submit-button {
    justify-self: start;
    min-width: 180px;
}

/* Legal content */
.legal-section {
    margin-bottom: var(--space-lg);
}

.legal-section h2 {
    font-size: var(--step-2);
    margin-bottom: var(--space-xs);
}

.legal-section p {
    color: var(--color-ink);
}

/* Footer */
.site-footer {
    background: radial-gradient(circle at top, rgba(28, 181, 163, 0.18), rgba(11, 31, 51, 0.92));
    color: rgba(245, 247, 250, 0.88);
    padding: var(--space-2xl) 0 var(--space-xl);
    margin-top: var(--space-2xl);
}

.footer-inner {
    display: grid;
    gap: var(--space-xl);
}

.footer-top {
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-brand {
    display: grid;
    gap: var(--space-sm);
}

.footer-brand p {
    color: rgba(245, 247, 250, 0.75);
}

.footer-nav {
    display: grid;
    gap: var(--space-xs);
}

.footer-nav a {
    color: rgba(245, 247, 250, 0.8);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: var(--step--1);
}

.footer-contacts {
    display: grid;
    gap: var(--space-xs);
}

.footer-contacts a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    color: rgba(245, 247, 250, 0.9);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(245, 247, 250, 0.18);
    padding-top: var(--space-md);
    font-size: var(--step--1);
    color: rgba(245, 247, 250, 0.65);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(94%, 680px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 64px rgba(11, 31, 51, 0.32);
    border: 1px solid rgba(12, 28, 44, 0.08);
    display: none;
    z-index: 1500;
}

.cookie-banner.active {
    display: grid;
    gap: var(--space-sm);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.cookie-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: var(--step--1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: var(--color-azure);
    background: rgba(37, 99, 235, 0.08);
    cursor: pointer;
}

.cookie-link.primary-choice {
    background: linear-gradient(135deg, var(--color-azure), var(--color-teal));
    color: var(--color-white);
    border: none;
}

.cookie-link.info-link {
    background: none;
    border: none;
    color: var(--color-muted);
}

/* Subscribe */
.subscribe-panel {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(28, 181, 163, 0.18));
    display: grid;
    gap: var(--space-sm);
    box-shadow: var(--shadow-soft);
}

.subscribe-form {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.subscribe-form .form-field {
    position: relative;
}

.subscribe-form input {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(12, 28, 44, 0.12);
    font-size: var(--step-0);
}

.subscribe-form .submit-button {
    min-width: 180px;
}

/* Thank you */
.thank-you-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 20%, rgba(28, 181, 163, 0.2), transparent 45%), radial-gradient(circle at 80% 15%, rgba(37, 99, 235, 0.2), transparent 45%);
}

.thank-you-card {
    max-width: 620px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid rgba(11, 31, 51, 0.08);
}

/* Responsive */
@media (max-width: 1080px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-insights {
        order: -1;
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .primary-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        width: min(92%, 420px);
        background: rgba(245, 247, 250, 0.98);
        border: 1px solid rgba(12, 28, 44, 0.06);
        border-radius: 18px;
        box-shadow: 0 24px 48px rgba(11, 31, 51, 0.12);
        padding: var(--space-lg);
        flex-direction: column;
        gap: var(--space-lg);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition-base);
    }
    .primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        align-items: stretch;
    }
    .nav-link {
        padding: 0.85rem 0;
        font-size: var(--step-0);
    }
    .nav-cta {
        width: 100%;
        justify-content: center;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .subscribe-form {
        grid-template-columns: 1fr;
    }
    .card {
        padding: var(--space-md);
    }
    .site-footer {
        padding: var(--space-xl) 0 var(--space-lg);
    }
}

@media (max-width: 600px) {
    .page-hero.homepage-hero {
        padding: var(--space-xl) 0 var(--space-lg);
    }
    .page-hero {
        padding: var(--space-xl) 0;
    }
    .cookie-banner {
        bottom: 12px;
    }
    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-link {
        width: 100%;
    }
    .search-field input {
        padding-left: 3rem;
    }
}