:root {
  --primary: #0f3d8b;
  --primary-light: #1d4ed8;
  --primary-soft: rgba(29, 78, 216, 0.16);
  --accent: #00d084;
  --accent-soft: rgba(0, 208, 132, 0.14);
  --cyan: #38bdf8;
  --warning: #f59e0b;
  --dark: #06111f;
  --dark-2: #071827;
  --dark-3: #0b1f34;
  --card: rgba(15, 35, 60, 0.72);
  --card-strong: rgba(15, 35, 60, 0.9);
  --text: #e5edf7;
  --muted: #9fb0c7;
  --muted-2: #cbd5e1;
  --border: rgba(148, 163, 184, 0.22);
  --border-strong: rgba(148, 163, 184, 0.38);
  --white: #ffffff;
  --error: #fb7185;
  --success: #34d399;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 48px rgba(56, 189, 248, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', Consolas, monospace;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--dark);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(29, 78, 216, 0.26), transparent 32rem),
    radial-gradient(circle at 85% 10%, rgba(0, 208, 132, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 48%, #030814 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #03111f;
  background: var(--accent);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--dark);
  background: var(--accent);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(56, 189, 248, 0.8);
}

:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.75);
  outline-offset: 4px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.18), transparent);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(0, 208, 132, 0.8);
}

.section-header h2,
.hero-copy h1,
.about-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.15rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-header p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted-2);
  font-size: 1.06rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  box-shadow: 0 16px 40px rgba(30, 64, 175, 0.35);
}

.button-primary:hover {
  box-shadow: 0 22px 60px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--text);
  background: rgba(15, 35, 60, 0.64);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}

.button-ghost:hover {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(15, 35, 60, 0.9);
  box-shadow: var(--shadow-sm);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(6, 17, 31, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(6, 17, 31, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand span:last-child {
  color: var(--muted-2);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 14px;
  color: var(--accent);
  background: rgba(29, 78, 216, 0.12);
  box-shadow: inset 0 0 28px rgba(56, 189, 248, 0.08);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.site-nav,
.nav-list {
  display: flex;
  align-items: center;
}

.nav-list {
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--muted-2);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 35, 60, 0.72);
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--muted-2);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease;
}

.language-button.is-active {
  color: var(--dark);
  background: var(--accent);
}

.language-button img {
  border-radius: 3px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 35, 60, 0.72);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px 0 92px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 28%, black 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 18%;
  right: -12%;
  z-index: -1;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.34), transparent 68%);
  filter: blur(20px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted-2);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.hero-microcopy {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(30, 64, 175, 0.35);
  border-radius: 999px;
  color: var(--muted-2);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.18) 0%, rgba(37, 99, 235, 0.12) 100%);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(15, 35, 60, 0.92), rgba(7, 24, 39, 0.72)),
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.16), transparent 34%);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.panel-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 900;
}

.status-pill {
  margin-left: auto;
  padding: 6px 10px;
  border: 1px solid rgba(0, 208, 132, 0.28);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 208, 132, 0.08);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(0, 208, 132, 0.9);
}

.risk-meter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(3, 8, 20, 0.34);
}

.risk-meter strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1.8rem;
}

.risk-meter__bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
}

.risk-meter__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  box-shadow: 0 0 24px rgba(0, 208, 132, 0.35);
}

.hero-panel > p {
  margin: 18px 0 22px;
  color: var(--muted-2);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bento-grid article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(3, 8, 20, 0.34);
}

.bento-grid span {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bento-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
}

.panel-stack {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(3, 8, 20, 0.28);
}

.panel-row span {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.panel-row strong {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-align: right;
}

.outcomes-section {
  padding-top: 48px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.outcome-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.outcome-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-glow);
}

.outcome-card .card-icon {
  margin-bottom: 20px;
}

.outcome-card h3 {
  margin: 16px 0 8px;
  color: var(--white);
  font-size: 1.18rem;
}

.outcome-card p {
  color: var(--muted-2);
}

.intent-section {
  padding-top: 40px;
}

.intent-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.intent-card,
.resource-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.intent-card .card-icon,
.resource-card .card-icon {
  margin-bottom: 18px;
}

.intent-card h3,
.resource-card h3 {
  margin: 14px 0 8px;
  color: var(--white);
  font-size: 1.12rem;
}

.intent-card p,
.resource-card p {
  color: var(--muted-2);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

  .trust-card,
  .trust-card,
  .pain-card,
.benefit-card,
.approach-card,
.compliance-card,
.trust-card,
.faq-item,
.contact-form {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.pain-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pain-card:hover,
.trust-card:hover,
.benefit-card:hover,
.approach-card:hover,
.compliance-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-glow);
}

.pain-card span,
.trust-card span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 900;
}

.pain-card h3,
.trust-card h3,
.benefit-card h3,
.approach-card h3 {
  margin: 16px 0 8px;
  color: var(--white);
  font-size: 1.18rem;
}

.pain-card p,
.trust-card p,
.benefit-card p,
.approach-card p,
.compliance-card p,
.faq-item p {
  color: var(--muted-2);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.about-section p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted-2);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted-2);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.trust-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(56, 189, 248, 0.6) rgba(15, 35, 60, 0.35);
}

.trust-card {
  scroll-snap-align: start;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-glow);
}

.trust-card span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 900;
}

.trust-card h3 {
  margin: 18px 0 8px;
  color: var(--white);
  font-size: 1.18rem;
}

.trust-card p {
  color: var(--muted-2);
}

.trust-carousel {
  position: relative;
  overflow: hidden;
  margin: 8px 0 44px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: logoMarquee 28s linear infinite;
  will-change: transform;
}

.trust-carousel:hover .logo-track,
.logo-track:focus-within {
  animation-play-state: paused;
}

.logo-pill {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.logo-pill:hover {
  border-color: rgba(56, 189, 248, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}

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

@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.trust-proof-card {
  position: relative;
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-glow);
}

.trust-proof-card span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 1.1rem;
}

.trust-proof-card h3 {
  margin: 16px 0 8px;
  color: var(--white);
  font-size: 1.15rem;
}

.trust-proof-card p {
  color: var(--muted-2);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .trust-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .trust-proof-grid { grid-template-columns: 1fr; }
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(15, 35, 60, 0.58);
}

.metric-card strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted-2);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.card-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 16px;
  color: var(--accent);
  background: rgba(29, 78, 216, 0.13);
  font-family: var(--font-mono);
  font-weight: 900;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab {
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(15, 35, 60, 0.62);
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tab:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.45);
}

.tab.is-active {
  color: var(--dark);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
}

.panel {
  display: none;
}

.panel.is-active {
  display: block;
  animation: panelIn 260ms ease both;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  perspective: 1200px;
}

.flip-card {
  min-height: 300px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  outline: none;
}

.flip-card:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.8);
  outline-offset: 4px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.flip-front:hover {
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: var(--shadow-glow);
}

.flip-front .card-icon {
  margin-bottom: 22px;
}

.flip-front h3,
.flip-back h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.24rem;
}

.flip-front p,
.flip-back p,
.flip-back li {
  color: var(--muted-2);
}

.flip-hint {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
}

.flip-back {
  justify-content: center;
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 208, 132, 0.16), transparent 38%),
    rgba(15, 35, 60, 0.88);
}

.flip-back ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.flip-back li {
  position: relative;
  padding-left: 22px;
}

.flip-back li::before {
  content: '';
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.approach-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.approach-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--dark);
  background: var(--accent);
  font-family: var(--font-mono);
  font-weight: 900;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compliance-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.compliance-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.25rem;
}

.legal-page {
  padding-top: 128px;
}

.legal-content {
  max-width: 920px;
  margin-inline: auto;
}

.legal-page .section-header {
  margin-bottom: 34px;
  text-align: left;
}

.legal-card {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(15, 35, 60, 0.64);
  box-shadow: var(--shadow-sm);
}

.legal-card h2,
.legal-card h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.legal-card p,
.legal-card li {
  color: var(--muted-2);
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-list li + li {
  margin-top: 10px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.proof-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.proof-card .card-icon {
  margin-bottom: 20px;
}

.proof-card h3 {
  margin: 16px 0 8px;
  color: var(--white);
  font-size: 1.18rem;
}

.proof-card p {
  color: var(--muted-2);
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.6rem;
  transition: transform 160ms ease;
}

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

.faq-item p {
  padding: 0 24px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: start;
}

.contact-section p:not(.eyebrow) {
  color: var(--muted-2);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.social-links .social-link,
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(15, 35, 60, 0.62);
  font-weight: 900;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-links .social-link:hover,
.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.45);
  color: var(--white);
}

.social-links .social-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--dark);
  background: var(--accent);
  font-size: 0.74rem;
  overflow: hidden;
}

.social-links .social-icon img {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.social-links .social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon--text {
  color: var(--dark) !important;
  font-size: 0.88rem;
  font-weight: 900;
}

.social-note {
  margin-top: 18px !important;
  font-size: 0.9rem;
}

.secure-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(56, 189, 248, 0.08);
  font-weight: 900;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, background 160ms ease;
}

.channel-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.5);
  color: var(--white);
  background: rgba(56, 189, 248, 0.14);
}

.channel-pill:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.75);
  outline-offset: 3px;
}

.contact-form {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--muted-2);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  background: rgba(3, 8, 20, 0.38);
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(56, 189, 248, 0.72);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
  background: rgba(3, 8, 20, 0.58);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: var(--error);
}

.form-error {
  color: var(--error);
  font-size: 0.84rem;
}

.consent-row {
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 10px;
  color: var(--muted-2);
}

.consent-row input {
  width: 18px !important;
  height: 18px !important;
  margin-top: 3px;
  accent-color: var(--accent);
}

.consent-row a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-row .form-error {
  grid-column: 2 / -1;
}

.form-submit {
  margin-top: 22px;
  width: 100%;
  border: 0;
}

.form-status {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.32);
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--border);
  background: rgba(3, 8, 20, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid p {
  max-width: 420px;
  color: var(--muted-2);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid nav {
  display: grid;
  gap: 10px;
}

.footer-grid a {
  color: var(--muted-2);
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 50%;
  color: var(--dark);
  background: var(--accent);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  background: rgba(6, 17, 31, 0.96);
  backdrop-filter: blur(20px);
  transform: translateY(110%);
  transition: transform 240ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-inner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.cookie-inner p {
  margin: 0;
  color: var(--muted-2);
}

.cookie-inner a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-preferences {
  width: 100%;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.cookie-preferences fieldset {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.cookie-preferences legend {
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 900;
}

.cookie-preferences label {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(15, 35, 60, 0.5);
}

.cookie-preferences small {
  color: var(--muted-2);
}

.cookie-preferences input {
  accent-color: var(--accent);
}

.legal-section {
  padding: 130px 0 70px;
}

.legal-title {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.legal-updated {
  margin: 0 0 34px;
  color: var(--muted-2);
}

.legal-block {
  margin-bottom: 34px;
}

.legal-block h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.legal-block h3 {
  margin: 22px 0 8px;
  color: var(--muted-2);
  font-size: 1.05rem;
}

.legal-block p,
.legal-block li {
  color: var(--muted-2);
}

.legal-block ul {
  padding-left: 22px;
}

.legal-block a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(6, 17, 31, 0.88);
  backdrop-filter: blur(22px) saturate(160%);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--container));
  min-height: 78px;
  margin-inline: auto;
  gap: 20px;
}

.header__logo {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
}

.logo-accent {
  color: var(--accent);
}

.nav__list {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  color: var(--muted-2);
  font-weight: 800;
}

.nav__link:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.btn--primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), var(--cyan));
}

.btn--sm {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.cookie-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}

.cookie-table th,
.cookie-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.cookie-table th {
  color: var(--white);
  background: rgba(15, 35, 60, 0.72);
}

.cookie-table td {
  color: var(--muted-2);
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 900px;
  }

  .card-grid,
  .compliance-grid,
  .proof-grid,
  .intent-grid,
  .resource-grid,
  .outcome-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav,
  .header-actions .button-primary,
  .nav__list,
  .header .btn--sm {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    display: block;
    padding: 16px 20px 22px;
    border-top: 1px solid var(--border);
    background: rgba(6, 17, 31, 0.98);
  }

  .mobile-menu ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--muted-2);
    font-weight: 900;
  }

  .pain-grid,
  .benefit-grid,
  .proof-grid,
  .intent-grid,
  .resource-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-actions,
  .tabs,
  .social-links,
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .bento-grid,
  .metric-grid,
  .card-grid,
  .compliance-grid,
  .approach-grid,
  .legal-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .consent-row {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --border: rgba(203, 213, 225, 0.52);
    --muted: #dbeafe;
    --muted-2: #f8fafc;
  }
}
