/*
  BBWS — Neutral Apple-inspired CSS with annotations
  Legal entity: BBWS1 LLC
  --------------------------------------------------------------------------
  This stylesheet controls presentation only. It contains no investor screening,
  analytics, cookies, wallet integrations, payment flows, or subscription logic.

  Design intent:
  - Neutral Apple-like aesthetic: white, graphite, soft gray, restrained blue.
  - No gold / luxury-metal palette.
  - No visual logo or icon mark.
  - Finished dense content sections with no empty form fields or placeholders.
*/

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --muted: #6e6e73;
  --muted-2: #86868b;
  --line: rgba(0, 0, 0, 0.10);
  --line-soft: rgba(0, 0, 0, 0.06);
  --accent: #0071e3;
  --accent-hover: #005bb5;
  --dark: #111113;
  --dark-soft: #1d1d1f;
  --dark-muted: #a1a1a6;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 32px 95px rgba(0, 0, 0, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.95), transparent 32rem),
    linear-gradient(180deg, #fbfbfd 0%, var(--bg) 42%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  /* Subtle neutral glow, not a logo and not a financial chart. */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 113, 227, 0.07), transparent 22rem),
    radial-gradient(circle at 86% 16%, rgba(0, 0, 0, 0.045), transparent 26rem),
    radial-gradient(circle at 50% 92%, rgba(0, 113, 227, 0.04), transparent 28rem);
}

body::after {
  /* Soft noise texture to avoid sterile empty surfaces. */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: linear-gradient(90deg, #000 1px, transparent 1px), linear-gradient(#000 1px, transparent 1px);
  background-size: 3px 3px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

/* Compliance notice: intentionally simple and always visible on load. */
.top-notice {
  position: relative;
  z-index: 40;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.68rem 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  backdrop-filter: saturate(180%) blur(18px);
}

.top-notice strong {
  color: var(--ink-soft);
  font-weight: 650;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: saturate(180%) blur(22px);
  background: rgba(251, 251, 253, 0.72);
  border-bottom: 1px solid var(--line-soft);
}

.nav,
.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

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

.brand {
  /* Text-only wordmark. No logo, no icon, no badge. */
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

.nav-cta {
  padding: 0.62rem 0.92rem;
  border-radius: 999px;
  color: #fff !important;
  background: var(--ink);
}

.nav-cta:hover {
  color: #fff !important;
  background: var(--accent);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0.62rem 0.88rem;
  font: inherit;
}

.section-pad {
  padding: 7rem 0;
}

.hero {
  min-height: calc(100vh - 106px);
  display: flex;
  align-items: center;
}

.hero-inner,
.split-grid,
.contact-panel,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 3rem;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 1.05rem;
  color: var(--muted-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.inverse {
  color: rgba(255, 255, 255, 0.66);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.062em;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 9.5vw, 8.6rem);
  line-height: 0.86;
}

h2 {
  font-size: clamp(2.4rem, 5.7vw, 5.4rem);
  line-height: 0.92;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-text {
  max-width: 670px;
  margin-top: 1.55rem;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin: 2rem 0 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.84rem 1.15rem;
  border-radius: 999px;
  font-weight: 650;
  letter-spacing: -0.02em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(0, 113, 227, 0.22);
}

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

.button.secondary {
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.12);
}

.fine-print {
  max-width: 590px;
  color: var(--muted-2);
  font-size: 0.91rem;
}

.system-card {
  position: relative;
  min-height: 0;padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.88)),
    radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.10), transparent 22rem);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 42%, rgba(0, 0, 0, 0.035));
}

.system-card-header,
.status-row,
.device-panel,
.system-list {
  position: relative;
  z-index: 1;
}

.system-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0.15rem 0.95rem;
}

.system-card-header span {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-card-header strong {
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: -0.03em;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.status-row span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
}

.device-panel {
  min-height: 248px;
  margin: 1rem 0;
  padding: 1.2rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 55% 20%, rgba(0, 113, 227, 0.14), transparent 18rem),
    linear-gradient(145deg, #f7f7f9, #ffffff);
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.device-line {
  height: 12px;
  width: 64%;
  margin-bottom: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9d9de, #eeeeF2);
}

.device-line.wide {
  width: 82%;
}

.device-line.short {
  width: 46%;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.62rem;
  margin-top: 1.45rem;
}

.device-grid span {
  min-height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #ececf0);
  border: 1px solid var(--line-soft);
}

.device-grid span:nth-child(3),
.device-grid span:nth-child(6),
.device-grid span:nth-child(11) {
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.18), rgba(0, 113, 227, 0.06));
  border-color: rgba(0, 113, 227, 0.12);
}

.system-list {
  display: grid;
  gap: 0.72rem;
}

.system-list div,
.card,
.process-card,
.risk-stack article,
.investor-panel,
.disclosure-grid article,
.contact-box {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.system-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.9rem;
  row-gap: 0.2rem;
  padding: 0.95rem 1rem;
}

.system-list small {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
}

.system-list strong {
  color: var(--ink);
  letter-spacing: -0.03em;
}

.system-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.summary-strip {
  padding: 1rem 0 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.strip-grid div {
  min-height: 104px;
  padding: 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.strip-grid span {
  display: block;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.strip-grid strong {
  display: block;
  margin-top: 0.42rem;
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 1.15rem;
}

.section-heading p:not(.eyebrow),
.split-grid > div:first-child p:not(.eyebrow),
.investor-panel > div:first-child p:not(.eyebrow),
.contact-panel > div:first-child p:not(.eyebrow) {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.cards {
  display: grid;
  gap: 0.9rem;
}

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

.card {
  min-height: 270px;
  padding: 1.28rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.card.highlighted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(0, 113, 227, 0.055));
  border-color: rgba(0, 113, 227, 0.14);
}

.card-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 3.4rem;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  font-size: 0.76rem;
  font-weight: 750;
}

.card p {
  margin-top: 0.9rem;
}

.system-section {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.54), rgba(245,245,247,0.88));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.process-card {
  display: grid;
  gap: 0.72rem;
  padding: 0.9rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-strong);
}

.process-step {
  padding: 1.02rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line-soft);
}

.process-step span {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.process-step p {
  margin-top: 0.42rem;
  font-size: 0.95rem;
}

.dark-section {
  color: #fff;
  background:
    radial-gradient(circle at 76% 12%, rgba(0, 113, 227, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--dark), #000000);
}

.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.dark-section p {
  color: var(--dark-muted);
}

.risk-stack {
  display: grid;
  gap: 0.78rem;
}

.risk-stack article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.05rem;
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.risk-stack strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.risk-stack p {
  margin: 0;
}

.investor-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 2.2rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-strong);
}

.investor-panel > div:first-child {
  padding: 1rem;
}

.steps {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  display: grid;
  gap: 0.32rem;
  padding: 0.98rem 1rem 0.98rem 4rem;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #fff;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0.9rem;
  top: 0.92rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  font-size: 0.74rem;
  font-weight: 750;
}

.steps strong {
  letter-spacing: -0.03em;
}

.steps span {
  color: var(--muted);
  line-height: 1.5;
}

.disclosure-section {
  background: #ffffff;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.disclosures h2 {
  margin-bottom: 1.2rem;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.disclosure-grid article {
  min-height: 238px;
  padding: 1.08rem;
  background: #f5f5f7;
  box-shadow: none;
}

.disclosure-grid h3 {
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.disclosure-grid p {
  margin-top: 0.75rem;
  font-size: 0.94rem;
}

.contact-section {
  padding-bottom: 5rem;
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 113, 227, 0.18), transparent 24rem),
    linear-gradient(180deg, #1d1d1f, #0d0d0f);
}

.contact-panel {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.contact-panel h2 {
  color: #fff;
}

.contact-panel p {
  color: var(--dark-muted);
}

.contact-panel > div:first-child {
  padding: 1rem;
}

.contact-box {
  padding: 1.25rem;
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contact-box span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.email-link {
  display: block;
  margin: 0.55rem 0 0.95rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 750;
  letter-spacing: -0.08em;
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.email-link:hover {
  color: #7ab7ff;
}

.footer {
  padding: 2.25rem 0 2.8rem;
  border-top: 1px solid var(--line-soft);
  background: #fff;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.footer strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.footer p {
  margin-top: 0.3rem;
  font-size: 0.92rem;
}

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

/* Reveal animation. Site remains readable if JavaScript is disabled. */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.reveal.delay {
  transition-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button,
  .nav-cta,
  .reveal { transition: none; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.68rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.72rem;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-strong);
  }

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

  .nav-links a {
    padding: 0.88rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .hero-inner,
  .split-grid,
  .contact-panel,
  .investor-panel,
  .section-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: auto;
  }

  .cards.three,
  .disclosure-grid,
  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .top-notice {
    flex-direction: column;
    gap: 0.18rem;
    text-align: center;
  }

  .nav,
  .container {
    width: min(100% - 1.08rem, var(--max));
  }

  .section-pad {
    padding: 4.6rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 3.2rem;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.65rem);
  }

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

  .button {
    width: 100%;
  }

  .status-row,
  .device-grid,
  .cards.three,
  .disclosure-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .system-card,
  .investor-panel,
  .contact-panel,
  .process-card {
    border-radius: 26px;
  }

  .risk-stack article {
    grid-template-columns: 1fr;
  }

  .steps li {
    padding-left: 1rem;
    padding-top: 3.85rem;
  }

  .steps li::before {
    top: 0.9rem;
  }
}




/* BBWS HARD FIX — hero Operating model alignment
   Desktop only: the card starts at the same visual level as the word "Digital".
   Mobile/tablet keeps the normal stacked layout.
*/
@media (min-width: 981px) {
  .hero-inner {
    align-items: start !important;
  }

  .hero .system-card {
    align-self: start !important;
    margin-top: 2.15rem !important;
  }
}

@media (max-width: 980px) {
  .hero .system-card {
    margin-top: 0 !important;
  }
}
