@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-variable-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Jakarta';
  src: url('/fonts/plus-jakarta-sans-variable-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #0d1730;
  --muted: #5d6680;
  --paper: #ffffff;
  --soft: #f5f6ff;
  --line: #dfe3f0;
  --primary: #3f19d6;
  --primary-dark: #2b119d;
  --cyan: #19b7d8;
  --pink: #e8398f;
  --green: #18a873;
  --night: #071126;
  --night-soft: #101d39;
  --radius: 20px;
  --shadow: 0 22px 55px rgba(25, 34, 72, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Jakarta', system-ui, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Outfit', system-ui, sans-serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.03em; }
h3 { font-size: 1.35rem; }
p { margin-top: 0; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: #fff; padding: 10px 14px; }
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223,227,240,.85);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: 'Outfit'; font-weight: 800; font-size: 1.2rem; }
.brand img { width: 38px; height: 38px; }
.brand span { color: var(--primary); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-weight: 650; font-size: .94rem; }
.site-nav a:hover { color: var(--primary); }
.site-nav a.active { color: var(--primary); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.4rem; }
.button, .site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary, .site-nav .nav-cta { color: white; background: linear-gradient(135deg, var(--primary), #6537f0); box-shadow: 0 12px 30px rgba(63,25,214,.25); }
.button.secondary { color: var(--ink); background: white; border-color: var(--line); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: .82rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--pink); }
.hero { color: white; background: radial-gradient(circle at 80% 20%, rgba(63,25,214,.55), transparent 35%), radial-gradient(circle at 15% 80%, rgba(25,183,216,.22), transparent 32%), var(--night); padding: 92px 0 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; }
.hero h1 span { color: #8fe9f7; }
.hero-copy > p { color: #c7d0e7; font-size: 1.18rem; max-width: 660px; }
.hero .eyebrow { color: #8fe9f7; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-line { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 18px; color: #aeb9d2; font-size: .88rem; }
.trust-line span::before { content: '✓'; color: #63e4b0; margin-right: 7px; }
.dashboard-preview { position: relative; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 28px; padding: 20px; box-shadow: 0 30px 75px rgba(0,0,0,.35); }
.preview-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: #d9e0ef; font-size: .86rem; }
.preview-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; background: #63e4b0; box-shadow: 0 0 0 6px rgba(99,228,176,.12); }
.preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.preview-card { min-height: 116px; border-radius: 18px; padding: 17px; background: rgba(255,255,255,.1); }
.preview-card strong { display: block; font-family: 'Outfit'; font-size: 1.7rem; }
.preview-card small { color: #bfc9df; }
.preview-card.wide { grid-column: 1 / -1; min-height: 145px; }
.schedule-bar { height: 12px; border-radius: 999px; margin: 10px 0; background: linear-gradient(90deg, #6c45ed 0 45%, #19b7d8 45% 74%, rgba(255,255,255,.13) 74%); }
.section { padding: 96px 0; }
.section.soft { background: var(--soft); }
.section.night { color: white; background: var(--night); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.night .section-heading p { color: #bac5dc; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card, .post-card, .faq-item { background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card { padding: 28px; }
.feature-card .icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; margin-bottom: 22px; color: var(--primary); background: #eeeaff; font-size: 1.35rem; }
.feature-card p, .post-card p { color: var(--muted); }
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; counter-reset: step; }
.journey article { counter-increment: step; position: relative; padding: 28px 22px; border-radius: 18px; background: var(--night-soft); border: 1px solid rgba(255,255,255,.1); }
.journey article::before { content: counter(step); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--primary); font-weight: 900; margin-bottom: 20px; }
.journey p { color: #b9c5dc; margin-bottom: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.photo-frame { position: relative; }
.photo-frame img { width: 100%; min-height: 470px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.floating-note { position: absolute; right: -18px; bottom: 28px; max-width: 250px; padding: 18px; border-radius: 16px; color: white; background: var(--primary); box-shadow: var(--shadow); font-weight: 750; }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 10px 0 10px 30px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 8px 26px rgba(25,34,72,.07); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.post-card:hover { transform: translateY(-4px); border-color: rgba(63,25,214,.25); box-shadow: var(--shadow); }
.post-thumb { position: relative; display: block; overflow: hidden; background: var(--soft); }
.post-card img { width: 100%; height: 205px; object-fit: cover; transition: transform .25s ease; }
.post-card:hover img { transform: scale(1.025); }
.post-category { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 6px 12px; border-radius: 999px; color: white; background: linear-gradient(135deg, var(--primary), #7045ec); box-shadow: 0 5px 16px rgba(13,23,48,.2); font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.post-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.post-meta { color: var(--muted); font-size: .78rem; font-weight: 700; }
.post-card h2, .post-card h3 { margin: 12px 0; font-size: 1.4rem; letter-spacing: -.02em; }
.post-card h2 a, .post-card h3 a { text-decoration: none; }
.post-link { color: var(--primary); font-weight: 850; text-decoration: none; }
.post-card .post-link { margin-top: auto; }
.faq-list { display: grid; gap: 14px; max-width: 860px; }
.faq-item { padding: 22px 24px; }
.faq-item summary { cursor: pointer; font-family: 'Outfit'; font-size: 1.12rem; font-weight: 750; }
.faq-item p { color: var(--muted); margin: 14px 0 0; }
.cta-band { padding: 70px 0; color: white; background: linear-gradient(135deg, var(--primary-dark), var(--primary), #7045ec); }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.cta-band h2 { max-width: 720px; margin-bottom: 10px; }
.site-footer { color: #aeb9d1; background: #050b18; padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.site-footer h3 { color: white; font-size: 1rem; }
.site-footer a { color: #c7d0e3; text-decoration: none; display: block; margin: 8px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 20px; font-size: .84rem; }
.blog-hero { padding: 38px 0 34px; text-align: center; background: var(--soft); border-bottom: 1px solid var(--line); }
.blog-hero-inner { max-width: 820px; }
.blog-hero h1 { margin: 8px 0 10px; font-size: clamp(2.25rem, 5vw, 3.25rem); letter-spacing: -.035em; }
.blog-hero p { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }
.blog-index-section { padding: 48px 0 90px; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 48px; }
.blog-layout > main { min-width: 0; }
.blog-post-list { display: grid; gap: 28px; }
.blog-post-list .post-card { display: grid; grid-template-columns: minmax(250px, 42%) minmax(0, 1fr); min-height: 290px; }
.blog-post-list .post-thumb { min-height: 290px; }
.blog-post-list .post-card img { height: 100%; }
.blog-post-list .post-card-body { padding: 30px; }
.blog-post-list .post-card h2 { font-size: clamp(1.55rem, 3vw, 2rem); }
.sidebar { align-self: start; position: sticky; top: 96px; display: grid; gap: 20px; }
.sidebar-widget { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 8px 26px rgba(25,34,72,.06); }
.sidebar-widget h2 { margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 1.2rem; letter-spacing: -.01em; }
.sidebar-widget p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.sidebar-post-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.sidebar-post-item:first-child { padding-top: 0; }
.sidebar-post-item:last-child { padding-bottom: 0; border-bottom: 0; }
.sidebar-post-category { display: block; margin-bottom: 5px; color: var(--primary); font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.sidebar-post-title { display: block; font-family: 'Outfit'; font-weight: 750; line-height: 1.35; text-decoration: none; }
.sidebar-post-title:hover { color: var(--primary); }
.sidebar-post-meta { display: block; margin-top: 6px; color: var(--muted); font-size: .76rem; }
.sidebar-categories { display: grid; gap: 6px; }
.sidebar-category-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 10px; font-size: .88rem; font-weight: 700; text-decoration: none; }
.sidebar-category-item:hover { color: var(--primary); background: var(--soft); }
.sidebar-category-count { min-width: 25px; padding: 2px 8px; border-radius: 999px; color: var(--primary); background: #eeeaff; text-align: center; font-size: .72rem; }
.sidebar-cta { color: white; background: var(--night); border-color: var(--night); box-shadow: var(--shadow); }
.sidebar-cta .eyebrow { color: #8fe9f7; }
.sidebar-cta h2 { margin-top: 12px; border-color: rgba(255,255,255,.12); font-size: 1.55rem; }
.sidebar-cta p { margin-bottom: 20px; color: #b9c5dc; }
.sidebar-cta .button { width: 100%; }
.article-shell { padding: 70px 0 100px; }
.article-wrap { max-width: 820px; margin: auto; }
.article-header { margin-bottom: 34px; }
.article-header h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
.article-lead { font-size: 1.18rem; color: var(--muted); }
.article-image { width: 100%; max-height: 490px; object-fit: cover; border-radius: 24px; margin: 28px 0 40px; }
.answer-box { padding: 24px; border-left: 5px solid var(--cyan); border-radius: 0 18px 18px 0; background: #effcff; margin: 28px 0; }
.article-body h2 { margin-top: 48px; font-size: 2rem; }
.article-body h3 { margin-top: 32px; }
.article-body a { color: var(--primary); }
.article-body li { margin-bottom: 10px; }
.source-list { padding: 24px; border-radius: 18px; background: var(--soft); }
.breadcrumb { font-size: .86rem; color: var(--muted); margin-bottom: 20px; }
.consent-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 999; max-width: 980px; margin: auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 22px; border-radius: 18px; color: white; background: #101a32; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.consent-banner p { color: #c3cce0; font-size: .88rem; margin: 4px 0 0; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent-actions button { border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 10px 14px; color: white; background: transparent; font: inherit; font-weight: 700; cursor: pointer; }
.consent-actions .primary { background: var(--primary); border-color: var(--primary); }

@media (max-width: 920px) {
  .hero-grid, .split, .blog-layout { grid-template-columns: 1fr; }
  .card-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sidebar-cta { grid-column: 1 / -1; }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 76px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; padding: 20px; border-radius: 18px; background: white; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding-top: 64px; }
  .card-grid, .post-grid, .journey, .footer-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 28px 0 26px; }
  .blog-hero h1 { font-size: 2.15rem; }
  .blog-index-section { padding: 32px 0 70px; }
  .blog-post-list .post-card { display: flex; min-height: 0; }
  .blog-post-list .post-thumb { min-height: 0; }
  .blog-post-list .post-card img { height: 210px; }
  .blog-post-list .post-card-body { padding: 22px; }
  .sidebar { grid-template-columns: 1fr; }
  .sidebar-cta { grid-column: auto; }
  .cta-band .container, .consent-banner { align-items: stretch; flex-direction: column; }
  .consent-actions { flex-direction: column; }
  .photo-frame img { min-height: 340px; }
  .floating-note { position: static; margin-top: -25px; margin-inline: 15px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
