/* OrderPortal — glassmorphism redesign */
:root {
  --brand-primary: #1399FF;
  --brand-dark: #053A60;
  --brand-muted: #4B5A68;
  --brand-gray-light: #8E9BA8;
  --brand-light: #E8F1F5;
  --brand-white: #FFFFFF;

  --surface-deep: #031829;
  --surface-mid: #053A60;
  --accent-glow: rgba(19, 153, 255, 0.35);

  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-bg-strong: rgba(255, 255, 255, 0.16);
  --glass-bg-light: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-border-dark: rgba(5, 58, 96, 0.12);
  --glass-blur: 16px;
  --glass-shadow: 0 8px 32px rgba(5, 58, 96, 0.28);

  --font-heading: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --origin-ink: #1a2b3c;
  --origin-accent: #5eb8ff;

  --radius: 16px;
  --radius-lg: 24px;
  --container-max: 1200px;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brand-dark);
  line-height: 1.6;
  background: var(--surface-deep);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.page-atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-drift 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  background: rgba(19, 153, 255, 0.35);
  top: -8%;
  left: -6%;
}

.orb-2 {
  width: 36vw;
  height: 36vw;
  max-width: 440px;
  max-height: 440px;
  background: rgba(5, 58, 96, 0.7);
  top: 40%;
  right: -10%;
  animation-delay: -6s;
}

.orb-3 {
  width: 28vw;
  height: 28vw;
  max-width: 360px;
  max-height: 360px;
  background: rgba(19, 153, 255, 0.22);
  bottom: 5%;
  left: 30%;
  animation-delay: -12s;
}

@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, 4%) scale(1.08); }
}

.site-header,
.nav-drawer,
.main,
.site-footer {
  position: relative;
  z-index: 1;
}

main,
section {
  margin: 0;
  border: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  border-radius: 12px;
}

.site-header .logo img,
.nav-drawer-logo img,
.hero-bg-image {
  border-radius: 0;
}

/* Glass utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass {
    background: rgba(5, 58, 96, 0.92);
  }
}

/* Sticky glass header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(3, 24, 41, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header .container.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-header .logo {
  display: block;
  flex-shrink: 0;
  min-width: 0;
  margin-right: 0.25rem;
}

.site-header .logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-right: auto;
}

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

.nav-menu a,
.nav-dropdown-trigger {
  color: var(--brand-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-transform: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown-trigger[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.nav-menu a:hover,
.nav-dropdown-trigger:hover {
  color: var(--brand-light);
}

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0.5rem 0 0;
  padding: 0.5rem 0;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
  background: rgba(3, 24, 41, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: var(--glass-shadow);
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.1rem;
  color: var(--brand-white);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown a:hover {
  color: var(--brand-primary);
  background: rgba(19, 153, 255, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.header-link-learn {
  color: var(--brand-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
}

.header-link-learn:hover {
  color: var(--brand-primary);
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-demo:hover {
  background: #0d7ad4;
  color: var(--brand-white);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
  .main-nav,
  .header-actions .header-link-learn {
    display: none;
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--brand-white);
  cursor: pointer;
  padding: 0;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .site-header .btn-demo {
    display: none;
  }
}

/* Nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}

.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(5, 58, 96, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}

.nav-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(100%, 360px);
  height: 100%;
  background: rgba(19, 80, 120, 0.55);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: -12px 0 40px rgba(5, 58, 96, 0.18);
  padding: 1.25rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.nav-drawer.is-open .nav-drawer-inner {
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.nav-drawer-logo img {
  height: 36px;
  width: auto;
}

.nav-drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--brand-white);
  cursor: pointer;
  position: relative;
}

.nav-drawer-close-icon::before,
.nav-drawer-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.nav-drawer-close-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-drawer-close-icon::after { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-drawer-menu {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.nav-drawer-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-drawer-menu a,
.nav-drawer-dropdown-trigger {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  color: var(--brand-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-drawer-sublist {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0 0 0.5rem 0.75rem;
  display: none;
  border-left: 2px solid var(--brand-primary);
}

.nav-drawer-item-dropdown.is-open .nav-drawer-sublist {
  display: block;
}

.nav-drawer-sublist a {
  padding: 0.55rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--brand-light);
}

.nav-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-demo-drawer {
  width: 100%;
  text-align: center;
}

.btn-drawer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--brand-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header .logo {
  visibility: hidden;
}

/* Main */
.main {
  background: transparent;
  color: var(--brand-white);
  padding: 0;
  width: 100%;
}

/* Hero — full-bleed */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 24, 41, 0.55) 0%, rgba(3, 24, 41, 0.72) 45%, rgba(3, 24, 41, 0.92) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(19, 153, 255, 0.18), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.hero-copy {
  max-width: 40rem;
  text-align: left;
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--brand-white);
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(19, 153, 255, 0.25);
}

.hero-title {
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--brand-white);
  max-width: 18ch;
}

.hero-subheading {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 0 1.75rem;
  color: var(--brand-light);
  opacity: 0.95;
  line-height: 1.55;
  max-width: 36rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn-hero {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .hero {
    min-height: min(88vh, 700px);
  }
  .hero-copy {
    text-align: center;
  }
  .hero-title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-brand {
    text-align: center;
  }
}

/* Proof strip */
.proof-section {
  padding: 2.75rem 0 2.25rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.proof-label,
.partners-label {
  text-align: center;
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232, 241, 245, 0.62);
}

.proof-strip {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.proof-stat {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1.25rem;
  animation: proof-rise 0.75s ease both;
}

.proof-stat + .proof-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(232, 241, 245, 0.28),
    transparent
  );
}

.proof-stat:nth-child(2) { animation-delay: 0.12s; }
.proof-stat:nth-child(3) { animation-delay: 0.24s; }

@keyframes proof-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proof-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  color: var(--brand-primary);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 7ch;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.proof-value.is-complete {
  transform: scale(1.03);
}

.proof-desc {
  font-size: 0.95rem;
  color: rgba(232, 241, 245, 0.78);
  max-width: 14ch;
  line-height: 1.35;
}

@media (max-width: 700px) {
  .proof-strip {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    max-width: 280px;
  }

  .proof-stat {
    padding: 0;
  }

  .proof-stat + .proof-stat::before {
    left: 18%;
    right: 18%;
    top: -0.7rem;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(232, 241, 245, 0.28),
      transparent
    );
  }

  .proof-desc {
    max-width: none;
  }
}

/* Partners */
.partners-carousel {
  background: transparent;
  padding: 0.75rem 0 3.5rem;
  overflow: hidden;
}

.partners-carousel-inner {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 1.1rem 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  /* Keep blur off this node — backdrop-filter + animated children vanishes on iOS */
  transform: translateZ(0);
}

.partners-carousel-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 60s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.partners-carousel-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.partners-carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.partners-carousel-item img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 188px;
  object-fit: contain;
  opacity: 0.92;
  border-radius: 0;
}

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

/* What we offer */
.what-we-offer {
  background: linear-gradient(
    180deg,
    var(--surface-deep) 0%,
    var(--surface-deep) 60%,
    #0c2a40 74.5%,
    #4a738c 90%,
    #d8e6ef 100%
  );
  color: var(--brand-white);
  padding: 3.5rem 0 4.25rem;
}

.what-we-offer-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-white);
  margin: 0 0 1.75rem;
  line-height: 1.25;
  text-align: center;
}

.what-we-offer-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem;
  border-radius: 999px;
  max-width: 100%;
}

.what-we-offer-tab {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(232, 241, 245, 0.85);
  background: transparent;
  border: none;
  padding: 0.55rem 1rem;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.what-we-offer-tab:hover {
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.08);
}

.what-we-offer-tab.is-active {
  color: var(--brand-white);
  background: rgba(19, 153, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(19, 153, 255, 0.45);
}

.what-we-offer-content {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.what-we-offer-panel {
  display: none;
  padding: 2rem;
  gap: 2rem;
  align-items: flex-start;
}

.what-we-offer-panel.is-visible {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "copy visual";
}

.what-we-offer-copy {
  grid-area: copy;
  min-width: 0;
}

.what-we-offer-copy p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brand-light);
}

.what-we-offer-copy strong {
  color: var(--brand-white);
}

.what-we-offer-visual {
  grid-area: visual;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-we-offer-visual img {
  width: 100%;
  height: 280px;
  max-width: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 16px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Benefits */
.member-benefits {
  margin-top: 3.5rem;
}

.member-benefits-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--brand-white);
  margin: 0 0 1.5rem;
  line-height: 1.25;
  text-align: center;
}

.member-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.member-benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.member-benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(19, 153, 255, 0.9);
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-benefit-icon svg {
  width: 22px;
  height: 22px;
}

.member-benefit-text {
  font-size: 0.975rem;
  line-height: 1.4;
  color: var(--brand-light);
}

@media (max-width: 768px) {
  .what-we-offer {
    padding: 2.5rem 0 3.5rem;
  }
  .what-we-offer-tabs {
    border-radius: var(--radius);
    justify-content: flex-start;
  }
  .what-we-offer-panel.is-visible {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "copy";
    gap: 1.25rem;
  }
  .what-we-offer-panel {
    padding: 1.25rem;
  }
  .what-we-offer-visual img {
    height: 200px;
  }
  .member-benefits-list {
    grid-template-columns: 1fr;
  }
}

/* Origin — editorial white break with soft dark↔light bridges */
.origin-section {
  position: relative;
  margin-top: -1px;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  color: var(--origin-ink);
  background:
    linear-gradient(
      180deg,
      #d8e6ef 0%,
      #eef4f8 12%,
      #ffffff 22%,
      #ffffff 90%,
      #eef4f8 95%,
      #d8e6ef 100%
    );
}

.origin-container {
  max-width: 42rem;
  position: relative;
  z-index: 1;
}

.origin-header {
  padding-top: 0.85rem;
  border-top: 2px solid var(--origin-accent);
  margin-bottom: 0;
  padding-bottom: 1.35rem;
  border-bottom: 2px solid var(--origin-accent);
}

.origin-eyebrow {
  margin: 0 0 1.15rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--origin-accent);
}

.origin-heading {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.85rem);
  color: var(--origin-ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.origin-lead {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  color: var(--origin-ink);
  max-width: 36rem;
}

.origin-body {
  margin-top: 1.75rem;
  padding-left: 1.15rem;
  border-left: 2px solid var(--origin-accent);
}

.origin-body p {
  margin: 0 0 1.15rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: #3a4a58;
}

.origin-body p:last-child {
  margin-bottom: 0;
}

.origin-closer {
  margin-top: 1.5rem !important;
  color: var(--origin-ink) !important;
  font-weight: 500;
}

.origin-footer {
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid #d7dee5;
}

.origin-footer-mark {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a97a3;
}

.origin-footer-mark span {
  margin: 0 0.35rem;
  color: #b0bac3;
}

@media (max-width: 600px) {
  .origin-body {
    padding-left: 0.9rem;
  }
  .origin-heading {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
}

/* Pricing */
.pricing-section {
  margin-top: -1px;
  padding: calc(4.5rem + 1px) 0 4rem;
  color: var(--brand-white);
  background: linear-gradient(
    180deg,
    #d8e6ef 0%,
    #9eb8cb 5%,
    #0a3048 15%,
    transparent 31%
  );
}

.pricing-heading {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.25;
  color: var(--brand-white);
  margin: 0 auto 0.75rem;
  max-width: 52rem;
}

.pricing-subheading {
  text-align: center;
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--brand-light);
  margin: 0 auto 2rem;
  max-width: 40rem;
  line-height: 1.5;
}

.pricing-calc-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 auto 2.75rem;
  max-width: 52rem;
  background: var(--glass-bg-strong);
}

.pricing-calc-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--brand-white);
  text-align: center;
}

.pricing-calc-card-lead {
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--brand-light);
  font-size: 0.975rem;
}

.pricing-calc-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.pricing-calc-field {
  flex: 1 1 11rem;
  max-width: 16rem;
}

.pricing-calc-label {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  margin-bottom: 0.375rem;
  color: var(--brand-light);
}

.pricing-calc-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
}

.pricing-calc-input:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 1px;
}

.pricing-calc-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.pricing-calc-result {
  border-radius: 14px;
  padding: 1rem 0.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-calc-result--featured {
  background: rgba(19, 153, 255, 0.22);
  border-color: rgba(19, 153, 255, 0.55);
  box-shadow: 0 0 28px rgba(19, 153, 255, 0.2);
}

.pricing-calc-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(232, 241, 245, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-calc-output {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--brand-white);
}

.pricing-calc-result--featured .pricing-calc-output {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
}

.pricing-table-label {
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-primary);
  margin: 0 0 0.75rem;
}

.pricing-table-label--after-table {
  margin-top: 2.5rem;
}

.pricing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-comparison-table {
  table-layout: fixed;
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  overflow: hidden;
}

.pricing-comparison-table col.pricing-col-group-label {
  width: 36%;
}

.pricing-comparison-table col.pricing-col-group-data {
  width: 16%;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.9rem;
}

.pricing-comparison-table tbody td {
  color: var(--brand-light);
}

.pricing-comparison-table thead th {
  background: rgba(19, 153, 255, 0.85);
  color: #fff;
  font-weight: 700;
}

.pricing-comparison-table tbody th[scope="row"] {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  color: var(--brand-white);
  text-align: left;
}

.pricing-comparison-table td.pricing-col-highlight {
  background: rgba(19, 153, 255, 0.12) !important;
  border-left: 2px solid rgba(19, 153, 255, 0.65) !important;
  border-right: 2px solid rgba(19, 153, 255, 0.65) !important;
}

.pricing-comparison-table th.pricing-col-highlight--head {
  background: rgba(19, 153, 255, 0.95) !important;
  border-left: 2px solid #053A60 !important;
  border-right: 2px solid #053A60 !important;
  color: #fff !important;
}

.pricing-comparison-table tbody tr:last-child td.pricing-col-highlight {
  border-bottom: 2px solid rgba(19, 153, 255, 0.65) !important;
}

.pricing-col-highlight-inner {
  display: block;
}

.pricing-calc-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(232, 241, 245, 0.65);
  max-width: 52rem;
}

@media (max-width: 768px) {
  .pricing-calc-results {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-calc-field {
    max-width: none;
  }
  .pricing-table-scroll--pay {
    overflow-x: visible;
    border: none;
    background: transparent;
  }
  .pricing-comparison-table--pay-cards {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .pricing-comparison-table--pay-cards thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .pricing-comparison-table--pay-cards tbody {
    display: block;
  }
  .pricing-comparison-table--pay-cards tbody tr {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
  }
  .pricing-comparison-table--pay-cards tbody th[scope="row"],
  .pricing-comparison-table--pay-cards tbody td {
    display: block;
    width: 100%;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: left !important;
  }
  .pricing-comparison-table--pay-cards tbody td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    font-size: 0.8125rem;
    color: rgba(232, 241, 245, 0.65);
    margin-bottom: 0.35rem;
  }
  .pricing-pay-reference-row {
    display: block !important;
  }
}

/* Join */
.join-section {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(19, 153, 255, 0.18), transparent 55%),
    transparent;
}

.join-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 36rem;
}

.join-intro {
  text-align: center;
  color: var(--brand-white);
  width: 100%;
}

.join-heading {
  font-weight: 700;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--brand-white);
}

.join-subheading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  color: var(--brand-light);
}

.join-benefits {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.join-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-white);
}

.join-benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(19, 153, 255, 0.35);
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(19, 153, 255, 0.45);
}

.join-benefit-icon svg {
  width: 16px;
  height: 16px;
}

.join-form-card {
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  background: var(--glass-bg-strong);
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join-form-status {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.join-form-status.is-success {
  color: #d7f5e6;
  background: rgba(34, 160, 107, 0.22);
  border: 1px solid rgba(34, 160, 107, 0.45);
}

.join-form-status.is-error {
  color: #ffe0e0;
  background: rgba(180, 50, 50, 0.22);
  border: 1px solid rgba(220, 80, 80, 0.45);
}

.join-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.join-input {
  width: 100%;
  padding: 0.875rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.join-input::placeholder {
  color: rgba(232, 241, 245, 0.55);
}

.join-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(19, 153, 255, 0.25);
}

.join-disclaimer {
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(232, 241, 245, 0.65);
  margin: 0.25rem 0 0;
}

.join-disclaimer a {
  color: var(--brand-light);
  text-decoration: underline;
}

.join-disclaimer a:hover {
  color: var(--brand-primary);
}

.join-submit {
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-white);
  background: var(--brand-primary);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.join-submit:hover {
  background: #0d7ad4;
  box-shadow: 0 0 24px var(--accent-glow);
}

.join-submit:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* FAQ */
.faq-section {
  padding: 3.5rem 0 4.5rem;
  color: var(--brand-white);
}

.faq-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 1.5rem;
  color: var(--brand-white);
  text-align: center;
}

.faq-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass-bg);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-white);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--brand-light);
}

.faq-question:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: -2px;
}

.faq-question-text {
  flex: 1;
  min-width: 0;
}

.faq-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand-primary);
  border-bottom: 2px solid var(--brand-primary);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.faq-answer[hidden] {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  visibility: hidden;
}

.faq-answer:not([hidden]) {
  height: auto;
  visibility: visible;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brand-light);
}

/* Footer */
.site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  background: rgba(3, 24, 41, 0.85);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 2rem 3rem;
  max-width: var(--container-max);
}

.footer-column {
  min-width: 0;
}

.footer-mission {
  justify-self: end;
  max-width: 42ch;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-white);
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--brand-light);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.footer-mission-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(232, 241, 245, 0.8);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  text-align: center;
}

.footer-legal {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(232, 241, 245, 0.7);
  line-height: 1.6;
}

.footer-legal a {
  color: rgba(232, 241, 245, 0.7);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--brand-primary);
}

.footer-legal-sep {
  margin: 0 0.5rem;
  color: var(--brand-gray-light);
  user-select: none;
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-mission {
    grid-column: 1 / -1;
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-mission {
    grid-column: 1;
  }
  .join-form-card {
    padding: 1.5rem;
  }
}

/* Accessibility: reduced motion / transparency */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .orb,
  .proof-stat,
  .partners-carousel-track,
  .btn-demo {
    animation: none !important;
  }

  .proof-value.is-complete {
    transform: none;
  }
  .partners-carousel-track {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .glass,
  .site-header,
  .nav-dropdown,
  .nav-drawer-inner,
  .partners-carousel-inner,
  .join-form-card,
  .pricing-calc-card,
  .faq-item,
  .what-we-offer-content,
  .what-we-offer-tabs {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(5, 58, 96, 0.96) !important;
  }
}
