:root {
  --bg: #f2f5f9;
  --ink: #0f1c2d;
  --muted: #4b5f78;
  --surface: rgba(255, 255, 255, 0.92);
  --line: rgba(16, 34, 58, 0.13);
  --brand: #0d4d8c;
  --brand-2: #0d7c87;
  --accent: #f4a259;
  --shadow: 0 26px 72px rgba(11, 29, 55, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 120;
  background: #0f325c;
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  left: 0.9rem;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(13, 77, 140, 0.2), transparent 34%),
    radial-gradient(circle at 90% 5%, rgba(13, 124, 135, 0.16), transparent 30%),
    linear-gradient(145deg, #f6f9fc 0%, #eef3f8 54%, #e8eff6 100%);
  z-index: -1;
}

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 253, 0.84);
  border-bottom: 1px solid rgba(16, 34, 58, 0.09);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(17, 34, 68, 0.12);
  box-shadow: 0 9px 22px rgba(15, 79, 154, 0.18);
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.01em;
  letter-spacing: 0.02em;
}

.brand-word {
  display: inline-block;
}

.brand-eight {
  display: inline-block;
  font-weight: 800;
  opacity: 0;
  transform: translate(-2.3em, -1.2em) rotate(-28deg) scale(0.64);
  transform-origin: center;
  filter: blur(0.8px);
  color: var(--brand-2);
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 0 rgba(13, 124, 135, 0);
}

/* Safari fallback: keep the jump animation but use a solid brand color for reliable rendering. */
@supports (-webkit-touch-callout: none) {
  .brand-eight {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    color: var(--brand-2);
    filter: none;
  }
}

.brand-text.brand-eight-animate .brand-eight {
  animation: brandEightJump 1200ms 180ms cubic-bezier(0.16, 0.84, 0.28, 1) forwards;
}

.brand-text.brand-eight-static .brand-eight {
  opacity: 1;
  transform: translate(0, 0) rotate(0) scale(1);
  filter: none;
}

@keyframes brandEightJump {
  0% {
    opacity: 0;
    transform: translate(-2.3em, -1.2em) rotate(-28deg) scale(0.64);
    filter: blur(0.8px);
  }
  36% {
    opacity: 1;
    transform: translate(0.18em, -1.02em) rotate(7deg) scale(1.08);
    filter: blur(0);
    text-shadow: 0 6px 20px rgba(13, 124, 135, 0.28);
  }
  64% {
    transform: translate(0.03em, 0.2em) rotate(-3deg) scale(0.95);
  }
  82% {
    transform: translate(0, -0.08em) rotate(1.8deg) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0) scale(1);
    filter: none;
    text-shadow: 0 0 0 rgba(13, 124, 135, 0);
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #1d3350;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav.menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.72rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  box-shadow: 0 15px 30px rgba(15, 79, 154, 0.25);
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.utility-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.28rem;
}

.icon-btn,
.a11y-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn {
  border: 1px solid rgba(17, 34, 68, 0.15);
  border-radius: 999px;
  background: #fff;
  color: #1f3553;
  cursor: pointer;
}

.lang-control {
  position: relative;
}

.lang-trigger {
  gap: 0.26rem;
}

.lang-icon {
  width: 13px;
  height: 13px;
  border: 1.5px solid #1f3553;
  border-radius: 50%;
  position: relative;
}

.lang-icon::before,
.lang-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.lang-icon::before {
  top: 1px;
  width: 6px;
  height: 8px;
  border: 1px solid #1f3553;
}

.lang-icon::after {
  top: 5px;
  width: 10px;
  height: 1.5px;
  background: #1f3553;
}

.lang-code {
  font-size: 0.56rem;
  font-weight: 800;
  color: #1f3553;
  letter-spacing: 0.03em;
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 172px;
  padding: 0.42rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(11, 29, 55, 0.14);
  z-index: 90;
}

.lang-control.open .lang-menu {
  display: grid;
  gap: 0.2rem;
}

.lang-control.open .lang-trigger {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.lang-control.open .lang-icon {
  border-color: #fff;
  background: transparent;
}

.lang-control.open .lang-icon::before {
  border-color: #fff;
}

.lang-control.open .lang-icon::after {
  background: #fff;
}

.lang-control.open .lang-code {
  color: #fff;
}

.lang-option {
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  color: #1f3553;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.45rem;
  cursor: pointer;
}

.lang-option:hover,
.lang-option.active {
  border-color: var(--line);
  background: rgba(13, 77, 140, 0.08);
}

.a11y-icon {
  display: inline-flex;
  width: 15px;
  height: 15px;
  position: relative;
}

.a11y-icon-contrast {
  border: 1.5px solid #1f3553;
  border-radius: 50%;
  background: linear-gradient(90deg, #1f3553 50%, transparent 50%);
}

.a11y-icon-text::before {
  content: "T+";
  color: #1f3553;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.a11y-icon-motion::before,
.a11y-icon-motion::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #1f3553;
}

.a11y-icon-motion::before {
  width: 13px;
  height: 2px;
  top: 4px;
  left: 1px;
}

.a11y-icon-motion::after {
  width: 9px;
  height: 2px;
  top: 9px;
  left: 5px;
}

.a11y-btn.active .a11y-icon-contrast {
  border-color: #fff;
  background: linear-gradient(90deg, #fff 50%, transparent 50%);
}

.a11y-btn.active .a11y-icon-text::before,
.a11y-btn.active .a11y-icon-motion::before,
.a11y-btn.active .a11y-icon-motion::after {
  color: #fff;
  background: #fff;
}

.lang-select {
  border: 1px solid rgba(17, 34, 68, 0.17);
  border-radius: 999px;
  background: #fff;
  color: #1a2e48;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.42rem 0.62rem;
  min-width: 104px;
}

.a11y-btn {
  border: 1px solid rgba(17, 34, 68, 0.15);
  border-radius: 999px;
  background: #fff;
  color: #1f3553;
  font-weight: 700;
  font-size: 0.74rem;
  cursor: pointer;
  padding: 0.41rem 0.58rem;
}

.a11y-btn.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: transparent;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.1rem;
  align-items: stretch;
  padding: 4.8rem 0 2.5rem;
}

.hero-product {
  border: 1px solid rgba(16, 34, 58, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(29, 92, 168, 0.32), transparent 38%),
    radial-gradient(circle at 82% 20%, rgba(13, 124, 135, 0.26), transparent 34%),
    linear-gradient(150deg, #0b1728 0%, #10223a 50%, #0a1a2f 100%);
  box-shadow: 0 26px 70px rgba(10, 21, 38, 0.34);
  padding: 3rem;
}

.hero-product .eyebrow {
  color: #8bc0ff;
}

.hero-product h1,
.hero-product .hero-sub,
.hero-product .trust-row,
.hero-product .signal-label,
.hero-product .signal-value {
  color: #e7f0fb;
}

.hero-product .signal-grid article {
  border-color: rgba(132, 178, 237, 0.26);
  background: rgba(10, 22, 39, 0.62);
}

.hero-product .btn-ghost {
  border-color: rgba(189, 217, 255, 0.34);
  color: #e8f2ff;
  background: rgba(22, 40, 66, 0.65);
}

.hero-product .trust-logos span {
  border-color: rgba(175, 205, 244, 0.28);
  color: #d6e9ff;
  background: rgba(14, 28, 48, 0.56);
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--brand-2);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 1.2rem 0 0;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-row {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-logos {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-logos span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0.28rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2c3f5a;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 252, 0.93));
  padding: 1.1rem;
  align-self: end;
}

.mode-switch {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.mode-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: #24354d;
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.mode-btn:hover {
  border-color: rgba(15, 79, 154, 0.3);
}

.mode-btn.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: transparent;
  color: #fff;
}

.signal-grid {
  display: grid;
  gap: 0.7rem;
}

.signal-grid article {
  border: 1px solid rgba(15, 79, 154, 0.13);
  border-radius: var(--radius-md);
  background: rgba(245, 249, 255, 0.92);
  padding: 0.8rem 0.95rem;
}

.signal-label {
  margin: 0;
  color: #395273;
  font-size: 0.8rem;
}

.signal-value {
  margin: 0.18rem 0 0;
  font-weight: 800;
  color: #0f2d52;
}

.value-strip {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.value-item {
  padding: 1.1rem;
}

.value-item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.value-item h3 {
  font-size: 1.02rem;
}

.value-item p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.section {
  padding: 2.6rem 0 0;
}

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

.section-head h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  letter-spacing: -0.015em;
}

.feature-grid,
.use-case-grid,
.results-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-grid,
.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.use-case,
.metric-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.1rem;
  box-shadow: 0 10px 26px rgba(13, 31, 57, 0.06);
}

.card,
.use-case {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.use-case:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(13, 31, 57, 0.1);
  border-color: rgba(13, 77, 140, 0.22);
}

.card h3,
.use-case h3 {
  font-size: 1.06rem;
}

.card p,
.use-case p,
.metric-label,
.quote-card span {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

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

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.1rem;
  box-shadow: 0 10px 26px rgba(13, 31, 57, 0.06);
}

.faq-item h3 {
  margin: 0;
  font-size: 1.02rem;
}

.faq-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.metric {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: #0f325c;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.quote-card p {
  margin: 0;
  font-size: 1.02rem;
  color: #1f324b;
}

.final-cta {
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
  border: 1px solid rgba(13, 77, 140, 0.22);
  border-radius: 28px;
  padding: 1.5rem;
  background:
    linear-gradient(120deg, rgba(13, 124, 135, 0.12), rgba(13, 77, 140, 0.1)),
    rgba(255, 255, 255, 0.9);
}

.final-cta h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  max-width: 24ch;
}

.final-cta p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.site-footer {
  padding: 1rem 0 2.2rem;
  color: #4f627d;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.footer-brand {
  margin: 0;
  font-size: 1rem;
  color: #223551;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.footer-links a {
  color: #385276;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: #0f2d52;
}

.copyright {
  margin: 0;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
iframe:focus-visible {
  outline: 3px solid #0f4f9a;
  outline-offset: 2px;
}

body.high-contrast {
  --bg: #ffffff;
  --ink: #0b1320;
  --muted: #24364f;
  --line: rgba(5, 25, 52, 0.32);
  --surface: #ffffff;
}

body.high-contrast .page-bg {
  background:
    radial-gradient(circle at 10% 10%, rgba(15, 79, 154, 0.16), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(12, 110, 122, 0.14), transparent 28%),
    #f9fcff;
}

body.large-text {
  font-size: 1.08rem;
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.page-hero {
  padding: 3.8rem 0 0.6rem;
}

.page-hero h1 {
  max-width: 20ch;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 68ch;
  color: var(--muted);
}

.pill-row {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #314763;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
}

.timeline {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  padding: 1.1rem;
}

.timeline-step {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #2f4f7a;
}

.timeline-item h3 {
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.timeline-item p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.cta-band {
  margin-top: 3.2rem;
  padding: 1.45rem;
  border-radius: 20px;
  border: 1px solid rgba(13, 124, 135, 0.2);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cta-band p {
  margin: 0;
  color: #234563;
  font-weight: 600;
}

.release-strip {
  padding-top: 1.6rem;
}

.release-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.release-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(13, 31, 57, 0.07);
}

.release-tag {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #365a83;
}

.release-card h3 {
  margin-top: 0.35rem;
  font-size: 1rem;
}

.release-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.standards-section {
  position: relative;
}

.standards-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-wall {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.logo-chip {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 252, 0.9));
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.68rem;
  min-height: 58px;
  box-shadow: 0 8px 22px rgba(13, 31, 57, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.logo-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(13, 31, 57, 0.1);
  border-color: rgba(13, 77, 140, 0.24);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(13, 77, 140, 0.17), rgba(13, 124, 135, 0.17));
  color: #1f466f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  color: #334e6d;
  font-weight: 800;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.vertical-link-row {
  margin-top: 1.3rem;
}

.compliance-section {
  margin-top: 0.5rem;
}

.compliance-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compliance-grid .metric {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.form-shell {
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.cal-embed-shell {
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cal-embed-frame {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

.cal-embed-fallback {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-end;
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

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

.field label {
  font-size: 0.88rem;
  color: #2d425e;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(17, 34, 68, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--ink);
}

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

.form-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  margin: 0.5rem 0 0;
  color: #15598e;
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  padding: 1.15rem;
}

.legal-card h2 {
  font-size: 1.06rem;
}

.legal-card p,
.legal-card li {
  margin-top: 0.55rem;
  color: var(--muted);
}

.legal-card ul {
  margin: 0.15rem 0 0;
  padding-left: 1.1rem;
}

.legal-note {
  margin: 0.2rem 0 0;
  font-size: 0.89rem;
  color: #3f5575;
}

.embed-consent-block {
  border-top: 1px solid var(--line);
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
}

.embed-consent-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.embed-consent-block .btn {
  margin-top: 0.75rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 1.2rem));
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 36, 0.94);
  color: #f4f7fc;
  box-shadow: 0 20px 48px rgba(7, 16, 33, 0.35);
  padding: 0.95rem;
  z-index: 90;
}

.cookie-banner h3 {
  margin: 0;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
}

.cookie-banner p {
  margin: 0.45rem 0 0;
  color: #d5e1f0;
}

.cookie-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  border-color: rgba(255, 255, 255, 0.25);
}

.cookie-sheet {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 18, 0.55);
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-sheet-card {
  width: min(680px, 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(10, 20, 38, 0.28);
  padding: 1rem;
}

.cookie-sheet-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.cookie-sheet-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.cookie-options {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.6rem;
}

.cookie-option {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem;
  background: rgba(247, 251, 255, 0.82);
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.cookie-option p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
}

.cookie-manage-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d3350;
  font-weight: 700;
  padding: 0.52rem 0.8rem;
  cursor: pointer;
}

.chatbot-shell {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 85;
}

.chatbot-launcher {
  border: 1px solid rgba(13, 77, 140, 0.34);
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  padding: 0.62rem 0.95rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(11, 41, 72, 0.26);
}

.chatbot-panel {
  width: min(360px, calc(100vw - 1.6rem));
  margin-bottom: 0.58rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(8, 24, 44, 0.22);
  overflow: hidden;
}

.chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.78rem 0.8rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.96), rgba(255, 255, 255, 0.96));
}

.chatbot-head h3 {
  margin: 0;
  font-size: 0.96rem;
}

.chatbot-close {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #274163;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
}

.chatbot-messages {
  max-height: 360px;
  overflow-y: auto;
  padding: 0.75rem;
  display: grid;
  gap: 0.55rem;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.95), rgba(244, 249, 255, 0.9));
}

.chatbot-message {
  max-width: 92%;
  border-radius: 12px;
  padding: 0.6rem 0.68rem;
  border: 1px solid var(--line);
}

.chatbot-message-bot {
  background: rgba(255, 255, 255, 0.95);
  justify-self: start;
}

.chatbot-message-user {
  background: rgba(13, 77, 140, 0.12);
  border-color: rgba(13, 77, 140, 0.25);
  justify-self: end;
}

.chatbot-message-text {
  margin: 0;
  color: #1d3654;
  font-size: 0.86rem;
  white-space: pre-line;
}

.chatbot-link-row {
  margin-top: 0.42rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.chatbot-link {
  border: 1px solid rgba(13, 77, 140, 0.23);
  border-radius: 999px;
  background: rgba(13, 77, 140, 0.06);
  color: #0f4175;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.24rem 0.5rem;
}

.chatbot-form {
  display: flex;
  gap: 0.48rem;
  padding: 0.72rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chatbot-input {
  flex: 1;
  border: 1px solid rgba(17, 34, 68, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0.54rem 0.64rem;
  font: inherit;
  font-size: 0.84rem;
}

.chatbot-send {
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.52rem 0.7rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .container {
    width: min(1140px, calc(100% - 2rem));
  }

  .logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav {
    gap: 0.7rem;
  }

  .utility-controls {
    gap: 0.35rem;
    padding: 0.24rem;
  }
}

@media (max-width: 980px) {
  .nav {
    justify-content: flex-start;
  }

  .brand {
    order: 2;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 1;
    margin-left: 0;
    margin-right: 0.55rem;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding-top: 0.55rem;
  }

  .nav.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: inline-block;
    width: 100%;
    padding: 0.3rem 0;
    font-size: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.3rem;
  }

  .hero-product {
    padding: 1.5rem;
  }

  .value-strip,
  .feature-grid,
  .use-case-grid,
  .standards-grid,
  .compliance-grid,
  .results-grid,
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .testimonial-grid,
  .timeline,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .value-strip,
  .feature-grid,
  .use-case-grid,
  .standards-grid,
  .cta-band {
    width: 100%;
  }

  .cta-band,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .utility-controls {
    display: none;
    order: 5;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav.menu-open .utility-controls {
    display: inline-flex;
  }

  .nav > .btn-outline {
    display: none;
    order: 6;
    width: auto;
    margin: 0.35rem auto 0;
  }

  .nav.menu-open > .btn-outline {
    display: inline-flex;
  }

  .lang-select {
    min-width: 96px;
  }

  .btn-outline {
    width: 100%;
  }

  .value-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .logo-chip {
    min-height: 56px;
  }
}

@media (max-width: 768px) {
  .feature-grid,
  .use-case-grid,
  .standards-grid,
  .logo-wall,
  .compliance-grid,
  .results-grid,
  .release-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 1.4rem;
    padding-top: 2.8rem;
  }

  .page-hero {
    padding-top: 2.8rem;
  }

  .site-header {
    position: static;
  }

  .cal-embed-frame {
    min-height: 680px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .container {
    width: min(1140px, calc(100% - 1.3rem));
  }

  .cal-embed-frame {
    min-height: 640px;
  }

  .btn {
    width: 100%;
  }

  .a11y-btn,
  .lang-select {
    font-size: 0.72rem;
    padding: 0.38rem 0.5rem;
  }

  .icon-btn,
  .a11y-btn {
    width: 36px;
    height: 36px;
    padding: 0;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-manage-btn {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .chatbot-shell {
    left: 0.65rem;
    bottom: 0.65rem;
  }

  .chatbot-panel {
    width: min(360px, calc(100vw - 1.3rem));
  }

  .chatbot-form {
    flex-direction: column;
  }

  .chatbot-send {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .mode-switch {
    flex-direction: column;
  }

  .logo-chip {
    min-height: 52px;
    padding: 0.66rem 0.62rem;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

}
