:root {
  --navy: #003054;
  --navy-deep: #001828;
  --navy-mid: #0a4570;
  --teal: #00bcdc;
  --teal-bright: #3dd8f0;
  --teal-mist: #c8f4fc;
  --teal-soft: #e6f9fd;
  --ice: #f2f7fb;
  --sand: #eef3f8;
  --ink: #0a1a28;
  --muted: #5a7084;
  --line: #d0dde8;
  --white: #ffffff;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --wrap: 92rem;
  --radius: 1.5rem;
  --shadow: 0 24px 60px -36px rgba(7, 24, 41, 0.35);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; min-height: 100%; }
html { scroll-behavior: smooth; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 0% -10%, rgba(0, 188, 220, 0.1), transparent 55%),
    linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: #b8edf6; color: var(--navy-deep); }

.wrap, .util-inner, .nav-inner {
  width: 100%;
  max-width: 92rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) {
  .wrap, .util-inner, .nav-inner { padding-inline: 2rem; }
}
@media (min-width: 1024px) {
  .wrap, .util-inner, .nav-inner { padding-inline: 3rem; }
}

.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section-tight { padding: 5rem 0; }
@media (min-width: 1024px) { .section-tight { padding: 6rem 0; } }
.section-xl { padding: 6rem 0; }
@media (min-width: 1024px) { .section-xl { padding: 8rem 0; } }
.section-sm { padding: 5rem 0; }
@media (min-width: 1024px) { .section-sm { padding: 6rem 0; } }
.section-navy {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.section-white { background: var(--white); }
.section-ice { background: var(--ice); }
.section-premium {
  background:
    radial-gradient(ellipse 90% 60% at 0% -10%, rgba(0, 188, 220, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(0, 48, 84, 0.06), transparent 50%),
    linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
}
.section-atmosphere {
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(0, 188, 220, 0.08), transparent 50%),
    #f5f8fb;
}
.section-dark {
  background:
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(61, 216, 240, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0, 188, 220, 0.1), transparent 45%),
    linear-gradient(145deg, #001828 0%, #003054 50%, #0a4570 100%);
  color: var(--white);
}
.mesh-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
@keyframes aurora {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .45; }
  50% { transform: translate(4%,-3%) scale(1.08); opacity: .7; }
}
.aurora { animation: aurora 12s ease-in-out infinite; }
.hide-scrollbar { scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.has-custom-cursor, .has-custom-cursor a, .has-custom-cursor button { cursor: none !important; }
.has-custom-cursor input,
.has-custom-cursor textarea,
.has-custom-cursor select,
.has-custom-cursor [contenteditable] { cursor: text !important; }
@media (pointer: coarse) {
  .has-custom-cursor, .has-custom-cursor * { cursor: auto !important; }
}
.cursor-dot {
  position: fixed; left: 0; top: 0; z-index: 100; pointer-events: none;
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.8); background: rgba(255,255,255,.2);
  transform: translate(-50%, -50%); mix-blend-mode: difference;
  transition: width .2s, height .2s; display: none;
}
.cursor-dot.is-grow { width: 48px; height: 48px; }
@media (pointer: fine) and (min-width: 1024px) { .cursor-dot { display: block; } }
.reveal { opacity: 0; transform: translateY(18px); transition: .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow.light { color: var(--teal-bright); }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.025em; color: var(--navy); font-weight: 700; }
h2 { margin: 0; font-size: 1.875rem; line-height: 1.15; }
@media (min-width: 640px) { h2 { font-size: 2.25rem; } }
h3 { margin: 0; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark .section-title,
.section-navy h1, .section-navy h2, .section-navy h3,
.section-navy .section-title { color: var(--white); }
.section-dark .lead, .section-navy .lead { color: rgba(255,255,255,.65); }
.lead { margin: 1.25rem 0 0; max-width: 40rem; font-size: 1.125rem; line-height: 1.625; color: var(--muted); }
.muted { color: var(--muted); line-height: 1.625; font-size: 1rem; }
.closing { margin-top: 1.5rem; font-size: 1rem; font-weight: 500; color: var(--navy); }
.related-head { font-size: 1.5rem !important; font-weight: 700; }
.step-num { margin: 0; font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: rgba(0,188,220,.3); letter-spacing: -0.03em; }
.hidden { display: none !important; }

.ico { width: 1rem; height: 1rem; flex-shrink: 0; display: inline-block; vertical-align: -0.15em; }
.ico-14 { width: 0.875rem; height: 0.875rem; }
.ico-6 { width: 1.5rem; height: 1.5rem; }
.ico-lg { width: 1.4rem; height: 1.4rem; }
.ico-xl { width: 1.75rem; height: 1.75rem; }
.ico-teal { color: var(--teal); }
.ico-bright { color: var(--teal-bright); }
.ico-chev { opacity: 0.7; }
.muted a, .center a, .legal a { color: var(--teal); font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.875rem 1.5rem;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  will-change: transform;
  transition: color .3s, background .3s, border-color .3s, box-shadow .3s, transform .18s cubic-bezier(.22,1,.36,1);
}
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 14px 34px -14px rgba(0, 188, 220, 0.85); }
.btn-primary:hover { background: var(--teal-bright); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 14px 34px -16px rgba(0, 24, 40, 0.55); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost { background: var(--white); color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: rgba(0, 188, 220, 0.5); color: var(--teal); }
.btn-light { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.25); backdrop-filter: blur(12px); }
.btn-light:hover { background: rgba(255,255,255,.18); }
.btn-dark { background: var(--navy-deep); color: var(--white); }
.btn-dark:hover { background: var(--navy); }
.btn-full { width: 100%; }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 13px; border-radius: 0.65rem; }

.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 70;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright), var(--teal-mist));
}

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; }
.util-bar {
  display: none;
  overflow: hidden;
  max-height: 2.75rem;
  opacity: 1;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(0, 24, 40, 0.4);
  color: var(--white);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition:
    max-height .55s cubic-bezier(.22, 1, .36, 1),
    opacity .4s ease,
    transform .55s cubic-bezier(.22, 1, .36, 1),
    border-color .45s ease,
    background-color .45s ease;
}
.site-header.is-solid .util-bar {
  background: var(--navy);
  border-bottom-color: rgba(208, 221, 232, 0.8);
}
.site-header.is-compact .util-bar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  border-bottom-color: transparent;
  pointer-events: none;
}
@media (min-width: 768px) { .util-bar { display: block; } }
.util-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 12px;
  transition: padding .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}
.site-header.is-compact .util-inner {
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.util-links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem 1.25rem; }
.util-links a {
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  transition: color .2s;
}
.util-links a:hover { color: var(--teal-bright); }
.util-note { display: none; margin: 0; color: rgba(255,255,255,.6); }
@media (min-width: 1024px) { .util-note { display: block; } }

.nav-bar {
  transition: background-color .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.site-header.is-solid .nav-bar {
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(208, 221, 232, 0.8);
  box-shadow: 0 10px 40px -28px rgba(6,16,28,.35);
  backdrop-filter: blur(24px);
}
.nav-inner {
  height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.brand-mark {
  position: relative;
  display: block;
  width: 2.95rem;
  height: 2.75rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .brand-mark { width: 3.2rem; height: 3rem; }
}
.brand-mark img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: left;
  opacity: 1;
  transition: opacity .35s ease;
}
.brand-mark img.is-off {
  opacity: 0;
  pointer-events: none;
}
.brand-text { display: flex; align-items: baseline; gap: 0.25rem; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  transition: color .4s ease;
}
@media (min-width: 640px) { .brand-name { font-size: 1.2rem; } }
.brand-llc {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  transition: color .4s ease;
  transform: translateY(-0.45em);
}
.site-header .brand { gap: 0; }
.site-header .brand-mark { width: 3.4rem; height: 3.25rem; }
@media (min-width: 640px) {
  .site-header .brand-mark { width: 3.7rem; height: 3.5rem; }
}
.site-header .brand-text { gap: 0.3rem; margin-left: -0.35rem; }
.site-header .brand-name { font-size: 1.4rem; }
@media (min-width: 640px) { .site-header .brand-name { font-size: 1.55rem; } }
.site-header .brand-llc { font-size: 10px; }
.site-header.is-solid .brand-name { color: var(--navy); }
.site-header.is-solid .brand-llc { color: var(--teal); }

.nav-links { display: none; align-items: center; gap: 0.125rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: background-color .2s, color .2s;
}
.nav-item:hover { background: rgba(255,255,255,.1); color: var(--white); }
.nav-item.is-on { background: rgba(255,255,255,.15); color: var(--white); }
.site-header.is-solid .nav-item { color: rgba(10,26,40,.75); }
.site-header.is-solid .nav-item:hover,
.site-header.is-solid .nav-item.is-on { background: var(--sand); color: var(--navy); }

.nav-drop { position: relative; }
.nav-mega {
  position: absolute; left: 50%; top: 100%;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  opacity: 0; visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 50;
}
.nav-drop:hover .nav-mega { opacity: 1; visibility: visible; }
.nav-mega-card {
  width: 34rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 24px 60px -28px rgba(6, 16, 28, 0.4);
}
.nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }
.nav-mega-grid a {
  display: block;
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
  color: var(--navy);
}
.nav-mega-grid a:hover { background: var(--teal-soft); }
.nav-mega-grid strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.nav-mega-grid span { display: block; margin-top: 0.125rem; font-size: 0.75rem; color: var(--muted); font-weight: 400; }
.nav-mega-foot { margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px solid var(--line); }
.nav-mega-foot a {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.875rem;
}
.nav-mega-foot a:hover { background: var(--ice); }

.nav-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }
.nav-call {
  color: rgba(255,255,255,.9);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: background-color .2s, color .2s;
}
.nav-call:hover { background: rgba(255,255,255,.1); }
.site-header.is-solid .nav-call { color: var(--navy); }
.site-header.is-solid .nav-call:hover { background: var(--sand); }
.site-header:not(.is-solid) .nav-cta .btn-primary {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.site-header:not(.is-solid) .nav-cta .btn-primary:hover { background: rgba(255,255,255,.18); }
.menu-toggle {
  background: none; border: 0; color: var(--white);
  padding: 0.625rem; border-radius: 0.5rem; cursor: pointer; line-height: 0;
}
.site-header.is-solid .menu-toggle { color: var(--navy); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--line); overflow: hidden; }
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu-inner { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-card {
  border: 1px solid var(--line);
  background: var(--ice);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.mobile-card a { display: flex; align-items: center; gap: 0.5rem; color: var(--navy); font-weight: 500; }
.mobile-menu a.m-link, .mobile-menu button.m-link {
  background: none; border: 0; text-align: left; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem; border-radius: 0.5rem; font-weight: 500; color: var(--navy); cursor: pointer;
}
.mobile-menu button.m-link .ico { transition: transform .2s; }
.mobile-menu button.m-link.is-open .ico { transform: rotate(180deg); }
.mobile-sub { margin: 0 0 0.5rem 0.5rem; padding-left: 0.75rem; border-left: 1px solid var(--line); display: none; }
.mobile-sub.open { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-sub a { display: block; padding: 0.5rem 0.75rem; color: var(--muted); font-size: 0.875rem; }
.mobile-sub a.m-all { font-weight: 500; color: var(--teal); }
.mobile-quote { margin-top: 0.5rem; }

.hero { position: relative; isolation: isolate; min-height: 100svh; overflow: hidden; background: var(--navy-deep); color: var(--white); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: 78% 18%;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(0,24,40,.96) 0%, rgba(0,24,40,.78) 42%, rgba(0,24,40,.28) 68%, rgba(0,24,40,.55) 100%),
    linear-gradient(to top, #001828, transparent, rgba(0,24,40,.4));
}
.hero-bg::before {
  content: "";
  position: absolute; right: 0; bottom: 0; width: 55%; height: 55%;
  background: radial-gradient(circle at center, rgba(0,188,220,.22), transparent 60%);
  pointer-events: none; z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 9rem;
}
@media (min-width: 768px) { .hero-copy { padding-top: 10rem; } }
.hero-kicker { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.045em; margin: 0; color: var(--white); line-height: 1.05; }
.hero-kicker small { margin-left: 0.5rem; font-size: 0.35em; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal-bright); vertical-align: middle; }
.hero h1 {
  margin: 1rem 0 0;
  max-width: 16ch;
  font-size: clamp(2.35rem, 6.5vw, 4.75rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--white);
}
.hero-word { display: inline-flex; min-width: 7.5ch; overflow: hidden; color: var(--teal-bright); vertical-align: middle; }
.hero-word em { display: inline-block; font-style: normal; font-weight: 800; color: inherit; animation: word-in .4s cubic-bezier(.22,1,.36,1); }
@keyframes word-in { from { transform: translateY(120%); opacity: 0; } to { transform: none; opacity: 1; } }
.hero-lead { margin: 1.5rem 0 0; max-width: 32rem; font-size: 1.125rem; line-height: 1.625; color: rgba(255,255,255,.72); }
@media (min-width: 640px) { .hero-lead { font-size: 1.25rem; } }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.stats {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) { .stats { padding-inline: 2rem; } }
@media (min-width: 1024px) { .stats { padding-inline: 3rem; } }
.stats-shell { max-width: 92rem; margin-inline: auto; }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border: 1px solid var(--line); border-radius: 1rem;
  box-shadow: 0 28px 70px -40px rgba(4,14,24,.45); overflow: hidden;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 1.75rem 1.25rem; }
.stat:nth-child(odd) { border-right: 1px solid var(--line); }
.stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
@media (min-width: 640px) {
  .stat { padding: 2rem; border-bottom: 0; }
  .stat:nth-child(2), .stat:nth-child(3) { border-right: 1px solid var(--line); }
  .stat:nth-child(4) { border-right: 0; }
}
.stat strong { display: block; font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); }
@media (min-width: 640px) { .stat strong { font-size: 2.25rem; } }
.stat span { display: block; margin-top: 0.375rem; font-size: 0.875rem; color: var(--muted); }

.page-hero { position: relative; overflow: hidden; background: var(--navy-deep); color: var(--white); padding-top: 8rem; }
@media (min-width: 768px) { .page-hero { padding-top: 10rem; } }
@media (min-width: 1024px) { .page-hero { padding-top: 11rem; } }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .45; filter: saturate(.9); }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, #001828, rgba(0,24,40,.88), rgba(0,24,40,.45)),
    linear-gradient(to top, #001828, transparent, rgba(0,24,40,.4));
}
.page-hero .wrap { position: relative; padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .page-hero .wrap { padding-top: 6rem; padding-bottom: 6rem; } }
.page-hero h1 {
  margin: 0.75rem 0 0;
  max-width: 48rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--white);
}
@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .page-hero h1 { font-size: 3.75rem; } }
.page-hero .lead { margin-top: 1.25rem; max-width: 42rem; color: rgba(255,255,255,.7); font-size: 1.125rem; line-height: 1.625; }
.page-hero-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: 0.25s ease; height: 100%;
}
.card:hover { transform: translateY(-6px); border-color: rgba(0,188,220,.3); box-shadow: 0 30px 70px -40px rgba(7,24,41,.4); }
.card-quiet:hover { transform: none; box-shadow: none; border-color: rgba(0,188,220,.4); }
.card img { width: 100%; aspect-ratio: 16/10; height: auto; object-fit: cover; transition: transform .7s ease; }
.card:hover img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card h3 { margin: 0; font-size: 1.25rem; font-weight: 600; }
.card .muted { font-size: 0.875rem; }
.card .muted.text-xs { font-size: 0.75rem; font-weight: 500; }
.card[data-blog-item]:hover h3 { color: var(--teal); }
.card-badge {
  position: absolute; left: 1rem; top: 1rem; z-index: 2;
  border-radius: 0.5rem; background: rgba(255,255,255,.92);
  padding: 0.25rem 0.65rem; font-size: 10px; font-weight: 800; letter-spacing: 0.14em; color: var(--navy);
}
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,48,84,.4), transparent);
}
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto; }
.card-media .card-badge { z-index: 3; }
.card p { margin: 0.55rem 0 0; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-text { gap: 1rem; }
.gap-4 { gap: 1rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.media { border-radius: 1.75rem; overflow: hidden; aspect-ratio: 5/4; background: var(--sand); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.faq-layout, .cols-57 { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) {
  .faq-layout, .cols-57 { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pill {
  border: 1px solid var(--line); background: var(--white); color: var(--navy);
  border-radius: 999px; padding: 0.5rem 1rem; font-size: 14px; font-weight: 500;
}
.pill:hover { border-color: var(--teal); color: var(--teal); }
.pill.is-on { background: var(--navy); color: var(--white); border-color: var(--navy); font-weight: 600; }
.pill-dark { background: var(--navy); color: var(--white); border-color: var(--navy); font-weight: 600; }
.pill-dark:hover { color: var(--white); border-color: var(--navy); }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--white); padding: 1.25rem 0; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 4rem; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; gap: 2.5rem; padding: 0 1rem; }
.marquee-track span { white-space: nowrap; color: rgba(0,48,84,.7); font-weight: 500; font-size: 14px; display: inline-flex; align-items: center; gap: 0.6rem; }
.marquee-track .ico { color: var(--teal); }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes floaty { 50% { transform: translateY(-10px); } }
.floaty { animation: floaty 7s ease-in-out infinite; }

.proof-band { padding: 3rem 0; border-block: 1px solid var(--line); }
.proof { text-align: center; }
.proof .pills { justify-content: center; margin-top: 1.5rem; }

.about-grid { display: grid; gap: 2rem; align-items: stretch; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 7fr 5fr; } }
.about-card { background: var(--white); border: 1px solid var(--line); border-radius: 1.75rem; padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.about-card .section-title { margin-top: 1rem; font-size: 1.875rem; letter-spacing: -0.03em; }
@media (min-width: 640px) { .about-card .section-title { font-size: 2.25rem; } }
.about-card .lead { margin-top: 1.25rem; font-size: 1rem; line-height: 1.625; }
@media (min-width: 640px) { .about-card .lead { font-size: 1.125rem; } }
@media (min-width: 640px) { .about-card { padding: 2.5rem; } }
@media (min-width: 1024px) { .about-card { padding: 3rem; } }
.about-card ul { list-style: none; margin: 2rem 0 0; padding: 2rem 0 0; border-top: 1px solid var(--line); }
.about-card li { display: flex; gap: 0.7rem; margin: 0 0 0.75rem; color: var(--ink); font-size: 15px; }
.about-card li::before { content: ""; width: 7px; height: 7px; margin-top: 0.45rem; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.caption-card { position: relative; border-radius: 1.75rem; overflow: hidden; min-height: 420px; }
.caption-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.caption-card .cap { position: absolute; inset: auto 0 0 0; padding: 2rem; background: linear-gradient(to top, rgba(0,24,40,.8), transparent); color: var(--white); }
@media (min-width: 640px) { .caption-card .cap { padding: 2.5rem; } }
.caption-card h3 { color: var(--white); margin: 0; font-size: 1.5rem; font-weight: 600; }
@media (min-width: 640px) { .caption-card h3 { font-size: 1.875rem; } }
.caption-card .cap p { margin: 0.5rem 0 0; max-width: 28rem; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.625; }

.dash {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(11,24,40,.9);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,.8);
}
@media (min-width: 640px) { .dash { padding: 1.25rem; } }
.claim-box { margin-top: 0.75rem; overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); border-radius: 0.75rem; }
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; gap: 1rem; }
.dots { display: flex; gap: 0.35rem; }
.dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dash-tag { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: rgba(255,255,255,.55); border-radius: 999px; padding: 0.25rem 0.7rem; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.mini-grid { display: grid; gap: 0.7rem; grid-template-columns: repeat(3, 1fr); margin-bottom: 0.8rem; }
.mini { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); border-radius: 0.8rem; padding: 0.9rem; }
.mini p { margin: 0; font-size: 11px; color: rgba(255,255,255,.45); }
.mini strong { display: block; margin-top: 0.35rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.mini em { display: block; margin-top: 0.2rem; font-style: normal; font-size: 12px; color: var(--teal-bright); }
.claim { display: grid; grid-template-columns: 1fr 1fr 0.9fr; gap: 0.5rem; padding: 0.75rem 0.9rem; border-top: 1px solid rgba(255,255,255,.07); font-size: 13px; align-items: center; }
.claim b { font-weight: 600; color: rgba(255,255,255,.88); }
.claim span { color: rgba(255,255,255,.5); }
.badge { display: inline-flex; width: fit-content; border-radius: 999px; padding: 0.2rem 0.6rem; font-size: 11px; font-weight: 700; }
.badge.ok { background: rgba(0,188,220,.2); color: var(--teal-bright); }
.badge.warn { background: rgba(245,193,108,.18); color: #f5c16c; }
.badge.info { background: rgba(142,200,240,.18); color: #8ec8f0; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.metric-row strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-bright); }
@media (min-width: 640px) { .metric-row strong { font-size: 1.875rem; } }
.metric-row p { margin: 0.25rem 0 0; font-size: 12px; color: rgba(255,255,255,.45); }

.explorer { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .explorer { grid-template-columns: 300px 1fr; } }
@media (min-width: 1280px) { .explorer { grid-template-columns: 320px 1fr; } }
.explorer-list { display: flex; gap: 0.5rem; overflow-x: auto; }
@media (min-width: 1024px) { .explorer-list { flex-direction: column; overflow: visible; } }
.explorer-list button {
  flex-shrink: 0; text-align: left; background: transparent; border: 0;
  border-radius: 0.85rem; padding: 0.85rem 1rem; cursor: pointer; color: rgba(10,26,40,.7);
}
.explorer-list button small { display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: .55; }
.explorer-list button strong { display: block; margin-top: 0.15rem; font-family: var(--font-display); font-size: 15px; font-weight: 600; }
@media (min-width: 640px) { .explorer-list button strong { font-size: 1rem; } }
.explorer-list button:hover { background: var(--sand); color: var(--navy); }
.explorer-list button.is-on, .explorer-list button.is-on:hover { background: var(--navy); color: var(--white); box-shadow: 0 18px 40px -24px rgba(6,16,28,.75); }
.explorer-visual { position: relative; border-radius: 1.75rem; overflow: hidden; min-height: 540px; background: var(--navy-deep); }
.explorer-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 540px; }
.explorer-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, #06101c, rgba(6,16,28,.6), rgba(6,16,28,.15));
}
.explorer-visual .cap { position: absolute; inset: auto 0 0 0; z-index: 1; padding: 2rem; background: none; color: var(--white); }
@media (min-width: 640px) { .explorer-visual .cap { padding: 2.5rem; } }
@media (min-width: 1024px) { .explorer-visual .cap { padding: 3rem; } }
@media (min-width: 1024px) { .explorer-visual .cap { padding: 3rem; } }
.explorer-visual h3 { color: var(--white); margin: 0.75rem 0 0; max-width: 42rem; font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; }
@media (min-width: 640px) { .explorer-visual h3 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .explorer-visual h3 { font-size: 2.6rem; } }
.explorer-visual p { margin: 1rem 0 0; max-width: 36rem; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.625; }
@media (min-width: 640px) { .explorer-visual p { font-size: 1.125rem; } }

.ba { position: relative; overflow: hidden; border-radius: 1.75rem; aspect-ratio: 16/10; border: 1px solid var(--line); user-select: none; cursor: ew-resize; }
.ba > img { filter: none; }
.ba::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,48,84,.7), transparent); pointer-events: none; }
@media (min-width: 640px) { .ba { aspect-ratio: 16/9; } }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { filter: grayscale(1) contrast(1.2); }
.ba-clip { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 52% 0 0); z-index: 2; }
.ba-clip::after { content: ""; position: absolute; inset: 0; background: rgba(0,48,84,.45); }
.ba-tag { position: absolute; bottom: 1.5rem; z-index: 3; border-radius: 0.75rem; padding: 0.5rem 1rem; font-size: 14px; font-weight: 600; }
.ba-tag.after { right: 1.3rem; background: var(--teal); color: var(--white); }
.ba-tag.before { left: 1.3rem; background: var(--white); color: var(--navy); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 48%; width: 2px; background: var(--white); z-index: 4; }
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; background: var(--white); color: var(--navy);
  display: grid; place-items: center; font-size: 10px; font-weight: 800;   letter-spacing: 0.14em;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.slider { margin-top: 2rem; }
.slider label { display: flex; justify-content: space-between; align-items: center; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; font-size: 14px; }
.slider label span { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--teal); }
.slider input { width: 100%; height: 8px; accent-color: var(--teal); appearance: none; background: var(--line); border-radius: 99px; }
.calc-card { position: relative; overflow: hidden; border-radius: 1.75rem; padding: 2rem; color: var(--white); }
@media (min-width: 640px) { .calc-card { padding: 2.5rem; } }
.calc-card::before {
  content: ""; position: absolute; right: -3rem; top: -2rem; width: 12rem; height: 12rem;
  border-radius: 50%; background: rgba(0,188,220,.28); filter: blur(30px);
}
.calc-card > * { position: relative; }
.calc-grid { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 520px) { .calc-grid { grid-template-columns: 1fr 1fr; } }
.calc-box { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); border-radius: 1rem; padding: 1.25rem; }
.calc-box p { margin: 0; font-size: 11px; color: rgba(255,255,255,.45); }
.calc-box strong { display: block; margin-top: 0.35rem; font-family: var(--font-display); font-size: 1.5rem; }
.calc-save { margin-top: 1.5rem; border: 1px solid rgba(0,188,220,.3); background: rgba(0,188,220,.1); border-radius: 1rem; padding: 1.5rem; }
.calc-save p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; }
.calc-save strong { display: block; margin-top: 0.35rem; font-family: var(--font-display); font-size: 3rem; color: var(--teal-bright); }

.flip-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .flip-grid { grid-template-columns: repeat(3, 1fr); } }
.flip { perspective: 1200px; min-height: 240px; cursor: pointer; background: none; border: 0; padding: 0; width: 100%; }
.flip-inner { position: relative; height: 240px; transition: transform 0.55s cubic-bezier(.22,1,.36,1); transform-style: preserve-3d; }
.flip.is-on .flip-inner { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 1.5rem; padding: 1.75rem; border: 1px solid var(--line); background: var(--ice); display: flex; flex-direction: column; justify-content: space-between; text-align: left; }
.flip-face h3 { margin: 0; font-size: 3rem; letter-spacing: -0.025em; }
.flip-face .muted { font-size: 0.875rem; }
.flip-back { transform: rotateY(180deg); background: var(--navy); color: var(--white); border-color: transparent; }
.flip-back h3, .flip-back p { color: var(--white); }
.flip-back p { font-size: 1.125rem; line-height: 1.625; color: rgba(255,255,255,.8); }
.flip-back .muted { font-size: 0.875rem; color: rgba(255,255,255,.45); }

.bento { display: grid; gap: 1rem; }
@media (min-width: 768px) { .bento { grid-template-columns: 1fr 1fr; } }
.bento-card { border-radius: 1.5rem; padding: 2rem; min-height: 240px; transition: transform .25s ease; }
@media (min-width: 640px) { .bento-card { padding: 2.5rem; } }
.bento-card:hover { transform: translateY(-6px); }
.bento-card .ico-xl { color: var(--teal); width: 1.75rem; height: 1.75rem; }
.bento-card.navy .ico-xl { color: var(--teal-bright); }
.bento-card h3 { margin-top: 1.5rem; font-size: 1.5rem; }
@media (min-width: 640px) { .bento-card h3 { font-size: 1.875rem; } }
.bento-card p { margin-top: 1rem; max-width: 36rem; font-size: 1rem; line-height: 1.625; }
.bento-card .muted { font-size: 1rem; }
.bento-card.navy { background: var(--navy); color: var(--white); }
.bento-card.navy h3 { color: inherit; }
.bento-card.navy p { color: rgba(255,255,255,.7); }
.bento-card.soft { background: var(--teal-soft); border: 1px solid rgba(0,188,220,.2); }
.bento-card.sand { background: var(--sand); border: 1px solid var(--line); }
.bento-card.white { background: var(--white); border: 1px solid var(--line); }
@media (min-width: 768px) { .bento-card.wide { grid-column: span 2; } }

.process-bar { display: none; height: 6px; background: var(--line); border-radius: 99px; overflow: hidden; margin: 3rem 0 0; }
@media (min-width: 1024px) { .process-bar { display: block; } }
.process-bar i { display: block; height: 100%; width: 8%; background: linear-gradient(90deg, var(--teal), var(--teal-bright)); border-radius: 99px; }
.steps { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--ice); border: 1px solid var(--line); border-radius: 1.5rem; padding: 1.75rem; display: flex; flex-direction: column; }
.step .n { font-family: var(--font-display); font-size: 3rem; color: rgba(0,188,220,.3); margin: 0; }
.step h3 { margin: 1.25rem 0 0; font-size: 1.5rem; }
.step p { flex: 1; }
.step .muted { margin-top: 0.75rem; font-size: 14px; }
.step .detail { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-box { border: 1px solid var(--line); background: var(--ice); border-radius: 1.5rem; overflow: hidden; }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.25rem; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1rem;
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: center;
}
@media (min-width: 640px) { .faq-item button { padding: 1.25rem 1.5rem; font-size: 1.125rem; } }
.faq-item .ans { display: none; padding: 0 1.25rem 1.25rem; padding-right: 3.5rem; color: var(--muted); line-height: 1.625; font-size: 1rem; }
@media (min-width: 640px) { .faq-item .ans { padding-left: 1.5rem; } }
.faq-item.open .ans { display: block; }
.faq-ico { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--ice); color: var(--teal); flex-shrink: 0; }
.faq-item.open .faq-ico { background: var(--teal); color: var(--white); }

.form { display: grid; gap: 1.25rem; }
.form label { display: block; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); background: var(--ice);
  border-radius: 0.75rem; padding: 0.75rem 1rem; outline: none;
  font-family: inherit; font-size: 0.875rem; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 188, 220, 0.12);
}
.form textarea { resize: vertical; min-height: 120px; }
.form input[type="file"] {
  padding: 0.7rem 0.85rem;
  cursor: pointer;
  color: var(--muted);
}
.form input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  border: 0;
  border-radius: 0.55rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.notice { border: 1px solid #9ad7e4; background: var(--teal-soft); border-radius: 1.2rem; padding: 1.6rem; text-align: center; }
.notice h3 { font-size: 1.25rem; font-weight: 600; }
.notice-xl h3 { font-size: 1.875rem; font-weight: 700; }
.notice .muted { font-size: 0.875rem; }
.err { color: #c53030; font-size: 14px; min-height: 1.1em; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.quote-section { padding: 4rem 0; }
@media (min-width: 1024px) { .quote-section { padding: 6rem 0; } }
.quote-wrap { width: 100%; max-width: 48rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .quote-wrap { padding-inline: 2rem; } }
@media (min-width: 1024px) { .quote-wrap { padding-inline: 3rem; } }
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 30px 80px -48px rgba(7, 24, 41, 0.4);
}
.quote-head { background: var(--ice); border-bottom: 1px solid var(--line); padding: 1.25rem 1.5rem; }
@media (min-width: 640px) { .quote-head { padding: 1.25rem 2rem; } }
.quote-head-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.quote-step { margin: 0; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--navy); }
.quote-pct { margin: 0; font-size: 0.875rem; color: var(--muted); }
.quote-bar { height: 6px; background: var(--line); border-radius: 99px; margin-top: 1rem; overflow: hidden; }
.quote-bar i { display: block; height: 100%; width: 25%; background: var(--teal); border-radius: 99px; transition: width .35s ease; }
.quote-body { min-height: 340px; padding: 1.5rem; }
.quote-body-auto { min-height: 0; }
@media (min-width: 640px) { .quote-body { padding: 2rem; } }
.quote-foot { display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid var(--line); padding: 1rem 1.5rem; }
.quote-foot .err { min-height: 0; }
.quote-foot .err:empty { display: none; }
@media (min-width: 640px) { .quote-foot { padding: 1rem 2rem; } }
.quote-nav { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.quote-nav-end { justify-content: flex-end; }
@media (max-width: 639px) {
  .quote-nav-end .quote-go { width: 100%; justify-content: center; }
}
.quote-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 0; background: none; padding: 0.625rem 1rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 600; color: var(--navy); cursor: pointer;
}
.quote-back:disabled { opacity: 0.3; cursor: default; }
.quote-go {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 0; border-radius: 0.75rem; padding: 0.75rem 1.25rem;
  background: var(--teal); color: var(--white); font-size: 0.875rem; font-weight: 600; cursor: pointer;
}
.quote-go:hover { background: var(--teal-bright); }
.quote-go:disabled { opacity: 0.6; }
.quote-services { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .quote-services { grid-template-columns: 1fr 1fr; } }
.choice {
  display: block; width: 100%; text-align: left;
  border: 1px solid var(--line); background: var(--ice); color: rgba(10, 26, 40, .8);
  border-radius: 0.75rem; padding: 1rem; cursor: pointer; transition: border-color .2s, background .2s;
}
.choice strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy); }
.choice .muted { display: block; margin-top: 0.25rem; font-size: 0.75rem; line-height: 1.5; }
.choice:hover { border-color: rgba(0, 188, 220, 0.4); }
.choice.on { border-color: var(--teal); background: var(--teal-soft); color: var(--navy); }
.choice input { display: none; }
.choice-goal { padding: 0.875rem 1rem; margin: 0 0 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.quote-prompt { margin: 0 0 1rem; font-size: 0.875rem; color: var(--muted); }
.quote-done {
  border: 1px solid rgba(0, 188, 220, 0.3); background: var(--teal-soft);
  border-radius: 1.75rem; padding: 2rem; text-align: center;
}
@media (min-width: 640px) { .quote-done { padding: 3rem; } }
.quote-done-ico { width: 3rem; height: 3rem; color: var(--teal); }
.quote-done h3 { margin: 1rem 0 0; font-size: 1.875rem; font-weight: 700; }
.quote-done .muted { margin: 0.75rem 0 0; font-size: 1rem; }
.quote-call { margin: 1.5rem 0 0; font-size: 0.875rem; color: var(--muted); }
.quote-call a { font-weight: 600; color: var(--teal); }
.quote-alt { margin: 2rem 0 0; text-align: center; font-size: 0.875rem; color: var(--muted); }
.quote-alt a { font-weight: 600; color: var(--teal); }

.prose h2 { color: var(--navy); font-size: 1.55rem; margin: 2rem 0 0.7rem; }
.prose h3 { color: var(--navy); font-size: 1.2rem; margin: 1.4rem 0 0.5rem; }
.prose p, .prose li { color: var(--muted); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose a { color: var(--teal); font-weight: 600; }
.prose img { border-radius: 1rem; margin: 1rem 0; }
.prose blockquote {
  margin: 1rem 0; padding: .85rem 1rem;
  border-left: 3px solid var(--teal);
  background: var(--ice); border-radius: 0 .8rem .8rem 0;
  color: var(--navy);
}

.site-footer { background: var(--navy-deep); color: var(--white); }
.site-footer .brand { gap: 0; }
.site-footer .brand-mark { width: 3.4rem; height: 3.25rem; }
@media (min-width: 640px) {
  .site-footer .brand-mark { width: 3.7rem; height: 3.5rem; }
}
.site-footer .brand-text { gap: 0.3rem; margin-left: -0.35rem; }
.site-footer .brand-name { color: var(--white); font-size: 1.4rem; }
@media (min-width: 640px) { .site-footer .brand-name { font-size: 1.55rem; } }
.site-footer .brand-llc { color: var(--teal-bright); font-size: 10px; }
.footer-wrap {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 1024px) { .footer-wrap { padding-inline: 2rem; } }
.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding: 5rem 0;
  }
  .footer-brand { grid-column: span 5; }
  .footer-grid > div:nth-child(2) { grid-column: span 2; }
  .footer-grid > div:nth-child(3) { grid-column: span 2; }
  .footer-grid > div:nth-child(4) { grid-column: span 3; }
}
.footer-desc {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255,255,255,.7);
}
.footer-social { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; margin-top: 1.5rem; }
.footer-social-btn {
  width: 2.35rem; height: 2.35rem; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(255,255,255,.1);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.footer-social-btn .ico { width: 1.05rem; height: 1.05rem; }
.footer-social-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 18px rgba(0,0,0,.22); }
.footer-facebook { background: #1877F2; }
.footer-linkedin { background: #0A66C2; }
.footer-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
.footer-tiktok { background: #111; }
.footer-youtube { background: #FF0000; }
.site-footer h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mist);
}
.footer-links { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.footer-links li + li { margin-top: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact { list-style: none; margin: 1.25rem 0 0; padding: 0; font-size: 0.875rem; color: rgba(255,255,255,.75); }
.footer-contact li { display: flex; gap: 0.75rem; }
.footer-contact li + li { margin-top: 1rem; }
.footer-contact .ico {
  width: 1rem; height: 1rem; margin-top: 0.125rem; flex-shrink: 0; color: var(--teal-bright);
}
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--white); }
.footer-contact div { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
  color: rgba(255,255,255,.5);
  font-size: 0.875rem;
}
.footer-bar p { margin: 0; }
@media (min-width: 640px) {
  .footer-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-legal-links a { color: inherit; }
.footer-legal-links a:hover { color: var(--white); }

.float-top {
  position: fixed; left: 1rem; bottom: 5.6rem; z-index: 40;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  border: 0; cursor: pointer; background: var(--navy);
}
.float-top.is-on { opacity: 1; pointer-events: auto; transform: none; }
.float-top:hover { background: var(--teal); }
.float-social {
  position: fixed; right: 1rem; bottom: 5.6rem; z-index: 40;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.float-btn {
  width: 44px; height: 44px; border-radius: 50%; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0, 24, 40, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}
.float-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 14px 28px rgba(0, 24, 40, .28); }
.float-facebook { background: #1877F2; }
.float-linkedin { background: #0A66C2; }
.float-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-tiktok { background: #111; }
.float-youtube { background: #ff0000; }
.float-wa { background: #25D366; box-shadow: 0 12px 30px rgba(37, 211, 102, .35); }
@media (max-width: 1023px) {
  .float-facebook, .float-linkedin, .float-instagram, .float-tiktok, .float-youtube { display: none; }
}
@media (min-width: 768px) {
  .float-btn { width: 50px; height: 50px; }
  .float-top, .float-social { left: auto; }
  .float-top { left: 1.25rem; }
  .float-social { right: 1.25rem; }
}
@media (min-width: 1024px) {
  .float-top, .float-social { bottom: 2rem; }
  .float-btn { width: 52px; height: 52px; }
}
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 35;
  display: none; gap: 0.6rem; padding: 0.75rem 1rem;
  background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
}
.sticky-cta.is-on { display: flex; }
@media (min-width: 1024px) { .sticky-cta.is-on { display: none; } }

.cta-banner { position: relative; overflow: hidden; border-radius: 1.75rem; color: var(--white); }
.cta-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, #001828, rgba(0,24,40,.92), rgba(0,24,40,.7)); }
.cta-orb {
  pointer-events: none; position: absolute; right: -4rem; top: 0; z-index: 1;
  width: 18rem; height: 18rem; border-radius: 50%; background: rgba(0,188,220,.3); filter: blur(64px);
}
.cta-inner { position: relative; z-index: 1; display: grid; gap: 2.5rem; padding: 3.5rem 2rem; }
@media (min-width: 640px) { .cta-inner { padding: 3.5rem 3rem; } }
@media (min-width: 1024px) { .cta-inner { grid-template-columns: 8fr 4fr; align-items: center; padding: 5rem 4rem; } }
.cta-inner h2 { margin: 1rem 0 0; max-width: 42rem; font-size: 2.25rem; font-weight: 700; letter-spacing: -0.035em; line-height: 1.1; color: var(--white); }
@media (min-width: 640px) { .cta-inner h2 { font-size: 3rem; } }
.cta-inner .lead { font-size: 1.125rem; line-height: 1.625; max-width: 36rem; }
.cta-inner .actions { margin-top: 2.25rem; }
.cta-box { border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); border-radius: 1rem; padding: 1.5rem; }
.cta-box .cta-label { margin: 0; font-size: 0.875rem; font-weight: 600; color: var(--teal-bright); letter-spacing: 0; text-transform: none; }
.cta-box ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.75rem; color: rgba(255,255,255,.75); font-size: 0.875rem; }

.review-frame { border: 1px solid var(--line); background: var(--white); border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow); }
.review-frame iframe { width: 100%; height: 780px; min-height: 520px; border: 0; }
.center-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-top: 1.4rem; }

.reviews-void {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  color: var(--white);
  background:
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(61, 216, 240, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0, 188, 220, 0.1), transparent 45%),
    linear-gradient(145deg, #001828 0%, #003054 50%, #0a4570 100%);
}
@media (min-width: 1024px) { .reviews-void { padding: 7rem 0; } }
.reviews-orb { pointer-events: none; position: absolute; border-radius: 999px; filter: blur(64px); }
.reviews-orb-a { left: -6rem; top: 2.5rem; width: 18rem; height: 18rem; background: rgba(0, 188, 220, 0.2); }
.reviews-orb-b { right: -4rem; bottom: 0; width: 20rem; height: 20rem; background: rgba(61, 216, 240, 0.1); }
.reviews-inner { position: relative; }
.reviews-head { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) {
  .reviews-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.reviews-intro { max-width: 42rem; }
.reviews-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
  border-radius: 999px; padding: 0.35rem 0.75rem;
}
.reviews-chip span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-bright);
}
.gmark { width: 1rem; height: 1rem; display: block; }
.reviews-intro h2 {
  margin: 1.25rem 0 0; color: var(--white);
  font-size: 2.25rem; letter-spacing: -0.04em; line-height: 1.1;
}
@media (min-width: 640px) { .reviews-intro h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .reviews-intro h2 { font-size: 3.25rem; } }
.reviews-intro p { margin: 1rem 0 0; max-width: 36rem; font-size: 1rem; line-height: 1.625; color: rgba(255,255,255,.55); }
.reviews-score {
  display: flex; min-width: 220px; align-items: center; gap: 1rem;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05);
  border-radius: 1.35rem; padding: 1.25rem; backdrop-filter: blur(8px);
  transition: border-color .25s, transform .25s;
}
.reviews-score:hover { border-color: rgba(0, 188, 220, 0.4); transform: translateY(-3px); }
.reviews-score-num {
  display: grid; place-items: center; width: 3.5rem; height: 3.5rem; flex-shrink: 0;
  border-radius: 1rem; background: rgba(0, 188, 220, 0.15);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--teal-bright);
}
.reviews-score em { display: block; margin-top: 0.5rem; font-style: normal; font-size: 0.875rem; color: rgba(255,255,255,.6); }
.reviews-score small { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.25rem; font-size: 12px; font-weight: 600; color: var(--teal-bright); }
.reviews-grid { display: grid; gap: 1.25rem; margin-top: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: 8fr 4fr; gap: 1.75rem; } }
.reviews-stage {
  position: relative; min-height: 380px; height: 100%; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border-radius: 1.85rem; padding: 2rem; backdrop-filter: blur(8px);
}
@media (min-width: 640px) { .reviews-stage { min-height: 420px; padding: 2.5rem; } }
.reviews-quote-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.ico-quote { width: 2.5rem; height: 2.5rem; color: rgba(61, 216, 240, 0.7); }
.reviews-stage blockquote {
  margin: 2rem 0 0; font-family: var(--font-display); font-size: 1.45rem; font-weight: 500;
  line-height: 1.35; letter-spacing: -0.02em; color: var(--white);
  transition: opacity .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1);
}
@media (min-width: 640px) { .reviews-stage blockquote { font-size: 1.875rem; } }
@media (min-width: 1024px) { .reviews-stage blockquote { font-size: 2.05rem; } }
.reviews-stage blockquote.is-swap { opacity: 0; transform: translateY(18px); }
.reviews-author {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
}
.reviews-avatar {
  display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 999px;
  background: rgba(0, 188, 220, 0.2); font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: var(--teal-bright);
}
.reviews-author strong { display: block; color: var(--teal-bright); }
.reviews-author small { display: block; margin-top: 0.15rem; font-size: 0.875rem; color: rgba(255,255,255,.45); }
.reviews-dots { display: none; position: absolute; right: 2rem; bottom: 2rem; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .reviews-dots { display: flex; } }
.reviews-dots button {
  width: 0.625rem; height: 0.375rem; border: 0; border-radius: 999px; padding: 0;
  background: rgba(255,255,255,.25); cursor: pointer; transition: width .25s, background .25s;
}
.reviews-dots button.is-on { width: 2rem; background: var(--teal-bright); }
.reviews-dots button:hover { background: rgba(255,255,255,.45); }
.reviews-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.reviews-scroll {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  padding-right: 0.45rem;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(61, 216, 240, 0.55) rgba(255,255,255,.08);
}
.reviews-scroll::-webkit-scrollbar { width: 6px; }
.reviews-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 99px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: rgba(61, 216, 240, 0.55); border-radius: 99px; }
.reviews-scroll::-webkit-scrollbar-thumb:hover { background: var(--teal-bright); }
.reviews-card {
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03);
  border-radius: 1rem; padding: 1rem; text-align: left; color: inherit; cursor: pointer; transition: .25s;
}
.reviews-card:hover { background: rgba(255,255,255,.06); }
.reviews-card.is-on { border-color: rgba(0, 188, 220, 0.45); background: rgba(0, 188, 220, 0.15); }
.reviews-card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.reviews-card-top strong { font-family: var(--font-display); color: var(--white); }
.reviews-card p {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin: 0.5rem 0 0; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,.45);
}
.reviews-cta { display: grid; gap: 0.5rem; margin-top: auto; padding-top: 0.5rem; }
@media (min-width: 640px) { .reviews-cta { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-cta { grid-template-columns: 1fr; } }
@media (min-width: 1280px) { .reviews-cta { grid-template-columns: 1fr 1fr; } }
.reviews-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 600;
  will-change: transform;
  transition: color .3s, background .3s, border-color .3s, transform .18s cubic-bezier(.22,1,.36,1);
}
.reviews-btn.ghost { border: 1px solid rgba(255,255,255,.15); color: var(--white); }
.reviews-btn.ghost:hover { border-color: rgba(0, 188, 220, 0.5); }
.reviews-btn.teal { background: var(--teal); color: var(--navy-deep); }
.reviews-btn.teal:hover { background: var(--teal-bright); }
.stars { display: inline-flex; align-items: center; gap: 0.2rem; }
.star-ico { width: 1rem; height: 1rem; display: block; }
.star-ico.is-on { fill: #fbbf24; color: #fbbf24; }
.star-ico.is-empty { fill: rgba(255,255,255,.2); }
.star-ico.is-line { fill: var(--line); }
.ico-xs { width: 0.85rem; height: 0.85rem; }

.gbadge { border: 1px solid var(--line); background: var(--white); border-radius: 1rem; padding: 1.25rem; margin-top: 1.5rem; }
.gbadge-score { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.gbadge-score strong { font-family: var(--font-display); font-size: 1.125rem; color: var(--navy); }
.gbadge .muted { margin: 0.35rem 0 0; font-size: 0.875rem; }
.gbadge-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.gbadge-links a { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.875rem; font-weight: 600; color: var(--teal); }
.gbadge-links a:hover { text-decoration: underline; }
.gbadge-links a.navy { color: var(--navy); }

.check-grid { display: grid; gap: 0.7rem; }
@media (min-width: 720px) { .check-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .check-grid.three { grid-template-columns: 1fr 1fr 1fr; } }
.check-item { display: flex; gap: 0.7rem; align-items: flex-start; border: 1px solid var(--line); background: var(--ice); border-radius: 1rem; padding: 1rem; font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.check-item.white { background: var(--white); }
.check-item span { color: var(--teal); font-weight: 800; }

.job-list { display: grid; gap: 1rem; margin-top: 2.5rem; }
.job-card {
  display: flex; flex-direction: column; gap: 1rem;
  border: 1px solid var(--line); background: var(--white); border-radius: 1.5rem;
  padding: 1.5rem; transition: transform .2s, border-color .2s, box-shadow .2s;
}
@media (min-width: 640px) {
  .job-card { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.75rem; }
}
.job-card:hover {
  transform: translateY(-2px); border-color: rgba(0,188,220,.3);
  box-shadow: 0 24px 60px -40px rgba(7,24,41,.35);
}
.job-dept { margin: 0; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }
.job-card h3 { margin: 0.5rem 0 0; font-size: 1.5rem; font-weight: 600; }
.job-card:hover h3 { color: var(--teal); }
.job-excerpt { margin: 0.5rem 0 0; max-width: 42rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted); }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1rem 0 0; font-size: 0.875rem; color: rgba(10,26,40,.7); }
.job-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.job-cta {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  border-radius: 0.75rem; background: var(--navy); color: var(--white);
  padding: 0.625rem 1rem; font-size: 0.875rem; font-weight: 600; text-align: center;
  transition: background .2s;
}
.job-card:hover .job-cta { background: var(--teal); }
.careers-count { margin: 0.5rem 0 0; }
.careers-empty { margin: 3rem 0 0; text-align: center; font-size: 1.125rem; color: var(--muted); }
.join-grid { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .join-grid { grid-template-columns: repeat(3, 1fr); } }
.join-card { height: 100%; border: 1px solid var(--line); background: var(--ice); border-radius: 1.5rem; padding: 1.5rem; }
.join-card h3 { margin: 0; font-size: 1.25rem; font-weight: 600; }
.join-card p { margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.625; color: var(--muted); }
.chip { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 13px; color: var(--muted); }

.blog-tools { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; margin-bottom: 1.5rem; }
.blog-tools input, .blog-tools select { border: 1px solid var(--line); background: var(--white); border-radius: 0.8rem; padding: 0.8rem 1rem; min-width: 220px; }

.legal p { margin: 0.7rem 0 0; }
.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; padding-top: 8rem; }

.panel { background: var(--white); border: 1px solid var(--line); border-radius: 1.5rem; padding: 1.75rem; }
.panel h2 { font-size: 1.5rem; letter-spacing: -0.025em; }
.panel .muted { font-size: 0.875rem; }
.panel-dark { background: var(--navy); color: var(--white); border: 0; }
.panel-dark h2, .panel-dark h3, .panel-dark p { color: inherit; }
.reach li { display: flex; gap: 0.75rem; margin: 0 0 1.5rem; font-size: 0.875rem; }
.reach strong { display: block; color: var(--navy); font-size: 0.875rem; }
.reach a { color: var(--muted); font-size: 0.875rem; }
.reach a:hover { color: var(--teal); }

.list-plain { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.list-plain li { border: 1px solid var(--line); background: var(--ice); border-radius: 1rem; padding: 0.95rem 1.1rem; margin: 0 0 0.7rem; color: var(--navy); }

.head-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: flex-end; }
.section-title {
  margin: 0.75rem 0 0;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
@media (min-width: 640px) { .section-title { font-size: 3rem; } }
.section-title.wide { max-width: 42rem; }
.section-title.xl { }
@media (min-width: 1024px) { .section-title.xl { font-size: 3.4rem; } }
.max-2xl { max-width: 42rem; }
.max-3xl { max-width: 48rem; margin-inline: auto; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.mt { margin-top: 1.5rem; }
.mt-lg { margin-top: 3rem; }
.mt-10 { margin-top: 2.5rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.book-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .book-layout { grid-template-columns: 4fr 8fr; align-items: stretch; gap: 2.5rem; } }
.calendly-box { background: var(--white); border: 1px solid var(--line); border-radius: 1.85rem; overflow: hidden; box-shadow: var(--shadow); }
.calendly-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--ice); border-bottom: 1px solid var(--line); }
.calendly-head p { margin: 0; font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.calendly-head span { font-size: 12px; color: var(--muted); }
.calendly-box iframe { width: 100%; min-height: 980px; border: 0; }
.hero-perks { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.hero-perk {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.1);
  border-radius: 999px; padding: 0.4rem 0.85rem; font-size: 13px; color: rgba(255,255,255,.88);
}
.hero-perk .ico { color: var(--teal-bright); }
.expect-list { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.expect-list li { display: flex; gap: 0.75rem; margin: 0 0 1rem; color: rgba(255,255,255,.8); font-size: 0.875rem; line-height: 1.55; }
.expect-list .ico { margin-top: 0.15rem; color: var(--teal-bright); flex-shrink: 0; }
.reach-rows { display: grid; gap: 0.75rem; margin-top: 1rem; }
.reach-rows a { display: flex; align-items: center; gap: 0.75rem; color: var(--navy); font-size: 0.875rem; font-weight: 500; }
.reach-rows .ico { color: var(--teal); }
.card-ice { background: var(--ice); }
.card-more { display: inline-block; margin-top: 0.85rem; font-size: 0.875rem; font-weight: 600; color: var(--teal); }
.pillar-num { margin: 0; font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: rgba(0,188,220,.25); letter-spacing: -0.03em; }
.title-sm { font-size: 1.875rem !important; letter-spacing: -0.025em !important; }
@media (min-width: 640px) { .title-sm { font-size: 2.25rem !important; } }
.title-3xl { font-size: 1.875rem !important; }
.track-4 { letter-spacing: -0.04em !important; }
.text-xs { font-size: 0.75rem; }
.aim-note { font-size: 0.875rem; line-height: 1.625; }
@media (min-width: 640px) { .aim-note { font-size: 1rem; } }
[data-blog-count] { font-size: 0.875rem; }
.contact-wrap { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 1024px) { .contact-wrap { padding-inline: 2rem; } }
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; gap: 3.5rem; } }
.panel-roomy { padding: 2rem; border-radius: 1.5rem; }
@media (min-width: 1024px) { .panel-roomy { padding: 2.5rem; } }
.faq-page { max-width: 56rem; margin-inline: auto; }
.faq-page .faq-box { background: var(--white); }
.choices-2 { display: grid; gap: 0.55rem; }
@media (min-width: 640px) { .choices-2 { grid-template-columns: 1fr 1fr; } }
.choices-2 .choice { margin: 0; }
.media-43 { aspect-ratio: 4/3; border-radius: 2rem; }
.benefit-card { display: flex; gap: 0.75rem; align-items: flex-start; background: var(--ice); border: 1px solid var(--line); border-radius: 1.25rem; padding: 1.5rem; }
.benefit-card .ico { margin-top: 0.15rem; color: var(--teal); }
.benefit-card p { margin: 0; font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--navy); letter-spacing: 0; }
.job-hero { background: var(--navy-deep); color: var(--white); padding-top: 8rem; }
@media (min-width: 768px) { .job-hero { padding-top: 10rem; } }
@media (min-width: 1024px) { .job-hero { padding-top: 11rem; } }
.job-hero-inner { max-width: 56rem; margin-inline: auto; padding: 4rem 1.25rem; }
@media (min-width: 640px) { .job-hero-inner { padding-inline: 2rem; } }
@media (min-width: 1024px) { .job-hero-inner { padding-top: 5rem; padding-bottom: 5rem; } }
.job-hero h1 { margin: 0.75rem 0 0; font-size: 2.25rem; letter-spacing: -0.035em; color: var(--white); }
@media (min-width: 640px) { .job-hero h1 { font-size: 3rem; } }
.job-hero .lead { margin-top: 1.25rem; max-width: none; color: rgba(255,255,255,.7); }
.job-meta-hero { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,.75); }
.job-meta-hero span { display: inline-flex; align-items: center; gap: 0.375rem; }
.job-body { background: var(--white); padding: 3.5rem 0; }
@media (min-width: 1024px) { .job-body { padding: 5rem 0; } }
.job-layout { display: grid; gap: 3rem; max-width: 72rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .job-layout { padding-inline: 2rem; } }
@media (min-width: 1024px) { .job-layout { grid-template-columns: 3fr 2fr; } }
.job-copy h2, .job-copy.prose h2 { font-size: 1.5rem; margin: 2.5rem 0 0.5rem; }
.job-copy.prose h2:first-child { margin-top: 0; }
.job-layout .quote-alt { margin-top: 1rem; font-size: 0.75rem; }
.openings-title { font-size: 1.5rem; }
.openings-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .openings-grid { grid-template-columns: repeat(3, 1fr); } }
.opening-card { display: block; border: 1px solid var(--line); background: var(--white); border-radius: 1rem; padding: 1.25rem; transition: border-color .2s; }
.opening-card:hover { border-color: rgba(0,188,220,.4); }
.opening-name { margin: 0.5rem 0 0; font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.opening-card p:last-child { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--muted); }
.legal-page { max-width: 48rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .legal-page { padding-inline: 2rem; } }
.legal-page h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.legal-page h2:first-of-type { margin-top: 2rem; }
.legal-page p { margin: 0.75rem 0 0; font-size: 1rem; }
.legal-date { font-size: 0.875rem; }
.legal-section { padding: 4rem 0; }
@media (min-width: 1024px) { .legal-section { padding: 5rem 0; } }
.not-found {
  min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 1.25rem 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(0, 188, 220, 0.08), transparent 50%),
    #f5f8fb;
}
.not-found .eyebrow { font-size: 12px; letter-spacing: 0.22em; }
.not-found .lead { max-width: 28rem; margin-inline: auto; }
.sticky { position: sticky; top: 9rem; }
.form-row { gap: 1.25rem; }

.article-hero, .study-hero { position: relative; overflow: hidden; background: var(--navy-deep); color: var(--white); padding-top: 8rem; }
@media (min-width: 768px) { .article-hero, .study-hero { padding-top: 10rem; } }
@media (min-width: 1024px) { .article-hero { padding-top: 11rem; } }
.article-hero-bg { position: absolute; inset: 0; }
.article-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.study-hero .article-hero-bg img { opacity: .35; }
.article-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, #001828, rgba(0,24,40,.88), rgba(0,24,40,.5));
}
.article-inner { position: relative; max-width: 56rem; margin-inline: auto; padding: 4rem 1.25rem; }
@media (min-width: 640px) { .article-inner { padding-inline: 2rem; } }
@media (min-width: 1024px) { .article-hero .article-inner { padding-top: 6rem; padding-bottom: 6rem; } }
.article-hero h1, .study-hero h1 {
  margin: 0.75rem 0 0; font-size: 2.25rem; letter-spacing: -0.035em; color: var(--white);
}
@media (min-width: 640px) { .article-hero h1, .study-hero h1 { font-size: 3rem; } }
.article-hero .lead, .study-hero .lead { margin-top: 1.25rem; max-width: none; color: rgba(255,255,255,.7); }
.article-meta { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,.55); }
.prose-wrap { max-width: 48rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .prose-wrap { padding-inline: 2rem; } }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.tag-row span { border: 1px solid var(--line); background: var(--ice); border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500; color: var(--navy); }
.related-card { display: block; border: 1px solid var(--line); background: var(--white); border-radius: 1rem; padding: 1.25rem; transition: border-color .2s, background .2s; }
.related-card:hover { border-color: rgba(0,188,220,.4); background: var(--teal-soft); }
.related-card h3 { font-size: 1rem; }

.result-grid { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
@media (min-width: 640px) { .result-grid { grid-template-columns: repeat(3, 1fr); } }
.result-tile { border: 1px solid var(--line); background: var(--ice); border-radius: 1rem; padding: 1.25rem; text-align: center; }
.result-tile strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--teal); }
.result-tile span { display: block; margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }
.link-teal { align-self: center; font-size: 0.875rem; font-weight: 600; color: var(--teal); }

.spec-wrap { max-width: 64rem; margin-inline: auto; }
.list-plain { list-style: none; display: grid; gap: 1rem; margin-top: 2rem; padding: 0; }
.list-plain li { border: 1px solid var(--line); background: var(--ice); border-radius: 1rem; padding: 1rem 1.25rem; margin: 0; color: var(--navy); }
.list-plain.soft li { background: var(--white); color: var(--muted); }

.conv-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .conv-grid { grid-template-columns: 5fr 7fr; } }
.conv-cards { display: grid; gap: 0.8rem; }
@media (min-width: 640px) and (max-width: 1023px) { .conv-cards { grid-template-columns: repeat(3, 1fr); } }
.trust-note { margin-top: 2rem; border: 1px solid rgba(0,188,220,.2); background: color-mix(in srgb, var(--teal-soft) 60%, transparent); border-radius: 1.5rem; padding: 1.25rem 1.5rem; }
.why-item { background: var(--ice); }

.blog-tools { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .blog-tools { flex-direction: row; align-items: center; justify-content: space-between; } }
.blog-search { position: relative; width: 100%; max-width: 28rem; }
.blog-search .ico { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.blog-search input { width: 100%; border: 1px solid var(--line); background: var(--white); border-radius: 0.75rem; padding: 0.75rem 1rem 0.75rem 2.5rem; outline: none; }
.blog-search input:focus, .blog-tools select:focus { border-color: var(--teal); }
.blog-tools select { border: 1px solid var(--line); background: var(--white); border-radius: 0.75rem; padding: 0.75rem 1rem; min-width: 200px; }
.card[data-blog-item]:hover h3, .card[data-blog-item]:hover h2 { color: var(--teal); }
.card h2 { margin: 0.5rem 0 0; font-size: 1.25rem; font-weight: 600; }

.book-wash { pointer-events: none; position: absolute; inset: 0 0 auto 0; height: 12rem; background: linear-gradient(to bottom, rgba(230,249,253,.4), transparent); }
#scheduler { position: relative; scroll-margin-top: 7rem; }
.book-layout { align-items: stretch; }
.expect-card { height: 100%; border: 1px solid var(--line); background: var(--navy); color: var(--white); border-radius: 1.75rem; padding: 1.75rem; box-shadow: 0 30px 70px -40px rgba(4,14,24,.55); }
@media (min-width: 640px) { .expect-card { padding: 2rem; } }
.expect-card h2 { color: var(--white); font-size: 1.875rem; }
@media (min-width: 640px) { .expect-card h2 { font-size: 1.875rem; } }
.expect-card > p { margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.625; color: rgba(255,255,255,.65); }
.expect-agenda { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.25rem; }
.expect-agenda li { display: flex; gap: 0.75rem; }
.expect-ico { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; display: grid; place-items: center; background: rgba(255,255,255,.1); color: var(--teal-bright); flex-shrink: 0; }
.expect-agenda strong { display: block; font-family: var(--font-display); color: var(--white); }
.expect-agenda span { display: block; margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.625; color: rgba(255,255,255,.55); }
.expect-clock { display: flex; align-items: center; gap: 0.75rem; margin-top: 2rem; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); border-radius: 1rem; padding: 0.75rem 1rem; font-size: 0.875rem; color: rgba(255,255,255,.75); }
.expect-clock strong { color: var(--white); }
.reach-box { border: 1px solid var(--line); background: var(--white); border-radius: 1.75rem; padding: 1.5rem; }
@media (min-width: 640px) { .reach-box { padding: 1.75rem; } }
.reach-box .reach-rows { margin-top: 1.25rem; display: grid; gap: 0.75rem; }
.reach-box .reach-rows a {
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--line); border-radius: 0.75rem; padding: 0.75rem 1rem;
  color: var(--navy); transition: border-color .2s, background .2s;
}
.reach-box .reach-rows a:hover { border-color: rgba(0,188,220,.4); background: var(--teal-soft); }
.reach-box .reach-rows strong { display: block; font-size: 0.875rem; }
.reach-box .reach-rows small { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 400; }
.reach-box .ico { color: var(--teal); width: 1.25rem; height: 1.25rem; }
.calendly-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; background: rgba(242,247,251,.8); border-bottom: 1px solid var(--line); }
@media (min-width: 640px) { .calendly-head { padding: 1rem 1.75rem; } }
.calendly-head p { margin: 0; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--navy); }
.calendly-head span { display: block; font-size: 0.875rem; font-weight: 400; color: var(--muted); font-family: var(--font-body); }
.calendly-head a { font-size: 0.875rem; font-weight: 600; color: var(--teal); }
.hero-perk { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.85); padding: 0.375rem 0.75rem; }
.book-note { margin-top: 1rem; text-align: center; font-size: 0.75rem; color: var(--muted); }
.flow-card { background: var(--ice); border: 1px solid var(--line); border-radius: 1.5rem; padding: 1.5rem; height: 100%; }
.flow-card .step { margin: 0; font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.16em; color: var(--teal); }
.flow-card h3 { margin-top: 0.75rem; font-size: 1.25rem; }
.res-cat { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }

.claim-head { display: grid; grid-template-columns: 1fr 1fr .9fr; padding: .65rem 1rem; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.08); }
.pill-ice { background: var(--ice); }
.pill-ice:hover { background: var(--teal-soft); color: var(--teal); border-color: rgba(0,188,220,.4); }
.about-grid { gap: 2rem; }
@media (min-width: 1024px) { .about-grid { gap: 2rem; } }
.icon-box {
  width: 3rem; height: 3rem; border-radius: 1rem;
  display: grid; place-items: center; background: rgba(0,188,220,.2); color: var(--teal-bright);
}
.ice-card { background: var(--ice); border: 1px solid var(--line); border-radius: 1.5rem; padding: 1.75rem 2rem; height: 100%; }
.ice-card h3 { font-size: 1.25rem; font-weight: 600; }
.ice-card .muted { font-size: 0.875rem; }
.ice-card.lg-title h3 { font-size: 1.125rem; }
.ico-teal { color: var(--teal); }
.dash-glow {
  pointer-events: none; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(0,188,220,.18), transparent 50%);
}

.preview-banner {
  position: sticky; top: 0; z-index: 40;
  margin: 0; padding: .7rem 1.25rem;
  background: #0b3a52; color: #fff; text-align: center; font-size: 14px; font-weight: 600;
}
.preview-banner a { color: var(--teal-bright); text-decoration: underline; }

body[data-page="portal"] {
  display: block;
  overflow: auto;
  background: #edf2f6;
}

.portal-shell { display: flex; min-height: 100vh; }
.portal-side {
  width: 16.5rem; flex-shrink: 0;
  background: linear-gradient(180deg, #001828 0%, #003054 100%);
  color: #fff;
  display: flex; flex-direction: column;
  padding: 1.25rem 1rem 1.5rem;
}
.portal-brand {
  display: flex; align-items: center; gap: .7rem;
  padding: .35rem .55rem 1.15rem;
}
.portal-brand img { width: 2.4rem; height: auto; }
.portal-brand span { display: flex; flex-direction: column; line-height: 1.15; }
.portal-brand strong { font-family: var(--font-display); font-size: 1.15rem; }
.portal-brand em { font-style: normal; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.portal-side-nav { display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.portal-nav-label {
  margin: 1rem .55rem .35rem;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.42);
}
.portal-side-nav a {
  display: flex; align-items: center; gap: .65rem;
  padding: .62rem .75rem; border-radius: .7rem;
  color: rgba(255,255,255,.78); font-size: 14px; font-weight: 600;
}
.portal-side-nav a .ico { width: 1.05rem; height: 1.05rem; }
.portal-side-nav a:hover, .portal-side-nav a.is-on { background: rgba(255,255,255,.1); color: #fff; }
.portal-side-foot { display: flex; flex-direction: column; gap: .35rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
.portal-side-foot a {
  display: flex; align-items: center; gap: .55rem;
  padding: .5rem .7rem; border-radius: .6rem;
  color: rgba(255,255,255,.7); font-size: 13px; font-weight: 600;
}
.portal-side-foot a:hover { color: #fff; background: rgba(255,255,255,.08); }
.portal-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.portal-top {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.portal-menu { display: none; background: none; border: 0; color: var(--navy); padding: .3rem; cursor: pointer; }
.portal-crumb { margin: 0; font-weight: 700; color: var(--navy); flex: 1; }
.portal-top-actions { display: flex; gap: .5rem; }
.portal-content { padding: 1.5rem 1.5rem 3rem; }
.portal-login { min-height: 100vh; display: grid; place-items: center; padding: 2rem; background: var(--navy-deep); }
.portal-login .quote-card { width: min(28rem, 100%); }
.portal-login-mark { width: 3.2rem; height: auto; margin-bottom: .75rem; }

.dash-head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-end; flex-wrap: wrap; margin-bottom: 1.25rem; }
.dash-head h1 { margin: 0 0 .25rem; font-size: 1.75rem; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
.dash-stat {
  background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1.15rem 1.2rem;
  display: flex; flex-direction: column; gap: .2rem;
  box-shadow: 0 10px 28px -24px rgba(7,24,41,.4);
}
.dash-stat-ico { color: var(--teal); }
.dash-stat strong { font-family: var(--font-display); font-size: 2rem; color: var(--navy); line-height: 1; }
.dash-stat span { font-weight: 700; color: var(--navy); }
.dash-stat em { font-style: normal; color: var(--muted); font-size: 13px; }
.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.dash-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.dash-list li { display: flex; justify-content: space-between; gap: .75rem; align-items: flex-start; }
.dash-list strong { display: block; color: var(--navy); }
.dash-list a { font-weight: 700; color: var(--teal); font-size: 13px; }

.wp-editor { display: grid; grid-template-columns: minmax(0, 1fr) 20rem; gap: 1.15rem; align-items: start; }
.wp-main, .wp-side { display: flex; flex-direction: column; gap: 1rem; }
.wp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wp-title-block { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1rem 1.1rem; }
.wp-title {
  width: 100%; border: 0; outline: none; padding: 0;
  font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--navy);
}
.wp-permalink { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; margin: .65rem 0 0; font-size: 13px; color: var(--muted); }
.wp-permalink input {
  border: 1px solid var(--line); border-radius: .45rem; padding: .25rem .5rem; min-width: 10rem; background: var(--ice);
}
.wp-permalink a { color: var(--teal); font-weight: 700; }
.wp-box { background: #fff; border: 1px solid var(--line); border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 28px -24px rgba(7,24,41,.35); }
.wp-sticky { position: static; top: auto; }
.wp-box-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 1rem; border-bottom: 1px solid var(--line); background: #f7fafc;
}
.wp-box-head h3 { margin: 0; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.wp-box-head a { font-size: 13px; font-weight: 700; color: var(--teal); }
.wp-box-body { padding: 1rem; display: flex; flex-direction: column; gap: .85rem; }
.wp-box-body label { display: block; }
.wp-box-body label > span { display: block; margin-bottom: .35rem; font-size: 13px; font-weight: 700; color: var(--navy); }
.wp-box-body input, .wp-box-body select, .wp-box-body textarea {
  width: 100%; border: 1px solid var(--line); border-radius: .7rem; padding: .7rem .8rem; background: #fff;
}
.wp-box-body input:focus, .wp-box-body select:focus, .wp-box-body textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,188,220,.15);
}
.wp-box-body small, .wp-hint { display: block; margin-top: .35rem; font-size: 12px; color: var(--muted); }
.wp-content { min-height: 22rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13.5px; line-height: 1.55; }
.md-toolbar { display: flex; flex-wrap: wrap; gap: .35rem; }
.md-toolbar button, .md-upload {
  border: 1px solid var(--line); background: var(--ice); color: var(--navy);
  border-radius: .45rem; padding: .3rem .55rem; font-size: 12px; font-weight: 700; cursor: pointer;
}
.md-toolbar button:hover, .md-upload:hover { border-color: var(--teal); color: var(--teal); }
.check-line { display: flex !important; align-items: flex-start; gap: .55rem; font-size: 13px; color: var(--navy); }
.check-line input { width: auto !important; margin-top: .15rem; }
.wp-actions { display: flex; gap: .5rem; }
.wp-actions .btn { flex: 1; justify-content: center; }
.wp-cancel { font-size: 13px; font-weight: 700; color: var(--muted); }
.cover-preview { border-radius: .8rem; overflow: hidden; border: 1px solid var(--line); background: var(--ice); aspect-ratio: 16/9; }
.cover-preview img { width: 100%; height: 100%; object-fit: cover; }
.upload-btn {
  display: block; text-align: center; cursor: pointer;
  border: 1px dashed var(--line); border-radius: .7rem; padding: .7rem; font-weight: 700; color: var(--navy); background: var(--ice);
}
.upload-btn:hover { border-color: var(--teal); color: var(--teal); }

.seo-score { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .2rem .5rem; border-radius: 999px; background: #eef3f8; color: var(--muted); }
.seo-score.is-good { background: #e4f8ee; color: #157a42; }
.seo-score.is-ok { background: #fff4d6; color: #8a6a10; }
.seo-score.is-bad { background: #fde8e8; color: #b42318; }
.seo-preview { border: 1px solid var(--line); border-radius: .8rem; padding: .85rem; background: #fbfcfe; }
.seo-preview-label { margin: 0 0 .4rem; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.seo-preview-url { margin: 0; font-size: 12px; color: #188038; word-break: break-all; }
.seo-preview-title { margin: .2rem 0; color: #1a0dab; font-size: 18px; line-height: 1.3; }
.seo-preview-desc { margin: 0; font-size: 13px; color: #4d5156; }
.seo-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.seo-checks li { font-size: 12.5px; padding-left: 1.1rem; position: relative; color: var(--muted); }
.seo-checks li::before { content: ""; position: absolute; left: 0; top: .4rem; width: .5rem; height: .5rem; border-radius: 50%; background: #d0dde8; }
.seo-checks li.is-pass { color: #157a42; }
.seo-checks li.is-pass::before { background: #22a35a; }
.seo-checks li.is-fail { color: #b42318; }
.seo-checks li.is-fail::before { background: #e24b4b; }

.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 1rem; background: #fff; }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data th, table.data td { text-align: left; padding: .9rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data th { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); background: #f7fafc; }
.row-actions { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; }
.row-actions a { font-weight: 700; color: var(--teal); }
.row-actions form { display: inline; }
.danger { color: #c53030; font-weight: 700; background: none; border: 0; cursor: pointer; padding: 0; }
.pill { display: inline-block; margin-left: .4rem; padding: .12rem .45rem; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: #eef3f8; color: var(--muted); vertical-align: middle; }
.pill-ok, .pill-published, .pill-open { background: #e4f8ee; color: #157a42; }
.pill-warn, .pill-draft, .pill-scheduled { background: #fff4d6; color: #8a6a10; }
.pill-closed, .pill-contact { background: #eef3f8; color: var(--muted); }
.pill-teal, .pill-quote, .pill-book { background: var(--teal-soft); color: #0a6f82; }

@media (max-width: 1100px) {
  .dash-stats, .dash-grid { grid-template-columns: 1fr 1fr; }
  .wp-editor, .wp-split { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .portal-menu { display: inline-flex; }
  .portal-side {
    position: fixed; inset: 0 auto 0 0; z-index: 40;
    transform: translateX(-105%);
    transition: transform .28s ease;
  }
  .portal-shell.is-nav .portal-side { transform: none; }
  .dash-stats, .dash-grid { grid-template-columns: 1fr; }
  .portal-content { padding: 1rem; }
}
