:root {
  --ink-dark: #0A0A0A;
  --ink-darker: #191B1F;
  --ink-darkest: #0A0A0A;
  --amber: #4262F0;
  --amber-deep: #3450C7;
  --white: #FFFFFF;
  --off: #FAFAFA;
  --body: #262626;
  --muted: #737373;
  --muted-on-dark: #A3A3A3;
  --line: #E5E5E5;
  --line-on-dark: #2E2E2E;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --tint-blue: #E0EAFC;
  --tint-purple: #F2DBF5;
  --tint-purple-soft: #EED8F0;
  --tint-pink: #FEEFFF;
  --tint-peach: #FFF0D8;
  --tint-rose: #FFE0E2;
  --tint-teal: #E4F6F4;
  --tint-coral: #FBDDD2;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
  color: var(--body);
  background: var(--white);
  font-size: 18px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h2 {
  font-family: 'Inter', -apple-system, Roboto, Helvetica, sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 40px !important;
  line-height: 48px !important;
}
img { max-width: 100%; display: block; }
a { color: var(--amber-deep); text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; margin: 0 auto; }
.btn:hover { background: linear-gradient(135deg, #3D7CE8 0%, #362CA8 100%); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(67,56,202,.4); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn.dark { background: var(--ink-dark); color: var(--white); }
.btn.dark:hover { background: var(--ink-darker); box-shadow: 0 10px 26px rgba(20,22,30,.3); }
.stars { font-size: 14px; color: var(--muted); }
.stars b { color: var(--amber-deep); letter-spacing: 2px; font-size: 15px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
/* ---------- top bar + nav ---------- */
.topbar {
  background: var(--ink-darkest); color: var(--white);
  font-size: 14px; padding: 8px 0; text-align: center; letter-spacing: .01em;
  position: relative; z-index: 61;
}
.topbar a { color: var(--amber); font-weight: 700; }
.navin { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo img { height: 32px; width: auto; }
nav.menu { display: flex; gap: 30px; align-items: center; }
nav.menu a:hover { color: var(--amber); }
/* ---------- mega menu (premium white) ---------- */
.nav-burger { display: none; }
.nav-close { display: none; }
nav.menu { align-self: stretch; }
.has-mega { position: static; display: flex; align-items: center; align-self: stretch; }
.has-mega-mini { position: relative; }
.mega-trigger { display: inline-flex; align-items: center; gap: 7px; }
.mega-trigger .caret { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .22s ease; }
.has-mega:hover .caret, .has-mega:focus-within .caret, .has-mega.open .caret { transform: rotate(180deg); }
.mega {
  top: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 28px 56px rgba(20,22,30,.16);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
  max-height: calc(100vh - 120px); overflow-y: auto;
}
.has-mega:hover .mega, .has-mega:focus-within .mega, .has-mega.open .mega {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .2s ease, transform .2s ease, visibility 0s 0s;
}
.mega-lg { position: absolute; left: 0; right: 0; }
.mega-mini { position: absolute; left: 0; width: 320px; border-radius: 16px; margin-top: 1px; }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 32px; padding: 40px 0 8px; }
nav.menu a.mg-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: .01em;
  color: var(--ink-dark);
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 2px solid var(--line);
  transition: border-color .18s ease, color .18s ease;
}
.mega-col:hover a.mg-head { border-color: var(--amber); color: var(--amber-deep); }
.mega-col:hover .mi-icon { background: var(--amber); }
.mi-icon svg { width: 17px; height: 17px; stroke: var(--amber-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .18s ease; }
.mega-col:hover .mi-icon svg { stroke: var(--ink-dark); }
nav.menu a.mg-link {
  display: block;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 400; font-size: 15px;
  text-transform: none; letter-spacing: 0;
  color: var(--body);
  padding: 7px 8px; margin: 0 -8px; border-radius: 8px;
  position: relative;
  transition: color .16s ease, background .16s ease, padding-left .16s ease;
}
nav.menu a.mg-link::before {
  content: "→"; position: absolute; left: 4px; top: 7px;
  opacity: 0; color: var(--amber-deep); font-size: 13px;
  transition: opacity .16s ease, left .16s ease;
}
nav.menu a.mg-link:hover::before { left: 10px; opacity: 1; }
.mg-link .tag-new {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: .01em; text-transform: none;
  color: var(--white); background: var(--amber-deep);
  padding: 2px 8px; border-radius: 999px;
  margin-left: 8px; vertical-align: 2px;
}
.mega-foot { display: flex; gap: 16px; flex-wrap: wrap; margin: 8px 0 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.mega-feature .mf-tag {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: .01em; text-transform: none;
  color: var(--white); background: var(--amber-deep);
  padding: 3px 10px; border-radius: 999px;
}
.mega-feature b { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-size: 16px; letter-spacing: .01em; text-transform: none; color: var(--ink-dark); }
.mega-feature .mf-arrow { margin-left: auto; color: var(--amber-deep); font-weight: 700; }
nav.menu a.mega-cta {
  flex: 1 1 320px;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  padding: 16px 20px; border-radius: 12px;
  border: 1px solid var(--line);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 400; font-size: 15px;
  text-transform: none; letter-spacing: 0;
  color: var(--body);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.mega-cta b { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-size: 15px; letter-spacing: .01em; text-transform: none; color: var(--amber-deep); }
/* mini mega menu (Insights) */
.mega-mini .mega-grid { grid-template-columns: 1fr; gap: 2px; padding: 14px; }
nav.menu a.mini-link {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 10px;
  transition: background .16s ease;
}
.mini-link:hover .mi-icon { background: var(--amber); }
.mini-link .mi-icon svg { width: 17px; height: 17px; stroke: var(--amber-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .16s ease; }
.mini-link:hover .mi-icon svg { stroke: var(--ink-dark); }
.mini-link .mini-copy { display: flex; flex-direction: column; }
.mini-link .mini-copy b { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .01em; text-transform: none; color: var(--ink-dark); transition: color .16s ease; }
.mini-link:hover .mini-copy b { color: var(--amber-deep); }
.mini-link .mini-copy span { font-size: 13px; color: var(--muted); margin-top: 1px; }
/* white label banner (stronger hierarchy) */
.mega-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 8px; padding: 24px 28px; border-radius: 14px;
  background: linear-gradient(120deg, var(--ink-dark), var(--ink-darker));
}
.mega-banner .mb-copy b { display: block; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-size: 20px; letter-spacing: .01em; text-transform: none; color: var(--white); margin-bottom: 4px; }
.mega-banner .mb-copy span { font-size: 14px; color: var(--muted-on-dark); }
nav.menu a.mb-btn {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .01em; text-transform: none; color: var(--ink-dark);
  background: var(--amber); padding: 13px 24px; border-radius: 999px;
  white-space: nowrap; transition: background .18s ease, transform .18s ease;
}
nav.menu a.mb-btn:hover { background: var(--amber-deep); color: var(--white); transform: translateX(2px); }
@media (max-width: 900px) {
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 10px 6px;
  }
  .nav-burger span { width: 24px; height: 2px; background: var(--white); transition: transform .25s ease, opacity .25s ease; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
  nav.menu {
    position: fixed; inset: 0; z-index: 70;
    isolation: isolate;
    background-color: rgb(20,22,30); opacity: 1;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 120px 24px 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .3s ease;
  }
  nav.menu::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background-color: rgb(20,22,30);
  }
  body.nav-open nav.menu { transform: none; }
  .nav-close {
    position: absolute; top: 24px; right: 24px; z-index: 2;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 0;
  }
  .nav-close svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; }
  .nav-close:hover { background: var(--amber); border-color: var(--amber); }
  .nav-close:hover svg { stroke: var(--ink-dark); }
  nav.menu > a, .mega-trigger { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 18px; width: 100%; color: var(--white); }
  .has-mega, .has-mega-mini { flex-direction: column; align-items: stretch; position: static; }
  .mega, .mega-lg, .mega-mini {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; width: auto;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .has-mega.open .mega { max-height: 2400px; }
  .mega-grid, .mega-mini .mega-grid { grid-template-columns: 1fr; gap: 22px; padding: 14px 0 10px; }
  nav.menu a.mg-head { border-bottom-color: var(--line-on-dark); color: var(--white); }
  .mega-col:hover a.mg-head { color: var(--amber); }
  nav.menu a.mg-link { color: var(--muted-on-dark); }
  nav.menu a.mg-link:hover { background: transparent; color: var(--amber); }
  nav.menu a.mini-link:hover { background: transparent; }
  .mini-link .mini-copy b { color: var(--white); }
  .mini-link .mini-copy span { color: var(--muted-on-dark); }
  .mega-foot { flex-direction: column; margin: 10px 0 18px; border-top-color: var(--line-on-dark); }
  nav.menu a.mega-feature, nav.menu a.mega-cta { color: var(--muted-on-dark); }
  .mega-feature b { color: var(--white); }
  .mega-banner { margin-top: 4px; }
  .nav-cta { margin-top: 20px; text-align: center; border-bottom: none; }
}
.hero .inner { position: relative; z-index: 2; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.75); } }
.hero .rotator.swap { opacity: 0; transform: translateY(8px); }
.hero .stars { color: var(--muted-on-dark); }
.section.alt { background: var(--off); }
.section.dark { background: var(--ink-dark); }
.section.dark h2 { color: rgb(250, 250, 250); }
.section.dark h3 { color: var(--white); }
.section.dark .section-head p { color: var(--muted-on-dark); }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 20px; }
.diff-head { display: grid; grid-template-columns: 1fr 1fr; }
.diff-head-col {
  padding: 26px 44px; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .01em; text-transform: none;
}
.diff-head-old { color: var(--muted); background: var(--off); border-right: 1px solid var(--line); }
.diff-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.diff-cell {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 44px; font-size: 16px; line-height: 1.55;
  transition: background .2s ease;
}
.diff-cell-old { color: var(--muted); border-right: 1px solid var(--line); }
.diff-row:hover .diff-cell-old { background: var(--off); }
.diff-icon {
  width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto; margin-top: 3px;
  display: flex; align-items: center; justify-content: center;
}
.diff-icon-x { background: var(--off); }
.diff-icon-x svg { width: 11px; height: 11px; stroke: var(--muted); fill: none; stroke-width: 2.4; stroke-linecap: round; }
.diff-icon-check { background: var(--amber); }
.diff-icon-check svg { width: 13px; height: 13px; stroke: var(--ink-dark); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.diff-cta { text-align: center; margin-top: 50px; }
.diff-cta p { font-size: 20px; color: var(--body); margin-bottom: 22px; font-weight: 600; }
@media (max-width: 780px) {
  .diff-head { display: none; }
  .diff-row { grid-template-columns: 1fr; border-top: none; margin-top: 18px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
  .diff-row:first-child { margin-top: 0; }
  .diff-cell-old { border-right: none; border-bottom: 1px solid var(--line); }
  .diff-cell { padding: 20px 22px; font-size: 16px; }
}
.ai-card .ai-copy { grid-area: copy; }
.ai-card .ai-btn { grid-area: btn; align-self: start; justify-self: start; }
.ai-card .ai-media { grid-area: media; }
@media (max-width: 900px) {
  .ai-card {
    grid-template-columns: 1fr; grid-template-rows: auto auto auto;
    grid-template-areas: "copy" "media" "btn";
    padding: 44px 26px; gap: 40px;
  }
  .ai-card .ai-btn { justify-self: start; }
}
.ai-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px; border-radius: 999px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35);
  color: var(--white); font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700;
  letter-spacing: .01em; font-size: 13px; text-transform: none; margin-bottom: 26px;
}
.ai-badge svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ai-copy h2 { color: rgb(250, 250, 250); font-size: clamp(28px, 3.4vw, 42px); text-transform: none; line-height: 1.18; margin: 0 0 20px; text-shadow: none; max-width: none; }
.ai-copy p { color: rgba(255,255,255,.88); font-size: 18px; line-height: 1.65; max-width: 480px; margin: 0 0 30px; }
.ai-shift { display: flex; align-items: center; gap: 16px; margin-bottom: 34px; }
.ai-shift .old { color: rgba(255,255,255,.55); text-decoration: line-through; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .01em; text-transform: none; }
.ai-shift .arrow { color: var(--white); display: flex; }
.ai-shift .arrow svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ai-shift .new { color: var(--white); background: rgba(255,255,255,.16); padding: 7px 16px; border-radius: 999px; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .01em; text-transform: none; }
.ai-btn {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--white); color: #1E44C4;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; font-size: 16px;
  padding: 8px 8px 8px 26px; border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ai-btn .arrow-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: #142F8C; color: var(--white);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.ai-btn .arrow-circle svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.ai-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.28); }
.ai-media { position: relative; padding-bottom: 30px; }
.ai-panel { background: var(--white); border-radius: 22px; padding: 26px 26px 10px; box-shadow: 0 24px 60px rgba(20,30,80,.35); }
.ai-panel-head { display: flex; align-items: center; justify-content: space-between; font-weight: 700; color: var(--ink-dark); font-size: 15px; margin-bottom: 18px; }
.ai-panel-head span { background: rgba(30,68,196,.1); color: #1E44C4; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .01em; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.ai-platforms { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ai-platforms li {
  display: flex; align-items: center; gap: 12px;
  background: var(--off); border-radius: 14px;
  padding: 14px 16px; margin-bottom: 4px;
  font-weight: 700; color: var(--ink-dark); font-size: 14px;
}
.ai-chip {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(30,68,196,.1); color: #1E44C4;
  display: flex; align-items: center; justify-content: center;
}
.ai-chip svg { width: 17px; height: 17px; stroke: #1E44C4; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ai-pill {
  position: absolute; left: 24px; bottom: 0; transform: translateY(50%);
  background: var(--ink-dark); color: var(--white);
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; font-size: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  max-width: calc(100% - 48px);
}
.ai-pill b { color: var(--amber); }
.hww-wrapper { position: relative; }
.hww-row { position: relative; margin-bottom: 24px; }
.hww-row:last-child { margin-bottom: 0; }
.hww-connector { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hww-connector path { fill: none; stroke: #9A9FAE; stroke-width: 2; stroke-dasharray: 7 8; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.hww-bridge { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hww-bridge path { fill: none; stroke: #9A9FAE; stroke-width: 2; stroke-dasharray: 7 8; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.hww-list { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.hww-item { text-align: center; color: var(--ink-dark); position: relative; height: 341px; margin: 6px 0; width: 33.333%; max-width: calc(33.333% - 22px); }
.hww-item .hww-title { cursor: pointer; padding: 90px 0; transition: padding .4s ease 0s; }
.hww-item .hww-title > :not(figure) { position: relative; z-index: 1; }
.hww-item .hww-title .hww-icon-wrap { z-index: 1; display: block; position: relative; height: 73px; transition: font-size .4s ease 0s; }
.hww-item .hww-title .hww-icon-wrap svg { width: 100%; height: 100%; stroke: var(--ink-dark); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; display: block; margin: 0 auto; }
.hww-item .hww-title .hww-more { position: relative; display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 1; }
.hww-item .hww-title .hww-more .hww-text-link { font-size: 18px; font-weight: 600; line-height: 1; padding-right: 8px; opacity: 1; transform: scale(1,1); transition: opacity .4s ease 0s, transform .4s ease 0s; }
.hww-item .hww-title .hww-more .hww-plus-minus { width: 16px; height: 16px; position: relative; }
.hww-item .hww-title .hww-more .hww-plus-minus::before, .hww-item .hww-title .hww-more .hww-plus-minus::after {
  content: ""; background: var(--ink-dark); position: absolute; width: 16px; height: 3px; top: 50%; left: 50%;
  transform: translate(-50%, -50%); transition: .4s ease;
}
.hww-item .hww-title .hww-more .hww-plus-minus::after { transform: translate(-50%, -50%) rotate(90deg) scaleX(1); }
.hww-item .hww-title.active { padding: 40px 0 0; }
.hww-item .hww-title.active > figure { width: 269px; height: 260px; transform: translate(-50%, -50%) rotate(15deg); }
.hww-item .hww-title.active > .hww-icon-wrap { height: 36px; }
.hww-item .hww-title.active > h3::before {
  content: ""; height: 1px; width: 56px; position: absolute; bottom: -2px; left: 50%;
  transform: translateX(-50%); background: var(--ink-dark); opacity: 1; transition: opacity .4s ease 0s;
}
.hww-item .hww-title.active .hww-more { display: none; opacity: 0; transform: scale(0,0); }
.hww-item .hww-content {
  display: none; visibility: hidden; opacity: 0; position: relative; text-align: left;
  margin: 18px auto 0; width: 84%; font-size: 16px; line-height: 1.6; color: rgba(38,41,54,.78);
  padding-bottom: 34px;
  transition: opacity .4s ease .35s;
}
.hww-item .hww-content.visible { opacity: 1; }
.hww-item .hww-content.active { display: block; visibility: visible; }
.hww-cta { margin: 60px auto 0; text-align: center; }
@media (min-width: 1025px) {
  .hww-item.is-open {
    height: auto; min-height: 341px; z-index: 2;
    border-radius: 26px;
    transition: border-radius .3s ease 0s;
  }
  .hww-item.is-open.item-1 { background: #F6C79E; }
  .hww-item.is-open.item-2 { background: #F4D35E; }
  .hww-item.is-open.item-3 { background: #A9DEEB; }
  .hww-item.is-open.item-4 { background: #F2B4B4; }
  .hww-item.is-open.item-5 { background: #A9DFC4; }
  .hww-item.is-open.item-6 { background: #CBB6EA; }
}
@media (min-width: 1025px) { .hww-item .hww-title { padding: 90px 0; transition: padding .4s ease 0s; } }
@media (min-width: 1025px) { .hww-row-reverse .hww-list { flex-direction: row-reverse; } }
@media (max-width: 1024px) {
  .hww-boxes { text-align: left; }
  .hww-connector { display: none; }
  .hww-bridge { display: none; }
  .hww-row { margin-bottom: 0; }
  .hww-item { width: 100%; max-width: 100%; height: auto; text-align: left; border: 1px solid var(--line); margin: 10px 0; }
  .hww-item.item-1 { background: #F6C79E; }
  .hww-item.item-2 { background: #F4D35E; }
  .hww-item.item-3 { background: #A9DEEB; }
  .hww-item.item-4 { background: #F2B4B4; }
  .hww-item.item-5 { background: #A9DFC4; }
  .hww-item.item-6 { background: #CBB6EA; }
  .hww-item .hww-title { display: flex; align-items: center; padding: 18px; }
  .hww-item .hww-title > figure { display: none; }
  .hww-item .hww-title .hww-text-link { display: none; }
  .hww-item .hww-title .hww-icon-wrap { margin-right: 20px; height: 34px; flex: 0 0 auto; }
  .hww-item .hww-title h3 { font-size: 20px; margin: 0; flex: 1 1 auto; min-width: 0; text-align: center; }
  .hww-item .hww-title .hww-more { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex: 0 0 auto; margin-left: 12px; }
  .hww-item .hww-title.active { padding: 18px; }
  .hww-item .hww-title.active > .hww-icon-wrap { margin-right: 20px; height: 34px; }
  .hww-item .hww-title.active > h3 { font-size: 20px; text-align: center; }
  .hww-item .hww-title.active > h3::before { display: none; }
  .hww-item .hww-title.active .hww-more { display: flex; opacity: 1; transform: unset; }
  .hww-item .hww-title.active .hww-more .hww-text-link { display: none; }
  .hww-item .hww-title.active .hww-more .hww-plus-minus::after { transform: translate(-50%, -50%) rotate(90deg) scaleX(0); }
  .hww-item .hww-content { padding: 0 18px 18px; margin: 0; width: 100%; }
  .hww-cta { margin-top: 36px; }
}
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(38,41,54,.12); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }
.svc:hover .svc-icon { background: var(--amber); transform: scale(1.06); }
.svc-icon svg { width: 28px; height: 28px; stroke: var(--amber-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .22s ease; }
.svc:hover .svc-icon svg { stroke: var(--ink-dark); }
.svc .title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.svc h3 { font-size: 20px; text-transform: none; }
.svc p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.svc ul { list-style: none; margin-top: auto; }
.svc li { font-size: 15px; color: var(--body); padding: 4px 0 4px 20px; position: relative; }
.svc li::before { content: "→"; position: absolute; left: 0; color: var(--amber-deep); font-weight: 700; }
.band p { color: var(--muted-on-dark); max-width: 760px; margin: 0 auto 48px; }
.band p b { color: var(--amber); }
.statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 980px; margin: 0 auto 52px; }
@media (max-width: 820px) { .statgrid { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-size: clamp(40px, 5vw, 58px); font-weight: 700; color: var(--amber); }
.stat .lbl { font-size: 14px; letter-spacing: .01em; text-transform: none; color: var(--muted-on-dark); margin-top: 6px; }
.cs-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(38,41,54,.22); }
.cs-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.cs-card:hover .cs-media img { transform: scale(1.06); }
.cs-badge {
  position: absolute; left: 50%; bottom: 0;
  transform: translate(-50%, 50%);
  width: 98px; height: 98px; border-radius: 50%;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(20,22,30,.25);
  z-index: 2;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cs-badge .n { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; font-size: 24px; color: var(--amber-deep); line-height: 1; }
.cs-badge .t { font-size: 9px; letter-spacing: .01em; text-transform: none; color: var(--muted); margin-top: 3px; }
.cs-body { padding: 70px 26px 36px; text-align: center; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.cs-body .btn { align-self: center; padding: 13px 30px; font-size: 14px; }
.see-all { text-align: center; margin-top: 34px; }
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.founder .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
  font-weight: 700; font-size: 20px; color: var(--ink-dark);
  padding: 18px 40px 18px 0;
  cursor: pointer; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 14px;
  font-size: 28px; color: var(--amber-deep); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--ink-dark); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.post:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(38,41,54,.12); }
.post .thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--off); }
.post .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post:hover .thumb img { transform: scale(1.05); }
.post .pbody { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post .meta { display: flex; gap: 12px; align-items: center; font-size: 13px; }
.post .cat { background: var(--amber); color: var(--ink-dark); font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; letter-spacing: .01em; text-transform: none; font-size: 12px; padding: 3px 10px; }
.post .date { color: var(--muted); }
.post h3 { font-size: 20px; line-height: 1.3; }
.post h3 a { color: var(--ink-dark); transition: color .18s ease; }
.post h3 a:hover { color: var(--amber-deep); }
.post .ex { font-size: 15px; color: var(--muted); flex: 1; }
.post .more {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700;
  letter-spacing: .01em; text-transform: none; font-size: 14px;
  color: var(--ink-dark);
  border-bottom: 2px solid var(--amber);
  align-self: flex-start; padding-bottom: 2px;
  transition: color .18s ease;
}
.post .more:hover { color: var(--amber-deep); }
@media (max-width: 900px) { .final-card { grid-template-columns: 1fr; padding: 44px 26px; gap: 36px; } }
.f-checklist { list-style: none; padding: 0; margin: 0 0 34px; display: flex; flex-direction: column; gap: 14px; }
.f-checklist .check svg { width: 14px; height: 14px; stroke: #1AA35A; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.f-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.final-media { position: relative; }
.f-photo-badge {
  position: absolute; right: 18px; bottom: 18px;
  background: var(--white); color: var(--ink-dark);
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border-radius: 999px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-weight: 700; font-size: 14px;
  box-shadow: 0 14px 32px rgba(38,41,54,.28);
}
.f-photo-badge svg { width: 18px; height: 18px; stroke: var(--amber-deep); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 480px) { .final-card { padding: 36px 20px; border-radius: 24px; } .f-actions { flex-direction: column; align-items: stretch; } .f-actions a { justify-content: center; } }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 60px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
footer h3 { color: var(--white); font-size: 15px; letter-spacing: .01em; text-transform: none; margin-bottom: 20px; }
footer a { color: var(--muted-on-dark); display: block; padding: 4px 0; transition: color .18s ease, padding-left .18s ease; }
footer a:hover { color: var(--amber); padding-left: 4px; }
.foot-logo { height: 34px; width: auto; margin-bottom: 14px; }
.foot-tag { margin-bottom: 20px; max-width: 300px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-3px); padding: 0; }
.foot-news p { margin-bottom: 18px; }
.foot-capture input::placeholder { color: #7A8090; }
.foot-capture button:hover { background: var(--amber-deep); }
.badges { border-top: 1px solid var(--line-on-dark); padding: 46px 0; }
.badges h3 { text-align: center; margin-bottom: 30px; }
.badges h4 { text-align: center; color: var(--muted-on-dark); font-weight: 400; letter-spacing: .01em; font-size: 13px; margin-bottom: 30px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 36px; justify-content: center; align-items: center; }
.badge-row img:hover { transform: translateY(-4px); }
@media (max-width: 560px) { .badge-row { gap: 24px; } .badge-row img { height: 72px; } }
.foot-bottom .cheeky { margin-top: 6px; }
.foot-bottom a { display: inline; color: #7A8090; }
.foot-bottom a:hover { color: var(--amber); padding-left: 0; }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
