/*
 Theme Name: HyperHedger Command
 Theme URI: https://www.hyperhedger.com/
 Description: Bricks child theme for the HyperHedger launch site.
 Author: HyperHedger
 Template: bricks
 Version: 0.2.0
 Text Domain: hyperhedger
*/

:root {
  --hh-ink: #080b0c;
  --hh-panel: #0f1717;
  --hh-panel-2: #162222;
  --hh-paper: #f6f2df;
  --hh-muted: #9fb2aa;
  --hh-green: #30e68c;
  --hh-cyan: #42d9ff;
  --hh-gold: #f2c94c;
  --hh-red: #ff5e5e;
  --hh-line: rgba(246, 242, 223, 0.13);
  --hh-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --hh-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--hh-ink);
  color: var(--hh-paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 7%, rgba(48, 230, 140, 0.16), transparent 27rem),
    radial-gradient(circle at 88% 6%, rgba(66, 217, 255, 0.13), transparent 28rem),
    linear-gradient(135deg, #07090b 0%, #0e1715 46%, #110d0a 100%);
  color: var(--hh-paper);
  font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
}

body.hh-home {
  --wp-admin-theme-color: var(--hh-green);
}

a {
  color: inherit;
}

.hh-shell {
  position: relative;
  min-height: 100vh;
}

.hh-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(246, 242, 223, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 242, 223, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, black 62%, transparent 100%);
}

.hh-market-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.7;
}

.hh-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--hh-line);
  background: rgba(8, 11, 12, 0.78);
  backdrop-filter: blur(18px);
}

.hh-nav-inner {
  width: min(var(--hh-max), calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.hh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hh-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(246, 242, 223, 0.28);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(48, 230, 140, 0.22), rgba(66, 217, 255, 0.08)),
    #08100e;
  box-shadow: 0 0 22px rgba(48, 230, 140, 0.28);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hh-mark-ring {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--hh-ink), var(--hh-ink)) padding-box,
    conic-gradient(from 210deg, var(--hh-green), var(--hh-cyan), var(--hh-gold), var(--hh-green)) border-box;
  animation: hh-spin 8s linear infinite;
}

.hh-mark-type {
  position: relative;
  z-index: 1;
  color: var(--hh-paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hh-brand-word {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.hh-brand-word strong {
  font-size: 19px;
  font-weight: 800;
}

.hh-brand-word span {
  color: var(--hh-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hh-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(246, 242, 223, 0.78);
  font-size: 14px;
}

.hh-nav-links a {
  text-decoration: none;
}

.hh-nav-links a:hover {
  color: var(--hh-green);
}

.hh-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(246, 242, 223, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(246, 242, 223, 0.06);
  color: var(--hh-paper);
  text-decoration: none;
  white-space: nowrap;
}

.hh-pill strong {
  color: var(--hh-green);
}

.hh-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(48, 230, 140, 0.4);
  border-radius: 12px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--hh-green), #8cffbd);
  color: #07100b;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 42px rgba(48, 230, 140, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hh-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(48, 230, 140, 0.34);
}

.hh-button.secondary {
  background: rgba(246, 242, 223, 0.05);
  color: var(--hh-paper);
  border-color: rgba(246, 242, 223, 0.18);
  box-shadow: none;
}

.hh-hero {
  width: min(var(--hh-max), calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: 44px;
  padding: 44px 0 52px;
}

.hh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hh-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hh-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hh-gold);
  box-shadow: 0 0 18px rgba(242, 201, 76, 0.8);
}

.hh-hero h1 {
  max-width: 780px;
  margin: 18px 0 18px;
  font-size: 108px;
  line-height: 0.89;
  letter-spacing: 0;
  font-weight: 900;
}

.hh-hero h1 span {
  color: var(--hh-green);
}

.hh-lede {
  max-width: 680px;
  color: rgba(246, 242, 223, 0.78);
  font-size: 20px;
  line-height: 1.45;
}

.hh-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hh-micro-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 36px;
}

.hh-stat {
  min-height: 94px;
  border: 1px solid var(--hh-line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(15, 23, 23, 0.7);
}

.hh-label {
  color: var(--hh-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hh-value {
  margin-top: 7px;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.hh-value.positive {
  color: var(--hh-green);
}

.hh-value.negative {
  color: var(--hh-red);
}

.positive {
  color: var(--hh-green);
}

.negative {
  color: var(--hh-red);
}

.hh-note {
  margin-top: 7px;
  color: rgba(246, 242, 223, 0.57);
  font-size: 12px;
  line-height: 1.35;
}

.hh-terminal {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border: 1px solid rgba(66, 217, 255, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(150deg, rgba(246, 242, 223, 0.08), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(48, 230, 140, 0.12), transparent 20rem),
    rgba(9, 14, 14, 0.82);
  box-shadow: var(--hh-shadow);
}

.hh-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(246, 242, 223, 0.04) 1px, transparent 1px);
  background-size: 100% 8px;
  pointer-events: none;
  opacity: 0.45;
}

.hh-terminal-top {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hh-line);
  padding: 0 16px;
}

.hh-dots {
  display: flex;
  gap: 7px;
}

.hh-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hh-red);
}

.hh-dots i:nth-child(2) {
  background: var(--hh-gold);
}

.hh-dots i:nth-child(3) {
  background: var(--hh-green);
}

.hh-status-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hh-green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hh-status-light::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hh-green);
  box-shadow: 0 0 18px var(--hh-green);
}

.hh-terminal-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.hh-screen-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hh-live-card {
  border: 1px solid rgba(246, 242, 223, 0.12);
  border-radius: 16px;
  padding: 16px;
  background: rgba(8, 11, 12, 0.72);
}

.hh-live-card.wide {
  grid-column: 1 / -1;
}

.hh-live-title {
  color: var(--hh-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hh-live-main {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.hh-live-sub {
  margin-top: 7px;
  color: rgba(246, 242, 223, 0.58);
  font-size: 13px;
  line-height: 1.35;
}

.hh-mini-chart {
  width: 100%;
  height: 170px;
  display: block;
}

.hh-tape {
  display: grid;
  gap: 9px;
  min-height: 124px;
  color: rgba(246, 242, 223, 0.78);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.hh-tape-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(246, 242, 223, 0.06);
  padding-bottom: 7px;
}

.hh-section {
  width: min(var(--hh-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
}

.hh-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.hh-section h2 {
  max-width: 790px;
  margin: 0;
  font-size: 58px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hh-section-copy {
  max-width: 500px;
  color: rgba(246, 242, 223, 0.66);
  font-size: 16px;
  line-height: 1.55;
}

.hh-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.hh-feed-explainer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.hh-feed-explainer div {
  min-height: 156px;
  border: 1px solid rgba(66, 217, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(66, 217, 255, 0.09), transparent 58%),
    rgba(8, 11, 12, 0.62);
}

.hh-feed-explainer span {
  display: block;
  color: var(--hh-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hh-feed-explainer strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  line-height: 1;
}

.hh-feed-explainer p,
.hh-data-footnote {
  color: rgba(246, 242, 223, 0.61);
  line-height: 1.45;
}

.hh-feed-explainer p {
  margin: 12px 0 0;
  font-size: 13px;
}

.hh-data-footnote {
  margin-top: 12px;
  font-size: 12px;
}

.hh-panel {
  border: 1px solid var(--hh-line);
  border-radius: 22px;
  background: rgba(15, 23, 23, 0.74);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.hh-panel.pad {
  padding: 22px;
}

.hh-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.hh-day-head {
  color: var(--hh-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hh-day {
  min-height: 92px;
  border: 1px solid rgba(246, 242, 223, 0.1);
  border-radius: 12px;
  padding: 10px;
  background: rgba(246, 242, 223, 0.035);
  display: grid;
  align-content: space-between;
}

.hh-day strong {
  font-size: 16px;
}

.hh-day small {
  color: var(--hh-muted);
  text-transform: uppercase;
  font-weight: 800;
}

.hh-day .hh-day-pnl {
  color: rgba(246, 242, 223, 0.42);
  font-weight: 900;
}

.hh-day .hh-day-sub {
  color: rgba(246, 242, 223, 0.5);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hh-day.profit {
  background: rgba(48, 230, 140, 0.2);
  border-color: rgba(48, 230, 140, 0.48);
}

.hh-day.loss {
  background: rgba(255, 94, 94, 0.16);
  border-color: rgba(255, 94, 94, 0.42);
}

.hh-day.open {
  box-shadow: inset 0 -3px 0 var(--hh-gold);
}

.hh-equity-chart {
  width: 100%;
  height: 322px;
  display: block;
}

.hh-mechanic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hh-step {
  min-height: 250px;
  border-top: 3px solid var(--hh-green);
  border-radius: 18px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(48, 230, 140, 0.1), transparent 45%),
    rgba(15, 23, 23, 0.78);
}

.hh-step:nth-child(2) {
  border-top-color: var(--hh-cyan);
}

.hh-step:nth-child(3) {
  border-top-color: var(--hh-gold);
}

.hh-step-num {
  color: var(--hh-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hh-step h3 {
  margin: 16px 0 10px;
  font-size: 27px;
  line-height: 1.05;
}

.hh-step p {
  margin: 0;
  color: rgba(246, 242, 223, 0.66);
  line-height: 1.55;
}

.hh-ledger {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--hh-line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(8, 11, 12, 0.64);
}

.hh-ledger div {
  min-height: 138px;
  padding: 20px;
  border-right: 1px solid var(--hh-line);
}

.hh-ledger div:last-child {
  border-right: 0;
}

.hh-ledger strong {
  display: block;
  margin-top: 14px;
  font-size: 32px;
  line-height: 1;
}

.hh-risk {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}

.hh-risk-copy {
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 94, 94, 0.16), rgba(242, 201, 76, 0.1));
  border: 1px solid rgba(242, 201, 76, 0.25);
}

.hh-risk-copy h2 {
  font-size: 62px;
}

.hh-risk-list {
  display: grid;
  gap: 10px;
}

.hh-risk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid var(--hh-line);
  border-radius: 15px;
  padding: 12px 14px;
  background: rgba(8, 11, 12, 0.56);
  color: rgba(246, 242, 223, 0.76);
}

.hh-risk-item::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hh-red);
}

.hh-roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hh-roadmap-item {
  min-height: 170px;
  border: 1px solid var(--hh-line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(246, 242, 223, 0.04);
}

.hh-roadmap-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.hh-roadmap-item p {
  margin: 0;
  color: rgba(246, 242, 223, 0.62);
  line-height: 1.45;
}

.hh-cta {
  margin-bottom: 60px;
  border-radius: 30px;
  padding: clamp(28px, 6vw, 62px);
  background:
    radial-gradient(circle at 8% 16%, rgba(48, 230, 140, 0.24), transparent 22rem),
    radial-gradient(circle at 88% 30%, rgba(242, 201, 76, 0.16), transparent 24rem),
    #0d1211;
  border: 1px solid rgba(48, 230, 140, 0.22);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.hh-cta h2 {
  margin: 0;
}

.hh-policy-notes {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.hh-policy-notes div {
  border: 1px solid rgba(246, 242, 223, 0.12);
  border-radius: 16px;
  padding: 13px 15px;
  background: rgba(6, 9, 10, 0.42);
}

.hh-policy-notes strong {
  display: block;
  color: var(--hh-paper);
  margin-bottom: 4px;
}

.hh-policy-notes span {
  display: block;
  color: rgba(246, 242, 223, 0.66);
  line-height: 1.4;
}

.hh-footer {
  border-top: 1px solid var(--hh-line);
  color: var(--hh-muted);
  background: rgba(8, 11, 12, 0.8);
}

.hh-footer-inner {
  width: min(var(--hh-max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
  font-size: 13px;
}

.hh-footer a {
  color: rgba(246, 242, 223, 0.72);
  text-decoration: none;
  margin-left: 14px;
}

.hh-page {
  width: min(880px, calc(100% - 32px));
  min-height: 72vh;
  margin: 0 auto;
  padding: 80px 0;
}

.hh-page h1 {
  margin: 0 0 20px;
  font-size: 70px;
  line-height: 0.98;
}

.hh-page-content {
  color: rgba(246, 242, 223, 0.75);
  font-size: 17px;
  line-height: 1.7;
}

.hh-page-content h2 {
  color: var(--hh-paper);
  margin-top: 34px;
}

.hh-page-content a {
  color: var(--hh-green);
}

.hh-hidden {
  display: none !important;
}

.hh-boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(48, 230, 140, 0.18), transparent 21rem),
    #050807;
  transition: opacity 520ms ease, transform 520ms ease, visibility 520ms ease;
}

.hh-boot.done {
  opacity: 0;
  transform: scale(1.02);
  visibility: hidden;
}

.hh-boot-card {
  width: min(420px, calc(100% - 40px));
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  border: 1px solid rgba(48, 230, 140, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(246, 242, 223, 0.09), transparent),
    rgba(8, 11, 12, 0.94);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.72);
}

.hh-boot-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    linear-gradient(#06100d, #06100d) padding-box,
    conic-gradient(from 180deg, var(--hh-green), var(--hh-cyan), var(--hh-gold), var(--hh-green)) border-box;
  border: 3px solid transparent;
  color: var(--hh-paper);
  font-size: 25px;
  font-weight: 900;
  animation: hh-float 1800ms ease-in-out infinite alternate;
}

.hh-boot-line {
  color: rgba(246, 242, 223, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hh-boot-bar {
  width: 230px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(246, 242, 223, 0.09);
}

.hh-boot-bar i {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hh-green), var(--hh-cyan));
  animation: hh-load 1150ms cubic-bezier(0.67, 0, 0.2, 1) infinite;
}

.hh-form-status {
  width: min(var(--hh-max), calc(100% - 32px));
  margin: 18px auto 0;
  border: 1px solid rgba(242, 201, 76, 0.4);
  border-radius: 14px;
  padding: 13px 16px;
  background: rgba(242, 201, 76, 0.12);
  color: var(--hh-paper);
  font-weight: 800;
}

.hh-form-status.success {
  border-color: rgba(48, 230, 140, 0.42);
  background: rgba(48, 230, 140, 0.13);
}

.hh-form-status.error {
  border-color: rgba(255, 94, 94, 0.44);
  background: rgba(255, 94, 94, 0.13);
}

.hh-live-main.positive,
.hh-day-pnl.positive,
.hh-floor-tile strong.positive {
  color: var(--hh-green);
}

.hh-live-main.negative,
.hh-day-pnl.negative,
.hh-floor-tile strong.negative {
  color: var(--hh-red);
}

.hh-signal-floor {
  padding-top: 24px;
}

.hh-floor {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 12px;
  min-height: 470px;
  border: 1px solid rgba(66, 217, 255, 0.2);
  border-radius: 28px;
  padding: 16px;
  background:
    radial-gradient(circle at 25% 22%, rgba(48, 230, 140, 0.15), transparent 22rem),
    radial-gradient(circle at 70% 72%, rgba(66, 217, 255, 0.11), transparent 24rem),
    linear-gradient(135deg, rgba(246, 242, 223, 0.06), transparent 44%),
    rgba(8, 11, 12, 0.72);
  box-shadow: var(--hh-shadow);
}

.hh-floor::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 242, 223, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 242, 223, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 78%);
}

.hh-floor-tile {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 168px;
  border: 1px solid rgba(246, 242, 223, 0.11);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(155deg, rgba(48, 230, 140, 0.11), transparent 52%),
    rgba(7, 12, 12, 0.78);
}

.hh-floor-tile::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(48, 230, 140, 0.9), transparent);
  animation: hh-scan 2200ms ease-in-out infinite;
}

.hh-floor-tile.wide {
  grid-row: span 2;
  min-height: 348px;
}

.hh-floor-tile.price {
  border-color: rgba(66, 217, 255, 0.24);
}

.hh-floor-tile.target {
  border-color: rgba(242, 201, 76, 0.28);
}

.hh-floor-tile.hedge {
  border-color: rgba(66, 217, 255, 0.28);
}

.hh-floor-tile.pnl {
  border-color: rgba(48, 230, 140, 0.28);
}

.hh-tile-code {
  display: block;
  color: var(--hh-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hh-floor-tile strong {
  display: block;
  margin-top: 16px;
  font-size: 48px;
  line-height: 0.95;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hh-floor-tile em {
  display: block;
  margin-top: 10px;
  color: rgba(246, 242, 223, 0.58);
  font-style: normal;
}

.hh-radar {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(48, 230, 140, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 22%, rgba(48, 230, 140, 0.12) 23% 24%, transparent 25% 48%, rgba(48, 230, 140, 0.12) 49% 50%, transparent 51%),
    conic-gradient(from 0deg, rgba(48, 230, 140, 0.0), rgba(48, 230, 140, 0.28), rgba(48, 230, 140, 0.0) 28%);
  animation: hh-spin 7s linear infinite;
}

.hh-radar i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hh-green);
  box-shadow: 0 0 16px var(--hh-green);
}

.hh-radar i:nth-child(1) {
  left: 46px;
  top: 56px;
}

.hh-radar i:nth-child(2) {
  right: 35px;
  top: 86px;
}

.hh-radar i:nth-child(3) {
  left: 81px;
  bottom: 42px;
}

.hh-floor-tape {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(246, 242, 223, 0.1);
  border-radius: 18px;
  padding: 0 18px;
  background: rgba(246, 242, 223, 0.035);
}

.hh-floor-tape span {
  flex: 0 0 auto;
  color: rgba(246, 242, 223, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hh-floor-tape i {
  flex: 1 1 80px;
  min-width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hh-green), transparent);
  animation: hh-pulse 1300ms ease-in-out infinite;
}

.hh-access-form {
  width: min(470px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(246, 242, 223, 0.13);
  border-radius: 22px;
  background: rgba(6, 10, 10, 0.72);
}

.hh-access-form label {
  display: grid;
  gap: 7px;
  color: rgba(246, 242, 223, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hh-access-form label.wide,
.hh-access-form button {
  grid-column: 1 / -1;
}

.hh-access-form input,
.hh-access-form select,
.hh-access-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 242, 223, 0.16);
  border-radius: 12px;
  padding: 12px 13px;
  background: rgba(8, 11, 12, 0.82);
  color: var(--hh-paper);
  font: inherit;
  letter-spacing: 0;
}

.hh-access-form textarea {
  resize: vertical;
}

.hh-access-form input:focus,
.hh-access-form select:focus,
.hh-access-form textarea:focus {
  outline: 2px solid rgba(48, 230, 140, 0.35);
  border-color: rgba(48, 230, 140, 0.65);
}

.hh-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@keyframes hh-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes hh-float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-9px);
  }
}

@keyframes hh-load {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(250%);
  }
}

@keyframes hh-scan {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-34%);
  }
  50% {
    opacity: 0.9;
    transform: translateX(34%);
  }
}

@keyframes hh-pulse {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .hh-hero h1 {
    font-size: 78px;
  }

  .hh-section h2,
  .hh-risk-copy h2,
  .hh-page h1 {
    font-size: 52px;
  }

  .hh-nav-inner {
    height: auto;
    min-height: 68px;
    padding: 12px 0;
  }

  .hh-nav-links {
    display: none;
  }

  .hh-hero,
  .hh-proof-grid,
  .hh-risk,
  .hh-cta {
    grid-template-columns: 1fr;
  }

  .hh-feed-explainer {
    grid-template-columns: 1fr 1fr;
  }

  .hh-hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hh-terminal {
    min-height: auto;
  }

  .hh-mechanic,
  .hh-roadmap,
  .hh-ledger,
  .hh-floor {
    grid-template-columns: 1fr 1fr;
  }

  .hh-floor-tile.wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 260px;
  }

  .hh-ledger div {
    border-bottom: 1px solid var(--hh-line);
  }

  .hh-ledger div:nth-child(2n) {
    border-right: 0;
  }

  .hh-ledger div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (max-width: 660px) {
  .hh-hero h1 {
    font-size: 50px;
  }

  .hh-lede,
  .hh-section-copy {
    font-size: 16px;
  }

  .hh-section h2,
  .hh-risk-copy h2,
  .hh-page h1 {
    font-size: 36px;
  }

  .hh-floor-tile strong,
  .hh-ledger strong {
    font-size: 30px;
  }

  .hh-micro-proof,
  .hh-feed-explainer,
  .hh-screen-row,
  .hh-mechanic,
  .hh-roadmap,
  .hh-ledger,
  .hh-floor,
  .hh-access-form {
    grid-template-columns: 1fr;
  }

  .hh-section {
    padding: 46px 0;
  }

  .hh-section-head {
    align-items: start;
    flex-direction: column;
  }

  .hh-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh-floor {
    min-height: auto;
  }

  .hh-floor-tape {
    display: none;
  }

  .hh-radar {
    width: 118px;
    height: 118px;
    opacity: 0.55;
  }

  .hh-day-head {
    display: none;
  }

  .hh-ledger div {
    border-right: 0;
    border-bottom: 1px solid var(--hh-line);
  }

  .hh-ledger div:last-child {
    border-bottom: 0;
  }
}
