:root {
  --black: #05070c;
  --navy: #001028;
  --navy-2: #001a3d;
  --blue: #003880;
  --blue-bright: #2a7ac4;
  --lime: #4db52a;
  --lime-2: #6ad13c;
  --ink: #0c1828;
  --muted: #5a6a7c;
  --white: #ffffff;
  --paper: #f3f6f2;
  --line: rgba(0, 56, 128, 0.12);
  --glow: rgba(77, 181, 42, 0.22);
  --font: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --display: "Bricolage Grotesk", "Figtree", sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

html, body {
  min-height: 100%;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
img { max-width: 100%; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  background: var(--lime);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.skip:focus { top: 12px; }

.page {
  position: relative;
  overflow-x: hidden;
  background: var(--white);
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.darkveil-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes aurora-drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-12%, 18%, 0) scale(1.18); }
}

@keyframes aurora-drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.05); }
  to { transform: translate3d(14%, 10%, 0) scale(0.92); }
}

.page > *:not(.aurora) {
  position: relative;
  z-index: 1;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 56, 128, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 56, 128, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 62%);
  pointer-events: none;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 56, 128, 0.05);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s var(--ease);
}

.nav-wrap.scrolled {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
  box-shadow: none;
  border-bottom-color: rgba(0, 56, 128, 0.08);
}

.nav {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  transition: padding 0.35s var(--ease);
}

.nav-wrap.scrolled .nav { padding-top: 10px; padding-bottom: 10px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }

.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  margin-left: auto;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(12, 24, 40, 0.68);
}

.nav-links a {
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: grid;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  place-content: center;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav .btn { margin-left: 8px; }
}

@media (max-width: 959px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    padding: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav .btn { order: 3; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover { transform: translateY(-1px); }

.btn-solid {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(77, 181, 42, 0.25);
}

.btn-solid:hover { background: var(--lime-2); }

.btn-solid.dark {
  background: var(--blue);
  color: var(--white);
  box-shadow: none;
}

.btn-solid.dark:hover { background: #004a9e; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn-wa {
  background: #25d366;
  color: #08351a;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.btn-wa:hover { background: #1ebe5a; }

.hero {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 28px 80px;
  display: grid;
  gap: 40px;
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-top: 48px;
  }
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.eyebrow.dark { color: var(--blue); }

.hero h1,
.split-copy h2,
.section-head h2,
.mosaic-copy h2,
.cta-band h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 11ch;
  color: var(--ink);
}

.hero h1 em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--lime);
  letter-spacing: -0.03em;
}

.lead {
  margin-top: 20px;
  max-width: 34rem;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.channel-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-stats dd {
  margin-top: 2px;
  font-size: 13px;
  color: var(--muted);
}

.hero-visual { position: relative; }

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  border: 2px solid var(--lime);
  border-radius: 28px;
  z-index: 0;
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  filter: saturate(0.94);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.hero-visual:hover > img {
  transform: scale(1.02);
  filter: saturate(1);
}

.hero-caption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(0, 56, 128, 0.06);
  border-bottom: 1px solid rgba(0, 56, 128, 0.06);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 42s linear infinite;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.ticker-track span { white-space: nowrap; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.split {
  display: grid;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 96px max(28px, calc(50vw - 590px));
  align-items: center;
  content-visibility: auto;
  contain-intrinsic-size: 640px;
}

.split.light,
.coops,
.products,
.featured,
.rates,
.faq,
.pillars,
.journey {
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(18px);
  color: var(--ink);
}

.split.invert {
  background: rgba(243, 246, 242, 0.28);
  backdrop-filter: blur(16px);
  color: var(--ink);
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.split-copy h2,
.section-head h2,
.mosaic-copy h2 {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 14ch;
  margin-bottom: 16px;
}

.split-copy h2::after,
.section-head h2::after,
.mosaic-copy h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 14px;
  background: var(--blue);
}

.split-copy p { color: var(--muted); line-height: 1.7; font-size: 16px; }

.checks, .steps {
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.checks { list-style: none; }
.checks li { padding-left: 18px; position: relative; }
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.split-media { overflow: hidden; border-radius: var(--radius); }
.split-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.split-media:hover img { transform: scale(1.04); }

.split-media figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.pillars {
  display: grid;
  gap: 16px;
  padding: 8px max(28px, calc(50vw - 590px)) 72px;
}

@media (min-width: 800px) {
  .pillars { grid-template-columns: 1fr 1fr 1fr; }
}

.pillars article,
.journey-grid li,
.cards article {
  padding: 26px 24px;
  border: 1px solid rgba(0, 56, 128, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.pillars article:hover,
.cards article:hover,
.journey-grid li:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 181, 42, 0.45);
  box-shadow: 0 18px 40px rgba(0, 16, 40, 0.08);
}

.ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 56, 128, 0.08);
  color: var(--blue);
  margin-bottom: 18px;
}

.pillars h3,
.cards h3,
.journey-grid h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pillars p,
.cards p,
.journey-grid p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.stats-band {
  background: rgba(243, 246, 242, 0.22);
  backdrop-filter: blur(14px);
  padding: 28px max(28px, calc(50vw - 590px)) 88px;
}

.stats-inner { display: grid; gap: 18px; }

@media (min-width: 860px) {
  .stats-inner { grid-template-columns: 1fr 1fr 1fr; }
}

.stats-inner article {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.stats-inner article:hover {
  transform: translateY(-6px);
  background: rgba(77, 181, 42, 0.08);
  border-color: rgba(77, 181, 42, 0.4);
}

.stats-inner strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  color: var(--lime);
}

.stats-inner span {
  color: var(--muted);
}

.products,
.featured,
.rates,
.faq,
.journey {
  padding: 88px max(28px, calc(50vw - 590px));
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.coops { padding: 40px max(28px, calc(50vw - 590px)) 96px; }

.section-head { max-width: 1180px; }

.section-lead {
  margin-top: 10px;
  color: var(--muted);
  max-width: 36rem;
}

.dash-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  max-width: 420px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(0, 56, 128, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--muted);
}

.dash-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--ink);
}

.cards {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

@media (min-width: 860px) {
  .cards { grid-template-columns: 1fr 1fr 1fr; }
}

.cards article { min-height: 240px; position: relative; }

.idx {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lime);
  margin-bottom: 12px;
}

.empty-hint {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 900px) {
  .feature-grid { grid-template-columns: 1.15fr 0.85fr; }
  .feature-card:first-child { grid-row: span 2; }
  .feature-card:first-child img { height: 100%; min-height: 420px; }
}

.feature-card {
  background: rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 56, 128, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 16, 40, 0.1);
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.feature-card:hover img { transform: scale(1.04); }
.feature-card > div { padding: 22px 22px 26px; }

.feature-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.feature-card h3 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.feature-card p:last-child {
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.chip {
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 56, 128, 0.08);
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.chip:hover { border-color: var(--blue); }
.chip.on {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.coop-grid {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 800px) {
  .coop-grid { grid-template-columns: repeat(4, 1fr); }
}

.coop-grid article {
  padding: 22px 18px;
  border: 1px solid rgba(0, 56, 128, 0.08);
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.36);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.coop-grid article small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.coop-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--lime);
}

.mosaic-wrap {
  display: grid;
  gap: 48px;
  padding: 96px max(28px, calc(50vw - 590px));
  background: rgba(243, 246, 242, 0.26);
  backdrop-filter: blur(16px);
  align-items: center;
}

@media (min-width: 960px) {
  .mosaic-wrap { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 460px;
}

.mosaic figure { overflow: hidden; border-radius: 18px; margin: 0; }
.mosaic .m-lg { grid-row: span 2; }

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: saturate(0.92);
}

.mosaic figure:hover img {
  transform: scale(1.05);
  filter: saturate(1);
}

.mosaic-copy p {
  color: var(--muted);
}

.mini-stats {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.mini-stats dt {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.mini-stats dd {
  color: var(--muted);
}

.journey { text-align: left; }

.journey-grid {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 28px 0 28px;
}

@media (min-width: 800px) {
  .journey-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.step-n {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.soft { margin-top: 16px; font-size: 14px; color: var(--muted); }

.rate-table {
  margin-top: 28px;
  border: 1px solid rgba(0, 56, 128, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.rate-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 16px 22px;
  font-size: 15px;
  border-top: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}

.rate-row:first-child { border-top: 0; }
.rate-row.head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.35);
}

.rate-row:not(.head):hover { background: rgba(255, 255, 255, 0.45); }

@media (max-width: 640px) {
  .rate-row { grid-template-columns: 1fr; gap: 4px; }
}

.quote-band {
  display: grid;
  background: rgba(243, 246, 242, 0.3);
  backdrop-filter: blur(14px);
}

@media (min-width: 900px) {
  .quote-band { grid-template-columns: 1.1fr 0.9fr; min-height: 420px; }
}

.quote-media { margin: 0; overflow: hidden; }
.quote-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
}

.quote-band blockquote {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-band p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 16ch;
}

.quote-band cite {
  margin-top: 22px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(0, 56, 128, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.34);
  padding: 4px 20px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(77, 181, 42, 0.35);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  color: var(--lime);
  font-weight: 500;
  transition: transform 0.3s var(--ease);
}

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list details p {
  padding: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 46rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  margin: 0 28px 48px;
  padding: 80px 40px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
  color: var(--ink);
  isolation: isolate;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  z-index: -1;
  pointer-events: none;
}

.cta-band::before {
  width: 320px;
  height: 220px;
  left: -40px;
  top: -60px;
  background: rgba(0, 56, 128, 0.28);
  animation: aurora-drift-b 14s var(--ease) infinite alternate;
}

.cta-band::after {
  width: 360px;
  height: 240px;
  right: -50px;
  bottom: -80px;
  background: rgba(77, 181, 42, 0.32);
  animation: aurora-drift-a 16s var(--ease) infinite alternate;
}

.cta-band h2 { max-width: none; margin: 0 auto 10px; }
.cta-band h2::after { margin-left: auto; margin-right: auto; background: var(--lime); }
.cta-band p { color: var(--muted); margin-bottom: 22px; }

.foot-wide {
  display: grid;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 28px 120px;
  font-size: 14px;
  color: var(--muted);
}

@media (min-width: 800px) {
  .foot-wide { grid-template-columns: 1.4fr 0.7fr 0.7fr 0.8fr; }
}

.foot-brand img { height: 72px; width: auto; display: block; }
.foot-wide p { margin-top: 12px; max-width: 28rem; line-height: 1.55; }
.foot-wide strong {
  display: block;
  color: var(--blue);
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.foot-wide a,
.foot-wide .linkish,
.foot-wide span {
  display: block;
  margin-top: 8px;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  transition: color 0.25s var(--ease);
}

.foot-wide a:hover,
.foot-wide .linkish:hover { color: var(--lime-2); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track, .launcher { animation: none; }
  html { scroll-behavior: auto; }
}

.avatar-c {
  width: 32px;
  height: 32px;
  object-fit: cover;
  background: #fff;
  border-radius: 50%;
}

.widget-root {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.widget {
  position: absolute;
  left: 0;
  bottom: 86px;
  width: min(430px, calc(100vw - 28px));
  background: var(--white);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: min(620px, calc(100vh - 108px));
  max-height: min(620px, calc(100vh - 108px));
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom left;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease);
  box-shadow:
    0 0 0 1px rgba(0, 16, 40, 0.06),
    0 24px 60px rgba(0, 16, 40, 0.28);
}

.widget.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.widget-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 14px;
  background: var(--blue);
  color: var(--white);
}

.widget-head .avatar-c { width: 34px; height: 34px; background: #fff; box-shadow: 0 0 0 2px #fff; }
.widget-head .titles { flex: 1; }
.widget-head strong { display: block; font-size: 14px; font-weight: 700; }
.widget-head small { color: var(--lime-2); font-size: 11px; }
.widget-actions { display: flex; gap: 6px; }

.widget-head button {
  width: 32px;
  height: 32px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease);
}

.widget-head button:hover { background: rgba(255, 255, 255, 0.16); }

.widget-thread {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 16px 14px;
  background: #eef3f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget-thread .row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 92%;
}

.widget-thread .row img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.widget-thread .bubble {
  padding: 9px 11px 7px;
  font-size: 13.5px;
  line-height: 1.45;
  white-space: pre-wrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px 14px 14px 14px;
}

.widget-thread .bubble.user {
  align-self: flex-end;
  background: var(--blue);
  color: var(--white);
  border: 0;
  border-radius: 14px 14px 4px 14px;
  max-width: 86%;
}

.widget-thread .who {
  font-size: 11px;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 3px;
}

.widget-thread .time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #8b97a8;
  margin-top: 5px;
}

.widget-thread .bubble.user .time { color: rgba(255, 255, 255, 0.55); }

.widget-thread .bubble.system {
  align-self: center;
  font-size: 11px;
  color: var(--muted);
  background: transparent;
  border: 0;
  max-width: none;
}

.widget-thread .bubble.typing {
  display: flex;
  gap: 5px;
  width: fit-content;
  padding: 12px 14px;
}

.widget-thread .bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b97a8;
  animation: blink 1.2s infinite;
}

.widget-thread .bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.widget-thread .bubble.typing span:nth-child(3) { animation-delay: 0.3s; }

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 8px 36px;
}

.choice-btn {
  border: 1px solid var(--blue);
  background: var(--white);
  color: var(--blue);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  text-align: left;
}

.choice-btn:hover:not(:disabled) {
  background: var(--blue);
  color: var(--white);
}

.choice-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

a.choice-link {
  text-decoration: none;
  display: inline-block;
}

.choice-btn.choice-form {
  background: #008069;
  border-color: #008069;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 128, 105, 0.28);
}

.choice-btn.choice-form:hover:not(:disabled) {
  background: #006c58;
  border-color: #006c58;
}

/* WhatsApp iOS Flow modal (web-only employment form) */
.wa-flow-overlay {
  --wa-green: #008069;
  --wa-green-hover: #006c58;
  --wa-bg: #f0f2f5;
  --wa-ink: #111b21;
  --wa-muted: #667781;
  --wa-line: rgba(17, 27, 33, 0.08);
  --wa-ios: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;

  position: absolute;
  inset: 0;
  z-index: 24;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  background: rgba(17, 27, 33, 0.42);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s ease, visibility 0.26s ease;
  font-family: var(--wa-ios);
}

.wa-flow-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wa-flow-overlay[hidden] {
  display: flex !important;
}

.wa-flow-modal {
  width: min(100%, 332px);
  max-height: min(86%, 500px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.12),
    0 20px 50px rgba(11, 20, 26, 0.32),
    0 4px 14px rgba(11, 20, 26, 0.12);
  transform: scale(0.9) translateY(16px);
  opacity: 0;
  transition:
    transform 0.34s cubic-bezier(0.22, 1.12, 0.36, 1),
    opacity 0.28s ease;
}

.wa-flow-overlay.is-open .wa-flow-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.wa-flow-nav {
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 4px;
  padding: 10px 8px 8px;
  background: #fff;
  border-bottom: 0.5px solid var(--wa-line);
}

.wa-flow-nav-center {
  text-align: center;
  min-width: 0;
}

.wa-flow-nav-center strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--wa-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-flow-nav-center span {
  display: block;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 500;
  color: var(--wa-muted);
  letter-spacing: 0.02em;
}

.wa-flow-nav-btn {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--wa-green);
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  justify-self: start;
}

.wa-flow-nav-close {
  justify-self: end;
  color: var(--wa-muted);
  font-size: 17px;
  line-height: 1;
  padding: 6px 10px;
}

.wa-flow-nav-btn:active {
  background: rgba(0, 128, 105, 0.08);
}

.wa-flow-progress {
  display: flex;
  gap: 5px;
  padding: 0 16px 10px;
  background: #fff;
}

.wa-flow-progress-seg {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: #e9edef;
  transition: background 0.25s ease, transform 0.25s ease;
}

.wa-flow-progress-seg.is-active {
  background: var(--wa-green);
}

.wa-flow-progress-seg.is-done {
  background: #25d366;
}

.wa-flow-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 0 8px;
  background: var(--wa-bg);
  -webkit-overflow-scrolling: touch;
}

.wa-flow-scroll fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.wa-flow-lead {
  margin: 12px 16px 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--wa-muted);
}

.wa-flow-section {
  margin: 14px 16px 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wa-muted);
}

.wa-flow-group {
  margin: 0 12px 8px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 0.5px var(--wa-line);
}

.wa-flow-cell {
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-top: 0.5px solid var(--wa-line);
}

.wa-flow-cell:first-child {
  border-top: 0;
}

.wa-flow-cell label,
.wa-flow-cell-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--wa-ink);
  line-height: 1.3;
}

.wa-flow-cell input,
.wa-flow-cell select {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--wa-ink);
  text-align: right;
  padding: 0;
  min-width: 0;
}

.wa-flow-cell input::placeholder {
  color: #aebac1;
}

.wa-flow-cell input:focus,
.wa-flow-cell select:focus {
  outline: none;
}

.wa-flow-cell-select select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23667781' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
  cursor: pointer;
}

.wa-flow-cell-stack {
  grid-template-columns: 1fr;
  gap: 8px;
}

.wa-segment {
  display: flex;
  padding: 3px;
  background: #f0f2f5;
  border-radius: 10px;
  gap: 2px;
}

.wa-segment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wa-segment label {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--wa-muted);
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.wa-segment input:checked + label {
  background: #fff;
  color: var(--wa-ink);
  box-shadow: 0 1px 4px rgba(11, 20, 26, 0.12);
}

.wa-segment input:focus-visible + label {
  outline: 2px solid rgba(0, 128, 105, 0.45);
  outline-offset: 1px;
}

.wa-flow-block[hidden] {
  display: none !important;
}

.wa-flow-footer {
  padding: 10px 14px 14px;
  background: #fff;
  border-top: 0.5px solid var(--wa-line);
}

.wa-flow-toast {
  margin: 0 0 8px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  color: #b91c1c;
  background: #fef2f2;
  border-radius: 10px;
  text-align: center;
}

.wa-flow-toast[hidden] {
  display: none !important;
}

.wa-flow-cta {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--wa-green);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 128, 105, 0.35);
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

.wa-flow-cta:hover:not(:disabled) {
  background: var(--wa-green-hover);
}

.wa-flow-cta:active:not(:disabled) {
  transform: scale(0.98);
}

.wa-flow-cta:disabled {
  opacity: 0.55;
  cursor: default;
  box-shadow: none;
}

@media (max-width: 380px) {
  .wa-flow-cell {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .wa-flow-cell input,
  .wa-flow-cell select {
    text-align: left;
  }
}

.thread .choice-row { margin-left: 0; }

@keyframes blink {
  0%, 80%, 100% { opacity: 0.25; }
  40% { opacity: 1; }
}

.widget-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border-top: 1px solid var(--line);
  align-items: center;
}

.widget-form input {
  flex: 1;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  color: var(--ink);
  background: var(--paper);
}

.widget-form input:focus {
  border-color: var(--lime);
  background: var(--white);
}

.widget-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.widget-form button:hover { background: var(--navy); transform: scale(1.04); }
.widget-form button:disabled { opacity: 0.45; }

.launcher {
  position: relative;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  overflow: visible;
  padding: 0;
  box-shadow:
    0 0 0 1px rgba(0, 16, 40, 0.06),
    0 10px 28px rgba(0, 16, 40, 0.28);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  animation: launcher-pulse 2.8s ease-out infinite;
}

.launcher:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 0 1px rgba(0, 16, 40, 0.08),
    0 14px 36px rgba(0, 16, 40, 0.38);
}

@keyframes launcher-pulse {
  0% { box-shadow: 0 0 0 1px rgba(0, 16, 40, 0.06), 0 10px 28px rgba(0, 16, 40, 0.28), 0 0 0 0 rgba(77, 181, 42, 0.35); }
  70% { box-shadow: 0 0 0 1px rgba(0, 16, 40, 0.06), 0 10px 28px rgba(0, 16, 40, 0.28), 0 0 0 16px rgba(77, 181, 42, 0); }
  100% { box-shadow: 0 0 0 1px rgba(0, 16, 40, 0.06), 0 10px 28px rgba(0, 16, 40, 0.28), 0 0 0 0 rgba(77, 181, 42, 0); }
}

.launcher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #fff;
  border-radius: 50%;
}

.fab-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.fab-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(6px);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 8px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.launcher:hover .fab-label,
.wa-fab:hover .fab-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wa-fab {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.wa-fab svg { width: 32px; height: 32px; display: block; }

.wa-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.48);
}

.close-fab {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  display: none;
  transition: transform 0.2s var(--ease);
}

.close-fab:hover { transform: scale(1.06); }

.widget-root.open .close-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.widget-root.open .launcher { display: none; }
