/*
 * Herd — defi/quant shared design tokens.
 *
 * Single source of truth for the defi pattern used across every Herd app
 * (Neptune, Orion, Triton, Runes, Virgil, Vulcan, Ceres, Hyperion, Symphony,
 * Nexus, Hermes, Selene, Courses). Hyperion welcome DeFi section styles
 * live here so Blade partials can stay markup-focused.
 *
 * Loaded once via base/layouts/header.blade.php on every app. The library
 * app owns the canonical copy; apps either symlink or copy the file.
 */

/* ===== Font utilities ===== */
.font-space-grotesk,
.font-sans {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
}

.font-mono {
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Courier New", monospace;
}

/* ===== Kicker (01 / Section) ===== */
.portfolio-landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-landing-kicker-num {
  font-weight: 500;
  color: rgba(16, 207, 189, 0.9);
}

/* ===== Status bar (defi top hairline row) ===== */
.portfolio-landing-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.portfolio-landing-statusbar-left,
.portfolio-landing-statusbar-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.portfolio-landing-statusbar-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ===== Stat grid (4-column) ===== */
.portfolio-landing-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.portfolio-landing-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 18px 16px 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-landing-stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.portfolio-landing-stat-value {
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  font-feature-settings: "tnum" on;
  white-space: nowrap;
  color: #ffffff;
}

.portfolio-landing-stat-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}

.portfolio-landing-stat-tag {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(125, 207, 255, 0.54);
}

.portfolio-landing-stat-subtext {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.28);
}

/* ===== Base section shell ===== */
.vulcan-defi-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

/* ===== Scroll cue ===== */
.courses-defi-scroll-cue,
.vulcan-defi-scroll-cue {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.courses-defi-scroll-cue-line,
.vulcan-defi-scroll-cue-line {
  display: block;
  width: 80px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
}

/* ===== Master tag (defi bordered pill) ===== */
.courses-defi-tag,
.vulcan-defi-tag {
  position: relative;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-right-width: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.courses-defi-tag:last-child,
.vulcan-defi-tag:last-child {
  border-right-width: 1px;
}

.courses-defi-tag:hover,
.vulcan-defi-tag:hover {
  background: rgba(16, 207, 189, 0.08);
  border-color: rgba(16, 207, 189, 0.42);
  color: #ffffff;
}

/* ===== Hairline divider (centered label) ===== */
.courses-defi-divider,
.vulcan-defi-divider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.courses-defi-divider span,
.vulcan-defi-divider span {
  display: block;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

/* ===== Light-theme variants ===== */
.portfolio-landing-statusbar--light,
.portfolio-landing-statusbar-light {
  border-top-color: rgba(15, 23, 42, 0.12);
  border-bottom-color: rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.55);
}

.portfolio-landing-statusbar--light .portfolio-landing-statusbar-sep,
.portfolio-landing-statusbar-light .portfolio-landing-statusbar-sep {
  color: rgba(15, 23, 42, 0.3);
}

.courses-defi-scroll-cue-line--light,
.vulcan-defi-scroll-cue-line--light {
  background: rgba(15, 23, 42, 0.22);
}

/* ===== Section base styles (used by generator output) ===== */
.defi-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 90px;
  font-family: "Space Grotesk", sans-serif;
}

.defi-section--dark {
  background: #0d0d14;
  color: #ffffff;
}

.defi-section--light {
  background: #fff;
  color: #0b0d10;
}

.defi-section-head {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}

.defi-section-kicker {
  margin: 0 0 18px;
  justify-content: center;
}

.defi-section--dark .defi-section-kicker {
  color: rgba(255, 255, 255, 0.46);
}

.defi-section--light .defi-section-kicker {
  color: rgba(15, 23, 42, 0.46);
}

.defi-section-title {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 16px;
}

.defi-section-body {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.defi-section--dark .defi-section-body {
  color: rgba(255, 255, 255, 0.66);
}

.defi-section--light .defi-section-body {
  color: rgba(15, 23, 42, 0.66);
}

/* ===== Responsive (shared mobile rules) ===== */
@media (max-width: 767px) {
  .portfolio-landing-statusbar {
    align-items: flex-start;
    flex-direction: column;
    font-size: 10px;
  }

  .portfolio-landing-statusbar-left,
  .portfolio-landing-statusbar-right {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .portfolio-landing-statusbar-right {
    width: 100%;
    justify-content: flex-start;
  }

  .portfolio-landing-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-landing-stat {
    padding: 18px 14px 16px;
  }

  .portfolio-landing-stat:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .portfolio-landing-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .portfolio-landing-kicker {
    font-size: 10px;
  }
}

/* ===== Hyperion welcome landing sections ===== */

/* ===== Extracted from resources/views/hyperion/welcome/section-one.blade.php ===== */
/* ===== Hyperion hero section ===== */
.hyperion-hero-section {
  --hyperion-accent: #10cfbd;
  --hyperion-accent-rgb: 16, 207, 189;
  --hyperion-line: rgba(255, 255, 255, 0.08);
  --hyperion-text: #f7f8f8;
  --hyperion-muted: rgba(247, 248, 248, 0.62);
  --hyperion-dim: rgba(247, 248, 248, 0.38);
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  background: #0d0d14;
  color: var(--hyperion-text);
  font-family: "Space Grotesk", sans-serif;
}

.hyperion-hero-section,
.hyperion-hero-section * {
  box-sizing: border-box;
}

.hyperion-hero-shell {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 80vh;
  padding: 28px clamp(32px, 3vw, 60px) 42px;
}

.hyperion-hero-login {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: 18px;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  transition: opacity 0.18s ease;
}

.hyperion-hero-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.hyperion-hero-home:hover,
.hyperion-hero-home:focus {
  color: #ffffff !important;
  opacity: 0.9;
  text-decoration: none;
}

.hyperion-hero-login:hover,
.hyperion-hero-login:focus {
  opacity: 0.82;
  text-decoration: none;
}

/* Shared portfolio-style chrome */
.portfolio-landing-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-landing-statusbar-left,
.portfolio-landing-statusbar-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.portfolio-landing-statusbar-sep {
  color: rgba(255, 255, 255, 0.2);
}

.portfolio-landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--hyperion-dim);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-landing-kicker-num {
  color: rgba(255, 255, 255, 0.28);
}

.font-mono {
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Courier New", monospace;
}

.font-sans,
.font-space-grotesk {
  font-family: "Space Grotesk", sans-serif;
}

/* Hero content */
.hyperion-hero-statusbar {
  margin-top: 10px;
  flex: 0 0 auto;
}

.hyperion-hero-stage {
  flex: 1 1 auto;
  display: flex;
  align-items: start;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding-top: 72px;
}

.hyperion-hero-copy-col,
.hyperion-hero-spacer,
.hyperion-hero-preview {
  padding-right: 0;
  padding-left: 0;
}

.hyperion-hero-copy {
  width: 100%;
  min-width: 0;
}

.hyperion-hero-kicker {
  margin-bottom: 18px;
}

.hyperion-hero-title {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin: 0;
  color: #ffffff;
  font-size: 130px;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.hyperion-hero-slash {
  color: rgba(255, 255, 255, 0.25);
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Courier New", monospace;
  font-size: 58px;
  font-weight: 400;
}

@keyframes hero-title-cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-title-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.08em;
  background: #ffffff;
  vertical-align: -0.05em;
  animation: hero-title-cursor-blink 1.05s steps(1, end) infinite;
}

.hyperion-hero-subtitle {
  width: 100%;
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--hyperion-muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  white-space: normal !important;
  overflow-wrap: break-word;
}

.hyperion-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
}

.hyperion-hero-registration-note {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hyperion-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    color 0.18s ease;
}

.hyperion-hero-link-primary {
  color: #ffffff;
  border-bottom-color: rgba(var(--hyperion-accent-rgb), 0.82);
}

.hyperion-hero-link:hover,
.hyperion-hero-link:focus {
  border-bottom-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
}

.hyperion-hero-link-arrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(-1px);
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.hyperion-hero-link:hover .hyperion-hero-link-arrow,
.hyperion-hero-link:focus .hyperion-hero-link-arrow {
  color: #ffffff;
  transform: translate(3px, -1px);
}

.hyperion-hero-newsletter {
  width: 100%;
  max-width: 580px;
  margin-top: 34px;
}

.hyperion-hero-newsletter-feedback {
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(var(--hyperion-accent-rgb), 0.3);
  border-bottom: 1px solid rgba(var(--hyperion-accent-rgb), 0.3);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.hyperion-hero-newsletter-feedback.is-error {
  border-color: rgba(255, 88, 88, 0.36);
  color: rgba(255, 170, 170, 0.88);
}

.hyperion-hero-newsletter-feedback p {
  margin: 0;
}

.hyperion-hero-newsletter-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.hyperion-hero-newsletter-label span {
  display: block;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hyperion-hero-newsletter-label strong {
  font-weight: 500;
}

.hyperion-hero-newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hyperion-hero-newsletter-input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.hyperion-hero-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.hyperion-hero-newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  height: 46px;
  min-width: 154px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.hyperion-hero-newsletter-arrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(-1px);
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.hyperion-hero-newsletter-button:hover,
.hyperion-hero-newsletter-button:focus {
  color: #ffffff;
  outline: 0;
}

.hyperion-hero-newsletter-button:hover .hyperion-hero-newsletter-arrow,
.hyperion-hero-newsletter-button:focus .hyperion-hero-newsletter-arrow {
  color: #ffffff;
  transform: translate(3px, -1px);
}

.hyperion-hero-newsletter-button.is-loading {
  opacity: 0.48;
  pointer-events: none;
}

.newsletter-honeypot {
  display: none !important;
}

.portfolio-landing-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.portfolio-landing-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 18px 16px 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-landing-stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.portfolio-landing-stat-value {
  color: #ffffff;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-feature-settings: "tnum" on;
  white-space: nowrap;
}

.portfolio-landing-stat-label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.45;
}

.portfolio-landing-stat-tag {
  color: rgba(16, 207, 189, 0.78);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.35;
}

.portfolio-landing-stat-subtext {
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.45;
}

.hyperion-hero-supported-algos {
  margin-top: 34px;
}

/* Supported industries list */
.supported-algos-list {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.76);
}

.supported-algos-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.supported-algos-kicker span {
  display: block;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.supported-algos-kicker strong {
  font-weight: 500;
}

.supported-algos-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(255, 255, 255, 0.72);
}

.supported-algos-items li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.supported-algos-items li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background: rgba(var(--hyperion-accent-rgb), 0.7);
  transform: translateY(-50%);
}

.supported-algos-list-compact .supported-algos-items {
  gap: 6px 10px;
}

.supported-algos-list-compact .supported-algos-items li {
  padding: 3px 0 3px 14px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
}

/* Code preview */
.hyperion-hero-preview {
  min-width: 0;
  padding-top: 20px;
  position: relative;
}

.hyperion-hero-preview-card {
  margin-top: 28px;
  border: 1px solid rgba(var(--hyperion-accent-rgb), 0.32);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(15, 13, 24, 0.95) 0%,
    rgba(8, 7, 14, 0.95) 100%
  );
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hyperion-hero-preview-head {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hyperion-hero-preview-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.hyperion-hero-preview-title {
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.hyperion-hero-preview-body {
  padding: 22px 18px 18px;
  min-height: 470px;
}

.hyperion-hero-preview-line {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.hyperion-hero-preview-prompt {
  color: rgba(var(--hyperion-accent-rgb), 1);
  flex: 0 0 auto;
}

.hyperion-hero-preview-typed {
  flex: 1 1 auto;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 220px;
}

.hyperion-hero-preview-cursor {
  display: inline-block;
  color: rgba(var(--hyperion-accent-rgb), 1);
  font-weight: 300;
  margin-left: 2px;
  animation: hyperion-preview-blink 1s steps(1, end) infinite;
}

@keyframes hyperion-preview-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hyperion-hero-preview-cursor {
    animation: none;
    opacity: 0.6;
  }
}

.hyperion-hero-preview-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hyperion-hero-preview-status {
  color: rgba(var(--hyperion-accent-rgb), 1);
  margin-right: 4px;
  font-size: 11px;
}

.hyperion-hero-preview-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* The orb partial is a fixed-position chat widget — it sits in the
       bottom-right corner regardless of where it's included in the DOM. */

/* Responsive */
@media (max-width: 1199px) {
  .hyperion-hero-title {
    font-size: 92px;
  }

  .hyperion-hero-stage {
    padding-top: 56px;
  }

  .hyperion-hero-preview {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .hyperion-hero-shell {
    padding: 24px 20px 34px;
  }

  .portfolio-landing-statusbar {
    align-items: flex-start;
    flex-direction: column;
    font-size: 10px;
  }

  .portfolio-landing-statusbar-left,
  .portfolio-landing-statusbar-right {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .portfolio-landing-statusbar-right {
    width: 100%;
    justify-content: flex-start;
  }

  .hyperion-hero-login {
    margin-left: 0;
  }

  .hyperion-hero-stage {
    display: block;
    gap: 34px;
    padding-top: 42px;
  }

  .hyperion-hero-copy-col,
  .hyperion-hero-spacer,
  .hyperion-hero-preview {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hyperion-hero-copy,
  .hyperion-hero-actions,
  .portfolio-landing-stats,
  .hyperion-hero-supported-algos {
    max-width: calc(100vw - 40px);
  }

  .portfolio-landing-kicker {
    font-size: 10px;
  }

  .hyperion-hero-title {
    gap: 14px;
    font-size: 56px;
    line-height: 1;
  }

  .hyperion-hero-slash {
    font-size: 36px;
  }

  .hyperion-hero-subtitle {
    margin-top: 26px;
    font-size: 15px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hyperion-hero-actions {
    gap: 22px;
  }

  .hyperion-hero-newsletter {
    margin-top: 30px;
  }

  .hyperion-hero-newsletter-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 12px;
  }

  .hyperion-hero-newsletter-button {
    justify-content: flex-start;
    height: auto;
  }

  .portfolio-landing-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-landing-stat {
    padding: 18px 14px 16px;
  }

  .portfolio-landing-stat:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .portfolio-landing-stat:nth-child(n + 3) {
    border-top: 1px solid var(--hyperion-line);
  }

  .hyperion-hero-supported-algos {
    margin-top: 30px;
  }

  .hyperion-hero-preview {
    margin-top: 34px;
    padding-top: 0;
  }

  .hyperion-hero-preview-card {
    margin-top: 0;
  }
}

/* ===== Extracted from resources/views/hyperion/welcome/section-market-intel.blade.php ===== */
/* ===== Hyperion section-market-intel — defi/quant ===== */
.hyperion-market-intel-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 80px;
  background: #0d0d14;
  color: #fff;
}

.hyperion-market-intel-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

.hyperion-market-intel-head {
  max-width: 70ch;
  margin-bottom: 40px;
}

.hyperion-market-intel-kicker {
  margin: 0 0 18px;
}

.hyperion-market-intel-section-title {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 14px;
}

.hyperion-market-intel-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}

.hyperion-market-intel-media-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 207, 189, 0.28);
  border-radius: 14px;
  background: #05070e;
  margin-top: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.hyperion-market-intel-media-wrap video {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.86;
}

.hyperion-market-intel-media-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 20, 0) 0%,
    rgba(13, 13, 20, 0.18) 60%,
    rgba(13, 13, 20, 0.32) 100%
  );
  pointer-events: none;
}

.hyperion-market-intel-media-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 20, 0) 0%,
    rgba(13, 13, 20, 0.6) 100%
  );
  pointer-events: none;
}

.hyperion-market-intel-media-wrap.hyperion-market-intel-video-placeholder {
  margin-top: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(16, 207, 189, 0.08) 0%,
      rgba(5, 7, 14, 1) 70%
    ),
    #05070e;
}

.hyperion-market-intel-video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(16, 207, 189, 0.85);
}

.hyperion-market-intel-video-placeholder-play {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 207, 189, 0.1);
  border: 1px solid rgba(16, 207, 189, 0.45);
  color: #10cfbd;
  box-shadow: 0 0 0 0 rgba(16, 207, 189, 0.35);
}

.hyperion-market-intel-video-placeholder-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hyperion-pillar-pipeline-video {
  max-width: 100%;
  margin: 0 auto 60px;
}

.hyperion-market-intel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-market-intel-card {
  position: relative;
  padding: 28px 26px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hyperion-market-intel-card:nth-child(odd) {
  border-left: 0;
  padding-left: 0;
}

.hyperion-market-intel-card-num {
  color: rgba(16, 207, 189, 0.78);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.hyperion-market-intel-card-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 12px;
}

.hyperion-market-intel-card-body {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Narrative stack: numbered story points beside the event map media */
.hyperion-market-intel-story-tag {
  color: rgba(16, 207, 189, 0.9);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 34px 0 14px;
}

.hyperion-market-intel-story-stack {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-market-intel-story-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px 14px;
  padding: 20px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-market-intel-story-num {
  grid-row: 1 / span 2;
  color: rgba(16, 207, 189, 0.9);
  font-size: 11px;
  letter-spacing: 0.18em;
  align-self: start;
  padding-top: 4px;
}

.hyperion-market-intel-story-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}

.hyperion-market-intel-story-body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .hyperion-market-intel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hyperion-market-intel-card:nth-child(3n + 1) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 26px;
  }

  .hyperion-market-intel-card:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .hyperion-market-intel-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 600px) {
  .hyperion-market-intel-grid {
    grid-template-columns: 1fr;
  }

  .hyperion-market-intel-card {
    border-left: 0;
    padding-left: 0;
  }
}

/* ===== Extracted from resources/views/hyperion/welcome/section-sector-sweeps.blade.php ===== */
/* ===== Hyperion section-sector-sweeps — defi/quant ===== */
.hyperion-sector-sweeps-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 80px;
  background: #0d0d14;
  color: #fff;
}

.hyperion-sector-sweeps-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

.hyperion-sector-sweeps-head {
  max-width: 70ch;
  margin-bottom: 40px;
}

.hyperion-sector-sweeps-kicker {
  margin: 0 0 18px;
}

.hyperion-sector-sweeps-section-title {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 14px;
}

.hyperion-sector-sweeps-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}

.hyperion-sector-sweeps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-sector-sweeps-card {
  position: relative;
  padding: 24px 22px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 200px;
}

.hyperion-sector-sweeps-card-tag {
  color: rgba(16, 207, 189, 0.85);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hyperion-sector-sweeps-card-title {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 10px;
}

.hyperion-sector-sweeps-card-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hyperion-sector-sweeps-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hyperion-sector-sweeps-card-list li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11.5px;
  line-height: 1.5;
}

.hyperion-sector-sweeps-card-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 1px;
  background: rgba(16, 207, 189, 0.7);
}

.hyperion-sector-sweeps-example-stack {
  display: flex;
  flex-direction: column;
}

.hyperion-sector-sweeps-example-stack .hyperion-sector-sweeps-grid {
  grid-template-columns: 1fr;
}

.hyperion-sector-sweeps-thesis-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  min-height: 0;
  padding: 34px 32px 32px;
}

.hyperion-sector-sweeps-thesis-card .hyperion-sector-sweeps-card-tag {
  margin-bottom: 18px;
}

.hyperion-sector-sweeps-thesis-card .hyperion-sector-sweeps-card-title {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  margin-bottom: 18px;
}

.hyperion-sector-sweeps-thesis-statement {
  color: #10cfbd;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 60ch;
}

.hyperion-sector-sweeps-thesis-card .hyperion-sector-sweeps-card-meta {
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.hyperion-sector-sweeps-thesis-card .hyperion-sector-sweeps-card-list {
  gap: 14px;
}

.hyperion-sector-sweeps-thesis-card .hyperion-sector-sweeps-card-list li {
  font-size: 15px;
  line-height: 1.55;
  padding-left: 20px;
}

.hyperion-sector-sweeps-thesis-card
  .hyperion-sector-sweeps-card-list
  li::before {
  width: 10px;
}

@media (max-width: 767px) {
  .hyperion-sector-sweeps-grid {
    grid-template-columns: 1fr;
  }

  .hyperion-sector-sweeps-thesis-card {
    margin-top: 24px;
    padding: 28px 24px 26px;
  }
}

/* ===== Extracted from resources/views/hyperion/welcome/section-macro-outlook.blade.php ===== */
/* ===== Hyperion section-macro-outlook — defi/quant ===== */
.hyperion-macro-outlook-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 80px;
  background: #0d0d14;
  color: #fff;
}

.hyperion-macro-outlook-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

.hyperion-macro-outlook-head {
  max-width: 70ch;
  margin: 0 auto 48px;
  text-align: center;
}

.hyperion-macro-outlook-kicker {
  margin: 0 0 18px;
  justify-content: center;
}

.hyperion-macro-outlook-section-title {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 14px;
}

.hyperion-macro-outlook-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 60ch;
}

.hyperion-macro-outlook-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-macro-outlook-card {
  padding: 30px 30px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 180px;
}

.hyperion-macro-outlook-card:last-child {
  border-bottom: 0;
}

.hyperion-macro-outlook-card-tag {
  color: rgba(16, 207, 189, 0.85);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hyperion-macro-outlook-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hyperion-macro-outlook-card-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.hyperion-macro-outlook-card-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 1px;
  background: rgba(16, 207, 189, 0.7);
}

.hyperion-macro-outlook-foot {
  max-width: 60ch;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .hyperion-macro-outlook-head {
    text-align: left;
  }

  .hyperion-macro-outlook-kicker {
    justify-content: flex-start;
  }
}

/* ===== Extracted from resources/views/hyperion/welcome/section-portfolio-trading.blade.php ===== */
/* ===== Hyperion section-portfolio-trading — defi/quant (Neptune hand-off) ===== */
.hyperion-portfolio-trading-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 80px;
  background: #0d0d14;
  color: #fff;
}

.hyperion-portfolio-trading-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

.hyperion-portfolio-trading-head {
  max-width: 1040px;
  margin: 0 auto 56px;
  text-align: center;
}

.hyperion-portfolio-trading-kicker {
  margin: 0 0 18px;
  justify-content: center;
}

.hyperion-portfolio-trading-section-title {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 14px;
}

.hyperion-portfolio-trading-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 60ch;
}

.hyperion-portfolio-trading-stage {
  margin-bottom: 64px;
}

.hyperion-portfolio-trading-media {
  margin-top: 0;
  aspect-ratio: 16 / 9;
}

.hyperion-portfolio-trading-trigger-col {
  position: relative;
  padding-top: 4px;
}

.hyperion-portfolio-trading-tag {
  color: rgba(16, 207, 189, 0.9);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.hyperion-portfolio-trading-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.hyperion-portfolio-trading-trigger-stack {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-portfolio-trading-trigger {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px 14px;
  padding: 20px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-portfolio-trading-trigger-num {
  grid-row: 1 / span 2;
  color: rgba(16, 207, 189, 0.9);
  font-size: 11px;
  letter-spacing: 0.18em;
  align-self: start;
  padding-top: 4px;
}

.hyperion-portfolio-trading-trigger-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}

.hyperion-portfolio-trading-trigger-body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.hyperion-portfolio-trading-flow {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 48px;
}

.hyperion-portfolio-trading-flow-head {
  max-width: 60ch;
  margin: 0 auto 32px;
  text-align: center;
}

.hyperion-portfolio-trading-flow-tag {
  color: rgba(16, 207, 189, 0.9);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.hyperion-portfolio-trading-flow-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 60ch;
}

.hyperion-portfolio-trading-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-portfolio-trading-flow-step {
  position: relative;
  padding: 28px 26px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.hyperion-portfolio-trading-flow-step-num {
  color: rgba(16, 207, 189, 0.9);
  font-size: 11px;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hyperion-portfolio-trading-flow-step-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 12px;
}

.hyperion-portfolio-trading-flow-step-body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .hyperion-portfolio-trading-head {
    text-align: left;
  }

  .hyperion-portfolio-trading-kicker {
    justify-content: flex-start;
  }

  .hyperion-portfolio-trading-flow-grid {
    grid-template-columns: 1fr;
  }

  .hyperion-portfolio-trading-trigger-col {
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .hyperion-portfolio-trading-flow-head {
    text-align: left;
  }
}

/* ===== Extracted from resources/views/hyperion/welcome/section-integrations-promise.blade.php ===== */
.integration-card,
.principle-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.integration-card h4,
.principle-card h5 {
  margin-bottom: 10px;
  font-weight: 500;
}

.integration-card p,
.integration-card ul,
.principle-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
  margin-bottom: 0;
}

.integration-card ul {
  list-style: disc;
  padding-left: 18px;
  margin-top: 5px;
}

/* ===== Extracted from resources/views/hyperion/welcome/section-faq.blade.php ===== */
/* ===== Hyperion section-faq — defi/quant (accordion list) ===== */
.hyperion-faq-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 64px;
  background: #0d0d14;
  color: #fff;
}

.hyperion-faq-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.hyperion-faq-head {
  max-width: 60ch;
  margin-bottom: 48px;
}

.hyperion-faq-kicker {
  margin: 0 0 18px;
}

.hyperion-faq-section-title {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
  max-width: 22ch;
}

.hyperion-faq-list {
  display: flex;
  flex-direction: column;
}

.hyperion-faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hyperion-faq-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.hyperion-faq-summary::-webkit-details-marker {
  display: none;
}

.hyperion-faq-num {
  color: rgba(16, 207, 189, 0.78);
  font-size: 11px;
  letter-spacing: 0.18em;
  flex: 0 0 28px;
}

.hyperion-faq-q {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1 1 auto;
}

.hyperion-faq-toggle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 300;
  flex: 0 0 20px;
  text-align: right;
  transition: transform 0.2s ease;
}

.hyperion-faq-item[open] .hyperion-faq-toggle {
  transform: rotate(45deg);
}

.hyperion-faq-answer {
  padding: 0 0 28px 52px;
}

.hyperion-faq-answer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 70ch;
}

.hyperion-faq-answer a {
  color: #10cfbd;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.hyperion-faq-answer a:hover {
  color: #2ee6d6;
}

.hyperion-faq-summary:hover .hyperion-faq-q {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 600px) {
  .hyperion-faq-summary {
    gap: 14px;
  }

  .hyperion-faq-q {
    font-size: 15px;
  }

  .hyperion-faq-answer {
    padding: 0 0 22px 28px;
  }
}

/* ===== Extracted from resources/views/hyperion/welcome/algo-apps.blade.php ===== */
/* ===== Algorithmic apps section ===== */
.algo-apps-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  padding: 80px 0 56px;
  display: flex;
  flex-direction: column;
  background: #0d0d14;
  color: #fff;
  transition: background 0.2s ease;
}

/* Subtle grid texture, same recipe as the index hero */
.algo-apps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.algo-apps-shell {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

/* Pulsing live indicator dot — defi/quant status pill */
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e87a;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 6px rgba(0, 232, 122, 0.55);
}

.live-dot.is-pulse {
  animation: live-dot-pulse 2s ease-in-out infinite;
}

@keyframes live-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot.is-pulse {
    animation: none;
  }
}

.portfolio-landing-statusbar-live {
  display: inline-flex;
  align-items: center;
}

/* Title block */
.algo-title-block {
  margin-top: 32px;
  flex: 0 0 auto;
}

.algo-section-title {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 14px 0 0;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* Typewriter cursor in the algo title */
.algo-typeword-text {
  display: inline;
}

.algo-typeword-cursor {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-left: 2px;
  transform: translateY(-0.04em);
  animation: algo-typeword-blink 1s steps(1, end) infinite;
}

@keyframes algo-typeword-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .algo-typeword-cursor {
    animation: none;
    opacity: 0.6;
  }
}

.algo-section-subtitle {
  max-width: 80ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.6;
  min-height: 1.6em;
  transition: opacity 0.32s ease;
}

.algo-section-subtitle.is-fading {
  opacity: 0;
}

/* 5 cards in a row */
.algo-cards-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  flex: 1 1 auto;
  align-items: stretch;
}

.algo-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  text-decoration: none;
  color: #fff;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
  min-height: 0;
}

.algo-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.025);
  transform: translateY(-2px);
}

.algo-card-featured {
  border-color: rgba(255, 255, 255, 0.2);
}

.algo-card-featured:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.algo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 8px;
  min-height: 22px;
}

.algo-card-name {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.algo-card-featured-tag {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 500;
}

.algo-card-icon {
  margin: 8px 0 16px;
  color: rgba(255, 255, 255, 0.45);
  align-self: flex-start;
}

.algo-card-icon svg {
  display: block;
}

.algo-card-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 0;
  margin-bottom: 12px;
  font-feature-settings: "tnum" on;
}

.algo-card-meta-sep {
  color: rgba(255, 255, 255, 0.22);
  margin: 0 6px;
}

.algo-card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1 1 auto;
}

.algo-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.algo-card-broker {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.algo-card-cta {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.algo-card:hover .algo-card-cta {
  transform: translateX(3px);
}

/* Light-mode variants */
.algo-apps-section.is-light {
  background: #ffffff;
  color: #0b0d10;
}

.algo-apps-section.is-light::before {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
}

.algo-apps-section.is-light .algo-section-title {
  color: #0b0d10;
}

.algo-apps-section.is-light .algo-section-subtitle {
  color: rgba(15, 23, 42, 0.7);
}

.algo-apps-section.is-light .algo-typeword-cursor {
  color: rgba(15, 23, 42, 0.7);
}

.algo-apps-section.is-light .algo-card {
  border-color: rgba(15, 23, 42, 0.1);
  color: #0b0d10;
}

.algo-apps-section.is-light .algo-card:hover {
  border-color: rgba(15, 23, 42, 0.4);
  background: rgba(15, 23, 42, 0.025);
}

.algo-apps-section.is-light .algo-card-featured {
  border-color: rgba(15, 23, 42, 0.2);
}

.algo-apps-section.is-light .algo-card-featured:hover {
  border-color: rgba(15, 23, 42, 0.55);
  background: rgba(15, 23, 42, 0.04);
}

.algo-apps-section.is-light .algo-card-name {
  color: #0b0d10;
}

.algo-apps-section.is-light .algo-card-featured-tag {
  color: rgba(15, 23, 42, 0.55);
  border-color: rgba(15, 23, 42, 0.24);
}

.algo-apps-section.is-light .algo-card-icon {
  color: rgba(15, 23, 42, 0.5);
}

.algo-apps-section.is-light .algo-card-meta {
  color: rgba(15, 23, 42, 0.6);
  border-top-color: rgba(15, 23, 42, 0.12);
  border-bottom-color: rgba(15, 23, 42, 0.12);
}

.algo-apps-section.is-light .algo-card-meta-sep {
  color: rgba(15, 23, 42, 0.25);
}

.algo-apps-section.is-light .algo-card-desc {
  color: rgba(15, 23, 42, 0.78);
}

.algo-apps-section.is-light .algo-card-footer {
  border-top-color: rgba(15, 23, 42, 0.12);
}

.algo-apps-section.is-light .algo-card-broker {
  color: rgba(15, 23, 42, 0.5);
}

.algo-apps-section.is-light .algo-card-cta {
  color: #0b0d10;
}

/* Responsive */
@media (max-width: 1199px) {
  .algo-cards-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .algo-card {
    min-height: 280px;
  }
}

@media (max-width: 991px) {
  .algo-apps-section {
    min-height: auto;
    padding: 64px 0 48px;
  }

  .algo-section-title {
    white-space: normal;
  }

  .algo-cards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .algo-card {
    min-height: 240px;
  }
}

@media (max-width: 600px) {
  .algo-cards-row {
    grid-template-columns: 1fr;
  }

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

/* Hairline status bar — mono micro-text, no color, no animation */
.portfolio-landing-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.portfolio-landing-statusbar-left,
.portfolio-landing-statusbar-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.portfolio-landing-statusbar-sep {
  color: rgba(255, 255, 255, 0.2);
}

.font-mono {
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Courier New", monospace;
}

/* ===== Extracted from resources/views/hyperion/welcome/section-subscription.blade.php ===== */
/* ===== Hyperion section-subscription — defi/quant pricing (single-card, white theme) ===== */
.hyperion-pricing-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 64px;
  background: #fff;
  color: #0b0d10;
}

.hyperion-pricing-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

.hyperion-pricing-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.hyperion-pricing-kicker {
  margin: 0 0 18px;
  justify-content: center;
  color: rgba(15, 23, 42, 0.55);
}

.hyperion-pricing-kicker .portfolio-landing-kicker-num {
  color: rgba(15, 23, 42, 0.32);
}

.hyperion-pricing-section-title {
  color: #0b0d10;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 14px;
}

.hyperion-pricing-section-subtitle {
  color: rgba(15, 23, 42, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 60ch;
}

.hyperion-pricing-cards {
  display: grid;
  grid-template-columns: minmax(0, 480px);
  gap: 1px;
  background: rgba(15, 23, 42, 0.12);
  max-width: 480px;
  margin: 0 auto;
}

.hyperion-pricing-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  background: #fff;
  gap: 18px;
}

.hyperion-pricing-card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.hyperion-pricing-card-tag {
  color: rgba(15, 23, 42, 0.55);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hyperion-pricing-card-amount {
  color: #0b0d10;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.hyperion-pricing-card-pct {
  color: rgba(15, 23, 42, 0.5);
  font-size: 18px;
  font-weight: 400;
  margin-left: 4px;
}

.hyperion-pricing-card-period {
  color: rgba(15, 23, 42, 0.5);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hyperion-pricing-card-lead {
  color: rgba(15, 23, 42, 0.78);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.hyperion-pricing-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex: 1 1 auto;
}

.hyperion-pricing-card-list li {
  position: relative;
  padding-left: 16px;
}

.hyperion-pricing-card-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 1px;
  background: rgba(15, 23, 42, 0.4);
  transform: translateY(-50%);
}

.hyperion-pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.2);
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  color: #0b0d10;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.18s ease;
}

.hyperion-pricing-cta:hover,
.hyperion-pricing-cta:focus {
  gap: 16px;
  color: #0b0d10;
  text-decoration: none;
}

.hyperion-pricing-cta-arrow {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  transition: transform 0.18s ease;
}

.hyperion-pricing-cta:hover .hyperion-pricing-cta-arrow,
.hyperion-pricing-cta:focus .hyperion-pricing-cta-arrow {
  transform: translateX(3px);
}

.hyperion-pricing-card-foot {
  color: rgba(15, 23, 42, 0.5);
  font-size: 11.5px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 600px) {
  .hyperion-pricing-section {
    padding: 64px 0 52px;
  }

  .hyperion-pricing-head {
    margin-bottom: 36px;
  }

  .hyperion-pricing-card {
    padding: 30px 24px 26px;
  }

  .hyperion-pricing-card-amount {
    font-size: 48px;
  }
}

/* ===== Extracted from resources/views/hyperion/welcome/section-subscribe.blade.php ===== */
/* ===== Hyperion section-subscribe — defi/quant (white theme) ===== */
.hyperion-sub-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 80px;
  background: #fff;
  color: #0b0d10;
}

.hyperion-sub-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

.hyperion-sub-head {
  margin-bottom: 40px;
  text-align: center;
}

.hyperion-sub-kicker {
  margin: 0 0 18px;
  justify-content: center;
  color: rgba(15, 23, 42, 0.55);
}

.hyperion-sub-kicker .portfolio-landing-kicker-num {
  color: rgba(15, 23, 42, 0.32);
}

.hyperion-sub-section-title {
  color: #0b0d10;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 14px;
}

.hyperion-sub-section-subtitle {
  color: rgba(15, 23, 42, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 56ch;
}

.hyperion-sub-newsletter {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.hyperion-sub-newsletter-feedback {
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(16, 207, 189, 0.36);
  border-bottom: 1px solid rgba(16, 207, 189, 0.36);
  color: rgba(15, 23, 42, 0.78);
  font-size: 12px;
}

.hyperion-sub-newsletter-feedback.is-error {
  border-color: rgba(180, 60, 60, 0.36);
  color: rgba(140, 30, 30, 0.88);
}

.hyperion-sub-newsletter-feedback p {
  margin: 0;
}

.hyperion-sub-newsletter-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(15, 23, 42, 0.42);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.hyperion-sub-newsletter-label span {
  display: block;
  width: 10px;
  height: 1px;
  background: rgba(15, 23, 42, 0.24);
}

.hyperion-sub-newsletter-label strong {
  font-weight: 500;
}

.hyperion-sub-newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.24);
}

.hyperion-sub-newsletter-input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #0b0d10;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.hyperion-sub-newsletter-input::placeholder {
  color: rgba(15, 23, 42, 0.32);
}

.hyperion-sub-newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  height: 46px;
  min-width: 154px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(15, 23, 42, 0.86);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.hyperion-sub-newsletter-arrow {
  display: inline-block;
  color: rgba(15, 23, 42, 0.7);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(-1px);
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.hyperion-sub-newsletter-button:hover,
.hyperion-sub-newsletter-button:focus {
  color: #0b0d10;
  outline: 0;
}

.hyperion-sub-newsletter-button:hover .hyperion-sub-newsletter-arrow,
.hyperion-sub-newsletter-button:focus .hyperion-sub-newsletter-arrow {
  color: #0b0d10;
  transform: translate(3px, -1px);
}

.hyperion-sub-newsletter-button.is-loading {
  opacity: 0.48;
  pointer-events: none;
}

.newsletter-honeypot {
  display: none !important;
}

.hyperion-sub-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.hyperion-sub-social-label {
  color: rgba(15, 23, 42, 0.5);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hyperion-sub-social-link {
  color: rgba(15, 23, 42, 0.72);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.22);
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}

.hyperion-sub-social-link:hover {
  color: #0b0d10;
  border-bottom-color: #0b0d10;
}

.hyperion-sub-social-sep {
  color: rgba(15, 23, 42, 0.24);
}

/* ===== Hyperion Shared Footer Theme ===== */
.defi-footer.footer {
  --defi-footer-bg: #050505;
  --defi-footer-line: rgba(255, 255, 255, 0.12);
  --defi-footer-text: rgba(247, 248, 248, 0.62);
  --defi-footer-heading: #ffffff;
  --defi-footer-accent: #10cfbd;
  border-top-color: var(--defi-footer-line);
  background: var(--defi-footer-bg);
  color: var(--defi-footer-text);
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
}

/* Edge-to-edge: override container-fixed-lg width cap so the dark footer
   spans the full page-content-wrapper. Don't set width:100% — the footer
   is position:absolute with left:0/left:250px + right:0, so an explicit
   width stacks on top of left and pushes the right edge off-screen. */
.page-container .defi-footer.footer {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

html[data-defi-theme="light"] .defi-footer.footer {
  --defi-footer-bg: #f6f7f4;
  --defi-footer-line: rgba(5, 5, 5, 0.1);
  --defi-footer-text: rgba(23, 27, 24, 0.68);
  --defi-footer-heading: #050505;
  --defi-footer-accent: #0f766e;
}

.defi-footer .defi-footer-inner,
.defi-footer .defi-footer-copy,
.defi-footer .defi-footer-made-by,
.defi-footer .defi-footer-copy span,
.defi-footer .defi-footer-made-by span {
  color: var(--defi-footer-text);
}

.defi-footer a {
  color: var(--defi-footer-accent) !important;
  text-decoration: none;
}

.defi-footer a:hover,
.defi-footer a:focus {
  color: var(--defi-footer-heading) !important;
  text-decoration: none;
}

/* ===== Extracted from resources/views/hyperion/welcome/index-mobile-with-slider.blade.php ===== */
.item-padding {
  padding-left: 30px;
  padding-right: 30px;
}

/* ===== Hyperion video showcase section (defi/quant) ===== */
.hyperion-video-showcase-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 80px;
  background: #0d0d14;
  color: #fff;
}

.hyperion-video-showcase-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

.hyperion-video-showcase-head {
  max-width: 70ch;
  margin-bottom: 40px;
}

.hyperion-video-showcase-kicker {
  margin: 0 0 18px;
}

.hyperion-video-showcase-section-title {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 14px;
}

.hyperion-video-showcase-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}
