:root {
  --bg: #eef4ff;
  --bg-soft: #dce9ff;
  --card: rgba(255, 255, 255, .92);
  --ink: #101629;
  --muted: #5d6682;
  --primary: #315ed7;
  --primary-dark: #182a72;
  --accent: #f4bd44;
  --rose: #9f5cff;
  --line: rgba(64, 83, 137, .18);
  --shadow: 0 24px 70px rgba(26, 45, 115, .18);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(244, 189, 68, .32), transparent 22rem),
    radial-gradient(circle at 78% 0%, rgba(49, 94, 215, .26), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, .72) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #f7fbff 0%, #e8f0ff 42%, #f8f5ed 100%),
    var(--bg);
  font-family: var(--font);
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,.55) 0 1px, transparent 1px 72px),
    linear-gradient(0deg, rgba(49,94,215,.06) 0 1px, transparent 1px 42px);
  opacity: .7;
  pointer-events: none;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 32px)); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 252, 255, .84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.site-logo-img { width: 214px; height: 44px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 20px; }
.primary-nav ul, .site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; align-items: center; }
.primary-nav a { color: var(--ink); font-weight: 700; font-size: 14px; }
.primary-nav a:hover { color: var(--primary); }
.primary-nav .menu-contact-last { order: 10; }
.header-search .search-form { width: 230px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--card); border-radius: var(--radius); }
.menu-toggle span:not(.screen-reader-text) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); }
.search-form { display: flex; gap: 8px; background: rgba(255,255,255,.94); border: 1px solid rgba(244,189,68,.38); border-radius: var(--radius); padding: 6px; box-shadow: 0 12px 30px rgba(29, 55, 138, .1); }
.search-form input { min-width: 0; flex: 1; border: 0; background: transparent; padding: 10px; color: var(--ink); font: inherit; }
.search-form button, .btn {
  border: 0;
  border-radius: var(--radius);
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.search-form button, .btn-primary { background: linear-gradient(135deg, #f7c64f, #d99121); color: #17102b; }
.btn-secondary { background: rgba(255,255,255,.88); color: var(--primary-dark); border: 1px solid rgba(244,189,68,.48); }
.btn-light { background: #fff8df; color: var(--primary-dark); }
.btn:hover, .search-form button:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(244, 189, 68, .28); color: #17102b; }
.btn-secondary:hover, .btn-light:hover { color: var(--primary-dark); }
.hero {
  padding: 82px 0 56px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(244,189,68,.28), transparent 18rem),
    radial-gradient(circle at 64% 24%, rgba(255,255,255,.55), transparent 20rem),
    linear-gradient(135deg, rgba(20,29,77,.95), rgba(40,72,166,.86) 52%, rgba(255,255,255,.02));
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 20%, rgba(255,255,255,.16) 20% 21%, transparent 21% 100%),
    radial-gradient(ellipse at 52% 100%, rgba(255,255,255,.48), transparent 34rem);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -6% -34% auto;
  width: 58%;
  height: 82%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), transparent 14% 24%, rgba(255,255,255,.2) 24% 30%, transparent 30% 42%, rgba(255,255,255,.18) 42% 52%, transparent 52%),
    linear-gradient(180deg, rgba(244,189,68,.42), rgba(255,255,255,.06));
  border-radius: 50% 0 0 0;
  transform: skewY(-8deg);
  z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr); gap: 44px; align-items: center; }
.kicker, .eyebrow { color: #d49b20; text-transform: uppercase; letter-spacing: 0; font-size: 12px; font-weight: 900; }
.hero .kicker { color: #ffe39b; }
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; margin: 0 0 18px; }
h1 { font-size: clamp(42px, 7vw, 82px); }
.hero h1 {
  color: #fff;
  text-shadow: 0 3px 0 rgba(244,189,68,.22), 0 22px 55px rgba(0,0,0,.28);
}
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); }
.compact { padding: 46px 0 28px; }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: 24px; }
.hero-lead, .lead, .page-hero p { font-size: 19px; color: var(--muted); max-width: 740px; }
.hero .hero-lead { color: rgba(255,255,255,.86); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.06)),
    linear-gradient(160deg, #1f2b75, #121a46 52%, #2b2265);
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 36%, rgba(244,189,68,.72) 36% 38%, transparent 38% 100%),
    radial-gradient(circle at 72% 22%, rgba(255,255,255,.25), transparent 9rem);
  opacity: .88;
  pointer-events: none;
}
.hero-panel > * { position: relative; z-index: 1; }
.olympus-orb {
  width: 124px;
  height: 124px;
  margin-left: auto;
  margin-bottom: -72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, #fff9cf, #f4bd44 32%, #b97519 64%, rgba(185,117,25,.12) 66%),
    #f4bd44;
  box-shadow: 0 0 70px rgba(244,189,68,.62);
}
.hero-panel .search-form { background: rgba(255,255,255,.96); }
.score-card { border: 1px solid rgba(244,189,68,.36); border-radius: var(--radius); padding: 20px; background: rgba(255,255,255,.1); }
.score-card span { display: block; color: #ffe39b; font-weight: 800; }
.score-card strong { display: block; font-size: 26px; line-height: 1.2; margin-top: 8px; }
.mini-metrics { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-metrics span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 7px 11px; font-size: 13px; }
.section { padding: 58px 0; }
.section-muted { background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(220,233,255,.62)); border-block: 1px solid var(--line); }
.section-row { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 24px; }
.section-copy { color: var(--muted); max-width: 680px; }
.as-h2 { font-size: clamp(26px, 3vw, 40px); line-height: 1.15; font-weight: 900; color: var(--ink); margin-bottom: 12px; }
.category-grid, .card-grid, .trust-grid { display: grid; gap: 18px; }
.category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.category-card, .article-card, .sidebar-box, .author-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(26,45,115,.1);
}
.category-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  color: var(--muted);
  transition: transform .2s ease, box-shadow .2s ease;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% 40%;
  height: 120px;
  background: radial-gradient(circle, rgba(244,189,68,.24), transparent 68%);
}
.category-card:hover, .article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.category-card__name { display: block; color: var(--ink); font-size: 22px; line-height: 1.2; font-weight: 900; margin: 14px 0 8px; }
.icon-badge { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #182a72); position: relative; box-shadow: inset 0 0 0 1px rgba(255,255,255,.36), 0 10px 22px rgba(49,94,215,.24); }
.icon-badge::after { content: ""; position: absolute; inset: 11px; border: 2px solid #fff; border-radius: 4px; }
.icon-badge::before { content: ""; position: absolute; width: 3px; height: 24px; background: #f8d778; transform: rotate(28deg); left: 19px; top: 9px; box-shadow: 5px 7px 0 -1px #f8d778; }
.icon-gift { background: linear-gradient(135deg, #f4bd44, #b97519); }
.icon-wallet { background: linear-gradient(135deg, #9f5cff, #3d2f9a); }
.icon-shield { background: linear-gradient(135deg, #3f7cff, #1a2c77); }
.icon-clock { background: linear-gradient(135deg, #f4bd44, #6e54c7); }
.icon-user { background: linear-gradient(135deg, #ffffff, #9f5cff); }
.icon-shield::after { border-radius: 50% 50% 45% 45%; }
.article-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.article-card__image { aspect-ratio: 16 / 9; background: linear-gradient(135deg, #dce9ff, #fff8df); display: block; overflow: hidden; }
.article-card__image img { width: 100%; height: 100%; object-fit: cover; }
.article-card__body { padding: 18px; }
.article-card__title { display: block; color: var(--ink); font-weight: 900; line-height: 1.25; font-size: 20px; margin: 8px 0; }
.article-card p, .meta-line, .entry-content figcaption { color: var(--muted); }
.meta-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 14px; font-weight: 700; }
.split-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: start; }
.trust-grid { grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { background: rgba(255,255,255,.9); border: 1px solid rgba(244,189,68,.28); border-radius: var(--radius); padding: 20px; box-shadow: 0 14px 34px rgba(26,45,115,.08); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud a, .post-tags a { display: inline-flex; align-items: center; min-height: 36px; padding: 0 13px; border-radius: 999px; background: #fff; border: 1px solid rgba(244,189,68,.38); font-weight: 800; box-shadow: 0 8px 18px rgba(26,45,115,.06); }
.tag-cloud--large a { min-height: 44px; padding: 0 16px; }
.faq-list details { background: rgba(255,255,255,.92); border: 1px solid rgba(49,94,215,.2); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 10px; box-shadow: 0 10px 25px rgba(26,45,115,.06); }
.faq-list summary { cursor: pointer; font-weight: 900; }
.final-cta { background: linear-gradient(135deg, #111838, #263f9d 52%, #6b4ebc); color: white; position: relative; overflow: hidden; }
.final-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0 46%, rgba(244,189,68,.42) 46% 48%, transparent 48%); pointer-events: none; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta .as-h2, .site-footer .footer-title { color: white; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.page-content { max-width: 860px; }
.entry-content { font-size: 18px; }
.entry-content h2 { margin-top: 42px; font-size: 34px; }
.entry-content h3 { margin-top: 28px; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 24px 0; background: #fff; border-radius: var(--radius); overflow: hidden; }
.entry-content th, .entry-content td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.entry-content th { background: linear-gradient(135deg, var(--primary-dark), #315ed7); color: white; }
.content-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 32px; align-items: start; }
.post-list { display: grid; gap: 20px; }
.site-sidebar { display: grid; gap: 16px; }
.single .site-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
}
.sidebar-box { padding: 18px; }
.single .toc-box {
  overflow: hidden;
  border-color: rgba(244,189,68,.46);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,250,255,.9)),
    radial-gradient(circle at 100% 0, rgba(244,189,68,.24), transparent 12rem);
  box-shadow: 0 18px 48px rgba(26,45,115,.14);
}
.single .toc-box .widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single .toc-box .widget-title::before {
  content: "";
  width: 10px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  box-shadow: 0 8px 18px rgba(49,94,215,.25);
}
.widget-title, .footer-title { font-weight: 900; font-size: 15px; text-transform: uppercase; letter-spacing: 0; margin-bottom: 12px; color: var(--ink); }
.link-list { display: grid; gap: 10px; }
.toc-list ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.single .toc-box .toc-list {
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 18px;
  margin-right: -8px;
  scrollbar-color: rgba(49,94,215,.5) rgba(238,244,255,.85);
  scrollbar-width: thin;
}
.single .toc-box .toc-list::-webkit-scrollbar {
  width: 5px;
}
.single .toc-box .toc-list::-webkit-scrollbar-track {
  background: rgba(238,244,255,.85);
  border-radius: 999px;
}
.single .toc-box .toc-list::-webkit-scrollbar-thumb {
  background: rgba(49,94,215,.46);
  border-radius: 999px;
}
.toc-list a {
  color: var(--ink);
  display: block;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.35;
  padding: 8px 10px;
  border-radius: var(--radius);
}
.toc-list a:hover {
  color: var(--primary-dark);
  background: rgba(49,94,215,.08);
}
.toc-list a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 10px 24px rgba(49,94,215,.24);
}
.toc-list li.is-active {
  padding-left: 0;
}
.toc-list .toc-h3 { padding-left: 14px; }
.inline-toc { display: none; }
.featured-figure { margin: 0 0 24px; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.featured-figure img { width: 100%; }
.author-box { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 18px; margin-top: 30px; }
.author-box__name { display: inline-block; font-weight: 900; font-size: 20px; color: var(--ink); }
.expertise { font-weight: 800; color: var(--primary-dark); }
.related-posts { margin-top: 34px; }
.related-posts-wide .related-posts {
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.related-posts-wide .card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.article-resources-wide {
  margin-top: 48px;
}
.article-resources {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(64,83,137,.16);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(245,249,255,.92)),
    radial-gradient(circle at 90% 8%, rgba(244,189,68,.3), transparent 18rem);
  box-shadow: var(--shadow);
}
.article-resources::before {
  content: "";
  position: absolute;
  inset: auto 28px 0 auto;
  width: 168px;
  height: 168px;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(244,189,68,.8) 46% 58%, transparent 58%),
    linear-gradient(90deg, rgba(24,42,114,.12), rgba(49,94,215,.08));
  clip-path: polygon(50% 0, 64% 0, 54% 42%, 72% 42%, 36% 100%, 45% 53%, 28% 53%);
  opacity: .18;
  pointer-events: none;
}
.article-resources__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}
.article-resources__head .as-h2 {
  margin: 0;
}
.article-resources__head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.article-resources__stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}
.resource-card {
  min-height: 100%;
  border: 1px solid rgba(64,83,137,.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(26,45,115,.1);
}
.resource-card--wide {
  display: grid;
  gap: 16px;
}
.resource-card--note {
  background: linear-gradient(145deg, #fff8df, rgba(255,255,255,.9));
  border-color: rgba(244,189,68,.45);
}
.resource-card--note p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.resource-card__head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.resource-card__head .widget-title {
  margin-bottom: 4px;
}
.resource-card__head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.resource-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--accent), #fff3c4);
  font-size: 20px;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(244,189,68,.24);
}
.resource-card .link-list a {
  color: var(--ink);
  font-weight: 850;
  padding: 8px 0;
  border-bottom: 1px solid rgba(64,83,137,.12);
}
.resource-card .link-list a:last-child {
  border-bottom: 0;
}
.resource-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  max-height: 260px;
  overflow: auto;
  padding: 2px 2px 4px;
  scrollbar-color: rgba(49,94,215,.45) rgba(238,244,255,.8);
}
.resource-cloud a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(244,189,68,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--primary);
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 10px 22px rgba(26,45,115,.08);
}
.resource-cloud a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-color: rgba(49,94,215,.38);
}
.resource-cloud small {
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff1bc;
  font-size: 12px;
  font-weight: 1000;
}
.resource-cloud a:hover small {
  color: var(--primary-dark);
  background: #fff;
}
.resource-cloud--categories a {
  border-radius: var(--radius);
  color: var(--ink);
}
.breadcrumbs { font-size: 14px; font-weight: 800; color: var(--muted); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; min-width: 40px; min-height: 40px; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); font-weight: 800; }
.pagination .current { background: var(--primary); color: #fff; }
.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(244,189,68,.16), transparent 20rem),
    linear-gradient(135deg, #0d122d, #151f53 60%, #231a4f);
  color: rgba(255,255,255,.78);
  padding: 54px 0 24px;
}
.site-footer a { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .8fr .8fr; gap: 28px; }
.site-footer ul, .footer-links { display: grid; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 28px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; }
.wpcf7 form { display: grid; gap: 0; }
.wpcf7 form > p { margin: 0; }
.wpcf7 input, .wpcf7 textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 15px; font: inherit; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.wpcf7 input:focus, .wpcf7 textarea:focus { outline: 3px solid rgba(244,189,68,.28); border-color: rgba(244,189,68,.82); }
.wpcf7 textarea { min-height: 150px; resize: vertical; }
.wpcf7-submit {
  background: linear-gradient(135deg, #17245f, #315ed7) !important;
  color: #fff !important;
  font-weight: 900;
  border: 2px solid #f4bd44 !important;
  min-height: 54px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(23, 36, 95, .22), inset 0 1px 0 rgba(255,255,255,.16);
}
.wpcf7-submit:hover,
.wpcf7-submit:focus {
  background: linear-gradient(135deg, #0f183f, #263f9d) !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(23, 36, 95, .3);
}
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  color: #b42335;
  background: #fff1f3;
  border: 1px solid rgba(180,35,53,.26);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 900;
}
.wpcf7 form .wpcf7-not-valid {
  border-color: #d8344a !important;
  box-shadow: 0 0 0 3px rgba(216,52,74,.14);
}
.wpcf7-response-output {
  margin: 18px 0 0 !important;
  border-radius: var(--radius);
  padding: 14px 16px !important;
  font-weight: 900;
  line-height: 1.45;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  color: #8a1f2d;
  background: #fff1f3;
  border: 2px solid #d8344a !important;
  box-shadow: 0 10px 24px rgba(216,52,74,.12);
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #123f2e;
  background: #ecfdf3;
  border: 2px solid #1f9d62 !important;
}
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(244,189,68,.32), transparent 18rem),
    linear-gradient(135deg, #111838, #263f9d 56%, #6b4ebc);
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% 50%;
  height: 78%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.14), transparent 16% 28%, rgba(255,255,255,.18) 28% 35%, transparent 35%),
    radial-gradient(circle, rgba(255,255,255,.38), transparent 38rem);
  transform: skewY(-8deg);
}
.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 42px;
  align-items: center;
}
.contact-hero h1,
.contact-signal .as-h2 { color: #fff; }
.contact-hero .breadcrumbs,
.contact-hero .breadcrumbs a,
.contact-hero .hero-lead { color: rgba(255,255,255,.84); }
.contact-signal {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px 128px 28px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.contact-signal > *:not(.about-lightning) {
  position: relative;
  z-index: 1;
}
.contact-signal .as-h2 {
  overflow-wrap: anywhere;
}
.contact-signal p { color: rgba(255,255,255,.82); max-width: 420px; }
.contact-signal .about-lightning {
  right: 30px;
  top: 34px;
  width: 54px;
  height: 94px;
  opacity: .78;
  z-index: 0;
  filter: drop-shadow(0 0 22px rgba(244,189,68,.42));
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}
.contact-info-panel,
.contact-form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-info-panel {
  background:
    radial-gradient(circle at 88% 8%, rgba(244,189,68,.2), transparent 12rem),
    rgba(255,255,255,.9);
  padding: 24px;
}
.contact-info-list { display: grid; gap: 14px; margin: 20px 0; }
.contact-info-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(49,94,215,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
}
.contact-info-list strong { display: block; color: var(--ink); }
.contact-info-list p { grid-column: 2; margin: -8px 0 0; color: var(--muted); }
.contact-email-card {
  display: grid;
  gap: 2px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #111838, #263f9d);
  color: #fff;
}
.contact-email-card span { color: #ffe39b; font-weight: 900; text-transform: uppercase; font-size: 12px; }
.contact-email-card strong { color: #fff; font-size: 20px; line-height: 1.2; overflow-wrap: anywhere; }
.contact-form-panel {
  background: rgba(255,255,255,.94);
  padding: 26px;
}
.form-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}
.form-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: #17102b;
  background: #ffe39b;
  border: 1px solid rgba(244,189,68,.5);
  font-weight: 900;
  white-space: nowrap;
}
.contact-form-panel .entry-content,
.contact-form-panel > p { margin: 0; }
.contact-form-panel .wpcf7-form {
  display: grid;
  gap: 16px;
}
.casino-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.casino-contact-form > p,
.casino-consent > p,
.casino-submit > p {
  display: contents;
}
.casino-contact-form br,
.casino-consent br,
.casino-submit br {
  display: none;
}
.casino-field { display: grid; gap: 7px; margin: 0; }
.casino-field--full { grid-column: 1 / -1; }
.casino-label { color: var(--ink); font-size: 14px; font-weight: 900; }
.casino-consent {
  grid-column: 1 / -1;
  margin: 0;
}
.casino-consent .wpcf7-form-control-wrap,
.casino-consent .wpcf7-acceptance,
.casino-consent .wpcf7-list-item,
.casino-consent label { display: block; margin: 0; }
.casino-consent label {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(49,94,215,.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(238,244,255,.82), rgba(255,248,223,.52));
  cursor: pointer;
}
.casino-consent input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 1px 0 0;
  border: 2px solid rgba(49,94,215,.5);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}
.casino-consent input[type="checkbox"]:checked {
  border-color: #d99121;
  background:
    linear-gradient(135deg, #f7c64f, #d99121);
}
.casino-consent input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  width: 7px;
  height: 12px;
  border: solid #17102b;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  margin: 2px 0 0 7px;
}
.casino-consent .wpcf7-list-item-label { color: var(--muted); font-size: 15px; line-height: 1.45; }
.casino-submit { grid-column: 1 / -1; margin: 0; }
.casino-submit .wpcf7-submit {
  width: 100%;
  justify-content: center;
  font-size: 18px;
}
.casino-submit .wpcf7-spinner { vertical-align: middle; }
.casinoatlas-cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  justify-content: center;
}
.casinoatlas-cookie-banner .cmplz-cookiebanner {
  width: min(720px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.cmplz-title { font-weight: 900; font-size: 18px; margin-bottom: 6px; }
.cmplz-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.cmplz-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: var(--radius);
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary-dark);
  font-weight: 900;
}
.cmplz-accept { background: var(--primary); color: #fff; border-color: var(--primary); }
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 8%, rgba(244,189,68,.34), transparent 18rem),
    linear-gradient(135deg, #111838, #253f9d 58%, #5d48b0);
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% 48%;
  height: 78%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.16), transparent 14% 24%, rgba(255,255,255,.18) 24% 30%, transparent 30%),
    radial-gradient(circle, rgba(255,255,255,.42), transparent 38rem);
  transform: skewY(-8deg);
}
.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 42px;
  align-items: center;
}
.about-hero .breadcrumbs,
.about-hero .breadcrumbs a,
.about-hero .hero-lead { color: rgba(255,255,255,.84); }
.about-hero h1 { color: #fff; text-shadow: 0 22px 55px rgba(0,0,0,.28); }
.about-hero-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.about-hero-card .as-h2 { color: #fff; }
.about-lightning {
  position: absolute;
  right: 28px;
  top: 24px;
  width: 64px;
  height: 112px;
  background: #f4bd44;
  clip-path: polygon(58% 0, 18% 44%, 48% 44%, 32% 100%, 88% 34%, 56% 34%);
  filter: drop-shadow(0 0 28px rgba(244,189,68,.54));
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.about-stats span {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 800;
}
.about-stats strong { display: block; color: #ffe39b; font-size: 24px; line-height: 1; }
.about-split,
.about-editorial {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.about-principles,
.about-process {
  display: grid;
  gap: 18px;
}
.about-principles { grid-template-columns: repeat(3, 1fr); }
.about-principles > div,
.about-process > div,
.about-note {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(26,45,115,.1);
  padding: 22px;
}
.about-principles strong,
.about-process strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}
.about-process {
  grid-template-columns: repeat(4, 1fr);
}
.about-process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7c64f, #d99121);
  color: #17102b;
  font-weight: 900;
}
.about-note {
  background: linear-gradient(135deg, #111838, #253f9d);
  color: rgba(255,255,255,.84);
  border-color: rgba(244,189,68,.36);
}
.about-note .footer-title { color: #ffe39b; }
.about-cta { padding-block: 46px; }
.articles-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 56px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 8%, rgba(244,189,68,.32), transparent 18rem),
    linear-gradient(135deg, #111838, #253f9d 58%, #6b4ebc);
}
.articles-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% 46%;
  height: 78%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.16), transparent 14% 24%, rgba(255,255,255,.18) 24% 30%, transparent 30%),
    radial-gradient(circle, rgba(255,255,255,.38), transparent 38rem);
  transform: skewY(-8deg);
}
.articles-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 42px;
  align-items: center;
}
.articles-hero h1,
.articles-hero-card .as-h2 { color: #fff; }
.articles-hero .breadcrumbs,
.articles-hero .breadcrumbs a,
.articles-hero .hero-lead { color: rgba(255,255,255,.84); }
.articles-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.articles-hero-card > *:not(.about-lightning) { position: relative; z-index: 1; }
.articles-hero-card .about-lightning { right: 28px; top: 24px; opacity: .28; }
.articles-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
.articles-main { display: grid; gap: 28px; }
.featured-article {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(244,189,68,.32);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(244,189,68,.18), transparent 14rem),
    rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.featured-article__image {
  min-height: 100%;
  background: linear-gradient(135deg, #dce9ff, #fff8df);
}
.featured-article__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.featured-article__body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}
.featured-article__title {
  color: var(--ink);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.06;
}
.articles-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.articles-sidebar {
  display: grid;
  gap: 18px;
}
.articles-side-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(26,45,115,.1);
}
.articles-side-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -44% 45%;
  height: 140px;
  background: radial-gradient(circle, rgba(244,189,68,.18), transparent 70%);
  pointer-events: none;
}
.articles-side-card > * { position: relative; z-index: 1; }
.side-search {
  background:
    radial-gradient(circle at 88% 8%, rgba(244,189,68,.22), transparent 12rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,244,255,.9));
}
.route-list { display: grid; gap: 10px; }
.route-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 11px 12px;
  border-radius: var(--radius);
  background: rgba(238,244,255,.74);
  border: 1px solid rgba(49,94,215,.12);
  color: var(--ink);
  font-weight: 900;
}
.route-list small { color: var(--muted); font-weight: 800; white-space: nowrap; }
.side-gold {
  background: linear-gradient(135deg, #111838, #263f9d);
  color: rgba(255,255,255,.86);
  border-color: rgba(244,189,68,.34);
}
.side-gold .widget-title { color: #ffe39b; }
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 26px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #f4bd44;
  box-shadow: 0 0 18px rgba(244,189,68,.42);
}
@media (max-width: 920px) {
  body.menu-open { overflow: hidden; }
  .menu-toggle { display: inline-block; }
  .primary-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(249, 252, 255, .98);
    border-bottom: 1px solid var(--line);
    padding: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
  }
  .menu-open .primary-nav { display: flex; }
  .primary-nav ul { display: grid; gap: 14px; }
  .header-search .search-form { width: 100%; }
  .hero-grid, .split-panel, .content-sidebar, .footer-grid { grid-template-columns: 1fr; }
  .about-hero__grid, .about-split, .about-editorial, .contact-hero__grid, .contact-grid, .articles-hero__grid, .articles-layout, .featured-article { grid-template-columns: 1fr; }
  .article-resources__head { grid-template-columns: 1fr; }
  .category-grid, .card-grid--three, .trust-grid { grid-template-columns: 1fr; }
  .about-principles, .about-process { grid-template-columns: 1fr; }
  .single .site-sidebar { position: static; }
  .site-sidebar .toc-box { display: none; }
  .inline-toc { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 22px; }
  .section-row, .cta-inner, .footer-bottom { align-items: start; flex-direction: column; display: flex; }
}
@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 24px, 1140px); }
  .hero { padding-top: 42px; }
  h1 { font-size: 44px; }
  .page-hero h1 { font-size: 34px; }
  .hero-actions .btn, .search-form button { width: 100%; }
  .search-form { flex-direction: column; }
  .entry-content table, .entry-content thead, .entry-content tbody, .entry-content th, .entry-content td, .entry-content tr { display: block; }
  .casino-contact-form { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-resources { padding: 20px; }
  .form-panel-head { flex-direction: column; }
  .contact-signal { padding-right: 28px; }
  .contact-signal .about-lightning {
    right: 18px;
    top: 18px;
    width: 42px;
    height: 74px;
    opacity: .28;
  }
  .entry-content thead { display: none; }
  .entry-content tr { margin-bottom: 12px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
  .entry-content td { border: 0; border-bottom: 1px solid var(--line); }
  .entry-content td::before { content: attr(data-label); display: block; font-weight: 900; color: var(--primary-dark); margin-bottom: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
