:root {
  --black: #050706;
  --ink: #0c1513;
  --charcoal: #101614;
  --charcoal-2: #151d1a;
  --company-teal: #003a36;
  --teal: #51e5ce;
  --teal-soft: #a8fff1;
  --teal-muted: #67cfc1;
  --warm: #f2b86d;
  --paper: #f6f4ed;
  --paper-2: #e9e3d6;
  --white: #ffffff;
  --muted: #a8b1ad;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(5, 7, 6, 0.14);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  --sans: "Montserrat", "Avenir Next", Arial, sans-serif;
  --serif: "Montserrat", "Avenir Next", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::selection {
  background: var(--teal);
  color: var(--black);
}

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

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

.site-header {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--white);
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  left: 2.5rem;
  padding: 0;
  position: fixed;
  right: 2.5rem;
  top: 1.45rem;
  z-index: 20;
  transition:
    color 260ms ease;
}

.nav-primary-group {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  gap: 2.25rem;
  padding: 0.95rem 1.45rem 0.95rem 1rem;
  transition:
    background 260ms ease,
    backdrop-filter 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled .nav-primary-group {
  background: rgba(5, 7, 6, 0.46);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
}

.site-header.is-light {
  color: var(--ink);
}

.site-header.is-light.is-scrolled .nav-primary-group {
  background: rgba(247, 255, 252, 0.42);
  border-color: rgba(5, 7, 6, 0.12);
  box-shadow: 0 18px 60px rgba(5, 7, 6, 0.12);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-shadow:
    0 0 14px rgba(81, 229, 206, 0.42),
    0 0 32px rgba(81, 229, 206, 0.16);
  transition: color 260ms ease, text-shadow 260ms ease;
  white-space: nowrap;
}

.site-header.is-light .brand {
  text-shadow: 0 0 18px rgba(81, 229, 206, 0.28);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 2.25rem;
  margin-right: 0.7rem;
}

.nav-links a,
.nav-cta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-light .nav-links a {
  color: rgba(12, 21, 19, 0.76);
}

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

.site-header.is-light .nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--black);
  padding: 0.74rem 1.22rem;
}

.site-header.is-light .nav-cta {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(5, 7, 6, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.menu-toggle,
.mobile-nav-cta {
  display: none;
}

.menu-toggle {
  align-items: center;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  color: var(--black);
  flex-direction: column;
  gap: 0.28rem;
  height: 2.8rem;
  justify-content: center;
  padding: 0;
  width: 2.8rem;
}

.menu-toggle span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease;
  width: 1.05rem;
}

.site-header.is-light .menu-toggle {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(5, 7, 6, 0.12);
  color: var(--ink);
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(0.18rem) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-0.18rem) rotate(-45deg);
}

.hero {
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
  padding: 12rem 3.5rem 3rem;
  position: relative;
}

.hero-image,
.hero-scrim {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  filter: brightness(1.3);
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.82) 0%, rgba(5, 7, 6, 0.32) 42%, rgba(5, 7, 6, 0.08) 84%),
    linear-gradient(0deg, rgba(5, 7, 6, 0.95) 0%, rgba(5, 7, 6, 0.1) 48%, rgba(5, 7, 6, 0.45) 100%);
  z-index: -2;
}

.hero-content {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.announcement,
.section-kicker {
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 600;
  gap: 0.55rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.7rem;

}

.announcement {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: none;
  padding: 0.55rem 0.75rem;
}

.status-dot {
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(81, 229, 206, 0.7);
  display: inline-block;
  height: 0.45rem;
  width: 0.45rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: 4.6rem;
  margin: 2rem 0 1.5rem;
  text-wrap: balance;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  max-width: 660px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--white);
  color: var(--black);
}

.button-primary:hover {
  background: var(--teal-soft);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-note {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  bottom: 5rem;
  color: rgba(255, 255, 255, 0.72);
  display: none;
  left: 3.5rem;
  margin: 0;
  padding-left: 1.1rem;
  position: absolute;
}

.hero-note p {
  font-size: 0.88rem;
  margin: 0.1rem 0;
}

.hero-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  bottom: 3.5rem;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  max-width: 390px;
  position: absolute;
  right: 3.5rem;
  width: 32%;
}

.hero-metrics div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.2rem 0 0 1.2rem;
}

.hero-metrics > div > span {
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
}

.hero-metrics .metric-number {
  align-items: baseline;
  display: inline-flex;
  line-height: 0.9;
}

.metric-percent {
  font-size: 0.78em;
  line-height: 1;
  margin-left: 0.01em;
  transform: translateY(0.02em);
}

.metric-plus {
  font-size: 0.42em;
  line-height: 1;
  margin-left: 0.05em;
  transform: translateY(-0.16em);
}

.hero-metrics p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.6rem 0 0;
  text-transform: uppercase;
}

.logo-marquee {
  background: var(--black);
  height: 4.4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
  overflow: hidden;
  position: relative;
}

.logo-marquee-track {
  animation: logo-marquee-scroll 42s linear infinite;
  display: flex;
  left: 0;
  position: absolute;
  top: 50%;
  width: max-content;
  will-change: transform;
}

.logo-marquee-group {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: clamp(5.25rem, 12vw, 13.5rem);
  padding-right: clamp(5.25rem, 12vw, 13.5rem);
}

.logo-marquee img {
  display: block;
  filter: grayscale(1) brightness(0) invert(1);
  height: 2.18rem;
  max-width: 14.4rem;
  object-fit: contain;
  opacity: 0.42;
  width: auto;
}

.logo-marquee .logo-hme {
  filter: grayscale(1) brightness(1.12) contrast(0.88);
  opacity: 0.46;
}

.logo-marquee .logo-square {
  height: 2.04rem;
}

.logo-marquee .logo-rally {
  height: 2.64rem;
}

@keyframes logo-marquee-scroll {
  from {
    transform: translate3d(0, -50%, 0);
  }

  to {
    transform: translate3d(-50%, -50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
    transform: translate3d(0, -50%, 0);
  }
}

.intro-band {
  align-items: center;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  justify-content: center;
  min-height: 280px;
  padding: 4rem 2rem;
}

.quote-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
  width: 100%;
}

.quote-grid blockquote {
  border-left: 1px solid rgba(81, 229, 206, 0.32);
  margin: 0;
  padding-left: 1.5rem;
}

.quote-grid p {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 0;
  text-wrap: balance;
  line-height: 1.2;
}

.quote-grid cite {
  color: var(--teal-muted);
  display: block;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 600;
  margin-top: 1.1rem;
  text-transform: uppercase;
}

.dark-section,
.process-section {
  background: var(--black);
  padding: 7rem 2rem;
}

.dark-section {
  border-bottom: 1px solid var(--line-dark);
}

.dark-section > .section-kicker,
.section-grid,
.operations-panel,
.process-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
}

.section-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin-top: 1.8rem;
}

.section-grid h2,
.section-heading h2,
.process-copy h2,
.contact-copy h2 {
  font-size: 3rem;
  margin-bottom: 0;
  line-height: 1.08;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-row article {
  border-left: 1px solid var(--line-dark);
  min-height: 170px;
  padding: 0.35rem 1.35rem 0;
}

.feature-icon,
.benefit-grid span,
.process-list span {
  color: var(--teal);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
}

.feature-row h3,
.benefit-grid h3,
.process-list h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  font-weight: 550;
}

.feature-row p,
.benefit-grid p,
.process-list p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 0;
}

.operations-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--charcoal);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  grid-template-columns: 360px 1fr;
  margin-top: 4.5rem;
  min-height: 560px;
  overflow: hidden;
}

.ops-sidebar {
  background: rgba(5, 7, 6, 0.62);
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.ops-sidebar strong,
.order-summary strong {
  color: var(--white);
  display: block;
  font-size: 1.15rem;
  margin-top: 0.25rem;
}

.mini-label {
  color: var(--teal-muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ops-sidebar ul {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.ops-sidebar li {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  gap: 0.7rem;
  padding: 1.1rem 0;
}

.ops-sidebar li::after {
  color: var(--teal-muted);
  content: "✓";
  display: inline-block;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  margin-left: auto;
}

.ops-main {
  background:
    linear-gradient(135deg, rgba(81, 229, 206, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    #111816;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 2rem;
}

.screen-bar {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.latency {
  background: rgba(81, 229, 206, 0.13);
  border: 1px solid rgba(81, 229, 206, 0.25);
  border-radius: 999px;
  color: var(--teal-soft);
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
}

.transcript {
  align-content: center;
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
}

.transcript p {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin: 0;
  max-width: 620px;
  padding: 1rem;
}

.transcript p:nth-child(even) {
  background: rgba(81, 229, 206, 0.09);
  margin-left: 4rem;
}

.transcript span {
  color: var(--teal-muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.order-summary {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 1.35rem;
  grid-template-columns: minmax(180px, 0.85fr) minmax(260px, 1fr);
  padding-top: 1.4rem;
}

.order-summary > div:first-child strong {
  font-weight: 500;
}

.summary-grid {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr;
  justify-content: start;
}

.summary-grid span {
  color: var(--muted);
}

.summary-grid p {
  margin: 0;
}

.summary-grid strong {
  color: var(--teal-soft);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0;
  text-align: left;
}

.light-section {
  background: var(--paper);
  color: var(--ink);
  padding: 7rem 2rem;
}

.light-section .status-dot {
  background: #1aa895;
  box-shadow: 0 0 14px rgba(26, 168, 149, 0.42);
}

.section-heading,
.benefit-groups {
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
}

.section-heading {
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.55fr 1.45fr;
}

.dark-kicker {
  color: rgba(12, 21, 19, 0.72);
}

.benefit-groups {
  display: grid;
  gap: 3.1875rem;
  margin-top: 4rem;
}

.benefit-group > h3 {
  color: rgba(12, 21, 19, 0.86);
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-grid span {
  color: #168d7d;
}

.benefit-grid article {
  border-left: 1px solid var(--line-light);
  min-height: 235px;
  padding: 0 1.4rem 2rem;
}

.benefit-grid p {
  color: rgba(12, 21, 19, 0.64);
}

.process-section {
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.process-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 1.5rem 0 0;
  max-width: 560px;
}

.process-list {
  display: grid;
}

.process-list article {
  border-top: 1px solid var(--line-dark);
  padding: 1.7rem 0;
}

.process-list article:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.contact-section {
  background:
    linear-gradient(180deg, #050706 0%, #050706 34%, #071613 54%, #0d3c35 76%, #4cae9e 100%);
  color: var(--white);
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  isolation: isolate;
  overflow: hidden;
  padding: 8.5rem max(2rem, calc((100vw - 1240px) / 2)) 7rem;
  position: relative;
  padding-bottom: 12.0rem;
  padding-top: 10.0rem;
}

.contact-section::before,
.contact-section::after,
.contact-wave-highlight {
  content: "";
  pointer-events: none;
  position: absolute;
}

.contact-section::before {
  background:
    linear-gradient(180deg, #050706 0%, #050706 26%, rgba(5, 7, 6, 0.9) 42%, rgba(5, 7, 6, 0.42) 62%, rgba(5, 7, 6, 0) 82%);
  inset: 0;
  z-index: 2;
}

.contact-section::after {
  animation: contact-teal-wave 7.44s ease-in-out infinite alternate;
  background:
    radial-gradient(110% 86% at 18% 86%, rgba(81, 229, 206, 0.66) 0%, rgba(28, 130, 116, 0.52) 36%, rgba(5, 7, 6, 0) 72%),
    radial-gradient(92% 78% at 78% 72%, rgba(5, 35, 31, 0.9) 0%, rgba(81, 229, 206, 0.38) 42%, rgba(5, 7, 6, 0) 74%),
    linear-gradient(100deg, rgba(5, 7, 6, 0.08), rgba(13, 60, 53, 0.68) 34%, rgba(81, 229, 206, 0.38) 64%, rgba(5, 7, 6, 0.1));
  background-position: 8% 55%, 76% 48%, 35% 50%;
  background-size: 124% 126%, 124% 126%, 170% 120%;
  bottom: -24%;
  contain: paint;
  filter: blur(20px) saturate(1.04) contrast(1.02);
  height: 86%;
  left: -20%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1800 760' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='soft' x='-12%25' y='-28%25' width='124%25' height='150%25'%3E%3CfeGaussianBlur stdDeviation='38'/%3E%3C/filter%3E%3C/defs%3E%3Cpath filter='url(%23soft)' fill='black' d='M-120 250 C 220 68 470 424 810 250 S 1280 68 1620 250 S 2070 424 2280 250 L2280 860 L-120 860 Z'/%3E%3C/svg%3E");
  -webkit-mask-position: 38% 0%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 170% 116%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1800 760' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='soft' x='-12%25' y='-28%25' width='124%25' height='150%25'%3E%3CfeGaussianBlur stdDeviation='38'/%3E%3C/filter%3E%3C/defs%3E%3Cpath filter='url(%23soft)' fill='black' d='M-120 250 C 220 68 470 424 810 250 S 1280 68 1620 250 S 2070 424 2280 250 L2280 860 L-120 860 Z'/%3E%3C/svg%3E");
  mask-position: 38% 0%;
  mask-repeat: no-repeat;
  mask-size: 170% 116%;
  opacity: 0.86;
  right: -20%;
  transform: translate3d(-5%, 2%, 0) scale(1.08);
  will-change: transform;
  z-index: 0;
}

.contact-wave-highlight {
  animation: contact-highlight-wave 5.76s ease-in-out infinite alternate;
  background:
    radial-gradient(86% 58% at 36% 70%, rgba(224, 255, 250, 0.4) 0%, rgba(168, 255, 241, 0.2) 28%, rgba(5, 7, 6, 0) 72%),
    linear-gradient(96deg, rgba(5, 7, 6, 0), rgba(214, 255, 248, 0.22) 38%, rgba(81, 229, 206, 0.18) 58%, rgba(5, 7, 6, 0));
  background-position: 70% 48%, 74% 50%;
  background-size: 120% 112%, 170% 106%;
  bottom: -18%;
  contain: paint;
  filter: blur(24px) saturate(1.02);
  height: 72%;
  left: -22%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1500 700' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='soft' x='-14%25' y='-30%25' width='128%25' height='154%25'%3E%3CfeGaussianBlur stdDeviation='34'/%3E%3C/filter%3E%3C/defs%3E%3Cpath filter='url(%23soft)' fill='black' d='M-100 310 C 130 170 300 430 540 310 S 900 170 1140 310 S 1420 430 1700 310 L1700 780 L-100 780 Z'/%3E%3C/svg%3E");
  -webkit-mask-position: 72% 0%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 150% 112%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1500 700' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='soft' x='-14%25' y='-30%25' width='128%25' height='154%25'%3E%3CfeGaussianBlur stdDeviation='34'/%3E%3C/filter%3E%3C/defs%3E%3Cpath filter='url(%23soft)' fill='black' d='M-100 310 C 130 170 300 430 540 310 S 900 170 1140 310 S 1420 430 1700 310 L1700 780 L-100 780 Z'/%3E%3C/svg%3E");
  mask-position: 72% 0%;
  mask-repeat: no-repeat;
  mask-size: 150% 112%;
  opacity: 0.52;
  right: -22%;
  transform: translate3d(7%, 0, 0) scale(1.06);
  will-change: transform;
  z-index: 1;
}

@keyframes contact-teal-wave {
  0% {
    transform: translate3d(-22.5%, 4%, 0) scale(1.14);
  }

  50% {
    transform: translate3d(8.75%, -4%, 0) scale(1.16);
  }

  100% {
    transform: translate3d(22.5%, 4%, 0) scale(1.14);
  }
}

@keyframes contact-highlight-wave {
  0% {
    transform: translate3d(20%, 3%, 0) scale(1.1);
  }

  50% {
    transform: translate3d(-6.25%, -4%, 0) scale(1.12);
  }

  100% {
    transform: translate3d(-20%, 3%, 0) scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-section::after,
  .contact-wave-highlight {
    animation: none;
  }
}

.contact-copy,
.demo-form {
  position: relative;
  z-index: 3;
}

.contact-section .dark-kicker {
  color: rgba(236, 255, 250, 0.78);
}

.contact-copy h2 {
  color: var(--white);
  max-width: 660px;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.contact-copy p {
  color: rgba(236, 255, 250, 0.76);
  font-size: 1.04rem;
  margin-top: 1.25rem;
  max-width: 570px;
}

.contact-copy a {
  border-bottom: 1px solid currentColor;
  color: var(--teal-soft);
  display: inline-block;
  font-weight: 600;
  margin-top: 1rem;
}

.demo-form {
  background:
    linear-gradient(180deg, rgba(246, 255, 252, 0.9), rgba(222, 244, 238, 0.82));
  border: 1px solid rgba(168, 255, 241, 0.35);
  border-radius: 8px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 1.2rem;
  backdrop-filter: blur(12px);
}

.demo-form label {
  display: grid;
  gap: 0.45rem;
}

.demo-form span {
  color: rgba(12, 47, 41, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: rgba(248, 252, 249, 0.88);
  border: 1px solid rgba(11, 71, 63, 0.18);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 3rem;
  padding: 0.85rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-muted);
  outline: 2px solid rgba(81, 229, 206, 0.18);
}

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

.demo-form .button {
  background: var(--black);
  border: 0;
  color: var(--white);
  width: 100%;
}

.demo-form .button:hover {
  background: #0b473f;
}

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 0.9fr);
  padding: 4rem max(2rem, calc((100vw - 1240px) / 2));
}

.footer-brand-block {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
}

.footer-brand-block p {
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
  max-width: 360px;
}

.compliance-block {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.compliance-status {
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.65rem;
  text-transform: uppercase;
}

.compliance-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  color: var(--black);
  display: inline-flex;
  flex-direction: column;
  height: 4rem;
  justify-content: center;
  line-height: 1;
  width: 4rem;
}

.compliance-badge strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.compliance-badge span {
  font-size: 0.48rem;
  font-weight: 700;
  margin-top: 0.16rem;
}

.footer-sitemap {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
}

.footer-column {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.footer-column h2 {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  font-weight: 450;
}

.footer-column a:hover {
  color: var(--teal-soft);
}

.nav-links a[aria-current="page"] {
  color: var(--teal-soft);
}

.site-header.is-light .nav-links a[aria-current="page"] {
  color: #0b6f62;
}

.page-main {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
}

.page-hero {
  background:
    radial-gradient(76% 62% at 84% 14%, rgba(81, 229, 206, 0.18), rgba(5, 7, 6, 0) 56%),
    linear-gradient(180deg, #050706 0%, #09100f 100%);
  border-bottom: 1px solid var(--line-dark);
  padding: 11rem 2rem 6.5rem;
}

.page-hero-grid,
.page-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
}

.page-hero-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.legal-hero-grid {
  display: block;
  max-width: 820px;
  text-align: center;
}

.legal-hero-grid .page-intro {
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  font-size: 4.8rem;
  margin: 1.6rem 0 1.4rem;
  max-width: 860px;
}

.page-intro {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  margin-bottom: 0;
  max-width: 760px;
}

.page-eyebrow {
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 0.55rem;
  text-transform: uppercase;
}

.hero-aside {
  align-self: end;
  border-left: 1px solid rgba(81, 229, 206, 0.28);
  display: grid;
  gap: 1.35rem;
  padding-left: 1.35rem;
}

.hero-aside p,
.quick-stat p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.quick-stat strong {
  color: var(--teal-soft);
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.page-band {
  background: var(--paper);
  color: var(--ink);
  padding: 6rem 2rem;
}

.page-band.dark-page-band {
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  color: var(--white);
}

.section-title-row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.55fr 1.45fr;
  margin-bottom: 3.5rem;
}

.section-title-row h2 {
  font-size: 3.8rem;
  margin: 0;
}

.section-title-row p {
  color: rgba(12, 21, 19, 0.66);
  margin: 0.9rem 0 0;
  max-width: 620px;
}

.dark-page-band .section-title-row p {
  color: rgba(255, 255, 255, 0.68);
}

.person-grid,
.jobs-list {
  display: grid;
  gap: 1rem;
}

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

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

.person-card {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  display: grid;
  min-height: 100%;
  overflow: hidden;
}

.person-photo {
  aspect-ratio: 1;
  background: #d8ddd8;
  object-fit: cover;
  width: 100%;
}

.person-copy {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.person-copy h2 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.person-copy p {
  color: rgba(12, 21, 19, 0.66);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}

.person-copy a,
.legal-document a,
.job-document a {
  color: #0b6f62;
  font-weight: 700;
}

.jobs-list {
  grid-template-columns: 1fr;
}

.job-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr auto;
  padding: 1.35rem;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.job-card:hover {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(5, 7, 6, 0.28);
  transform: translateY(-2px);
}

.job-card h2 {
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1;
  margin: 0 0 0.65rem;
}

.job-card p {
  color: rgba(12, 21, 19, 0.64);
  margin: 0;
}

.job-card .button {
  background: var(--black);
  color: var(--white);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.badge {
  border: 1px solid rgba(81, 229, 206, 0.24);
  border-radius: 999px;
  color: var(--teal-soft);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  text-transform: uppercase;
}

.page-band .badge {
  border-color: rgba(5, 7, 6, 0.14);
  color: #0b6f62;
}

.legal-layout,
.job-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
}

.legal-layout {
  display: block;
}

.legal-aside,
.job-sidebar {
  align-self: start;
  position: sticky;
  top: 7rem;
}

.legal-aside {
  border-left: 1px solid var(--line-light);
  color: rgba(12, 21, 19, 0.62);
  padding-left: 1rem;
}

.legal-aside p,
.job-sidebar p {
  margin: 0;
}

.legal-aside strong,
.job-sidebar strong {
  color: var(--ink);
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.legal-document,
.job-document {
  max-width: 820px;
}

.legal-document {
  margin-left: auto;
  margin-right: auto;
}

.legal-document h2,
.job-document h2 {
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1;
  margin: 2.8rem 0 1rem;
}

.legal-document h2:first-child,
.job-document h2:first-child {
  margin-top: 0;
}

.legal-document h3,
.job-document h3 {
  font-size: 1rem;
  margin: 1.6rem 0 0.65rem;
}

.legal-document p,
.legal-document li,
.job-document p,
.job-document li {
  color: rgba(12, 21, 19, 0.68);
}

.legal-document ol,
.legal-document ul,
.job-document ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0 1.4rem;
  padding-left: 1.2rem;
}

.job-sidebar {
  display: grid;
  gap: 1rem;
}

.apply-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5)),
    var(--paper-2);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 1.2rem;
}

.apply-card .button {
  background: var(--black);
  color: var(--white);
  margin-top: 1rem;
  width: 100%;
}

.job-back-link {
  color: #0b6f62;
  font-size: 0.86rem;
  font-weight: 700;
}

.cta-strip {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
}

.cta-strip h2 {
  font-size: 3.4rem;
  margin: 0;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.66);
  margin: 0.8rem 0 0;
  max-width: 620px;
}

.team-page {
  background:
    linear-gradient(145deg, var(--company-teal) 0%, #061211 34%, var(--black) 72%);
}

.team-page .page-main {
  background: transparent;
}

.team-page .site-footer {
  background: transparent;
}

.team-page .team-section {
  background: transparent;
  border-top: 1px solid var(--line-dark);
  color: var(--white);
}

.team-page .team-section:first-child {
  border-top: 0;
  padding-top: 11.75rem;
}

.team-page .dark-page-band {
  background: transparent;
}

.team-page .section-title-row {
  align-items: start;
}

.team-page .section-title-row .section-kicker {
  color: var(--teal-soft);
  font-size: 1.02rem;
}

.team-page .section-title-row h2 {
  color: var(--white);
  font-size: 4.4rem;
}

.team-page .section-title-row p {
  color: rgba(236, 255, 250, 0.72);
  font-size: 1.08rem;
}

.team-page .person-grid {
  gap: 2.2rem 1.6rem;
}

.team-page .person-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 0;
  overflow: visible;
}

.team-page .person-photo {
  aspect-ratio: 1;
  background: transparent;
  height: clamp(180px, 16vw, 240px);
  object-fit: contain;
  width: 100%;
}

.team-page .advisor-grid .person-photo {
  height: clamp(190px, 19vw, 280px);
}

.team-page .person-copy {
  gap: 0.42rem;
  justify-items: center;
  padding: 1rem 0 0;
  text-align: center;
}

.team-page .person-copy h2 {
  color: var(--white);
  font-size: 1.02rem;
}

.team-page .person-copy p {
  color: rgba(236, 255, 250, 0.66);
}

.linkedin-link {
  align-items: center;
  display: inline-flex;
  height: 1.15rem;
  margin-top: 0.25rem;
  width: 1.15rem;
}

.linkedin-link img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 980px) {
  .site-header {
    gap: 1rem;
    left: 1.25rem;
    right: 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-open .nav-links {
    align-content: start;
    background: rgba(5, 7, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    display: grid;
    gap: 0.15rem;
    justify-items: stretch;
    margin-right: 0;
    padding: 0.75rem;
    position: fixed;
    right: 1.25rem;
    top: 5rem;
    z-index: 21;
    width: min(19rem, calc(100vw - 2.5rem));
  }

  .site-header.menu-open .nav-links a {
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.86);
    display: flex;
    padding: 0.78rem 0.85rem;
  }

  .site-header.menu-open .nav-links a:hover,
  .site-header.menu-open .nav-links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .site-header.menu-open .nav-links .mobile-nav-cta {
    align-items: center;
    background: var(--white);
    border-radius: 999px;
    color: var(--black);
    display: flex;
    justify-content: center;
    margin-top: 0.35rem;
    padding: 0.74rem 0.9rem;
  }

  .site-header.is-light.menu-open .nav-links {
    background: rgba(247, 255, 252, 0.9);
    border-color: rgba(5, 7, 6, 0.12);
    box-shadow: 0 24px 70px rgba(5, 7, 6, 0.16);
  }

  .site-header.is-light.menu-open .nav-links a {
    color: rgba(12, 21, 19, 0.76);
  }

  .site-header.is-light.menu-open .nav-links a:hover,
  .site-header.is-light.menu-open .nav-links a[aria-current="page"] {
    background: rgba(5, 7, 6, 0.08);
    color: var(--ink);
  }

  .site-header.is-light.menu-open .nav-links .mobile-nav-cta {
    background: var(--black);
    color: var(--white);
  }

  .hero {
    min-height: 760px;
    padding: 10rem 1.25rem 2rem;
  }

  .hero-image {
    object-position: 73% center;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-note {
    display: none;
  }

  .hero-metrics {
    bottom: 1.25rem;
    left: 1.25rem;
    max-width: none;
    right: 1.25rem;
    width: auto;
  }

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

  .quote-grid p {
    font-size: 1.8rem;
  }

  .section-grid,
  .section-heading,
  .section-title-row,
  .process-section,
  .contact-section,
  .page-hero-grid,
  .legal-layout,
  .job-layout,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .feature-row article,
  .benefit-grid article {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    min-height: auto;
    padding: 1.3rem 0;
  }

  .benefit-grid article {
    border-top-color: var(--line-light);
  }

  .operations-panel {
    grid-template-columns: 1fr;
  }

  .ops-sidebar {
    border-bottom: 1px solid var(--line-dark);
    border-right: 0;
  }

  .page-hero {
    padding: 10rem 1.25rem 5rem;
  }

  .page-hero h1 {
    font-size: 3.5rem;
  }

  .hero-aside {
    align-self: start;
  }

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

  .legal-aside,
  .job-sidebar {
    position: static;
  }
}

@media (min-width: 1440px) {
  .hero-note {
    display: block;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 0.8rem;
    left: 1rem;
    right: 1rem;
    top: 1rem;
  }

  .brand {
    font-size: 1.04rem;
  }

  .menu-toggle {
    height: 2.65rem;
    width: 2.65rem;
  }

  .site-header.menu-open .nav-links {
    right: 1rem;
    top: 4.4rem;
    width: min(19rem, calc(100vw - 2rem));
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 76% center;
  }

  .hero-content p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.9rem;
  }

  .section-grid h2,
  .section-heading h2,
  .process-copy h2,
  .contact-copy h2 {
    font-size: 2.6rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics span {
    font-size: 2.8rem;
  }

  .logo-marquee {
    height: 3.7rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  }

  .logo-marquee-group {
    gap: 3.4rem;
    padding-right: 3.4rem;
  }

  .logo-marquee img {
    height: 1.8rem;
    max-width: 11.7rem;
  }

  .logo-marquee .logo-square {
    height: 1.68rem;
  }

  .logo-marquee .logo-rally {
    height: 2.18rem;
  }

  .dark-section,
  .light-section,
  .process-section,
  .contact-section,
  .page-band {
    padding: 5rem 1.1rem;
  }

  .page-hero {
    padding: 9rem 1.1rem 4.5rem;
  }

  .page-hero h1 {
    font-size: 2.95rem;
  }

  .section-title-row h2,
  .cta-strip h2 {
    font-size: 2.45rem;
  }

  .person-grid,
  .advisor-grid,
  .job-card {
    grid-template-columns: 1fr;
  }

  .job-card .button {
    width: 100%;
  }

  .operations-panel {
    min-height: auto;
  }

  .ops-main,
  .ops-sidebar,
  .demo-form {
    padding: 1.2rem;
  }

  .transcript p:nth-child(even) {
    margin-left: 0;
  }

  .order-summary,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 3rem 1.1rem;
  }

  .footer-sitemap {
    gap: 1.4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .team-page .person-grid,
  .team-page .advisor-grid {
    gap: 1.9rem 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-page .person-photo {
    height: clamp(132px, 37vw, 170px);
  }

  .team-page .advisor-grid .person-photo {
    height: clamp(142px, 39vw, 180px);
  }
}

/* ===== Privacy controls: notice banner + "Your Privacy Choices" dialog ===== */
.privacy-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 22;
  margin: 0 auto;
  max-width: 60rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(16, 22, 20, 0.93);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.privacy-banner__text a {
  color: var(--teal);
  text-decoration: underline;
}

.privacy-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.6rem;
}

.privacy-banner .button {
  min-height: 2.5rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.privacy-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 23;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(5, 7, 6, 0.62);
  backdrop-filter: blur(6px);
}

.privacy-dialog-backdrop[hidden] {
  display: none;
}

.privacy-dialog {
  position: relative;
  z-index: 24;
  width: 100%;
  max-width: 30rem;
  padding: 1.75rem;
  background: var(--charcoal);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.privacy-dialog h2 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.privacy-dialog p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.privacy-dialog__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-dialog__close:hover {
  color: var(--white);
}

.privacy-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.privacy-toggle input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--teal);
  cursor: pointer;
}

.privacy-gpc-note {
  font-size: 0.8rem !important;
  color: var(--teal-muted) !important;
}

.privacy-dialog__actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.6rem;
}

.privacy-dialog__link {
  margin: 0 !important;
  font-size: 0.8rem !important;
}

.privacy-dialog__link a {
  color: var(--teal);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .privacy-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .privacy-banner__actions .button {
    flex: 1;
  }
}
