@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #171c36;
  --ink-soft: #555b76;
  --paper: #fffdf8;
  --cream: #fff4df;
  --mint: #dff9ef;
  --mint-strong: #36ae8a;
  --lavender: #e7e1ff;
  --purple: #6446e8;
  --coral: #ff7a59;
  --yellow: #ffd166;
  --line: rgba(23, 28, 54, .12);
  --shadow: 0 20px 60px rgba(30, 29, 67, .10);
  --shadow-small: 0 10px 30px rgba(30, 29, 67, .08);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--yellow); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.ticker {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  min-height: 42px;
  display: flex;
  align-items: center;
  font-size: .78rem;
  letter-spacing: .02em;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
  white-space: nowrap;
}
.ticker__item { padding: 10px 34px; }
.ticker__item::before { content: "✦"; margin-right: 12px; color: var(--yellow); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-nav {
  position: sticky;
  top: 42px;
  z-index: 40;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: var(--max);
  min-height: 84px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; }
.brand__name { font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: -.04em; line-height: 1; font-size: 1.15rem; }
.brand__name span { color: var(--coral); }
.main-nav { display: flex; align-items: center; gap: 20px; font-size: .84rem; font-weight: 600; }
.main-nav a { color: var(--ink-soft); transition: color .2s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--purple); }
.nav-cta { padding: 12px 17px; border-radius: 14px; color: #fff !important; background: var(--purple); box-shadow: 0 8px 18px rgba(100, 70, 232, .2); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-size: 1.55rem; padding: 8px; }

.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 104px 0; }
.section--tight { padding: 70px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--purple);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: block; width: 26px; height: 2px; background: var(--coral); }
h1, h2, h3, h4 { margin: 0; font-family: "Space Grotesk", sans-serif; letter-spacing: -.05em; line-height: 1.08; }
h1 { font-size: clamp(2.8rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.45rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
.lead { font-size: 1.15rem; max-width: 650px; }
.section-heading { max-width: 710px; margin-bottom: 48px; }
.section-heading p { margin-top: 18px; }

.hero { overflow: hidden; background: linear-gradient(135deg, #fff8e9 0%, #f7f4ff 50%, #e6faf2 100%); }
.hero__grid { min-height: 690px; padding: 74px 0 80px; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 54px; }
.hero__copy h1 { max-width: 620px; }
.hero__copy h1 em { color: var(--coral); font-style: normal; }
.hero__copy .lead { margin: 25px 0 31px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 40px; color: var(--ink-soft); font-size: .85rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta b { color: var(--mint-strong); font-size: 1.3rem; }
.hero__art { position: relative; }
.hero__art::after { content: ""; position: absolute; inset: 9% 7% 4%; border: 1px solid rgba(23, 28, 54, .13); border-radius: 40px; transform: rotate(3deg); pointer-events: none; }
.hero__art img { position: relative; z-index: 1; width: 100%; border-radius: 42px; filter: drop-shadow(0 24px 22px rgba(53, 44, 89, .12)); }
.hero__badge { position: absolute; z-index: 2; right: -12px; bottom: 26px; max-width: 180px; padding: 17px; border-radius: 18px; color: var(--ink); background: var(--yellow); font-size: .8rem; font-weight: 700; line-height: 1.3; box-shadow: var(--shadow-small); transform: rotate(4deg); }

.notice { background: var(--ink); color: #fff; padding: 17px 0; }
.notice__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.notice strong { color: var(--yellow); }
.notice p { margin: 0; color: rgba(255,255,255,.82); font-size: .9rem; }
.notice a { color: var(--yellow); font-weight: 700; white-space: nowrap; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 13px 20px; border: 0; border-radius: 14px; background: var(--purple); color: #fff; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 23px rgba(100,70,232,.22); }
.button--light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.button--mint { background: var(--mint-strong); }
.button--small { min-height: 40px; padding: 9px 14px; border-radius: 11px; font-size: .82rem; }
.link-arrow { color: var(--purple); font-weight: 700; font-size: .88rem; }
.link-arrow::after { content: " ↗"; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-small); }
.card--soft { background: var(--cream); border: 0; box-shadow: none; }
.card--mint { background: var(--mint); border: 0; box-shadow: none; }
.card--purple { color: #fff; background: var(--ink); border: 0; }
.card--purple p { color: rgba(255,255,255,.72); }
.card h3 { margin: 18px 0 9px; }
.card p { font-size: .94rem; }
.icon-box { width: 51px; height: 51px; display: grid; place-items: center; border-radius: 16px; background: var(--lavender); color: var(--purple); font-size: 1.4rem; }
.icon-box--coral { background: #ffe4d9; color: var(--coral); }
.icon-box--mint { background: #b9eddb; color: #247e66; }
.icon-box--yellow { background: #ffefbe; color: #a87900; }
.card__image { width: calc(100% + 58px); height: 210px; margin: -29px -29px 24px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.split__media img { width: 100%; border-radius: 28px; box-shadow: var(--shadow); }
.split__copy p { max-width: 590px; }
.checks { display: grid; gap: 13px; margin: 25px 0 30px; padding: 0; list-style: none; }
.checks li { display: flex; gap: 11px; color: var(--ink-soft); font-size: .93rem; }
.checks li::before { content: "✓"; flex: 0 0 22px; display: grid; place-items: center; height: 22px; border-radius: 50%; color: #fff; background: var(--mint-strong); font-size: .75rem; font-weight: 700; }

.stat-strip { padding: 35px 0; background: var(--yellow); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat strong { display: block; font-family: "Space Grotesk"; font-size: 2.5rem; letter-spacing: -.06em; }
.stat span { display: block; font-size: .82rem; color: rgba(23,28,54,.7); }

.article-list { display: grid; grid-template-columns: 1.35fr .65fr; gap: 22px; }
.feature-card { position: relative; min-height: 430px; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border-radius: var(--radius); color: #fff; background: var(--ink); }
.feature-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,28,54,0) 25%, rgba(23,28,54,.9)); z-index: 1; }
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .83; }
.feature-card > * { position: relative; z-index: 2; }
.feature-card p { color: rgba(255,255,255,.78); max-width: 580px; }
.feature-card h3 { font-size: 2rem; max-width: 600px; margin: 8px 0 10px; }
.mini-list { display: grid; gap: 22px; }
.mini-list .card { padding: 24px; }
.mini-list h3 { font-size: 1.1rem; }

.cta { position: relative; overflow: hidden; padding: 62px; border-radius: 30px; color: #fff; background: var(--purple); }
.cta::after { content: ""; position: absolute; width: 290px; height: 290px; top: -150px; right: -54px; border-radius: 50%; background: var(--coral); opacity: .78; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { max-width: 640px; }
.cta p { max-width: 660px; color: rgba(255,255,255,.8); margin: 16px 0 25px; }

.page-hero { padding: 74px 0 68px; background: linear-gradient(135deg, #fff8e9, #f0edff); }
.page-hero__grid { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.page-hero h1 { max-width: 700px; font-size: clamp(2.6rem, 5vw, 4.4rem); }
.page-hero p { max-width: 600px; margin-top: 20px; font-size: 1.08rem; }
.page-hero__mark { width: 140px; flex: 0 0 auto; opacity: .92; }

.prose { max-width: 820px; }
.prose h2 { font-size: 2rem; margin: 46px 0 15px; }
.prose h3 { margin: 28px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 22px; }
.prose li { margin: 8px 0; }
.prose strong { color: var(--ink); }
.toc { padding: 24px; border-radius: 18px; background: var(--mint); }
.toc a { display: block; margin: 7px 0; color: #247e66; font-size: .9rem; font-weight: 700; }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 70px; align-items: start; }
.legal-side { position: sticky; top: 160px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.legal-side strong { display: block; margin-bottom: 12px; }
.legal-side a { display: block; padding: 8px 0; color: var(--ink-soft); font-size: .84rem; }
.legal-side a:hover { color: var(--purple); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.contact-stack { display: grid; gap: 16px; }
.contact-item { display: flex; gap: 15px; padding: 21px; border-radius: 18px; background: var(--mint); }
.contact-item:nth-child(2) { background: var(--cream); }
.contact-item:nth-child(3) { background: var(--lavender); }
.contact-item h3 { font-size: 1rem; margin: 0 0 4px; }
.contact-item p, .contact-item a { margin: 0; font-size: .9rem; }
.form-card { padding: 33px; border-radius: 26px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; margin-bottom: 15px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .79rem; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 1px solid rgba(23,28,54,.16); border-radius: 12px; color: var(--ink); background: #fffdf8; outline: 0; transition: border .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(100,70,232,.1); }
.field textarea { min-height: 126px; resize: vertical; }
.form-note { margin-top: 13px; font-size: .78rem; color: var(--ink-soft); }
.form-status { display: none; margin: 16px 0 0; padding: 12px 14px; border-radius: 12px; background: var(--mint); color: #247e66; font-size: .86rem; }
.form-status.is-visible { display: block; }
.map-wrap { margin-top: 25px; overflow: hidden; height: 340px; border-radius: 24px; border: 1px solid var(--line); box-shadow: var(--shadow-small); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resource-card { overflow: hidden; padding: 0 0 24px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-small); }
.resource-card img { width: 100%; height: 190px; object-fit: cover; }
.resource-card__body { padding: 21px 23px 0; }
.resource-card h3 { font-size: 1.25rem; margin: 8px 0; }
.resource-card p { font-size: .9rem; }
.tag { display: inline-flex; padding: 6px 9px; border-radius: 8px; background: var(--cream); color: #966d10; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.table-wrap { overflow: auto; border-radius: 18px; border: 1px solid var(--line); }
table { min-width: 600px; width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 15px 17px; text-align: left; border-bottom: 1px solid var(--line); font-size: .9rem; }
th { color: var(--ink); background: var(--mint); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
td { color: var(--ink-soft); }
tr:last-child td { border-bottom: 0; }
.quote { margin: 30px 0; padding: 28px; border-left: 4px solid var(--coral); border-radius: 0 18px 18px 0; background: var(--cream); }
.quote p { color: var(--ink); font-family: "Space Grotesk"; font-size: 1.25rem; }

.footer { margin-top: 85px; padding: 58px 0 28px; color: #fff; background: var(--ink); }
.footer__grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .9fr; gap: 35px; }
.footer .brand__name { color: #fff; }
.footer .brand__name span { color: var(--yellow); }
.footer p, .footer a { color: rgba(255,255,255,.67); font-size: .84rem; }
.footer h3 { color: #fff; font-size: .9rem; margin-bottom: 15px; letter-spacing: 0; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin: 9px 0; }
.footer a:hover { color: var(--yellow); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; color: rgba(255,255,255,.52); }
.socials { display: flex; gap: 9px; margin-top: 19px; }
.social { display: grid; place-items: center; width: 33px; height: 33px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #fff !important; font-size: .75rem !important; font-weight: 700; }

.whatsapp { position: fixed; z-index: 45; right: 23px; bottom: 23px; width: 57px; height: 57px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 12px 28px rgba(37,211,102,.35); transition: transform .2s ease; }
.whatsapp:hover { transform: scale(1.06); }
.whatsapp svg { width: 28px; height: 28px; fill: currentColor; }
.cookie-banner { position: fixed; z-index: 55; right: 18px; bottom: 18px; max-width: 470px; padding: 22px; border: 1px solid rgba(23,28,54,.12); border-radius: 20px; background: rgba(255,253,248,.98); box-shadow: 0 20px 70px rgba(23,28,54,.2); }
.cookie-banner[hidden] { display: none; }
.cookie-banner h3 { font-size: 1.1rem; margin-bottom: 7px; }
.cookie-banner p { font-size: .78rem; margin-bottom: 15px; }
.cookie-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.cookie-actions button { border: 0; border-radius: 10px; padding: 10px 13px; font-size: .78rem; font-weight: 700; }
.cookie-accept { color: #fff; background: var(--purple); }
.cookie-reject { color: var(--ink); background: var(--cream); }
.cookie-more { background: transparent; color: var(--ink-soft); }
.loader { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; background: var(--ink); transition: opacity .35s ease, visibility .35s ease; }
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { display: grid; justify-items: center; gap: 13px; color: #fff; }
.loader img { width: 68px; height: 68px; animation: breathe 1.3s ease-in-out infinite; }
.loader span { font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.65); }
@keyframes breathe { 0%, 100% { transform: scale(.9); opacity: .65; } 50% { transform: scale(1); opacity: 1; } }

@media (max-width: 980px) {
  .main-nav { gap: 12px; font-size: .76rem; }
  .hero__grid { gap: 34px; }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 34px)); }
  .nav-inner { min-height: 72px; padding: 0 17px; }
  .site-nav { top: 42px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 72px; left: 0; right: 0; display: none; padding: 14px 17px 20px; align-items: stretch; flex-direction: column; background: rgba(255,253,248,.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-small); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 9px 3px; }
  .nav-cta { text-align: center; }
  .section { padding: 74px 0; }
  .hero__grid, .split, .contact-grid, .legal-layout, .article-list { grid-template-columns: 1fr; }
  .hero__grid { min-height: auto; padding: 58px 0 70px; }
  .hero__art { order: -1; }
  .hero__badge { right: 7px; }
  .grid-3, .resource-grid, .stat-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 > :last-child { grid-column: 1 / -1; }
  .page-hero__grid { display: block; }
  .page-hero__mark { width: 82px; margin-top: 30px; }
  .legal-side { position: static; }
  .field-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .cta { padding: 37px 25px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; }
  .notice__inner { align-items: flex-start; flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.75rem; }
  .grid-3, .resource-grid, .stat-grid { grid-template-columns: 1fr; }
  .grid-3 > :last-child { grid-column: auto; }
  .card, .form-card { padding: 23px; }
  .card__image { width: calc(100% + 46px); margin: -23px -23px 21px; }
  .hero__meta { gap: 10px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > :first-child { grid-column: auto; }
  .cookie-banner { right: 11px; bottom: 11px; left: 11px; }
}
