/* OBY Traders 2026 — Editorial dark, RTL Hebrew, mono data */

/* ---------- Scroll progress + scroll reveal ---------- */
.oby-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 100;
  background: var(--accent);
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform .12s linear;
  box-shadow: 0 0 12px var(--accent-soft);
}

/* Scroll-driven section animations using modern view-timeline if supported,
   IntersectionObserver fallback via [data-in] attribute */
@supports (animation-timeline: view()) {
  /* Cards: scale + lift + blur */
  .oby-method__card,
  .oby-tool,
  .oby-plan,
  .oby-trade,
  .oby-faq__item,
  .oby-edge__copy,
  .oby-edge__panel {
    animation: obyReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }

  /* Stagger via nth-child via offset ranges */
  .oby-method__card:nth-child(2),
  .oby-tool:nth-child(2),
  .oby-plan:nth-child(2),
  .oby-trade:nth-child(2) { animation-range: entry 5% cover 30%; }
  .oby-method__card:nth-child(3),
  .oby-tool:nth-child(3),
  .oby-plan:nth-child(3),
  .oby-trade:nth-child(3) { animation-range: entry 10% cover 35%; }
  .oby-tool:nth-child(4), .oby-trade:nth-child(4) { animation-range: entry 12% cover 38%; }
  .oby-tool:nth-child(5) { animation-range: entry 14% cover 40%; }
  .oby-tool:nth-child(6) { animation-range: entry 16% cover 42%; }

  /* Hero exit - softer, terminal stays until late */
  .oby-hero__title-line {
    animation: obyHeroLine linear both;
    animation-timeline: view();
    animation-range: exit -50% exit 100%;
  }
  .oby-hero__title-line:nth-child(2) { animation-range: exit -60% exit 95%; }
  .oby-hero__title-line:nth-child(3) { animation-range: exit -70% exit 90%; }

  .oby-hero__terminal {
    animation: obyHeroPanelExit linear both;
    animation-timeline: view();
    animation-range: exit -30% exit 90%;
  }

  .oby-hero__lede,
  .oby-hero__actions,
  .oby-hero__stats {
    animation: obyHeroExit linear both;
    animation-timeline: view();
    animation-range: exit -30% exit 100%;
  }

  /* Section headers: title rises into place with letter-spacing tighten */
  .oby-section .oby-shead__title,
  .oby-section .oby-shead__eyebrow {
    animation: obyTitleIn linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  /* Edge panel: equity curve scales in */
  .oby-edge__panel {
    animation: obyPanelIn linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  /* Pricing plans cascade with subtle rotateX */
  .oby-plan {
    animation: obyPlanIn linear both;
    animation-timeline: view();
    transform-origin: bottom center;
  }

  /* Trade journal cards: slide + reveal mask */
  .oby-trade {
    animation: obyTradeIn linear both;
    animation-timeline: view();
  }

  /* Tools: clip-path reveal */
  .oby-tool {
    animation: obyToolIn linear both;
    animation-timeline: view();
  }

  /* Method numbers count up in scale */
  .oby-method__n {
    animation: obyNumPop linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  /* Ticker subtle parallax */
  .oby-ticker {
    animation: obyTickerLift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  /* Footer rises */
  .oby-foot {
    animation: obyFootIn linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
}

@keyframes obyReveal {
  from { opacity: 0; transform: translateY(60px) scale(0.96); filter: blur(12px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes obyHeroLine {
  0%   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-60px) scale(0.94); filter: blur(4px); }
}
@keyframes obyHeroPanelExit {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-80px) scale(0.96); }
}
@keyframes obyHeroExit {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-30px); }
}
@keyframes obyTitleIn {
  from { opacity: 0; transform: translateY(40px); letter-spacing: 0.02em; filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0); letter-spacing: -0.035em; filter: blur(0); }
}
@keyframes obyPanelIn {
  from { opacity: 0; transform: translateX(60px) scale(0.95); filter: blur(8px); }
  to   { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}
@keyframes obyPlanIn {
  from { opacity: 0; transform: translateY(80px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes obyTradeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes obyToolIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes obyNumPop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes obyTickerLift {
  0%   { opacity: 0.4; transform: translateY(20px); }
  20%, 80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0.4; transform: translateY(-20px); }
}
@keyframes obyFootIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Smooth scrolling on document */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Smooth momentum-style snap behavior on sections (subtle) */
.oby-app {
  scroll-snap-type: none;
}

/* Magnetic hover micro-interaction on cards */
.oby-tool, .oby-plan {
  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    border-color .3s ease,
    background .3s ease,
    box-shadow .5s cubic-bezier(.2,.8,.2,1) !important;
}
.oby-tool:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
}
.oby-plan:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}

/* Buttons get a subtle scale + glow on hover */
.oby-btn--primary {
  position: relative;
  overflow: hidden;
}
.oby-btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.3), transparent 50%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.oby-btn--primary:hover::before { opacity: 1; }

/* Section number/divider line that grows in */
.oby-section { position: relative; }
.oby-section::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: obyDividerGrow linear both;
}
@supports (animation-timeline: view()) {
  .oby-section::before {
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
  }
}
@keyframes obyDividerGrow {
  from { width: 0; opacity: 0; }
  to   { width: 200px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .oby-progress, [class*="oby-"] { animation: none !important; transition: none !important; }
}

/* Hero-specific scroll polish */
.oby-hero__title-line {
  display: block;
  will-change: transform, opacity;
}
.oby-hero__grid { will-change: transform; transition: transform .1s linear; }
.oby-hero__terminal { will-change: transform; transition: transform .1s linear; }

/* Section sticky-reveal using CSS scroll-driven animations */
@supports (animation-timeline: scroll()) {
  .oby-section {
    --section-fade: 1;
  }
}

:root {
  --bg: #08090b;
  --bg-soft: #0e1014;
  --bg-elev: #14161c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --fg: #f5f6f7;
  --fg-soft: #c8cbd1;
  --fg-mute: #8a8e98;
  --fg-faint: #5a5e68;

  --accent: oklch(0.86 0.24 145);
  --accent-soft: oklch(0.86 0.24 145 / 0.14);

  --up: oklch(0.78 0.17 152);
  --down: oklch(0.72 0.20 25);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --space: 8px;

  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Heebo', 'Assistant', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

[data-density="compact"] { --space: 6px; }
[data-density="comfortable"] { --space: 8px; }
[data-density="spacious"] { --space: 10px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

.oby-app {
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
}

.oby-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.oby-mono { font-family: var(--font-mono); font-feature-settings: "tnum"; letter-spacing: 0; }

/* ---------- Nav ---------- */
.oby-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.oby-nav.is-scrolled {
  padding: 12px 0;
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.oby-nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px;
}
.oby-brand { display: inline-flex; align-items: center; color: var(--fg); }
.oby-brand__lockup { display: block; width: auto; transition: height .3s ease; }
.oby-logo__mark { fill: var(--accent); }
.oby-brand__lockup .oby-logo__fx { fill: var(--accent); }
.oby-foot__lockup .oby-logo__mark { fill: var(--fg-mute); }
.oby-brand__sub { color: var(--fg-mute); font-weight: 400; }

.oby-nav__links {
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.oby-nav__link {
  padding: 8px 14px; border-radius: 999px;
  color: var(--fg-soft); font-size: 14px;
  transition: background .2s, color .2s;
}
.oby-nav__link:hover { background: rgba(255,255,255,0.06); color: var(--fg); }

.oby-nav__cta { display: flex; align-items: center; gap: 8px; }

.oby-nav__menu { display: none; flex-direction: column; gap: 4px; padding: 8px; border-radius: 8px; }
.oby-nav__menu span { display: block; width: 18px; height: 1.5px; background: var(--fg); }

.oby-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 32px 24px;
  background: rgba(8, 9, 11, 0.96);
  border-bottom: 1px solid var(--line);
}
.oby-nav__mobile button {
  text-align: right; padding: 12px 0; font-size: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--fg-soft);
}

@media (max-width: 900px) {
  .oby-nav__links, .oby-nav__cta { display: none; }
  .oby-nav__menu { display: flex; }
  .oby-nav__mobile { display: flex; }
  .oby-nav__inner { grid-template-columns: auto auto; justify-content: space-between; }
}

/* ---------- Buttons ---------- */
.oby-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
}
.oby-btn--lg { padding: 13px 22px; font-size: 15px; }
.oby-btn:active { transform: translateY(1px); }
.oby-btn svg { transition: transform .2s; }
.oby-btn:hover svg { transform: translateX(-2px); }

.oby-btn--primary {
  background: var(--accent);
  color: #08090b;
  font-weight: 600;
}
.oby-btn--primary:hover { background: oklch(from var(--accent) calc(l + 0.04) c h); }

.oby-btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  border: 1px solid var(--line);
}
.oby-btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--line-strong); }

/* ---------- Hero ---------- */
.oby-hero {
  position: relative; min-height: 100vh;
  padding: 150px 0 120px;
  overflow: hidden;
  display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: 48px;
  isolation: isolate;
}
.oby-hero__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.04) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -1;
}
.oby-hero__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, var(--accent-soft), transparent 60%),
    radial-gradient(ellipse 500px 300px at 90% 80%, var(--accent-soft), transparent 60%);
  opacity: 0.6;
  animation: obyGlowPulse 8s ease-in-out infinite alternate;
}
@keyframes obyGlowPulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.oby-hero__inner {
  position: relative;
  padding: 0 16px;
  grid-column: 1 / 2;
  grid-row: 1;
}

/* Hero scroll cue at bottom */
.oby-hero__cue {
  position: absolute; bottom: 28px; left: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.oby-hero__cue .oby-mono {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 9px; letter-spacing: 0.32em; color: var(--fg-faint);
}
.oby-hero__cueLine {
  display: block; width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative; overflow: hidden;
}
.oby-hero__cueLine::after {
  content: ""; position: absolute; top: -100%; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: obyCueScroll 2.4s ease-in-out infinite;
}
@keyframes obyCueScroll {
  0% { top: -50%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Deal flow panel - left column */
.oby-flow {
  position: sticky; top: 100px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-soft), rgba(14, 16, 20, 0.4));
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.oby-flow__head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-bottom: 1px solid var(--line);
  font-size: 10px; letter-spacing: 0.14em; color: var(--fg-mute);
}
.oby-flow__list {
  padding: 6px 0;
}
.oby-flow__row {
  display: grid; grid-template-columns: 64px 36px 44px 1fr;
  align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 11px;
  border-bottom: 1px dashed var(--line);
  animation: obyFlowRowIn .6s ease both;
}
.oby-flow__row:last-child { border-bottom: none; }
@keyframes obyFlowRowIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
.oby-flow__time { color: var(--fg-faint); font-size: 10px; }
.oby-flow__sym { color: var(--fg); font-weight: 600; }
.oby-flow__side { font-size: 9px; padding: 2px 6px; border-radius: 4px; font-weight: 600; letter-spacing: 0.06em; text-align: center; }
.oby-flow__side--long { color: var(--up); background: oklch(0.78 0.17 152 / 0.14); }
.oby-flow__side--short { color: var(--down); background: oklch(0.72 0.20 25 / 0.14); }
.oby-flow__r { font-size: 12px; font-weight: 600; text-align: right; }
.oby-flow__r.is-up { color: var(--up); }
.oby-flow__r.is-down { color: var(--down); }

.oby-flow__foot {
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  display: grid; gap: 8px;
}
.oby-flow__sparkWrap { height: 24px; }
.oby-flow__spark { width: 100%; height: 100%; }
.oby-flow__pl {
  display: flex; justify-content: space-between; align-items: center;
}
.oby-flow__pl span { font-size: 10px; letter-spacing: 0.12em; color: var(--fg-mute); }
.oby-flow__pl b { font-size: 14px; color: var(--up); font-weight: 600; }

@media (max-width: 1280px) {
  .oby-hero__title { font-size: clamp(40px, 5vw, 64px); }
}

.oby-hero__meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--fg-mute);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  margin-bottom: 32px;
}
.oby-meta-sep { color: var(--fg-faint); }
.oby-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: obyPulse 2s infinite;
}
.oby-blink { animation: obyBlink 1s infinite; }
@keyframes obyBlink { 50% { opacity: 0.2; } }
@keyframes obyPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-soft); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.oby-hero__title {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.3;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin: 0 0 28px;
}
.oby-hero__title-line { display: block; }
.oby-hero__title-line--accent {
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
  font-feature-settings: "ss01";
}

.oby-hero__lede {
  font-size: 18px; line-height: 1.6;
  color: var(--fg-soft);
  max-width: 540px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.oby-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.oby-hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--fg-mute); margin-bottom: 52px;
}
.oby-hero__stars { color: var(--accent); letter-spacing: 3px; font-size: 12px; }

.oby-hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.oby-stat {}
.oby-stat__n {
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--fg);
}
.oby-stat__label { font-size: 13px; color: var(--fg-soft); margin-top: 4px; }
.oby-stat__sub { font-size: 11px; color: var(--fg-faint); margin-top: 2px; }

.oby-hero__terminal {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 1;
  padding: 0 32px;
  display: flex; justify-content: center; align-items: center;
}

/* Logo video panel — unified card */
.oby-logovid {
  width: 100%; max-width: 560px;
}
.oby-logovid__card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
}
.oby-logovid__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
}
.oby-logovid__head-left { display: inline-flex; align-items: center; gap: 8px; }
.oby-logovid__head-right { display: inline-flex; align-items: center; gap: 6px; }

.oby-logovid__media {
  display: grid; grid-template-columns: 180px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.oby-logovid__videoWrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #000;
  border-left: 1px solid var(--line);
  overflow: hidden;
}
.oby-logovid__videoWrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  /* slightly desaturate to feel integrated */
  filter: saturate(0.85) contrast(1.05);
}
.oby-logovid__videoFade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 50%, rgba(8,9,11,0.4) 100%),
    linear-gradient(90deg, rgba(8,9,11,0.5) 0%, transparent 20%, transparent 80%, rgba(8,9,11,0.5) 100%);
  mix-blend-mode: multiply;
}
.oby-logovid__sideStats {
  display: grid; grid-template-rows: repeat(4, 1fr);
  padding: 8px 0;
}
.oby-logovid__stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 16px;
  border-top: 1px dashed var(--line);
  font-size: 11px;
}
.oby-logovid__stat:first-child { border-top: none; }
.oby-logovid__stat span { color: var(--fg-faint); letter-spacing: 0.1em; }
.oby-logovid__stat b { color: var(--fg); font-weight: 500; font-size: 13px; }

.oby-logovid__termBox > .oby-term {
  border: none; border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.oby-term--compact .oby-term__chart { height: 60px; }
.oby-term--compact .oby-term__body { padding: 14px 16px; gap: 6px; }

@media (max-width: 540px) {
  .oby-logovid__media { grid-template-columns: 1fr; }
  .oby-logovid__videoWrap { border-left: none; border-bottom: 1px solid var(--line); aspect-ratio: 16 / 9; }
}

[data-variant="centered"].oby-hero {
  grid-template-columns: 1fr;
  text-align: center;
}
[data-variant="centered"] .oby-hero__inner { max-width: 900px; margin: 0 auto; padding-right: 32px; }
[data-variant="centered"] .oby-hero__terminal { display: none; }
[data-variant="centered"] .oby-hero__lede { margin-left: auto; margin-right: auto; }
[data-variant="centered"] .oby-hero__actions { justify-content: center; }
[data-variant="centered"] .oby-hero__stats { max-width: 720px; margin: 0 auto; }

@media (max-width: 1100px) {
  .oby-hero { grid-template-columns: 1fr; padding-top: 120px; }
  .oby-hero__inner { grid-column: 1 / -1; grid-row: auto; }
  .oby-hero__terminal { grid-column: 1 / -1; grid-row: auto; padding: 32px; max-width: 600px; margin: 0 auto; }
  .oby-hero__inner { padding: 0 32px; }
  .oby-hero__cue { display: none; }
}
@media (max-width: 640px) {
  .oby-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ---------- Terminal mock ---------- */
.oby-term {
  width: 100%; max-width: 480px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
  font-family: var(--font-mono);
}
.oby-term__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.oby-term__dots { display: flex; gap: 6px; }
.oby-term__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.oby-term__dots span:nth-child(1) { background: oklch(0.72 0.20 25); }
.oby-term__dots span:nth-child(2) { background: oklch(0.84 0.15 80); }
.oby-term__dots span:nth-child(3) { background: oklch(0.78 0.17 152); }
.oby-term__title { font-size: 11px; color: var(--fg-mute); }
.oby-term__status { font-size: 11px; display: flex; align-items: center; gap: 6px; color: var(--accent); }

.oby-term__body { padding: 18px 18px 14px; display: grid; gap: 8px; }
.oby-term__row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.oby-term__k { color: var(--fg-faint); font-size: 11px; letter-spacing: 0.04em; }
.oby-term__v { color: var(--fg); }
.oby-term__v--up { color: var(--up); }
.oby-term__v--down { color: var(--down); }

.oby-term__chart { height: 100px; margin: 8px -4px; }
.oby-term__chart svg { width: 100%; height: 100%; }

.oby-term__pnl {
  display: flex; gap: 24px; padding-top: 12px; border-top: 1px dashed var(--line);
}
.oby-term__pnl-item { flex: 1; }
.oby-term__pnl-item .oby-term__v { font-size: 18px; display: block; margin-top: 2px; }

/* ---------- Ticker ---------- */
.oby-ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  padding: 14px 0;
}
.oby-ticker__track {
  display: flex; gap: 48px;
  animation: obyTicker 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes obyTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.oby-ticker__item {
  display: inline-flex; gap: 10px; align-items: baseline;
  font-family: var(--font-mono); font-size: 13px;
}
.oby-ticker__sym { color: var(--fg); font-weight: 600; }
.oby-ticker__name { color: var(--fg-mute); }
.oby-ticker__price { color: var(--fg); }
.oby-ticker__chg { font-weight: 600; }
.oby-ticker__chg.is-up { color: var(--up); }
.oby-ticker__chg.is-down { color: var(--down); }

/* ---------- Section header ---------- */
.oby-shead {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 56px;
}
.oby-shead--inline { margin-bottom: 24px; }
.oby-shead__main { max-width: 720px; }
.oby-shead__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--fg-mute);
  margin-bottom: 20px;
  white-space: nowrap;
}
.oby-shead__eyebrow:lang(en) { text-transform: uppercase; }
.oby-shead__brace { color: var(--accent); font-weight: 500; }
.oby-shead__bar { width: 24px; height: 1px; background: var(--accent); }
.oby-shead__title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.3; letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
.oby-shead__action {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--fg-soft);
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
  transition: border-color .2s, color .2s;
}
.oby-shead__action:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Sections base ---------- */
.oby-section {
  position: relative;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 768px) { .oby-section { padding: 80px 0; } }

/* fade-in on scroll */
.oby-section[data-in="false"] :is(.oby-method__card, .oby-tool, .oby-plan, .oby-trade) {
  opacity: 0; transform: translateY(20px);
}
.oby-section[data-in="true"] :is(.oby-method__card, .oby-tool, .oby-plan, .oby-trade) {
  opacity: 1; transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

/* ---------- Method (editorial rows) ---------- */
.oby-method { border-top: 1px solid var(--line); }
.oby-method__card {
  display: grid; grid-template-columns: 110px 1fr 1.5fr; gap: 40px; align-items: baseline;
  padding: 44px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease !important;
}
.oby-method__card:hover { background: var(--bg-soft); }
.oby-method__n { font-size: 14px; color: var(--accent); letter-spacing: 0.14em; }
.oby-method__t { font-size: clamp(22px, 2.2vw, 30px); font-weight: 600; margin: 0; letter-spacing: -0.02em; }
.oby-method__d { font-size: 15px; color: var(--fg-soft); line-height: 1.65; margin: 0; text-wrap: pretty; max-width: 560px; }

@media (max-width: 900px) {
  .oby-method__card { grid-template-columns: 1fr; gap: 10px; padding: 28px 4px; }
}

/* ---------- Edge ---------- */
.oby-edge__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.oby-lede {
  font-size: 17px; color: var(--fg-soft); line-height: 1.65; margin: 0 0 32px;
  text-wrap: pretty; max-width: 520px;
}
.oby-edge__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.oby-edge__list li {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.oby-edge__list li:last-child { border-bottom: 1px solid var(--line); }
.oby-edge__k { font-size: 14px; font-weight: 500; }
.oby-edge__v { font-size: 14px; color: var(--fg-soft); text-wrap: pretty; }

.oby-edge__panel {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-soft); padding: 24px;
}
.oby-edge__panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.oby-edge__panel-title { font-size: 11px; letter-spacing: 0.14em; color: var(--fg-mute); }
.oby-edge__panel-pill {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--up); padding: 4px 10px; border-radius: 999px;
  background: oklch(0.78 0.17 152 / 0.12);
}

.oby-equity { position: relative; height: 220px; }
.oby-equity svg {
  width: 100%; height: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.8s cubic-bezier(.4, 0, .15, 1);
}
.oby-equity.is-drawn svg { clip-path: inset(0 0 0 0); }
.oby-equity__line { filter: drop-shadow(0 0 6px var(--accent-soft)); }
.oby-equity__axis {
  display: flex; justify-content: space-between; padding-top: 12px;
  font-size: 10px; color: var(--fg-faint); letter-spacing: 0.12em;
}

.oby-edge__panel-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
}
.oby-edge__panel-stats > div { display: flex; flex-direction: column; gap: 4px; }
.oby-edge__panel-stats span { font-size: 10px; color: var(--fg-faint); letter-spacing: 0.1em; }
.oby-edge__panel-stats b { font-size: 17px; font-weight: 500; font-family: var(--font-mono); }

@media (max-width: 1024px) {
  .oby-edge__grid { grid-template-columns: 1fr; gap: 48px; }
  .oby-edge__list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Tools ---------- */
.oby-tools {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.oby-tool {
  background: var(--bg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .2s !important;
}
.oby-tool:hover { background: var(--bg-soft); }
.oby-tool__head { display: flex; justify-content: space-between; align-items: center; }
.oby-tool__name { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.oby-pill {
  font-size: 10px; padding: 3px 8px; border-radius: 999px;
  letter-spacing: 0.06em; font-family: var(--font-mono);
}
.oby-pill--free { background: oklch(0.78 0.17 152 / 0.14); color: var(--up); }
.oby-pill--paid { background: rgba(255,255,255,0.06); color: var(--fg-soft); }
.oby-tool__tag { font-size: 11px; color: var(--fg-mute); letter-spacing: 0.1em; text-transform: uppercase; }
.oby-tool__desc { font-size: 14px; color: var(--fg-soft); line-height: 1.6; margin: 4px 0 0; flex: 1; text-wrap: pretty; }
.oby-tool__link {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--fg); font-size: 13px; padding-top: 8px;
  margin-top: 12px;
  border-top: 1px solid transparent;
  transition: color .2s;
}
.oby-tool__link:hover { color: var(--accent); }

@media (max-width: 900px) { .oby-tools { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.oby-billing {
  display: inline-flex; padding: 4px;
  border: 1px solid var(--line); border-radius: 999px;
  margin: -32px 0 48px;
  background: var(--bg-soft);
}
.oby-billing button {
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; color: var(--fg-mute);
  transition: background .2s, color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.oby-billing button.is-active { background: var(--fg); color: var(--bg); font-weight: 500; }
.oby-billing__save {
  font-size: 10px; padding: 2px 6px; border-radius: 4px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-mono);
}
.oby-billing button.is-active .oby-billing__save { background: rgba(0,0,0,0.1); color: var(--bg); }

.oby-pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.oby-plan {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-soft);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s, transform .3s !important;
}
.oby-plan:hover { border-color: var(--line-strong); }
.oby-plan.is-popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-soft) 30%);
}
.oby-plan__ribbon {
  position: absolute; top: -1px; right: 24px;
  padding: 5px 12px;
  background: var(--accent); color: var(--bg);
  font-size: 11px; font-weight: 600;
  border-radius: 0 0 6px 6px;
}
.oby-plan__head { display: flex; justify-content: space-between; align-items: baseline; }
.oby-plan__name { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.oby-plan__tag { font-size: 11px; color: var(--fg-mute); letter-spacing: 0.1em; }
.oby-plan__price { display: flex; align-items: baseline; gap: 4px; }
.oby-plan__cur { font-size: 18px; color: var(--fg-soft); }
.oby-plan__num { font-size: 48px; font-weight: 500; letter-spacing: -0.04em; }
.oby-plan__per { font-size: 14px; color: var(--fg-mute); }
.oby-plan__desc { font-size: 14px; color: var(--fg-soft); line-height: 1.6; margin: 0; min-height: 44px; text-wrap: pretty; }
.oby-plan__features {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  border-top: 1px solid var(--line); padding-top: 16px;
  flex: 1;
}
.oby-plan__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--fg-soft);
  line-height: 1.5;
}
.oby-plan__features li svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.oby-plan__features li.is-excluded { color: var(--fg-faint); text-decoration: line-through; text-decoration-color: var(--fg-faint); }
.oby-plan__features li.is-excluded svg { color: var(--fg-faint); }

.oby-pricing__foot {
  display: flex; gap: 12px; justify-content: center; align-items: center;
  margin-top: 32px; font-size: 13px; color: var(--fg-mute);
}

@media (max-width: 900px) {
  .oby-pricing { grid-template-columns: 1fr; }
  .oby-billing { margin-top: 0; }
}

/* ---------- Journal (ledger) ---------- */
.oby-journalWrap { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.oby-journal { border-top: 1px solid var(--line); }
.oby-trade {
  display: grid; grid-template-columns: 150px 1fr auto 20px; gap: 24px; align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .2s ease !important;
}
.oby-trade:hover { background: var(--bg-soft); }
.oby-trade__meta { display: flex; flex-direction: column; gap: 8px; }
.oby-trade__date { font-size: 11px; color: var(--fg-mute); }
.oby-trade__tags { display: flex; gap: 8px; align-items: center; }
.oby-trade__sym { font-size: 12px; color: var(--fg); font-weight: 600; }
.oby-trade__side { font-size: 9px; padding: 3px 7px; border-radius: 4px; font-family: var(--font-mono); font-weight: 600; letter-spacing: 0.06em; }
.oby-trade__side.is-long { color: var(--up); background: oklch(0.78 0.17 152 / 0.14); }
.oby-trade__side.is-short { color: var(--down); background: oklch(0.72 0.20 25 / 0.14); }
.oby-trade__title { font-size: 18px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.015em; line-height: 1.35; }
.oby-trade__ex { font-size: 13.5px; color: var(--fg-soft); line-height: 1.6; margin: 0; text-wrap: pretty; }
.oby-trade__r { font-size: 17px; font-weight: 600; }
.oby-trade__r.is-up { color: var(--up); }
.oby-trade__r.is-down { color: var(--down); }
.oby-trade__arrow { color: var(--fg-faint); transition: color .2s, transform .2s; display: inline-flex; }
.oby-trade:hover .oby-trade__arrow { color: var(--accent); transform: translateX(-3px); }

@media (max-width: 1100px) {
  .oby-journalWrap { grid-template-columns: 1fr; }
  .oby-flow { position: static; }
}
@media (max-width: 640px) {
  .oby-trade { grid-template-columns: 1fr; gap: 10px; }
  .oby-trade__r { justify-self: start; }
  .oby-trade__arrow { display: none; }
}

/* ---------- FAQ ---------- */
.oby-faq__list {
  border-top: 1px solid var(--line);
}
.oby-faq__item { border-bottom: 1px solid var(--line); }
.oby-faq__q {
  width: 100%;
  display: grid; grid-template-columns: 36px 1fr 24px;
  align-items: center; gap: 16px;
  padding: 24px 0;
  text-align: right;
}
.oby-faq__qn { font-size: 12px; color: var(--fg-faint); letter-spacing: 0.1em; }
.oby-faq__qt { font-size: 18px; font-weight: 500; letter-spacing: -0.015em; }
.oby-faq__qchev { color: var(--fg-mute); transition: transform .3s, color .3s; }
.oby-faq__item.is-open .oby-faq__qchev { transform: rotate(180deg); color: var(--accent); }

.oby-faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s;
}
.oby-faq__a > div {
  overflow: hidden;
  font-size: 15px; color: var(--fg-soft); line-height: 1.65;
  padding-right: 52px;
  text-wrap: pretty;
}
.oby-faq__item.is-open .oby-faq__a {
  grid-template-rows: 1fr;
}
.oby-faq__item.is-open .oby-faq__a > div {
  padding-bottom: 24px;
}

/* ---------- Contact ---------- */
.oby-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.oby-contact__list { display: grid; gap: 16px; margin-top: 32px; }
.oby-contact__item {
  display: grid; grid-template-columns: 80px 1fr; gap: 16px; align-items: baseline;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.oby-contact__item:last-child { border-bottom: 1px solid var(--line); }
.oby-contact__item span:first-child { font-size: 11px; color: var(--fg-mute); letter-spacing: 0.1em; }
.oby-contact__item a, .oby-contact__item span:last-child { font-size: 16px; }
.oby-contact__item a:hover { color: var(--accent); }

.oby-form {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; background: var(--bg-soft);
  display: grid; gap: 16px;
}
.oby-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.oby-form label { display: grid; gap: 8px; font-size: 13px; color: var(--fg-mute); }
.oby-form input, .oby-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px; font-size: 15px;
  color: var(--fg);
  transition: border-color .2s;
  font-family: inherit;
}
.oby-form input:focus, .oby-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.oby-form textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.oby-form button { margin-top: 8px; justify-content: center; }
.oby-form__note { font-size: 12px; color: var(--fg-faint); margin: 0; text-align: center; }
.oby-form__ok {
  text-align: center; padding: 48px 24px;
}
.oby-form__ok svg { color: var(--accent); margin-bottom: 16px; }
.oby-form__ok h3 { margin: 0; font-size: 20px; font-weight: 500; }

@media (max-width: 900px) {
  .oby-contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .oby-form__row { grid-template-columns: 1fr; }
}

/* ---------- Manifesto (dark accent spotlight) ---------- */
.oby-manifesto {
  position: relative;
  background:
    radial-gradient(ellipse 90% 120% at 75% 50%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, #0a0c10, #0c0e13 50%, var(--bg));
  color: var(--fg);
  padding: 200px 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.oby-manifesto__grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black, transparent 75%);
}
.oby-manifesto__inner { position: relative; }
.oby-manifesto__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--fg-mute); margin-bottom: 48px;
}
.oby-manifesto__bar { width: 24px; height: 1px; background: var(--accent); }
.oby-manifesto__quote {
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.3;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin: 0 0 64px;
  max-width: 1100px;
  text-wrap: balance;
}
.oby-manifesto__hl {
  position: relative;
  color: var(--accent);
  font-style: italic;
  white-space: nowrap;
}
.oby-manifesto__hl::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.08em; height: 0.08em;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
  transform: scaleX(0); transform-origin: right;
  animation: obyUnderline 1s cubic-bezier(.4,0,.1,1) both;
}
@supports (animation-timeline: view()) {
  .oby-manifesto__hl::after {
    animation-timeline: view();
    animation-range: entry 20% cover 40%;
  }
}
@keyframes obyUnderline { to { transform: scaleX(1); } }

.oby-manifesto__foot {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.oby-manifesto__body {
  font-size: 18px; line-height: 1.65; color: var(--fg-soft); margin: 0;
  max-width: 520px; text-wrap: pretty;
}
.oby-manifesto__sig { text-align: left; }
.oby-manifesto__sigName { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.oby-manifesto__sigRole { font-size: 11px; color: var(--fg-mute); letter-spacing: 0.14em; margin-top: 6px; }

@media (max-width: 768px) {
  .oby-manifesto { padding: 120px 0; }
  .oby-manifesto__foot { grid-template-columns: 1fr; gap: 32px; }
  .oby-manifesto__sig { text-align: right; }
}

/* ---------- Footer ---------- */
.oby-foot {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  margin-top: 0;
}
.oby-foot__inner {
  padding: 64px 32px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
}
.oby-foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; color: var(--fg-mute); }
.oby-foot__lockup { display: block; width: auto; }
.oby-foot__sub { font-size: 14px; color: var(--fg-mute); }
.oby-foot__social { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; }
.oby-foot__social a { font-size: 13.5px; color: var(--fg-mute); text-decoration: none; transition: color .16s; }
.oby-foot__social a:hover { color: var(--accent); }
.oby-foot__social a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
.oby-foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.oby-foot__cols > div { display: flex; flex-direction: column; gap: 8px; }
.oby-foot__h { font-size: 11px; letter-spacing: 0.12em; color: var(--fg-mute); margin-bottom: 8px; text-transform: uppercase; font-family: var(--font-mono); }
.oby-foot__cols a { font-size: 14px; color: var(--fg-soft); cursor: pointer; transition: color .2s; }
.oby-foot__cols a:hover { color: var(--accent); }

.oby-foot__bar { border-top: 1px solid var(--line); }
.oby-foot__bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 32px; gap: 24px; }
.oby-foot__bar-inner span:first-child { font-size: 11px; color: var(--fg-mute); letter-spacing: 0.1em; }
.oby-foot__disc { font-size: 12px; color: var(--fg-faint); text-align: left; flex: 1; }

@media (max-width: 768px) {
  .oby-foot__inner { grid-template-columns: 1fr; gap: 48px; }
  .oby-foot__cols { grid-template-columns: repeat(2, 1fr); }
  .oby-foot__bar-inner { flex-direction: column; align-items: flex-start; padding: 20px 32px 24px; }
}

/* ---------- Focus, nav state, sticky CTA, form validation ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.oby-nav__link.is-active { background: rgba(255,255,255,0.09); color: var(--fg); }

.oby-sticky {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  opacity: 0; transform: translateY(72px); pointer-events: none;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.oby-sticky.is-show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.oby-sticky .oby-btn { box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08); padding: 12px 20px; }

.oby-form__err { color: var(--down); font-size: 12px; font-style: normal; }
.oby-form input[aria-invalid="true"], .oby-form textarea[aria-invalid="true"] { border-color: var(--down); }

/* ---------- Nav LIVE ---------- */
.oby-nav__cta .oby-btn { height: 40px; padding: 0 18px; box-sizing: border-box; }
.oby-btn--live {
  background: oklch(0.72 0.20 25 / 0.1);
  border: 1px solid oklch(0.72 0.20 25 / 0.35);
  color: var(--fg); font-size: 11.5px; letter-spacing: 0.14em;
}
.oby-btn--live:hover { background: oklch(0.72 0.20 25 / 0.18); }
.oby-navdot { width: 7px; height: 7px; border-radius: 50%; background: oklch(0.72 0.20 25); animation: obyPulse 2s infinite; }

/* ---------- Partners marquee ---------- */
.oby-partners { border-bottom: 1px solid var(--line); padding: 26px 0 30px; overflow: hidden; background: var(--bg); }
.oby-partners__label { text-align: center; font-size: 10px; letter-spacing: 0.28em; color: var(--fg-faint); margin-bottom: 22px; }
.oby-partners__wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.oby-partners__track { display: flex; gap: 72px; width: max-content; animation: obyTicker 42s linear infinite; padding-right: 72px; }
.oby-partners__item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 14px; font-weight: 600; letter-spacing: 0.16em; color: var(--fg-soft); white-space: nowrap; }
.oby-partners__tick { color: var(--accent); font-weight: 400; font-size: 11px; }

/* ---------- Founder ---------- */
.oby-founder__grid { display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: center; }
.oby-founder__photo { aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); position: relative; }
.oby-founder__copy .oby-lede { margin-bottom: 20px; }
.oby-founder__facts { display: flex; gap: 48px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.oby-founder__facts > div { display: flex; flex-direction: column; gap: 6px; }
.oby-founder__facts b { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; color: var(--accent); }
.oby-founder__facts span { font-size: 12.5px; color: var(--fg-mute); }
@media (max-width: 1000px) {
  .oby-founder__grid { grid-template-columns: 1fr; gap: 40px; }
  .oby-founder__photo { max-width: 400px; }
  .oby-founder__facts { gap: 32px; flex-wrap: wrap; }
}

/* ---------- Testimonials columns ---------- */
.oby-testi__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-height: 640px; overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 90%, transparent);
}
.oby-testi__col { overflow: hidden; }
.oby-testi__colInner { display: flex; flex-direction: column; gap: 16px; animation: obyTestiScroll var(--dur, 50s) linear infinite; will-change: transform; }
.oby-testi__col:hover .oby-testi__colInner { animation-play-state: paused; }
@keyframes obyTestiScroll { to { transform: translateY(calc(-50% - 8px)); } }
.oby-testi__card {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--bg-soft); padding: 22px;
  transition: border-color .3s;
}
.oby-testi__card:hover { border-color: var(--line-strong); }
.oby-testi__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.oby-testi__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-weight: 600; font-size: 15px;
}
.oby-testi__name { font-size: 14px; font-weight: 600; }
.oby-testi__text { font-size: 13.5px; color: var(--fg-soft); line-height: 1.7; margin: 0 0 14px; text-wrap: pretty; }
.oby-testi__time { font-size: 10px; color: var(--fg-faint); letter-spacing: 0.08em; text-align: left; }
@media (max-width: 900px) {
  .oby-testi__cols { grid-template-columns: 1fr; max-height: 560px; }
  .oby-testi__col:nth-child(2), .oby-testi__col:nth-child(3) { display: none; }
}

/* ---------- Big statement marquee ---------- */
.oby-bigmarquee { padding: 100px 0 96px; border-top: 1px solid var(--line); overflow: hidden; }
.oby-bigmarquee__track { display: flex; width: max-content; animation: obyTicker 36s linear infinite; }
.oby-bigmarquee__item {
  font-size: clamp(44px, 7.5vw, 110px); font-weight: 600;
  letter-spacing: -0.04em; white-space: nowrap; line-height: 1.25;
  color: var(--fg);
}
.oby-bigmarquee__item.is-ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fg-faint);
}
.oby-bigmarquee__sep { color: var(--accent); -webkit-text-stroke: 0; font-weight: 400; }
