:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #66716d;
  --paper: #f8f5ee;
  --surface: #ffffff;
  --line: #d9ded8;
  --green: #245c4d;
  --green-dark: #14372f;
  --gold: #d4a548;
  --gold-soft: #e5cd77;
  --coral: #c85b47;
  --blue: #2a7d83;
  --cyan: #8bd6cf;
  --graphite: #0c1715;
  --shadow: 0 22px 70px rgba(10, 24, 21, 0.18);
  --tech-line: rgba(139, 214, 207, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background:
    linear-gradient(180deg, #f8f5ee 0%, #eef3ee 44%, #f8f5ee 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(36, 92, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 92, 77, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--pointer-x) var(--pointer-y),
    rgba(42, 125, 131, 0.09),
    transparent 68%
  );
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.mobile-nav.is-open {
  background: rgba(248, 245, 238, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(17, 31, 28, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(222, 178, 85, 0.58);
  border-radius: 8px;
  background: radial-gradient(circle at 45% 38%, rgba(255, 224, 146, 0.12), rgba(3, 17, 16, 0.22));
  padding: 4px;
  box-shadow:
    0 0 0 1px rgba(212, 165, 72, 0.12) inset,
    0 8px 22px rgba(0, 0, 0, 0.16);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.32));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.74rem;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  font-size: 0.94rem;
}

.nav a {
  white-space: nowrap;
  opacity: 0.82;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-dropdown > button {
  white-space: nowrap;
}

body[data-language="en"] .nav {
  gap: clamp(10px, 1.35vw, 18px);
  font-size: 0.84rem;
}

body[data-language="en"] .header-cta {
  padding-inline: 16px;
  white-space: nowrap;
}

.nav a.active {
  color: var(--gold);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font: inherit;
  cursor: pointer;
  opacity: 0.82;
}

.nav-dropdown > button span {
  color: var(--gold);
  transition: transform 180ms ease;
}

.nav-dropdown > button.active {
  color: var(--gold);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 260px;
  padding: 8px;
  border: 1px solid rgba(139, 214, 207, 0.24);
  border-radius: 8px;
  background: rgba(8, 22, 19, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled .nav-dropdown-menu {
  background: rgba(248, 245, 238, 0.98);
  box-shadow: 0 24px 70px rgba(15, 35, 30, 0.18);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover > button span,
.nav-dropdown:focus-within > button span {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  opacity: 1;
}

.nav-dropdown-menu a:hover {
  border-color: rgba(139, 214, 207, 0.24);
  background: rgba(139, 214, 207, 0.08);
}

.nav-dropdown-menu small {
  color: currentColor;
  opacity: 0.58;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.header-cta {
  padding: 0 18px;
  border: 1px solid currentColor;
}

.primary-button {
  padding: 0 22px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #19130a;
  box-shadow: 0 14px 34px rgba(201, 147, 60, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  backdrop-filter: blur(10px);
}

.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  z-index: 19;
  display: none;
  width: 100%;
  padding: 10px 22px 22px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.mobile-nav details {
  border-top: 1px solid var(--line);
}

.mobile-nav summary {
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
}

.mobile-nav details a {
  padding-left: 16px;
  color: var(--green);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  overflow: hidden;
  background: var(--green-dark);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 64vh;
  overflow: hidden;
  background: var(--green-dark);
}

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

.hero-image {
  object-fit: cover;
  transform: scale(1.02);
  animation: cinematicDrift 18s ease-in-out infinite alternate;
}

/* Page-specific hero framing. Replace each src later without changing markup. */
[data-page="home"] { object-position: center 48%; }
[data-page="system"] { object-position: 58% center; filter: saturate(0.92) contrast(1.06); }
[data-page="services"] { object-position: 42% center; filter: saturate(0.86) contrast(1.04); }
[data-page="campaign"] { object-position: 64% center; filter: saturate(0.82) sepia(0.06) contrast(1.08); }
[data-page="advisor"] { object-position: 54% center; filter: hue-rotate(5deg) saturate(0.9); }
[data-page="contact"] { object-position: 46% center; filter: saturate(0.78) contrast(1.08); }

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 21, 0.96) 0%, rgba(8, 24, 21, 0.78) 41%, rgba(8, 24, 21, 0.36) 72%, rgba(8, 24, 21, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.44));
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(139, 214, 207, 0.08) 50%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(139, 214, 207, 0.09) 119px, transparent 120px);
  mix-blend-mode: screen;
  opacity: 0.38;
  animation: scanDrift 8s linear infinite;
}

.ai-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(840px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 76px);
  padding-top: 64px;
  color: #fff;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 76px);
  padding-top: 150px;
  padding-bottom: 72px;
  color: #fff;
}

.page-hero-content h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.page-hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.4vw, 4.85rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  backdrop-filter: blur(12px);
}

.hero-intel-panel {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(30px, 7vw, 88px);
  z-index: 3;
  width: min(340px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(139, 214, 207, 0.28);
  border-radius: 8px;
  background: rgba(8, 24, 21, 0.58);
  color: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.panel-topline strong {
  color: var(--cyan);
}

.signal-stack {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.signal-stack div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.signal-stack span {
  color: rgba(255, 255, 255, 0.72);
}

.signal-stack strong {
  color: var(--gold-soft);
}

.routing-map {
  position: relative;
  height: 74px;
  overflow: hidden;
  border: 1px solid rgba(139, 214, 207, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(139, 214, 207, 0.06), transparent),
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(139, 214, 207, 0.08) 18px);
}

.routing-map i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(139, 214, 207, 0.8);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.routing-map i:nth-child(1) { left: 12%; top: 45%; }
.routing-map i:nth-child(2) { left: 38%; top: 22%; animation-delay: 0.4s; }
.routing-map i:nth-child(3) { left: 62%; top: 58%; animation-delay: 0.8s; }
.routing-map i:nth-child(4) { left: 84%; top: 36%; animation-delay: 1.2s; }

.intelligence-section {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 104px;
  padding: 42px;
  border: 1px solid rgba(36, 92, 77, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 55, 47, 0.96), rgba(12, 23, 21, 0.98));
  color: #fff;
  box-shadow: var(--shadow);
}

.intelligence-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.intelligence-inner .section-copy {
  color: rgba(255, 255, 255, 0.7);
}

.command-board {
  display: grid;
  gap: 10px;
}

.command-board article,
.architecture-grid article {
  position: relative;
  overflow: hidden;
}

.command-board article {
  padding: 18px;
  border: 1px solid rgba(139, 214, 207, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.command-board article::before,
.architecture-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(139, 214, 207, 0.14) 48%, transparent 60%);
  transform: translateX(-130%);
  animation: cardScan 6s ease-in-out infinite;
}

.command-board span,
.architecture-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
}

.command-board strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.command-board small {
  color: rgba(255, 255, 255, 0.66);
}

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

.architecture-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(36, 92, 77, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.architecture-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.architecture-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.service-lab {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 96px;
  padding: 38px;
  border: 1px solid rgba(36, 92, 77, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-lab-inner {
  display: grid;
  gap: 24px;
}

.lab-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.lab-strip span {
  position: relative;
  overflow: hidden;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: #f4f7f3;
  text-align: center;
  font-weight: 850;
}

.lab-strip span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--gold));
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 260ms ease;
}

.lab-strip span:hover::before {
  transform: scaleX(1);
}

.section,
.band-inner,
.contact-section,
.metrics {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

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

.section::before,
.campaign-section::before {
  content: "";
  position: absolute;
  top: 74px;
  right: 0;
  width: min(28vw, 320px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 125, 131, 0.34));
}

.section::after,
.campaign-section::after {
  content: "";
  position: absolute;
  top: 70px;
  right: 0;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(42, 125, 131, 0.54);
  background: var(--paper);
  transform: rotate(45deg);
}

.section-tight {
  padding-bottom: 86px;
}

.section-heading {
  position: relative;
  margin-bottom: 42px;
  padding-left: 24px;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 3px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(42, 125, 131, 0.22));
  box-shadow: 0 0 20px rgba(212, 165, 72, 0.24);
}

.section-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.loop-grid,
.service-grid,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.loop-grid article,
.service-card,
.summary-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.loop-grid article::after,
.service-card::after,
.summary-card::after,
.advisor-topic-grid article::after,
.campaign-strategy-grid article::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(42, 125, 131, 0.32);
  border-bottom: 1px solid rgba(42, 125, 131, 0.32);
  transition: width 220ms ease, height 220ms ease, border-color 220ms ease;
}

.loop-grid article:hover::after,
.service-card:hover::after,
.summary-card:hover::after,
.advisor-topic-grid article:hover::after,
.campaign-strategy-grid article:hover::after {
  width: 34px;
  height: 34px;
  border-color: rgba(212, 165, 72, 0.7);
}

.loop-grid article:hover,
.service-card:hover,
.summary-card:hover,
.industry-list div:hover,
.architecture-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 92, 77, 0.26);
  box-shadow: var(--shadow);
}

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

.summary-card {
  display: block;
  min-height: 250px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.summary-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.loop-grid span,
.summary-card span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--coral);
  font-weight: 850;
}

.loop-grid p,
.service-card p,
.summary-card p {
  color: var(--muted);
  line-height: 1.68;
}

.band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(234, 240, 233, 0.96), rgba(242, 246, 242, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 95px, rgba(36, 92, 77, 0.05) 96px);
  border-block: 1px solid #dbe5dd;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 15%, rgba(139, 214, 207, 0.13) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: bandSweep 12s ease-in-out infinite;
}

.band-inner {
  padding: 104px 0;
}

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

.service-card {
  min-height: 190px;
}

.service-card:nth-child(2n) {
  border-top-color: rgba(201, 147, 60, 0.54);
}

.service-card:nth-child(3n) {
  border-top-color: rgba(45, 101, 115, 0.48);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.industry-list {
  display: grid;
  gap: 12px;
}

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

.industry-list div {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.industry-list div::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 165, 72, 0.42);
}

.industry-list span {
  color: var(--muted);
}

.metrics {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 104px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px);
}

.metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(42, 125, 131, 0.08), transparent);
  transform: translateX(-100%);
  animation: metricSweep 9s linear infinite;
}

.metrics div {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--green);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.metrics span {
  margin-top: 6px;
  color: var(--muted);
}

.proof-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(38px, 7vw, 96px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 104px;
  padding: clamp(38px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(139, 214, 207, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 12%, rgba(139, 214, 207, 0.09), transparent 30%),
    linear-gradient(135deg, #0b302b, #071c19);
  color: #fff;
  box-shadow: 0 28px 80px rgba(8, 35, 31, 0.15);
}

.proof-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 97%, rgba(139, 214, 207, 0.07) 97%),
    linear-gradient(0deg, transparent 0 97%, rgba(139, 214, 207, 0.07) 97%);
  background-size: 44px 44px;
  mask-image: linear-gradient(135deg, transparent 15%, #000 88%);
}

.proof-intro,
.proof-grid {
  position: relative;
  z-index: 1;
}

.proof-intro h2 {
  max-width: 560px;
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.proof-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
}

.proof-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-soft);
  font-weight: 850;
}

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

.proof-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(139, 214, 207, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.proof-grid span,
.engagement-grid > article > span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.proof-grid strong {
  display: block;
  margin: 18px 0 8px;
  color: #fff;
  font-size: 1.05rem;
}

.proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.65;
}

.engagement-section {
  padding-top: 96px;
}

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

.engagement-grid > article {
  position: relative;
  min-width: 0;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(16, 55, 48, 0.07);
}

.engagement-grid > article.featured {
  border-color: rgba(212, 165, 72, 0.5);
  background: linear-gradient(180deg, #fffdf7, #fff);
  transform: translateY(-8px);
}

.engagement-grid h3 {
  margin: 34px 0 12px;
  color: var(--green);
  font-size: 1.35rem;
}

.engagement-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.engagement-grid small {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
}

.engagement-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: #eef3ee;
}

.engagement-cta p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.engagement-cta strong {
  color: var(--green);
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 480px);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  margin-bottom: 96px;
  padding: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 55, 47, 0.98), rgba(9, 22, 20, 0.98));
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-section p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.contact-section::after,
.intelligence-section::after,
.service-lab::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(139, 214, 207, 0.08);
  background:
    linear-gradient(90deg, transparent 0 97%, rgba(139, 214, 207, 0.08) 97%),
    linear-gradient(0deg, transparent 0 97%, rgba(139, 214, 207, 0.08) 97%);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, transparent 18%, #000 76%);
}

.contact-page-section {
  margin-top: 86px;
}

.advisor-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--green-dark);
}

.advisor-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 560px);
  gap: clamp(28px, 6vw, 86px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 142px 0 72px;
  color: #fff;
}

.advisor-copy {
  align-self: center;
}

.advisor-copy h1 {
  max-width: 720px;
}

.advisor-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.76;
}

.advisor-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.advisor-signals span {
  padding: 9px 12px;
  border: 1px solid rgba(139, 214, 207, 0.28);
  border-radius: 999px;
  background: rgba(139, 214, 207, 0.09);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.advisor-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(360px, 1fr) auto;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(139, 214, 207, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 28, 25, 0.92), rgba(7, 18, 16, 0.94)),
    radial-gradient(circle at top right, rgba(139, 214, 207, 0.18), transparent 34%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(22px);
}

.advisor-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(139, 214, 207, 0.1) 46%, transparent 62%),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(139, 214, 207, 0.06) 33px);
  opacity: 0.62;
  animation: cardScan 8s ease-in-out infinite;
}

.advisor-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid rgba(139, 214, 207, 0.18);
}

.advisor-panel-head span,
.advisor-message small,
.advisor-form-actions span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.advisor-panel-head strong {
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
}

.advisor-panel-head i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(139, 214, 207, 0.92);
  animation: nodePulse 2s ease-in-out infinite;
}

.advisor-messages {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 22px;
}

.advisor-message {
  width: min(88%, 430px);
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.advisor-message-user {
  align-self: flex-end;
  border-color: rgba(212, 165, 72, 0.36);
  background: rgba(212, 165, 72, 0.16);
}

.advisor-message-bot {
  align-self: flex-start;
  border-color: rgba(139, 214, 207, 0.22);
}

.advisor-message p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  white-space: pre-line;
}

.advisor-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid rgba(139, 214, 207, 0.18);
}

.advisor-form textarea {
  min-height: 96px;
  border-color: rgba(139, 214, 207, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

.advisor-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.advisor-form button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.advisor-thinking {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(139, 214, 207, 0.35);
  box-shadow: 0 0 0 rgba(139, 214, 207, 0);
}

.advisor-form.is-thinking .advisor-thinking {
  background: var(--cyan);
  animation: nodePulse 1s ease-in-out infinite;
  box-shadow: 0 0 22px rgba(139, 214, 207, 0.84);
}

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

.advisor-topic-grid article {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.advisor-topic-grid article::before,
.campaign-strategy-grid article::before,
.impact-board article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 42px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 165, 72, 0.42);
}

.advisor-topic-grid article:hover,
.campaign-strategy-grid article:hover {
  border-color: rgba(42, 125, 131, 0.36);
  box-shadow: 0 18px 50px rgba(15, 50, 42, 0.1);
  transform: translateY(-3px);
}

.advisor-topic-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 850;
}

.advisor-topic-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.diagnosis-modal {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  border: 1px solid rgba(139, 214, 207, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(250, 250, 247, 0.99), rgba(232, 241, 237, 0.99));
  color: var(--ink);
  box-shadow: 0 34px 120px rgba(6, 22, 18, 0.44);
}

.diagnosis-modal::backdrop {
  background: rgba(3, 12, 10, 0.78);
  backdrop-filter: blur(10px);
}

.diagnosis-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.diagnosis-modal-head span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
}

.diagnosis-modal-head h2 {
  margin: 7px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.diagnosis-modal-head button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.diagnosis-modal > p {
  color: var(--muted);
}

.summary-form {
  display: grid;
  gap: 20px;
}

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

.summary-grid-fields label {
  color: var(--ink);
  font-weight: 700;
}

.summary-grid-fields input,
.summary-grid-fields textarea {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
}

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

.summary-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.summary-actions button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.dark-button {
  border: 1px solid var(--green) !important;
  color: var(--green);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--coral);
}

.modal-open {
  overflow: hidden;
}

.campaign-hero {
  min-height: 78vh;
}

.campaign-hero .page-hero-content {
  max-width: 880px;
}

.campaign-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.campaign-kicker span {
  padding: 9px 12px;
  border: 1px solid rgba(139, 214, 207, 0.28);
  border-radius: 999px;
  background: rgba(10, 30, 26, 0.44);
  color: rgba(255, 255, 255, 0.78);
}

.campaign-section {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.campaign-visual-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.campaign-artwork {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(139, 214, 207, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 55, 47, 0.98), rgba(8, 20, 18, 0.98));
  box-shadow: var(--shadow);
}

.campaign-artwork img {
  display: block;
  width: 100%;
  height: auto;
}

.campaign-artwork-original {
  min-height: 0;
  background: #070707;
}

.campaign-wide-artwork {
  margin: 32px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 72, 0.42);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
}

.campaign-wide-artwork img {
  display: block;
  width: 100%;
  height: auto;
}

.campaign-download {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-weight: 750;
}

.campaign-artwork-placeholder {
  max-width: 340px;
  padding: 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
}

.campaign-artwork-placeholder strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 1.3rem;
}

.campaign-strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.campaign-strategy-grid article,
.impact-board article {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.campaign-strategy-grid span,
.impact-board span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
}

.campaign-strategy-grid p,
.impact-board p {
  color: var(--muted);
  line-height: 1.68;
}

.impact-band {
  background:
    linear-gradient(135deg, rgba(15, 46, 39, 0.99), rgba(7, 19, 17, 0.99));
  color: #fff;
}

.impact-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.impact-board article {
  border-color: rgba(139, 214, 207, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.impact-board strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--gold-soft);
  font-size: 1.45rem;
}

.impact-board p {
  color: rgba(255, 255, 255, 0.68);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

select {
  min-height: 46px;
  padding: 0 12px;
}

input {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 120px;
  padding: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

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

.reveal .motion-item {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 540ms ease,
    transform 540ms cubic-bezier(0.2, 0.78, 0.2, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.reveal.is-visible .motion-item {
  opacity: 1;
  transform: translateY(0);
}

.system-trace {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(42, 125, 131, 0.2);
  border-radius: 6px;
  background: rgba(248, 245, 238, 0.82);
  color: rgba(23, 33, 31, 0.56);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.system-trace::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(42, 125, 131, 0.7);
  animation: nodePulse 2s ease-in-out infinite;
}

.site-language-toggle {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  min-width: 42px;
  height: 34px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(42, 125, 131, 0.22);
  border-radius: 6px;
  background: rgba(248, 245, 238, 0.86);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.site-language-toggle:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

@keyframes cinematicDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-1.2%, 0.8%, 0); }
}

@keyframes scanDrift {
  from { transform: translateX(-18%); }
  to { transform: translateX(18%); }
}

@keyframes nodePulse {
  0%, 100% { opacity: 0.45; transform: scale(0.78); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes cardScan {
  0%, 72% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

@keyframes bandSweep {
  0%, 68% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes metricSweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .mobile-nav.is-open {
    display: block;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 28, 25, 0.95) 0%, rgba(12, 28, 25, 0.82) 56%, rgba(12, 28, 25, 0.4) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.42));
  }

  .loop-grid,
  .service-grid,
  .summary-grid,
  .advisor-topic-grid,
  .industry-list-wide,
  .architecture-grid,
  .intelligence-inner,
  .lab-strip,
  .metrics,
  .split,
  .contact-section,
  .advisor-shell,
  .campaign-visual-layout,
  .impact-board {
    grid-template-columns: 1fr;
  }

  .proof-section {
    grid-template-columns: 1fr;
  }

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

  .engagement-grid > article.featured {
    transform: none;
  }

  .advisor-shell {
    padding-top: 118px;
  }

  .hero-intel-panel {
    display: none;
  }

  .system-trace {
    display: none;
  }

  .page-hero {
    min-height: 62vh;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .mobile-nav {
    top: 68px;
  }

  .hero {
    min-height: 92vh;
  }

  .ai-field {
    opacity: 0.48;
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    margin-inline: 16px;
    padding-top: 88px;
  }

  .page-hero-content {
    width: min(100% - 32px, 720px);
    margin-inline: 16px;
    padding-top: 120px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 4.2rem);
  }

  .page-hero-content h1 {
    font-size: clamp(2.18rem, 11vw, 3.8rem);
  }

  .section {
    padding: 76px 0;
  }

  .band-inner {
    padding: 76px 0;
  }

  .loop-grid article,
  .service-card {
    min-height: auto;
  }

  .contact-section {
    width: min(100% - 28px, 1180px);
    padding: 28px 18px;
  }

  .contact-form {
    padding: 18px;
  }

  .summary-grid-fields,
  .campaign-strategy-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-section {
    width: min(100% - 28px, 1180px);
    margin-bottom: 76px;
    padding: 30px 18px;
  }

  .engagement-cta {
    display: grid;
    align-items: start;
  }

  .engagement-cta .primary-button {
    width: 100%;
  }

  .field-wide {
    grid-column: auto;
  }

  .summary-actions {
    display: grid;
  }

  .summary-actions button {
    width: 100%;
  }

  .campaign-artwork {
    min-height: 430px;
  }

  .contact-points {
    grid-template-columns: 1fr;
  }

  .intelligence-section,
  .service-lab {
    width: min(100% - 28px, 1180px);
    padding: 26px 18px;
  }

  .site-footer {
    display: grid;
  }

  .site-language-toggle {
    left: 12px;
    bottom: 12px;
  }

  .section::before,
  .section::after,
  .campaign-section::before,
  .campaign-section::after {
    display: none;
  }
}

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

/* Brand launch and language gateway */
.launch-page {
  min-height: 100vh;
  overflow: hidden;
  background: #071713;
  color: #fff;
}

.launch-page::before,
.launch-page::after {
  display: none;
}

.launch-page .system-trace {
  display: none;
}

.launch-experience {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 10%, rgba(229, 205, 119, 0.14), transparent 24%),
    radial-gradient(circle at 50% 45%, rgba(47, 137, 127, 0.24), transparent 34%),
    linear-gradient(145deg, #06120f, #0b2922 52%, #071511);
}

.launch-network,
.launch-grid,
.launch-beam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.launch-network {
  z-index: -1;
  opacity: 0.8;
}

.launch-grid {
  z-index: -2;
  background:
    linear-gradient(rgba(139, 214, 207, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 214, 207, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(700px) rotateX(58deg) scale(1.8) translateY(20%);
  transform-origin: center bottom;
  mask-image: linear-gradient(to bottom, transparent, #000 28%, #000);
  animation: launchGridMove 8s linear infinite;
}

.launch-beam {
  z-index: -1;
  opacity: 0.34;
}

.launch-beam-one {
  background: linear-gradient(110deg, transparent 35%, rgba(139, 214, 207, 0.14) 48%, transparent 61%);
  animation: launchBeam 5.5s ease-in-out infinite;
}

.launch-beam-two {
  background: linear-gradient(70deg, transparent 37%, rgba(212, 165, 72, 0.1) 49%, transparent 60%);
  animation: launchBeam 7s ease-in-out 1.2s infinite reverse;
}

.launch-sequence {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(920px, calc(100% - 36px));
  justify-items: center;
  text-align: center;
  animation: launchSequenceExit 700ms ease 4.1s forwards;
}

.launch-orbit {
  position: relative;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  margin-bottom: 24px;
}

.launch-orbit::before,
.launch-orbit::after,
.launch-orbit > i {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(139, 214, 207, 0.24);
  border-radius: 50%;
}

.launch-orbit::before {
  animation: launchOrbit 7s linear infinite;
  border-top-color: var(--gold);
  border-right-color: transparent;
}

.launch-orbit::after {
  inset: 14px;
  animation: launchOrbit 5s linear infinite reverse;
  border-bottom-color: var(--cyan);
  border-left-color: transparent;
}

.launch-orbit > i:nth-child(1) {
  inset: 28px;
  border-color: rgba(212, 165, 72, 0.3);
  animation: nodePulse 2.4s ease-in-out infinite;
}

.launch-orbit > i:nth-child(2) {
  inset: -16px;
  border-style: dashed;
  opacity: 0.5;
  animation: launchOrbit 16s linear infinite;
}

.launch-orbit > i:nth-child(3) {
  inset: 50%;
  width: 5px;
  height: 5px;
  border: 0;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.launch-logo {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  filter:
    drop-shadow(0 0 22px rgba(212, 165, 72, 0.34))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
  animation: launchLogoIn 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.launch-logo img,
.gateway-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.launch-system-line,
.gateway-kicker {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.launch-word {
  display: flex;
  justify-content: center;
  max-width: none;
  margin: 12px 0 8px;
  font-size: clamp(4rem, 12vw, 9.6rem);
  line-height: 0.9;
  text-transform: none;
  filter: drop-shadow(0 16px 44px rgba(0, 0, 0, 0.32));
}

.launch-word span {
  opacity: 0;
  transform: translateY(28px);
  animation: launchLetter 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.launch-word span:nth-child(1) { animation-delay: 360ms; }
.launch-word span:nth-child(2) { animation-delay: 430ms; }
.launch-word span:nth-child(3) { animation-delay: 500ms; }
.launch-word span:nth-child(4) { animation-delay: 570ms; }
.launch-word span:nth-child(5) { animation-delay: 640ms; color: var(--gold-soft); }
.launch-word span:nth-child(6) { animation-delay: 710ms; }
.launch-word span:nth-child(7) { animation-delay: 780ms; }
.launch-word span:nth-child(8) { animation-delay: 850ms; }

.launch-tagline {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 650;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: launchFadeUp 700ms ease 1.2s forwards;
}

.launch-progress {
  width: min(430px, 78vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.launch-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold-soft), #fff);
  box-shadow: 0 0 18px rgba(139, 214, 207, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  animation: launchProgress 3s cubic-bezier(0.2, 0.75, 0.2, 1) 650ms forwards;
}

.launch-status {
  display: flex;
  width: min(430px, 78vw);
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 750;
}

.language-gateway {
  position: absolute;
  z-index: 3;
  display: grid;
  width: min(560px, calc(100% - 32px));
  justify-items: center;
  padding: 34px;
  border: 1px solid rgba(139, 214, 207, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(16, 48, 40, 0.9), rgba(7, 25, 21, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(139, 214, 207, 0.05) 40px);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  opacity: 0;
  text-align: center;
  transform: translateY(24px) scale(0.98);
  pointer-events: none;
  backdrop-filter: blur(22px);
}

.launch-page.is-language-ready .language-gateway {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gateway-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.gateway-brand strong,
.gateway-brand small {
  display: block;
  text-align: left;
}

.gateway-brand strong {
  font-size: 1.2rem;
}

.gateway-brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.gateway-logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 4px;
  border: 1px solid rgba(212, 165, 72, 0.58);
  border-radius: 8px;
  background: radial-gradient(circle, rgba(255, 220, 137, 0.08), rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.25));
}

.language-gateway h2 {
  margin: 9px 0 8px;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.gateway-copy {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.58);
}

.language-options {
  display: grid;
  width: 100%;
  gap: 12px;
}

.language-option {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 13px 16px;
  overflow: hidden;
  border: 1px solid rgba(139, 214, 207, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent, rgba(139, 214, 207, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.language-option:hover {
  border-color: rgba(212, 165, 72, 0.58);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.language-option:hover::before {
  transform: translateX(120%);
}

.language-code {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(212, 165, 72, 0.42);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 850;
}

.language-option strong,
.language-option small {
  display: block;
}

.language-option strong {
  font-size: 1.08rem;
}

.language-option small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
}

.language-option i {
  color: var(--cyan);
  font-style: normal;
  font-size: 1.25rem;
}

.gateway-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 800;
}

.gateway-signal i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  animation: nodePulse 2s ease-in-out infinite;
}

@keyframes launchGridMove {
  from { background-position: 0 0; }
  to { background-position: 0 64px; }
}

@keyframes launchBeam {
  0%, 100% { transform: translateX(-24%); opacity: 0.12; }
  50% { transform: translateX(24%); opacity: 0.48; }
}

@keyframes launchOrbit {
  to { transform: rotate(360deg); }
}

@keyframes launchLogoIn {
  from { opacity: 0; transform: scale(0.52) rotate(-12deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes launchLetter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes launchFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes launchProgress {
  to { transform: scaleX(1); }
}

@keyframes launchSequenceExit {
  to { opacity: 0; transform: scale(1.04); visibility: hidden; }
}

@media (max-width: 640px) {
  .launch-sequence {
    width: calc(100% - 24px);
  }

  .launch-orbit {
    width: 124px;
    height: 124px;
  }

  .launch-logo {
    width: 60px;
    height: 60px;
  }

  .launch-word {
    font-size: clamp(3.5rem, 19vw, 5.2rem);
  }

  .launch-system-line {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .launch-status {
    font-size: 0.52rem;
  }

  .language-gateway {
    padding: 26px 18px;
  }
}

/* Member entry and client workspace preview */
.member-page.is-member-ceremony-active {
  overflow: hidden;
}

.member-ceremony {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #031311;
  color: #fff;
}

.member-ceremony.is-complete {
  animation: memberCeremonyExit 720ms ease forwards;
  pointer-events: none;
}

.member-ceremony > img,
.member-ceremony-shade,
.member-ceremony-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.member-ceremony > img {
  object-fit: cover;
  animation: memberCeremonyCamera 4s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.member-ceremony-shade {
  background:
    radial-gradient(circle at 72% 46%, rgba(14, 123, 119, 0.06), transparent 26%),
    linear-gradient(90deg, rgba(2, 13, 12, 0.96), rgba(2, 13, 12, 0.72) 43%, rgba(2, 13, 12, 0.16) 68%, rgba(2, 13, 12, 0.36));
}

.member-ceremony-circuit {
  background:
    linear-gradient(90deg, transparent 0, rgba(139, 214, 207, 0.11) 50%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 146px, rgba(212, 165, 72, 0.08) 147px, transparent 148px);
  mix-blend-mode: screen;
  animation: memberCeremonyScan 2.2s linear infinite;
}

.member-ceremony-content {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - 40px));
  margin-right: min(42vw, 680px);
  text-align: center;
  animation: memberCeremonyContent 900ms 320ms ease both;
}

.member-ceremony-logo {
  width: clamp(108px, 13vw, 180px);
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 0 30px rgba(225, 175, 71, 0.5))
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.38));
  animation: memberCeremonyLogo 2.4s ease-in-out infinite;
}

.member-ceremony-content p {
  margin: 24px 0 9px;
  color: #dcb660;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.member-ceremony-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  line-height: 1.05;
}

.member-ceremony-content > span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.member-ceremony-progress {
  width: min(420px, 80%);
  height: 2px;
  margin: 28px auto 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.member-ceremony-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #9adbd1, #e2b451, #fff0b1);
  box-shadow: 0 0 18px rgba(226, 180, 81, 0.72);
  transform: scaleX(0);
  transform-origin: left;
  animation: memberCeremonyProgress 3.5s 260ms ease-out forwards;
}

.member-choice-gateway {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 34px 20px;
  background: #031311;
  color: #fff;
}

.member-choice-background,
.member-choice-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.member-choice-background {
  object-fit: cover;
}

.member-choice-overlay {
  background:
    radial-gradient(circle at 71% 45%, rgba(47, 183, 173, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(2, 13, 12, 0.94), rgba(2, 13, 12, 0.76) 42%, rgba(2, 13, 12, 0.24) 72%, rgba(2, 13, 12, 0.34));
}

.member-choice-panel {
  position: relative;
  z-index: 3;
  width: min(660px, calc(100% - 24px));
  margin-right: min(40vw, 650px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(212, 165, 72, 0.34);
  border-radius: 24px;
  background: rgba(3, 21, 19, 0.84);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.member-choice-panel h2 {
  margin: 10px 0 8px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.04;
}

.member-choice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.member-choice-option {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(139, 214, 207, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.member-choice-option:hover {
  border-color: rgba(226, 180, 81, 0.76);
  background: rgba(212, 165, 72, 0.1);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.member-choice-option > span:nth-child(2) {
  align-self: end;
}

.member-choice-option strong,
.member-choice-option small {
  display: block;
}

.member-choice-option strong {
  font-size: 1.22rem;
}

.member-choice-option small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.member-choice-code {
  color: #dfb357;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.member-choice-option i {
  position: absolute;
  right: 18px;
  top: 17px;
  color: #9adbd1;
  font-size: 1.2rem;
  font-style: normal;
}

.member-choice-back {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.member-choice-panel .gateway-signal {
  margin-top: 26px;
}

.member-hero {
  min-height: 720px;
}

.member-hero .hero-image {
  object-position: center center;
  animation-duration: 28s;
}

.member-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 17, 16, 0.97) 0%, rgba(3, 17, 16, 0.91) 30%, rgba(3, 17, 16, 0.62) 48%, rgba(3, 17, 16, 0.08) 72%, rgba(3, 17, 16, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46));
}

.member-hero::after {
  opacity: 0.22;
}

.member-hero .page-hero-content {
  width: min(720px, calc(100% - 36px));
  max-width: 720px;
  padding-bottom: 82px;
}

.member-hero .page-hero-content h1 {
  max-width: 700px;
  font-size: clamp(2.65rem, 4.8vw, 4.9rem);
  text-wrap: balance;
}

.member-hero .page-hero-content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.member-hero-actions,
.member-hero .preview-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.preview-notice {
  width: fit-content;
  max-width: 720px;
  padding: 13px 16px;
  border: 1px solid rgba(139, 214, 207, 0.35);
  border-radius: 12px;
  background: rgba(5, 20, 20, 0.82);
  color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.preview-notice strong {
  color: var(--cyan);
}

.member-section,
.member-access-section {
  padding: 96px clamp(24px, 6vw, 90px);
}

.member-section {
  background: #f5f7f2;
}

.member-flow,
.member-plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 42px auto 0;
}

.member-flow article,
.member-plans article {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(8, 55, 50, 0.13);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 39, 36, 0.07);
}

.member-flow article > span,
.member-plans article > span {
  color: #b27b18;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.member-flow h3,
.member-plans h3 {
  margin: 18px 0 10px;
  color: #113c37;
  font-size: 1.15rem;
}

.member-flow p,
.member-plans p,
.member-plan-note {
  color: #5d6d69;
  line-height: 1.7;
}

.member-access-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.65fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  background: #082e2a;
  color: #fff;
}

.member-access-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.4vw, 4.3rem);
  line-height: 1.04;
}

.member-access-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.security-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.security-points span::before {
  content: "✓";
  margin-right: 10px;
  color: var(--cyan);
}

.member-login-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(139, 214, 207, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  color: #163e3a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.demo-chip {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(178, 123, 24, 0.28);
  border-radius: 999px;
  background: #fff6df;
  color: #8c620f;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.member-login-card h3 {
  margin: 20px 0 8px;
  font-size: 1.55rem;
}

.member-login-card > p {
  color: #64726f;
  line-height: 1.6;
}

.member-login-card label:not(.consent-check) {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 800;
}

.member-login-card input,
.task-form input,
.task-form select,
.task-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ccd7d3;
  border-radius: 10px;
  background: #fff;
  color: #173d39;
  font: inherit;
}

.google-demo-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 24px;
  padding: 13px;
  border: 1px solid #ccd7d3;
  border-radius: 10px;
  background: #fff;
  color: #173d39;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.google-demo-button span {
  color: #4285f4;
  font-size: 1.15rem;
  font-weight: 900;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 4px;
  color: #85918e;
  font-size: 0.72rem;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e7e4;
}

.otp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.otp-row button,
.delivery-grid button,
.card-heading button {
  border: 0;
  border-radius: 10px;
  background: #dfeee9;
  color: #0b514a;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.otp-row button {
  padding: 0 14px;
}

.consent-check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 18px 0;
  color: #66736f;
  font-size: 0.76rem;
  line-height: 1.5;
}

.consent-check input {
  width: auto;
  margin-top: 2px;
}

.demo-status {
  margin: 14px 0 0;
  color: #7c8885;
  font-size: 0.76rem;
  line-height: 1.5;
}

.demo-status.is-success {
  color: #13745f;
}

.demo-status.is-error {
  color: #a13f32;
}

.member-create-link {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid #b8c8c2;
  border-radius: 10px;
  color: #0d554d;
  font-weight: 850;
  text-decoration: none;
}

.member-create-link:hover {
  border-color: #a97a20;
  background: #fff9ea;
}

@keyframes memberCeremonyCamera {
  from { transform: scale(1.08); filter: brightness(0.62); }
  to { transform: scale(1); filter: brightness(1); }
}

@keyframes memberCeremonyScan {
  from { transform: translateX(-20%); }
  to { transform: translateX(20%); }
}

@keyframes memberCeremonyContent {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes memberCeremonyLogo {
  0%, 100% { transform: scale(0.98); filter: drop-shadow(0 0 20px rgba(225, 175, 71, 0.35)); }
  50% { transform: scale(1.035); filter: drop-shadow(0 0 42px rgba(225, 175, 71, 0.72)); }
}

@keyframes memberCeremonyProgress {
  to { transform: scaleX(1); }
}

@keyframes memberCeremonyExit {
  to { opacity: 0; visibility: hidden; transform: scale(1.025); }
}

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

.member-plans .featured {
  border-color: rgba(178, 123, 24, 0.5);
  box-shadow: 0 22px 60px rgba(178, 123, 24, 0.14);
}

.member-plans strong,
.member-plans small {
  display: block;
}

.member-plans strong {
  margin-top: 24px;
  color: #153f3a;
}

.member-plans small {
  margin-top: 8px;
  color: #75817e;
  line-height: 1.6;
}

.member-plan-note {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
}

.workspace-body {
  min-width: 320px;
  background: #edf2ef;
  color: #153d38;
}

.workspace-topbar {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(12, 69, 62, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.workspace-topbar .brand {
  color: #153d38;
}

.workspace-account {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
}

.workspace-account a {
  color: #806119;
}

.workspace-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-width: 0;
  min-height: calc(100vh - 76px);
}

.workspace-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 26px 18px;
  background: #092f2b;
  color: #fff;
}

.workspace-sidebar nav {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.workspace-sidebar button {
  padding: 13px 15px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.workspace-sidebar button:hover,
.workspace-sidebar button.active {
  background: rgba(139, 214, 207, 0.13);
  color: #fff;
}

.workspace-safety {
  padding: 16px;
  border: 1px solid rgba(139, 214, 207, 0.18);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.55;
}

.workspace-safety strong {
  color: var(--cyan);
}

.workspace-main {
  min-width: 0;
  padding: 26px clamp(20px, 4vw, 54px) 70px;
}

.workspace-demo-banner {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px 15px;
  border: 1px solid #ead8aa;
  border-radius: 10px;
  background: #fff8e8;
  color: #705a22;
  font-size: 0.76rem;
}

.workspace-panel {
  display: none;
}

.workspace-panel.active {
  display: block;
}

.workspace-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.workspace-heading h1 {
  margin: 7px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.workspace-heading p:not(.eyebrow) {
  max-width: 680px;
  color: #667671;
}

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

.workspace-stats article,
.workspace-card {
  min-width: 0;
  border: 1px solid rgba(12, 69, 62, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(12, 56, 51, 0.06);
}

.workspace-stats article {
  display: grid;
  gap: 8px;
  padding: 21px;
}

.workspace-stats span,
.workspace-stats small {
  color: #74817d;
  font-size: 0.72rem;
}

.workspace-stats strong {
  font-size: 1.9rem;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 18px;
  margin-top: 18px;
}

.workspace-card {
  padding: 24px;
}

.card-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.card-heading h2,
.workspace-card h2 {
  margin: 0;
  font-size: 1.15rem;
}

.card-heading button,
.delivery-grid button {
  padding: 9px 12px;
}

.task-list {
  margin-top: 15px;
}

.task-list article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid #edf1ef;
}

.task-list small,
.task-table small {
  display: block;
  margin-top: 5px;
  color: #87928f;
}

.status {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
}

.status-processing { background: #e1f1ed; color: #126252; }
.status-review { background: #fff0ce; color: #855e0b; }
.status-done { background: #e5eee5; color: #446743; }
.status-submitted { background: #e9edf3; color: #58667b; }

.next-action {
  background: #0d3e39;
  color: #fff;
}

.next-action p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

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

.task-form label:not(.consent-check) {
  display: grid;
  gap: 8px;
  color: #425752;
  font-size: 0.8rem;
  font-weight: 800;
}

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

.demo-upload {
  padding: 22px;
  border: 1px dashed #aabbb5;
  border-radius: 12px;
  background: #f8faf8;
  text-align: center;
}

.demo-upload span {
  color: #778580;
  font-weight: 500;
}

.task-table-wrap {
  overflow-x: auto;
}

.task-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.task-table th,
.task-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #e9efec;
  text-align: left;
  vertical-align: middle;
}

.task-table th {
  color: #788783;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.delivery-grid p {
  min-height: 52px;
  color: #6c7a76;
  line-height: 1.6;
}

.file-type {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #e4f0ec;
  color: #115a50;
  font-size: 0.7rem;
  font-weight: 900;
}

.membership-summary {
  background: #0d3e39;
  color: #fff;
}

.membership-summary > span,
.membership-summary p,
.membership-summary small {
  color: rgba(255, 255, 255, 0.68);
}

.membership-summary div {
  display: grid;
  gap: 5px;
  margin-top: 30px;
}

.account-check {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #edf1ef;
}

.account-check strong {
  color: #17705f;
}

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

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

@media (max-width: 920px) {
  .member-access-section {
    grid-template-columns: 1fr;
  }

  .workspace-layout {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    display: block;
    width: 100%;
    padding: 10px 16px;
  }

  .workspace-sidebar nav {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
  }

  .workspace-sidebar button {
    flex: 0 0 auto;
  }

  .workspace-safety {
    display: none;
  }

  .workspace-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .member-section,
  .member-access-section {
    padding: 70px 18px;
  }

  .member-flow,
  .member-plans,
  .workspace-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .member-login-card {
    padding: 24px 18px;
  }

  .member-ceremony-content {
    width: calc(100% - 34px);
    margin-right: 0;
    padding-top: 34vh;
  }

  .member-ceremony > img {
    object-position: 68% center;
  }

  .member-ceremony-shade {
    background:
      linear-gradient(180deg, rgba(2, 13, 12, 0.26), rgba(2, 13, 12, 0.62) 48%, rgba(2, 13, 12, 0.96)),
      linear-gradient(90deg, rgba(2, 13, 12, 0.65), rgba(2, 13, 12, 0.08));
  }

  .member-ceremony-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .member-choice-gateway {
    align-items: end;
    padding: 18px 12px 24px;
  }

  .member-choice-background {
    object-position: 68% center;
  }

  .member-choice-overlay {
    background:
      linear-gradient(180deg, rgba(2, 13, 12, 0.12), rgba(2, 13, 12, 0.6) 45%, rgba(2, 13, 12, 0.97) 78%),
      linear-gradient(90deg, rgba(2, 13, 12, 0.55), rgba(2, 13, 12, 0.12));
  }

  .member-choice-panel {
    width: 100%;
    margin-right: 0;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .member-choice-options {
    grid-template-columns: 1fr;
  }

  .member-choice-option {
    min-height: 126px;
  }

  .member-hero {
    min-height: 760px;
  }

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

  .member-hero .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 17, 16, 0.82) 0%, rgba(3, 17, 16, 0.72) 38%, rgba(3, 17, 16, 0.94) 100%),
      linear-gradient(90deg, rgba(3, 17, 16, 0.88), rgba(3, 17, 16, 0.18));
  }

  .member-hero .page-hero-content {
    padding-bottom: 54px;
  }

  .member-hero .page-hero-content h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .workspace-topbar {
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
  }

  .workspace-topbar .brand > span:last-child small,
  .workspace-account strong {
    display: none;
  }

  .workspace-account {
    gap: 7px;
  }

  .workspace-main {
    padding: 22px 14px 60px;
  }

  .workspace-demo-banner,
  .workspace-heading,
  .task-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .workspace-heading {
    display: flex;
  }

  .task-form .field-wide {
    grid-column: auto;
  }
}
