﻿:root {
  --primary-bg: #07111f;
  --secondary-bg: #0d1b2a;
  --card-bg: #101c2e;
  --gold: #e5b84b;
  --gold-2: #c89b2a;
  --white: #f7f8fa;
  --ink: #07111f;
  --muted: #a7b3c7;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(7, 17, 31, 0.12);
  --green: #22c55e;
  --red: #ef4444;
  --blue: #3b82f6;
  --purple: #7c3aed;
  --shadow: 0 26px 80px rgba(4, 10, 20, 0.34);
  --radius: 8px;
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--primary-bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 68% 12%, rgba(59, 130, 246, 0.14), transparent 30%),
    radial-gradient(circle at 10% 16%, rgba(229, 184, 75, 0.1), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #081320 42%, #ffffff 42%, #ffffff 100%);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.section-shell,
.academy-section,
.trust-section,
.footer-shell,
.footer-bottom {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 82px;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: rgba(7, 17, 31, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 215px;
  height: auto;
}

.desktop-nav,
.nav-actions,
.hero-actions,
.hero-points,
.card-header,
.panel-heading,
.footer-bottom {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: clamp(20px, 3vw, 38px);
}

.desktop-nav a,
.login-link {
  color: rgba(247, 248, 250, 0.88);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.login-link:hover,
.footer-columns a:hover,
.section-topline a:hover,
.panel-heading a:hover {
  color: var(--gold);
}

.nav-actions {
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #111827;
  background: linear-gradient(180deg, #ffc94e, var(--gold));
  box-shadow: 0 18px 36px rgba(229, 184, 75, 0.24);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(229, 184, 75, 0.62);
  background: rgba(7, 17, 31, 0.72);
}

.button-large {
  min-height: 54px;
  padding-inline: 26px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(229, 184, 75, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
}

.mobile-panel {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 90vh;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
}

.hero-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 560px;
}

h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}

h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 480px;
  margin-bottom: 32px;
  color: rgba(247, 248, 250, 0.88);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 248, 250, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.hero-check {
  color: var(--gold);
  font-weight: 800;
}

.signal-icon,
.line-icon,
.feature-icon,
.trust-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

/* ── Hero Visual (right side) ────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
  height: clamp(420px, 72vh, 620px);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 184, 75, 0.10) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-session-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 22px 28px;
  border-radius: 14px;
  background: rgba(8, 18, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  text-align: center;
  min-width: 160px;
  opacity: 0.65;
}

.hsp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(167, 179, 199, 0.6);
  margin-bottom: 4px;
}

.hsp-timer {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.hsp-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.hsp-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px auto;
}

.hsp-score {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}

/* ── Floating Glass Cards ────────────────────────────────────── */
.hero-card {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 18, 32, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  color: var(--white);
  font-size: 12px;
  line-height: 1.4;
}

.hc-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  color: rgba(247, 248, 250, 0.95);
}

.hc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hc-dot--blue   { background: var(--blue);  box-shadow: 0 0 8px rgba(59, 130, 246, 0.45); }
.hc-dot--purple { background: var(--purple); box-shadow: 0 0 8px rgba(124, 58, 237, 0.45); }
.hc-dot--red    { background: var(--red);   box-shadow: 0 0 8px rgba(239, 68, 68, 0.45); }
.hc-dot--green  { background: var(--green);  box-shadow: 0 0 8px rgba(34, 197, 94, 0.45); }

.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
  gap: 12px;
}
.hc-row + .hc-row { border-top: 1px solid rgba(255, 255, 255, 0.06); }

.hc-label {
  color: rgba(167, 179, 199, 0.85);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.hc-val {
  font-weight: 700;
  font-size: 12px;
  color: rgba(247, 248, 250, 0.95);
  text-align: right;
}
.hc-val--green { color: var(--green); }
.hc-val--red   { color: var(--red); }

.hc-status {
  margin-top: 10px;
  padding: 5px 0;
  border-radius: 6px;
  text-align: center;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.hc-status--blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

/* Card 1 — Trading Plan (top-left) */
.hero-card-plan {
  top: 0;
  left: 0;
  width: clamp(195px, 18vw, 245px);
  animation: hero-float-up 3s ease-in-out infinite;
}

/* Card 2 — Analytics (top-right) */
.hero-card-analytics {
  top: 0;
  right: 0;
  width: clamp(175px, 16vw, 220px);
  animation: hero-float-down 3.5s ease-in-out infinite 0.3s;
}

.hc-score-ring {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 auto 8px;
}
.hc-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.hc-ring-bg   { stroke: rgba(255, 255, 255, 0.08); }
.hc-ring-fill { stroke: var(--purple); stroke-linecap: round; transition: stroke-dasharray 0.6s; }
.hc-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
}
.hc-ring-caption {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(167, 179, 199, 0.7);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* Card 3 — Cooldown (bottom-left) */
.hero-card-cooldown {
  bottom: 0;
  left: 0;
  width: clamp(195px, 18vw, 245px);
  animation: hero-float-down 3s ease-in-out infinite 0.5s;
}

.hc-cooldown-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.hc-timer {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.hc-cooldown-text {
  margin: 0;
  color: rgba(167, 179, 199, 0.8);
  font-size: 10.5px;
  line-height: 1.45;
}

/* Card 4 — Profit Locker (bottom-right) */
.hero-card-locker {
  bottom: 0;
  right: 0;
  width: clamp(185px, 17vw, 230px);
  animation: hero-float-up 3.5s ease-in-out infinite 0.8s;
}

.hc-locker-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
}

.hc-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.hc-toggle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.hc-toggle-text {
  font-weight: 700;
  font-size: 11px;
  color: var(--green);
}

@keyframes hero-float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes hero-float-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}


.features-section,
.blog-section,
.trust-section {
  color: var(--ink);
  background: #ffffff;
}

.features-section {
  padding: 42px 0 58px;
}

.section-shell > h2,
.section-topline h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.18;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 32px;
}

.feature-grid article {
  min-height: 170px;
  padding: 0 22px;
  text-align: center;
}

.feature-grid article + article {
  border-left: 1px solid rgba(7, 17, 31, 0.1);
}

.feature-grid h3,
.trust-grid h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.feature-grid p,
.trust-grid p {
  margin: 0;
  color: #40506a;
  font-size: 14px;
  line-height: 1.55;
}

.feature-icon,
.trust-icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  margin: 0 auto;
  color: var(--ink);
}

.academy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  padding: 48px 0;
  color: var(--white);
  border-radius: 0;
  background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 42%, #07111f 42%, #091626 100%);
}

.academy-copy {
  align-self: center;
  color: var(--ink);
  padding: 28px 32px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.08);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.academy-copy h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 54px);
  line-height: 1.08;
}

.academy-copy p {
  max-width: 410px;
  margin-bottom: 28px;
  color: #344258;
  font-size: 17px;
  line-height: 1.7;
}

.class-panel {
  border: 1px solid rgba(229, 184, 75, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 20, 34, 0.96);
  box-shadow: var(--shadow);
  padding: 26px 34px;
}

.panel-heading {
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.panel-heading strong,
.panel-heading a {
  font-size: 13px;
}

.panel-heading a,
.section-topline a {
  color: var(--gold);
  font-weight: 800;
}

.class-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
}

.class-row + .class-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.class-row time {
  display: grid;
  place-items: center;
  min-height: 84px;
  border: 1px solid rgba(229, 184, 75, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.class-row time span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.class-row time strong {
  font-size: 32px;
}

.class-row h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.coach {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: 10px 8px 0 0;
  vertical-align: middle;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8a57a, #5b301e);
}

.coach-two {
  background: linear-gradient(135deg, #f0b68c, #7a3a53);
}

.coach-three {
  background: linear-gradient(135deg, #c99a78, #26364d);
}

.class-row a {
  border: 1px solid rgba(229, 184, 75, 0.42);
  border-radius: var(--radius);
  padding: 12px 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.blog-section {
  padding: 46px 0 34px;
}

.section-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-topline h2 {
  text-align: left;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  min-height: 228px;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(7, 17, 31, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(7, 17, 31, 0.12);
}

.blog-card::before {
  content: "";
  display: block;
  height: 92px;
  background-size: cover;
  background-position: center;
}

.journal-img::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    url("/images/planchored-hero-bg.png") 8% 76% / 210% auto;
}

.chess-img::before {
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.16), rgba(229, 184, 75, 0.1)),
    url("/assets/mind_analytics.png") center / cover;
}

.plan-img::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.32), rgba(229, 184, 75, 0.08)),
    url("/assets/annotation_diagram.png") center / cover;
}

.calm-img::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(7, 17, 31, 0.08)),
    url("/assets/analytics_chart.png") center / cover;
}

.blog-card span,
.blog-card h3,
.blog-card p {
  display: block;
  padding: 0 16px;
}

.blog-card span {
  margin-top: 16px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.32;
}

.blog-card p {
  color: #657189;
  font-size: 13px;
}

.trust-section {
  padding: 26px 0 36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.1);
  overflow: hidden;
}

.trust-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 20px 24px;
  background: #ffffff;
}

.trust-icon {
  grid-row: span 2;
}

.disclaimer {
  max-width: 780px;
  margin: 22px auto 0;
  color: #4a5870;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(229, 184, 75, 0.08), transparent 32%),
    linear-gradient(135deg, #07111f, #06101d);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.7fr);
  gap: clamp(34px, 6vw, 82px);
  padding: 42px 0 30px;
}

.footer-brand img {
  width: 205px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 290px;
  color: rgba(247, 248, 250, 0.74);
  line-height: 1.7;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-columns h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 14px;
}

.footer-columns a,
.footer-bottom {
  color: rgba(247, 248, 250, 0.72);
  font-size: 14px;
}

.footer-bottom {
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 34px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .hero-section {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero-text { max-width: 560px; }
  .hero-actions { justify-content: center; }
  .hero-points { justify-content: center; }

  .hero-visual {
    height: clamp(340px, 55vh, 480px);
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-session-panel {
    display: none;
  }

  .hero-card {
    animation: none !important;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 0;
  }

  .feature-grid article:nth-child(4) {
    border-left: 0;
  }

  .academy-section {
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 45%, #07111f 45%, #091626 100%);
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .section-shell,
  .academy-section,
  .trust-section,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .desktop-nav,
  .login-link {
    display: none;
  }

  .menu-button {
    display: inline-block;
  }

  .mobile-panel {
    position: fixed;
    inset: 82px 14px auto;
    z-index: 28;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-panel nav {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(229, 184, 75, 0.2);
    border-radius: var(--radius);
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .mobile-panel a {
    padding: 14px;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 800;
  }

  .blog-grid,
  .trust-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid article {
    min-height: 132px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 74px;
  }

  .brand img {
    width: 170px;
  }

  .nav-actions .button-primary {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .hero-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-visual {
    height: 340px;
  }

  .hero-card {
    padding: 10px 12px;
    font-size: 11px;
  }

  .hero-card-plan,
  .hero-card-cooldown {
    width: 160px;
  }

  .hero-card-analytics,
  .hero-card-locker {
    width: 155px;
  }

  .hc-header { font-size: 11px; }
  .hc-label { font-size: 10px; }
  .hc-val { font-size: 11px; }
  .hc-timer { font-size: 22px; }
  .hc-score-ring { width: 46px; height: 46px; }

  .button-large,
  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 14px;
  }

  .feature-grid,
  .blog-grid,
  .trust-grid,
  .class-row,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .feature-grid article:nth-child(4) {
    min-height: auto;
    border-left: 0;
    padding: 24px 10px;
  }

  .feature-grid article + article {
    border-top: 1px solid rgba(7, 17, 31, 0.1);
  }

  .academy-section {
    padding-top: 26px;
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 43%, #07111f 43%, #091626 100%);
  }

  .academy-copy {
    padding: 24px;
  }

  .class-panel {
    padding: 22px;
  }

  .class-row {
    align-items: start;
  }

  .class-row a {
    text-align: center;
  }

  .section-topline,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
