
:root {
  --blue-950: #071936;
  --blue-900: #0a2451;
  --blue-800: #0d3b7a;
  --blue-700: #1559b7;
  --blue-600: #2176d2;
  --cyan: #20b7c8;
  --teal: #37c1a3;
  --green: #44c48c;
  --gold: #ffc845;
  --paper: #ffffff;
  --muted: #5b6880;
  --soft: #eef6ff;
  --soft-2: #f6fafc;
  --border: rgba(17, 44, 86, .13);
  --shadow: 0 24px 60px rgba(7, 25, 54, .14);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  color: var(--blue-950);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.eu-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.eu-strip__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eu-strip__link {
  flex-direction: column;
  gap: 8px;
  padding: 2px 10px;
  border-radius: 16px;
  transition: background .2s ease, transform .2s ease;
}
.eu-strip__link:hover {
  background: var(--soft);
  transform: translateY(-1px);
}
.eu-strip__cta {
  color: var(--blue-800);
  font-size: .88rem;
  font-weight: 850;
  text-align: center;
}
.eu-strip img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--teal));
  box-shadow: 0 12px 24px rgba(21,89,183,.25);
}
.brand__text { line-height: 1.15; }
.brand__text span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 11px 13px;
  border-radius: 999px;
  color: #243b5a;
  font-size: .96rem;
  font-weight: 700;
}
.nav-links a:hover { background: var(--soft); color: var(--blue-700); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--soft);
  color: var(--blue-900);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(32,183,200,.24), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(68,196,140,.18), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eef7ff 56%, #f9fffb 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(13,59,122,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(13,59,122,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 85%);
}
.hero__inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  align-items: center;
  gap: 42px;
  padding: 78px 0 72px;
}
.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(21,89,183,.16);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(7,25,54,.07);
}
.badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
}
h1 {
  margin: 22px 0 18px;
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.lead {
  max-width: 680px;
  margin: 0 0 28px;
  color: #334968;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}
.hero-actions, .section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  box-shadow: 0 18px 34px rgba(21,89,183,.24);
}
.btn-secondary {
  background: rgba(255,255,255,.85);
  border-color: rgba(21,89,183,.18);
  color: var(--blue-800);
}
.btn-ghost {
  background: var(--soft);
  color: var(--blue-800);
  border-color: rgba(21,89,183,.12);
}
.hero-card {
  position: relative;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(21,89,183,.12);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card__image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
}
.hero-card__caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 8px 2px;
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
}

.stats {
  width: var(--container);
  margin: -44px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(7,25,54,.08);
}
.stat small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 8px;
}
.stat strong {
  display: block;
  color: var(--blue-800);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0;
}
.section--tight { padding-top: 56px; }
.section-kicker {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.section-title {
  margin: 0 0 18px;
  max-width: 780px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-text {
  max-width: 920px;
  color: #344b69;
  font-size: 1.08rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 48px rgba(7,25,54,.07);
}
.panel--blue {
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(55,193,163,.34), transparent 34%),
    linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border: 0;
}
.panel--blue .muted, .panel--blue p { color: rgba(255,255,255,.84); }
.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 36px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 900;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--soft);
  border: 1px solid rgba(21,89,183,.12);
  font-weight: 800;
  font-size: .9rem;
}

.objectives {
  background: var(--soft-2);
  border-block: 1px solid var(--border);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  min-height: 210px;
  box-shadow: 0 14px 40px rgba(7,25,54,.06);
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--teal));
  font-size: 1.2rem;
  font-weight: 900;
}
.card h3, .panel h3 { margin: 0 0 10px; font-size: 1.3rem; line-height: 1.2; }
.card p, .panel p { margin: 0; }

.notice {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(rgba(7,25,54,.70), rgba(7,25,54,.74)),
    radial-gradient(circle at 100% 0%, rgba(55,193,163,.46), transparent 35%),
    linear-gradient(135deg, #0a2451, #1559b7);
  box-shadow: var(--shadow);
}
.notice h2 { margin-top: 0; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.04em; line-height: 1.05; }
.notice p { color: rgba(255,255,255,.88); max-width: 880px; }
.notice .tag { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.16); color: #fff; }

.action-text {
  scroll-margin-top: 150px;
}
.action-panel {
  max-width: 1040px;
  margin: 24px 0 22px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f1fbff);
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(7,25,54,.07);
}
.action-panel p {
  margin: 0;
  color: #314865;
  font-size: 1.08rem;
}
.action-panel p + p { margin-top: 18px; }
.hashtags {
  font-weight: 900;
  color: #fff;
  word-break: break-word;
}
.action-panel .hashtags { color: var(--blue-700); }
.hashtags--dark { color: var(--blue-800); }
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.compliance-card {
  min-height: 250px;
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 38px rgba(7,25,54,.06);
}
.compliance-card h3 {
  margin: 0 0 12px;
  color: var(--blue-800);
  font-size: 1.25rem;
  line-height: 1.2;
}
.compliance-card p { margin: 0; color: #425874; }
.compliance-card p + p { margin-top: 12px; }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.resource {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 220px;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 14px 38px rgba(7,25,54,.06);
}
.resource small { color: var(--muted); font-weight: 850; }
.resource h3 { margin: 0; line-height: 1.2; }
.resource a { color: var(--blue-700); font-weight: 900; }
.resource a:hover { text-decoration: underline; }

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #f6fbff, #ecfff9);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
}
.contact-box h2 { margin: 0 0 12px; font-size: clamp(1.7rem, 3vw, 2.8rem); letter-spacing: -.04em; line-height: 1.05; }
.contact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #334968;
  font-weight: 700;
}
.contact-list b { color: var(--blue-900); }

.footer {
  background: var(--blue-950);
  color: rgba(255,255,255,.82);
  padding: 36px 0;
}
.footer__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer img {
  max-height: 50px;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}
.footer a { color: #fff; font-weight: 800; }

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  background: var(--blue-800);
  box-shadow: 0 12px 30px rgba(7,25,54,.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 980px) {
  .hero__inner, .grid-2, .contact-box { grid-template-columns: 1fr; }
  .hero__inner { padding-top: 54px; }
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: 18px; }
  .cards { grid-template-columns: 1fr; }
  .action-text {
  scroll-margin-top: 150px;
}
.action-panel {
  max-width: 1040px;
  margin: 24px 0 22px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f1fbff);
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(7,25,54,.07);
}
.action-panel p {
  margin: 0;
  color: #314865;
  font-size: 1.08rem;
}
.action-panel p + p { margin-top: 18px; }
.hashtags {
  font-weight: 900;
  color: #fff;
  word-break: break-word;
}
.action-panel .hashtags { color: var(--blue-700); }
.hashtags--dark { color: var(--blue-800); }
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.compliance-card {
  min-height: 250px;
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 38px rgba(7,25,54,.06);
}
.compliance-card h3 {
  margin: 0 0 12px;
  color: var(--blue-800);
  font-size: 1.25rem;
  line-height: 1.2;
}
.compliance-card p { margin: 0; color: #425874; }
.compliance-card p + p { margin-top: 12px; }

.resources-grid, .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { border-radius: 14px; }
}
@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1180px); }
  .eu-strip img { max-height: 46px; }
  .eu-strip__cta { font-size: .78rem; }
  .navbar { min-height: 68px; }
  .brand__text { font-size: .92rem; }
  .brand__text span { font-size: .72rem; }
  .hero-card { padding: 10px; border-radius: 24px; }
  .stats, .action-text {
  scroll-margin-top: 150px;
}
.action-panel {
  max-width: 1040px;
  margin: 24px 0 22px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f1fbff);
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(7,25,54,.07);
}
.action-panel p {
  margin: 0;
  color: #314865;
  font-size: 1.08rem;
}
.action-panel p + p { margin-top: 18px; }
.hashtags {
  font-weight: 900;
  color: #fff;
  word-break: break-word;
}
.action-panel .hashtags { color: var(--blue-700); }
.hashtags--dark { color: var(--blue-800); }
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.compliance-card {
  min-height: 250px;
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 38px rgba(7,25,54,.06);
}
.compliance-card h3 {
  margin: 0 0 12px;
  color: var(--blue-800);
  font-size: 1.25rem;
  line-height: 1.2;
}
.compliance-card p { margin: 0; color: #425874; }
.compliance-card p + p { margin-top: 12px; }

.resources-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .panel, .notice, .contact-box { padding: 22px; border-radius: 22px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
@media print {
  .site-header, .hero-actions, .section-actions, .to-top { display:none!important; }
  body { color: #000; }
  .section, .hero__inner { width: 100%; padding: 20px 0; }
}
