/* Bell Countdown editorial system shared by the public website. */

:root {
  --max: 1240px;
  --page: #f3efe5;
  --surface: #fbf8f0;
  --surface-strong: #172033;
  --ink: #172033;
  --muted: #6d6b68;
  --line: rgba(23, 32, 51, 0.2);
  --line-soft: rgba(23, 32, 51, 0.1);
  --accent: #b83d31;
  --accent-2: #d8a82f;
  --positive: #197a50;
  --negative: #b83d31;
  --display: "Instrument Serif", Georgia, serif;
  --body: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
  --radius: 0;
  --shadow: 0 24px 70px rgba(40, 34, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--surface-strong);
  color: var(--page);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  overflow: hidden;
}

.site-header,
.section-wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
}

.brand-name b {
  color: var(--accent);
  font-weight: inherit;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 28px;
}

.bell-dome {
  position: absolute;
  top: 4px;
  width: 22px;
  height: 18px;
  border: 2px solid var(--accent);
  border-bottom-width: 3px;
  border-radius: 12px 12px 4px 4px;
}

.bell-dome::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.bell-clapper {
  position: absolute;
  bottom: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.site-footer nav a {
  color: var(--muted);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--accent);
}

.nav-cta {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--page);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
  width: min(var(--max), calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  padding: 66px 0 76px;
}

.eyebrow,
.section-index {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent), transparent 80%);
}

.hero h1,
.closing-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.hero h1 {
  max-width: 760px;
  margin-top: 27px;
  font-size: clamp(64px, 7.4vw, 112px);
}

.hero h1 em {
  color: var(--accent);
  font-weight: 400;
}

.hero-lede {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 color-mix(in srgb, var(--accent), transparent 10%);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: transparent;
}

.product-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.product-stage::before {
  content: "Market journal / daily edition";
  position: absolute;
  inset: 7% 2% 4%;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 49.8%, var(--line-soft) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, var(--line-soft) 50%, transparent 50.2%);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 14px;
  text-transform: uppercase;
}

.stage-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit-one {
  width: 470px;
  height: 470px;
}

.orbit-two {
  width: 570px;
  height: 570px;
  opacity: 0.55;
}

.stage-note {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 116px;
  padding: 12px 14px;
  border-top: 2px solid var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-note span {
  color: var(--accent);
}

.note-one {
  top: 18%;
  left: -3%;
}

.note-two {
  right: -2%;
  bottom: 17%;
}

.phone-frame {
  position: relative;
  z-index: 3;
  width: 310px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 48px;
  background: #10131a;
  box-shadow: 0 42px 90px rgba(25, 25, 34, 0.32), inset 0 0 0 3px #050608;
  transform: rotate(2.2deg);
}

.phone-speaker {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 4;
  width: 72px;
  height: 20px;
  border-radius: 99px;
  background: #020304;
  transform: translateX(-50%);
}

.app-ui {
  min-height: 566px;
  padding: 50px 14px 18px;
  border-radius: 37px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(205, 147, 53, 0.22), transparent 42%),
    #090b10;
  color: #ecedf2;
}

.app-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-status span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff725f;
}

.app-clock {
  display: grid;
  justify-items: center;
  padding: 28px 0 19px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.mini-bell {
  position: relative;
  width: 24px;
  height: 22px;
  margin-bottom: 7px;
  border: 2px solid #e5ac45;
  border-radius: 13px 13px 5px 5px;
}

.mini-bell::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5ac45;
}

.app-clock p {
  margin: 7px 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.app-clock small,
.app-clock span {
  color: #8991a0;
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.app-clock strong {
  margin: 4px 0 2px;
  color: #f2b23b;
  font-family: "DM Mono", monospace;
  font-size: 27px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 12px 0;
}

.session-grid div {
  display: grid;
  gap: 2px;
  padding: 8px 4px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.session-grid span,
.session-grid small {
  color: #818998;
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.session-grid strong {
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.ticker-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  color: #8a92a2;
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.ticker-row b {
  color: #f4f4f6;
}

.ticker-row i {
  color: var(--negative);
  font-style: normal;
}

.ticker-row i.up {
  color: var(--positive);
}

.app-nav-list {
  display: grid;
  gap: 5px;
}

.app-nav-list > p {
  margin: 0 0 2px;
  color: #f2b23b;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-nav-item {
  display: grid;
  grid-template-columns: 22px 1fr 14px;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 7px 8px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.app-nav-item > span {
  grid-row: 1 / span 2;
  color: #f2b23b;
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.app-nav-list b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
}

.app-nav-list small {
  color: #777f90;
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.app-nav-list i {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: #777f90;
  font-style: normal;
}

.closing-section h2 {
  font-size: clamp(50px, 6vw, 84px);
}

.technical-board-section {
  padding-block: 112px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 4%, color-mix(in srgb, var(--accent-2), transparent 84%), transparent 28%),
    var(--page);
}

.technical-board-inner {
  display: grid;
  gap: 48px;
}

.technical-board-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(38px, 7vw, 100px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.technical-board-heading .section-index {
  margin-bottom: 24px;
  color: var(--accent);
}

.technical-board-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.technical-board-heading h2 em {
  color: var(--accent);
  font-weight: inherit;
}

.technical-board-intro {
  display: grid;
  gap: 22px;
}

.technical-board-intro > p {
  margin: 0;
  color: var(--muted);
}

.technical-board-status {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.technical-live-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-2), transparent 84%);
}

.technical-board-status.is-live .technical-live-dot {
  background: var(--positive);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--positive), transparent 84%);
}

.technical-board-status.is-error .technical-live-dot {
  background: var(--negative);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--negative), transparent 84%);
}

.technical-board-status button {
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.technical-board-status button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.technical-board-status button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.technical-group {
  display: grid;
  gap: 15px;
}

.technical-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.technical-group-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.technical-group-heading span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

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

.technical-card {
  position: relative;
  min-width: 0;
  min-height: 238px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: max(var(--radius), 2px);
  background:
    radial-gradient(circle at 82% 5%, rgba(242,178,59,0.09), transparent 36%),
    linear-gradient(150deg, #11151d, #07090e 78%);
  color: #eceef4;
  box-shadow: 0 17px 42px rgba(13,16,23,0.12);
}

.technical-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.035), transparent 62%);
  transform: translateX(-100%);
  transition: transform 620ms ease;
}

.technical-card:hover::after {
  transform: translateX(100%);
}

.technical-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.technical-card-top > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.technical-card-top span,
.technical-card > small {
  color: #778297;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.technical-card-top strong {
  color: #f5f6f8;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.technical-card-top b {
  color: #8792a6;
  font-family: var(--mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.technical-card-top b.is-up {
  color: #2bd17e;
}

.technical-card-top b.is-down {
  color: #ff625f;
}

.technical-chart {
  display: block;
  width: 100%;
  height: 128px;
  margin-top: 11px;
}

.technical-card > small {
  position: absolute;
  top: 18px;
  right: 18px;
  transform: translateY(23px);
  font-size: 7px;
}

.technical-card-loading {
  display: grid;
  place-items: center;
  color: #778297;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.technical-card-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.055), transparent 80%);
  animation: technical-loading 1.3s ease-in-out infinite;
}

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

.technical-board-note {
  margin: -20px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.02em;
}

.closing-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
  padding-block: 110px;
  border-top: 1px solid var(--line);
  background: var(--page);
  color: var(--ink);
}

.closing-section .section-index {
  margin-bottom: 25px;
  color: var(--accent);
}

.closing-section > div:last-child {
  padding-bottom: 8px;
}

.closing-section > div:last-child p {
  margin: 0 0 25px;
  color: var(--muted);
}

.closing-section .button-secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.financial-note {
  display: block;
  max-width: 54ch;
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
}

.testflight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-page {
  width: min(820px, calc(100% - 40px));
  min-height: calc(100vh - 224px);
  margin-inline: auto;
  padding-block: 96px 112px;
}

.legal-page > .eyebrow {
  color: var(--accent);
}

.legal-page > h1 {
  margin: 18px 0 46px;
  font-family: var(--display);
  font-size: clamp(58px, 9vw, 104px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.legal-body {
  padding-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-body h2 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.legal-body p {
  line-height: 1.75;
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  border-top: 1px solid var(--line);
}

.site-footer > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  justify-self: end;
  gap: 20px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

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

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

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

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .hero h1 {
    max-width: 880px;
  }

  .product-stage {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

}

@media (max-width: 700px) {
  .testflight-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .testflight-actions .button {
    justify-content: center;
    text-align: center;
  }

  .site-header,
  .section-wrap,
  .hero {
    width: min(100% - 30px, var(--max));
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    font-size: 15px;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 9px;
  }

  .hero {
    min-height: 0;
    padding: 58px 0 70px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 74px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .product-stage {
    min-height: 570px;
  }

  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 460px; height: 460px; }

  .phone-frame {
    width: min(285px, 82vw);
  }

  .app-ui {
    min-height: 535px;
  }

  .note-one { left: -2%; top: 12%; }
  .note-two { right: -2%; bottom: 12%; }
  .stage-note { min-width: 96px; padding: 9px; font-size: 7px; }

  .closing-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .closing-section h2 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .closing-section {
    padding-block: 78px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 32px;
  }

  .site-footer nav {
    justify-self: center;
  }
}

/* Bell Native hero preview — sourced from the real iOS app design system. */
.product-stage {
  min-height: 690px;
}

.phone-frame {
  width: 320px;
  padding: 11px;
  border-color: rgba(255,255,255,0.16);
  background: #050609;
  box-shadow: 0 46px 96px rgba(17,20,29,0.36), inset 0 0 0 3px #020305;
  transform: rotate(2.2deg);
}

.app-ui {
  min-height: 628px;
  padding: 50px 0 13px;
  background:
    radial-gradient(circle at 50% -7%, rgba(242,178,59,0.15), transparent 34%),
    linear-gradient(180deg, #101319, #09090d 46%, #07080b);
  color: #eceef4;
}

.app-status {
  align-items: center;
  gap: 9px;
  padding: 7px 14px 14px;
  color: #8792a6;
  font-size: 6.5px;
  letter-spacing: 0.1em;
}

.app-status i {
  background: #ff5d5d;
  box-shadow: 0 0 7px rgba(255,93,93,0.72);
}

.app-status i.is-open {
  background: #2bd17e;
  box-shadow: 0 0 7px rgba(43,209,126,0.72);
}

.app-status strong {
  color: #eceef4;
  font-size: 8px;
}

.app-clock {
  padding: 15px 14px 18px;
  border-bottom-color: rgba(255,255,255,0.07);
}

.mini-bell {
  width: 28px;
  height: 25px;
  border-color: #f2b23b;
  filter: drop-shadow(0 0 9px rgba(242,178,59,0.35));
}

.mini-bell::after {
  background: #f2b23b;
}

.app-clock p {
  margin: 8px 0 3px;
  color: #eceef4;
  font-size: 18px;
  font-weight: 600;
}

.app-clock time {
  margin-bottom: 10px;
  color: #eceef4;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.app-clock small {
  color: #5b6578;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.app-clock span {
  color: #8792a6;
}

.app-clock strong {
  margin: 5px 0 3px;
  color: #f2b23b;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-shadow: 0 0 18px rgba(242,178,59,0.2);
}

.session-grid {
  gap: 0;
  margin: 0 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.session-grid div {
  gap: 3px;
  padding: 5px 4px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.07);
  background: transparent;
}

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

.session-grid span {
  color: #5b6578;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-grid strong {
  color: #eceef4;
  font-size: 10px;
  font-weight: 400;
}

.session-grid small {
  color: #8792a6;
  font-variant-numeric: tabular-nums;
}

.app-market-band {
  display: flex;
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.app-market-band > div {
  display: grid;
  flex: 0 0 39%;
  gap: 2px;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.app-market-band span,
.app-market-band small {
  color: #5b6578;
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.app-market-band strong {
  color: #eceef4;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
}

.ticker-row {
  display: block;
  overflow: hidden;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #8792a6;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.app-ticker-track {
  display: flex;
  width: max-content;
  animation: app-phone-ticker 22s linear infinite;
}

.ticker-row:hover .app-ticker-track {
  animation-play-state: paused;
}

.app-ticker-track > span {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 7px;
  min-width: 137px;
  padding: 9px 11px;
  border-right: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
}

.ticker-row b,
.ticker-row strong {
  color: #eceef4;
  font-size: 7px;
}

.ticker-row .up,
.app-market-band .up {
  color: #2bd17e;
}

.ticker-row .down,
.app-market-band .down {
  color: #ff5d5d;
}

@keyframes app-phone-ticker {
  to { transform: translateX(-50%); }
}

.app-nav-list {
  gap: 0;
}

.app-nav-list > p {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin: 0;
  padding: 9px 12px 6px;
  color: #f2b23b;
}

.app-nav-list > p small {
  color: #5b6578;
  letter-spacing: 0.07em;
}

.app-nav-list > p small.is-live {
  color: #2bd17e;
}

.app-nav-item {
  padding: 8px 12px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(21,24,31,0.44);
}

.app-nav-item > span {
  color: #f2b23b;
}

.app-nav-list b {
  color: #eceef4;
}

.app-nav-list small,
.app-nav-list i {
  color: #8792a6;
}

@media (max-width: 700px) {
  .product-stage { min-height: 650px; }
  .phone-frame { width: min(292px, 86vw); }
  .app-ui { min-height: 605px; }
  .app-clock strong { font-size: 33px; }
}

/* Support — the same editorial system as the homepage. */
.site-nav a[aria-current="page"],
.site-footer a[aria-current="page"] {
  color: var(--accent);
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  min-height: 650px;
  padding-block: 86px 100px;
}

.support-hero-copy h1,
.support-section-heading h2,
.support-contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.support-hero-copy h1 {
  margin-top: 26px;
  font-size: clamp(66px, 8vw, 112px);
}

.support-hero-copy h1 em {
  color: var(--accent);
  font-weight: 400;
}

.support-lede {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

.support-dispatch {
  padding: clamp(26px, 4vw, 42px);
  border-top: 5px solid var(--accent);
  background: var(--surface-strong);
  color: var(--page);
  box-shadow: var(--shadow);
}

.support-dispatch .section-index {
  color: var(--accent-2);
}

.support-dispatch h2 {
  max-width: 12ch;
  margin: 28px 0 38px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.support-dispatch ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid color-mix(in srgb, var(--page), transparent 76%);
  list-style: none;
}

.support-dispatch li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--page), transparent 76%);
}

.support-dispatch li > span {
  padding-top: 2px;
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 9px;
}

.support-dispatch li div {
  display: grid;
  gap: 3px;
}

.support-dispatch li strong {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
}

.support-dispatch li small,
.support-security-note {
  color: color-mix(in srgb, var(--page), transparent 38%);
  font-size: 12px;
}

.support-security-note {
  margin: 24px 0 0;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.65;
  text-transform: uppercase;
}

.support-answers {
  padding-block: 115px 130px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 49.9%, var(--line-soft) 50%, transparent 50.1%),
    color-mix(in srgb, var(--surface), var(--page) 35%);
}

.support-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 40px 70px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.support-section-heading .section-index {
  grid-column: 1 / -1;
  color: var(--accent);
}

.support-section-heading h2,
.support-contact h2 {
  font-size: clamp(52px, 6.2vw, 84px);
}

.support-section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line);
}

.support-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(27px, 4vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface), transparent 14%);
}

.support-card > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-card h3 {
  max-width: 12ch;
  margin: 52px 0 18px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.support-card p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.support-card a {
  width: max-content;
  margin-top: auto;
  padding-top: 28px;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.support-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 120px;
}

.support-contact .section-index {
  margin-bottom: 28px;
  color: var(--accent);
}

.support-contact-action > p {
  max-width: 50ch;
  margin: 0 0 30px;
  color: var(--muted);
}

.support-email {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px 0;
  border-block: 1px solid var(--ink);
}

.support-email span {
  grid-column: 1;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-email strong {
  grid-column: 1;
  margin-top: 4px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.support-email i {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 24px;
  font-style: normal;
}

.support-contact-action > small {
  display: block;
  margin-top: 17px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.support-contact-action > small a {
  border-bottom: 1px solid currentColor;
  color: var(--accent);
}

@media (max-width: 900px) {
  .support-hero,
  .support-section-heading,
  .support-contact {
    grid-template-columns: 1fr;
  }

  .support-hero {
    gap: 58px;
  }

  .support-dispatch {
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  .support-hero {
    min-height: 0;
    padding-block: 62px 78px;
  }

  .support-hero-copy h1 {
    font-size: clamp(58px, 19vw, 78px);
  }

  .support-dispatch {
    padding: 27px 23px;
  }

  .support-answers {
    padding-block: 78px 90px;
  }

  .support-section-heading h2,
  .support-contact h2 {
    font-size: clamp(48px, 15vw, 66px);
  }

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

  .support-card {
    min-height: 330px;
  }

  .support-contact {
    padding-block: 82px;
  }
}

@media (max-width: 980px) {
  .technical-board-heading {
    grid-template-columns: 1fr;
  }

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

  .technical-index-grid .technical-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .technical-board-section {
    padding-block: 78px;
  }

  .technical-board-inner {
    gap: 38px;
  }

  .technical-board-heading {
    gap: 28px;
    padding-bottom: 30px;
  }

  .technical-board-heading h2 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .technical-board-status {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .technical-board-status button {
    margin-left: 0;
  }

  .technical-group-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .technical-group-heading span {
    text-align: left;
  }

  .technical-card-grid {
    grid-template-columns: 1fr;
  }

  .technical-index-grid .technical-card:last-child {
    grid-column: auto;
  }

  .technical-card {
    min-height: 224px;
    padding: 16px;
  }

  .technical-chart {
    height: 120px;
  }

  .technical-card > small {
    top: 16px;
    right: 16px;
  }
}

/* Compact technical rail replacing the former endless market tape. */
.market-technical-strip {
  position: relative;
  padding: 15px 0 12px;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 50% -100%, rgba(242,178,59,0.15), transparent 48%),
    #111e31;
  color: #eceef4;
}

.market-technical-toolbar,
.market-technical-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.market-technical-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--mono);
  text-transform: uppercase;
}

.market-technical-title b {
  color: #f2b23b;
  font-size: 10px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.market-technical-title > span:last-child {
  overflow: hidden;
  color: #8b96a9;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-technical-strip .technical-board-status {
  flex: 0 0 auto;
  min-height: 0;
  color: #8b96a9;
  font-size: 8px;
  white-space: nowrap;
}

.market-technical-strip .technical-board-status button {
  padding: 6px 9px;
  border-color: rgba(255,255,255,0.18);
  color: #eceef4;
  font-size: 8px;
}

.market-technical-strip.is-live .technical-live-dot {
  background: #2bd17e;
  box-shadow: 0 0 0 5px rgba(43,209,126,0.12);
}

.market-technical-strip.is-error .technical-live-dot {
  background: #ff625f;
  box-shadow: 0 0 0 5px rgba(255,98,95,0.12);
}

.market-technical-rail-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
}

.market-technical-rail {
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 0 max(15px, calc((100vw - var(--max)) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: max(15px, calc((100vw - var(--max)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.market-technical-rail::-webkit-scrollbar {
  display: none;
}

.technical-leader-rail {
  display: contents;
}

.market-technical-strip .technical-card {
  flex: 0 0 clamp(258px, 26vw, 330px);
  min-height: 184px;
  padding: 14px;
  scroll-snap-align: start;
  box-shadow: none;
}

.market-technical-strip .technical-card-top strong {
  font-size: 17px;
}

.market-technical-strip .technical-card-top b {
  font-size: 11px;
}

.market-technical-strip .technical-chart {
  height: 96px;
  margin-top: 7px;
}

.market-technical-strip .technical-card > small {
  top: 14px;
  right: 14px;
}

.technical-rail-button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  background: rgba(7,9,14,0.78);
  color: #f2b23b;
  font: 500 18px/1 var(--mono);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.technical-rail-previous {
  justify-self: end;
}

.technical-rail-next {
  justify-self: start;
}

.technical-rail-button:hover {
  border-color: #f2b23b;
  background: #07090e;
}

.technical-rail-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.market-technical-meta {
  margin-top: 10px;
  color: #727e92;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .market-technical-strip {
    padding-top: 13px;
  }

  .market-technical-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .market-technical-title {
    width: 100%;
  }

  .market-technical-strip .technical-board-status {
    width: 100%;
  }

  .market-technical-strip .technical-board-status button {
    margin-left: auto;
  }

  .market-technical-rail-shell {
    display: block;
    margin-top: 10px;
  }

  .technical-rail-button {
    display: none;
  }

  .market-technical-rail {
    padding-inline: 15px;
    scroll-padding-inline: 15px;
  }

  .market-technical-strip .technical-card {
    flex-basis: min(82vw, 300px);
  }

  .market-technical-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
