﻿:root {
  --bg: #040a12;
  --bg-deep: #02070d;
  --panel: #07111d;
  --panel-soft: #0a1522;
  --panel-strong: #0d1a2a;
  --line: #1b2a3b;
  --line-bright: #2d3f55;
  --text: #f7f8fb;
  --muted: #c1cbd8;
  --soft: #9aa6b5;
  --orange: #ff6a00;
  --orange-2: #ff8a24;
  --green: #159434;
  --green-2: #1ab045;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  --radius: 8px;
  --radius-lg: 10px;
  --container: 1390px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0 12%, rgba(255, 106, 0, .12), transparent 20rem),
    radial-gradient(circle at 88% 18%, rgba(7, 38, 70, .58), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 18;
  border: 0;
  background: rgba(2, 7, 13, .68);
  backdrop-filter: blur(4px);
}

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

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

.shell {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}

.section-pad {
  padding: 58px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 8, 14, .92);
  border-bottom: 1px solid rgba(44, 62, 83, .62);
  backdrop-filter: blur(14px);
}

.header-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #17396a, #0a1b34 68%, #061124);
  border: 1px solid #1e3453;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 700;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #1fb7dd;
  border: 3px solid var(--bg-deep);
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1;
  letter-spacing: .02em;
}

.brand-copy small {
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
  font-size: 15px;
}

.main-nav a {
  position: relative;
  padding: 29px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  background: transparent;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  background: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-pill {
  display: grid;
  place-content: center;
  min-height: 52px;
  min-width: 148px;
  padding: 9px 18px;
  border-radius: 999px;
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
}

.support-pill strong {
  font-size: 14px;
}

.support-phone {
  background: linear-gradient(135deg, #ff7a12, #e95000);
}

.support-whatsapp {
  background: linear-gradient(135deg, #158a32, #076f23);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 28px;
  padding-bottom: 18px;
}

.dot-field {
  position: absolute;
  width: 280px;
  height: 280px;
  opacity: .42;
  background-image: radial-gradient(rgba(255, 106, 0, .7) 1px, transparent 1px);
  background-size: 10px 10px;
  mask-image: radial-gradient(circle, #000 0, transparent 70%);
}

.dot-field-left {
  left: -110px;
  top: 8px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 670px);
  column-gap: 60px;
  row-gap: 16px;
  align-items: start;
}

.hero-text-first .hero-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  row-gap: 18px;
}

.hero-text-first .hero-copy,
.hero-text-first h1,
.hero-text-first .hero-lead {
  max-width: 760px;
}

.hero-text-first .hero-proof-panel {
  max-width: 640px;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 600px;
  min-width: 0;
}

.hero-proof-panel {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.hero-trust-bar {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 106, 0, .55);
  border-radius: 999px;
  color: var(--orange-2);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 580px;
  margin-bottom: 18px;
  font-size: clamp(44px, 3.2vw, 48px);
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy h1 span {
  display: block;
}

.mobile-only-line {
  display: none;
}

.mobile-only-break {
  display: none;
}

.desktop-continuation {
  display: inline;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 560px;
  color: #d9e0e8;
  margin-bottom: 24px;
  font-size: 18px;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-bright);
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  color: var(--text);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.hero-copy .btn-primary {
  width: 205px;
  height: 44px;
}

.hero-copy .btn-outline {
  width: 175px;
  height: 44px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange-2), #f05a00);
  box-shadow: 0 18px 48px rgba(255, 106, 0, .22);
}

.btn-outline {
  background: rgba(10, 18, 29, .62);
}

.btn-green {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green-2), #067321);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 195px);
  gap: 12px;
  margin-top: 0;
}

.proof-grid article,
.feature-card,
.program-card,
.trainer-card,
.founder-cards article,
.stories-panel,
.assessment-grid,
.final-cta,
.footer-grid,
.trust-strip {
  background: linear-gradient(180deg, rgba(12, 23, 36, .88), rgba(6, 14, 24, .95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.proof-grid article {
  width: 195px;
  height: 80px;
  min-height: 80px;
  padding: 14px 18px;
}

.icon,
.feature-icon,
.founder-cards span {
  color: var(--orange);
  font-size: 24px;
}

.proof-grid strong {
  display: block;
  color: var(--orange-2);
  font-size: 24px;
  line-height: 1;
}

.proof-grid small,
.micro-strip span {
  color: #d7dce4;
}

.micro-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.micro-strip span {
  padding: 6px 9px;
  border: 1px solid #142235;
  border-radius: 6px;
  background: rgba(7, 15, 25, .7);
  font-size: 11px;
}

.hero-figure {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
  margin: 0;
  justify-self: center;
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
  height: auto;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-figure img {
  width: 100%;
  height: auto;
  max-height: 560px;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  object-position: center center;
  background: #07111f;
}

.hero-figure picture,
.founder-photo picture,
.about-founder-visual picture {
  display: block;
  width: 100%;
  background: #07111f;
}

.hero-figure figcaption {
  position: static;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 8px;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(5, 11, 20, .9);
  backdrop-filter: blur(12px);
}

.hero-figure figcaption span,
.founder-photo figcaption span {
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-figure figcaption strong {
  display: block;
  font-size: 26px;
}

.hero-figure figcaption small {
  color: var(--muted);
}

.hero-figure figcaption p {
  margin: 0;
  padding-left: 0;
  border-left: 0;
  font-size: 20px;
  font-weight: 900;
}

.hero-figure b {
  color: var(--orange-2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1390px, calc(100% - 96px));
  min-height: 72px;
  margin-top: 0;
  padding: 20px 24px;
}

.trust-strip span {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  font-weight: 900;
}

.trust-strip span:last-child {
  border-right: 0;
}

.trust-strip b {
  color: var(--orange);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 30px;
}

.feature-card p,
.founder-copy p,
.trainer-card p,
.stories-panel p,
.assessment-grid p,
.final-cta p,
.footer-brand p {
  color: var(--muted);
}

.founder-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.founder-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #07111f;
}

.founder-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  object-position: center center;
  background: #07111f;
}

.founder-photo figcaption {
  position: static;
  padding: 17px 22px;
  border-radius: 0;
  background: rgba(6, 12, 22, .93);
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.founder-photo figcaption strong {
  display: block;
  font-size: 20px;
}

.founder-copy > strong {
  display: block;
  margin-bottom: 16px;
  color: var(--orange-2);
}

.founder-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.founder-cards article {
  padding: 22px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  position: relative;
  min-height: 236px;
  padding: 28px;
}

.program-card .program-index {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #111;
  font-weight: 900;
}

.program-card h3 {
  max-width: 78%;
  margin-bottom: 10px;
}

.program-card p {
  color: var(--muted);
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: #dbe2ea;
  font-size: 13px;
}

.program-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trainer-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.trainer-card img {
  width: 100%;
  height: 320;
  object-fit: contain;
  object-position: center top;
  aspect-ratio: 4 / 3;
}

.trainer-card div {
  flex: 1;
  padding: 24px;
}

.trainer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, .42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .44);
}

.trainer-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-2);
}

.trainer-card span {
  display: inline-flex;
  margin: 4px 6px 0 0;
  padding: 6px 9px;
  border: 1px solid rgba(255, 106, 0, .42);
  border-radius: 999px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 800;
}

.stories-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
  padding: 34px;
}

blockquote {
  margin: 0;
  padding: 24px 28px;
  border-left: 2px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(4, 10, 18, .72);
}

blockquote span {
  color: var(--orange);
  font-size: 58px;
  line-height: .7;
  font-weight: 900;
}

blockquote p {
  color: var(--text);
  font-size: 24px;
}

blockquote cite {
  color: var(--orange-2);
  font-style: normal;
  font-weight: 900;
}

.assessment-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
}

.assessment-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.assessment-grid img {
  height: 430px;
  width: 100%;
  object-fit: contain;
  object-position: center center;
  background: #07111f;
}

.assessment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.assessment-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 15, 25, .78);
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
  padding: 26px 30px;
}

.final-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 106, 0, .12);
  border: 1px solid rgba(255, 106, 0, .32);
  color: var(--orange);
  font-size: 30px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030910;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .85fr .95fr 1.2fr;
  gap: 42px;
  padding: 36px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: var(--orange-2);
  font-size: 16px;
}

.site-footer nav,
.site-footer address {
  display: grid;
  align-content: start;
  gap: 7px;
  font-style: normal;
}

.site-footer a {
  color: #d8e1ea;
}

.green-text {
  color: #3bd765 !important;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 24px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 34px;
}

@media (max-width: 1180px) {
  .shell {
    width: min(100% - 48px, var(--container));
  }

  .header-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 24px;
    right: 24px;
    z-index: 21;
    display: none;
    background: #07111f;
    border: 1px solid var(--line);
  }

  .main-nav {
    top: 86px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    top: 382px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
    border-top: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .nav-open .header-actions {
    display: grid;
  }

  .nav-open .nav-overlay {
    display: block;
  }

  .hero-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-figure,
  .hero-proof-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-figure {
    width: min(430px, 100%);
    height: auto;
    justify-self: center;
  }

  .hero-figure img {
    height: auto;
    max-height: 560px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip span {
    justify-content: flex-start;
    border: 0;
    padding: 12px;
  }

  .program-grid,
  .trainer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1180px) {
  .main-nav,
  .header-actions {
    left: 16px;
    right: auto;
    width: min(360px, calc(100vw - 32px));
  }

  .main-nav {
    top: 76px;
  }

  .header-actions {
    top: 372px;
  }

  .header-actions .support-pill {
    min-width: 0;
  }
}

@media (max-width: 540px) {
  .main-nav,
  .header-actions {
    left: 12px;
    width: calc(100vw - 24px);
  }

  .header-actions {
    top: 372px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section-pad {
    padding: 34px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .brand-copy small {
    font-size: 11px;
  }

  .proof-grid,
  .why-grid,
  .founder-cards,
  .program-grid,
  .trainer-grid,
  .stories-panel,
  .assessment-grid,
  .footer-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-figure figcaption {
    position: static;
    grid-template-columns: 1fr;
    margin: 0;
    border-width: 1px 0 0;
    border-radius: 0;
    width: auto;
    height: auto;
  }

  .hero-figure figcaption p {
    padding-left: 0;
    border-left: 0;
  }

  .proof-grid article {
    width: auto;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    display: grid;
  }

  .assessment-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(362px, calc(100% - 28px));
    margin-left: 14px;
    margin-right: auto;
  }

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

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  h1 {
    font-size: 33px;
    line-height: 1.08;
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    row-gap: 22px;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 6px 11px;
    font-size: 11px;
  }

  .hero-copy h1 {
    margin-bottom: 16px;
  }

  .hero-copy h1 span {
    display: block;
  }

  .hero-copy h1 .desktop-continuation {
    display: none;
  }

  .hero-copy h1 .mobile-only-line {
    display: inline;
  }

  .hero-copy h1 .mobile-only-break {
    display: block;
  }

  .hero-copy .button-row {
    margin-top: 20px;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .button-row {
    display: grid;
  }

  .hero-copy .btn-primary,
  .hero-copy .btn-outline {
    width: 100%;
    height: 52px;
  }

  .founder-photo img,
  .assessment-grid img {
    height: 330px;
  }

  .hero-figure img {
    height: auto;
    max-height: 452px;
  }

  .hero-figure figcaption {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .hero-figure figcaption strong {
    font-size: 20px;
  }

  .hero-figure figcaption p {
    font-size: 16px;
  }

  .proof-grid article {
    min-height: 120px;
  }

  .founder-photo {
    min-height: 360px;
  }

  .feature-card,
  .program-card,
  .assessment-grid,
  .stories-panel,
  .final-cta {
    padding: 20px;
  }
}

/* About page */
.about-page .about-hero {
  position: relative;
  overflow: hidden;
  padding-top: 34px;
  padding-bottom: 34px;
}

.about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(0, 610px);
  gap: 64px;
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 610px;
  margin-bottom: 18px;
  font-size: clamp(42px, 3.4vw, 58px);
  line-height: 1.08;
}

.about-lead {
  max-width: 570px;
  margin-bottom: 24px;
  color: #d9e0e8;
  font-size: 18px;
}

.about-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-hero-points span {
  padding: 7px 10px;
  border: 1px solid #142235;
  border-radius: 6px;
  background: rgba(7, 15, 25, .7);
  color: #d7dce4;
  font-size: 12px;
  font-weight: 800;
}

.about-founder-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about-founder-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  object-position: center center;
  background: #07111f;
}

.about-founder-visual figcaption {
  position: static;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(5, 11, 20, .9);
  backdrop-filter: blur(12px);
}

.about-founder-visual figcaption span {
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-founder-visual figcaption strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}

.about-founder-visual figcaption small {
  color: var(--muted);
}

.about-intro .section-heading p {
  max-width: 820px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 18px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.about-mini-card,
.method-grid article,
.assessment-cta-card {
  background: linear-gradient(180deg, rgba(12, 23, 36, .88), rgba(6, 14, 24, .95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-mini-card {
  min-height: 190px;
  padding: 24px 20px;
}

.about-mini-card span,
.method-grid span,
.about-page .feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(255, 106, 0, .12);
  border: 1px solid rgba(255, 106, 0, .32);
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
}

.about-mini-card span svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-mini-card h3,
.method-grid h3 {
  margin-bottom: 10px;
}

.about-mini-card p,
.method-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}

.method-grid::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, .5), transparent);
  pointer-events: none;
}

.method-grid article {
  min-height: 250px;
  padding: 24px 20px;
  position: relative;
  z-index: 1;
}

.assessment-cta-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
}

.assessment-cta-card .eyebrow {
  margin-bottom: 10px;
}

.assessment-cta-card h2 {
  margin-bottom: 10px;
}

.assessment-cta-card p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .about-hero-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-founder-visual img {
    height: auto;
  }

  .audience-grid,
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .about-page .about-hero {
    padding-top: 24px;
  }

  .about-hero-grid {
    gap: 24px;
  }

  .about-hero-copy h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .about-hero-copy .button-row,
  .assessment-cta-card .button-row {
    display: grid;
    width: 100%;
  }

  .about-hero-copy .btn,
  .assessment-cta-card .btn {
    width: 100%;
    min-height: 52px;
  }

  .audience-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid::before {
    top: 28px;
    bottom: 28px;
    left: 41px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(255, 106, 0, .5), transparent);
  }

  .method-grid article {
    min-height: 0;
    padding-left: 78px;
  }

  .method-grid span {
    position: absolute;
    top: 24px;
    left: 20px;
    margin-bottom: 0;
  }

  .about-founder-visual,
  .about-founder-visual img {
    min-height: 0;
  }

  .about-founder-visual img {
    height: auto;
  }

  .about-founder-visual figcaption {
    padding: 12px 14px;
  }

  .about-founder-visual figcaption strong {
    font-size: 22px;
  }

  .about-mini-card,
  .method-grid article,
  .assessment-cta-card {
    padding: 20px;
  }
}

/* =========================================================================
   FLUNEXA ADMIN PANEL V2 STYLES (SCOPED)
   ========================================================================= */

.admin-body {
    --admin-bg: #030B17;
    --admin-panel: #0B1C33;
    --admin-sidebar: #051224;
    --admin-border: #1A2E4B;
    --admin-text: #E2E8F0;
    --admin-text-muted: #94A3B8;
    --admin-primary: #1E60F2;
    --admin-primary-hover: #174DC4;
    --admin-danger: #ef4444;
    
    background-color: var(--admin-bg);
    background-image: none;
    color: var(--admin-text);
    font-family: Inter, system-ui, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* --- LOGIN PAGE --- */
.admin-body .admin-login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: radial-gradient(circle at top, #0A1C36, #030B17 80%);
}

.admin-body .admin-login-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    position: absolute;
    top: 30px;
    left: 40px;
}

.admin-body .admin-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0B254E;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: bold;
    border: 1px solid var(--admin-primary);
}

.admin-body .admin-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.admin-body .admin-brand-text strong { font-size: 18px; letter-spacing: 0.5px; }
.admin-body .admin-brand-text small { font-size: 9px; color: var(--admin-text-muted); letter-spacing: 1px; color:#ff8a24; }

.admin-body .admin-login-box {
    background: rgba(11, 28, 51, 0.6);
    border: 1px solid var(--admin-border);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.admin-body .admin-login-icon {
    margin-bottom: 15px;
}

.admin-body .admin-login-box h1 {
    font-size: 24px;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.admin-body .admin-divider {
    width: 100%;
    border: 0;
    height: 1px;
    background: var(--admin-border);
    margin-bottom: 30px;
    position: relative;
}

.admin-body .admin-divider::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 5px;
    background: var(--admin-primary);
    border-radius: 4px;
}

.admin-body .admin-input-group {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.admin-body .admin-input-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--admin-text);
}

.admin-body .admin-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.admin-body .admin-input-wrap svg {
    position: absolute;
    left: 14px;
    color: var(--admin-text-muted);
}

.admin-body .admin-input-wrap input {
    width: 100%;
    background: var(--admin-bg);
    border: 1px solid var(--admin-border);
    color: #fff;
    padding: 12px 14px 12px 42px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}

.admin-body .admin-input-wrap input:focus { border-color: var(--admin-primary); }

.admin-body .admin-pwd-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--admin-text-muted);
    cursor: pointer;
    padding: 0;
    display: flex;
}

.admin-body .admin-btn-primary {
    width: 100%;
    background: var(--admin-primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.admin-body .admin-btn-primary:hover { background: var(--admin-primary-hover); }

.admin-body .admin-status-error {
    margin-top: 15px;
    color: var(--admin-danger);
    font-size: 13px;
    text-align: center;
    width: 100%;
}

.admin-body .admin-login-footer, 
.admin-body .admin-dashboard-footer {
    margin-top: 40px;
    font-size: 12px;
    color: var(--admin-text-muted);
    text-align: center;
}

/* --- DASHBOARD LAYOUT --- */
.admin-body .admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-body .admin-sidebar {
    width: 260px;
    background: var(--admin-sidebar);
    border-right: 1px solid var(--admin-border);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.admin-body .admin-brand-area {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--admin-border);
}

.admin-body .admin-nav {
    padding: 20px 0;
    overflow-y: auto;
    flex-grow: 1;
}

.admin-body .admin-nav-heading {
    font-size: 11px;
    font-weight: 700;
    color: var(--admin-text-muted);
    padding: 15px 24px 8px;
    margin: 0;
    letter-spacing: 0.5px;
}

.admin-body .admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--admin-text);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.admin-body .admin-nav a svg { opacity: 0.7; }
.admin-body .admin-nav a:hover { background: rgba(255,255,255,0.03); }

.admin-body .admin-nav a.active {
    background: var(--admin-primary);
    color: #fff;
    font-weight: 600;
}
.admin-body .admin-nav a.active svg { opacity: 1; }

.admin-body .admin-nav a.admin-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.admin-body .admin-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-body .admin-topbar {
    height: 70px;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    align-items: center;
    padding: 0 30px;
    background: var(--admin-bg);
}

.admin-body .admin-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.admin-body .admin-spacer { flex-grow: 1; }

.admin-body .admin-user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-body .admin-greeting { font-size: 14px; }

.admin-body .admin-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--admin-panel);
    border: 1px solid var(--admin-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--admin-primary);
}

.admin-body .admin-btn-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--admin-danger);
    color: var(--admin-danger);
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s;
}
.admin-body .admin-btn-logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

.admin-body .admin-content-pad {
    padding: 30px;
    overflow-y: auto;
}

.admin-body .admin-page-header { margin-bottom: 24px; }
.admin-body .admin-page-header h2 { margin: 0 0 5px; font-size: 22px; font-weight: 600; }
.admin-body .admin-page-header p { margin: 0; color: var(--admin-text-muted); font-size: 14px; }

/* --- STATS CARDS --- */
.admin-body .admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-body .admin-stat-card {
    background: var(--admin-panel);
    border: 1px solid var(--admin-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-body .admin-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-body .admin-stat-info h3 { margin: 0; font-size: 24px; font-weight: 700; }
.admin-body .admin-stat-info p { margin: 4px 0 0; font-size: 12px; color: var(--admin-text-muted); }

/* --- TABLES --- */
.admin-body .admin-panel-box {
    background: var(--admin-panel);
    border: 1px solid var(--admin-border);
    border-radius: 12px;
    overflow: hidden;
}

.admin-body .admin-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-body .admin-panel-header h3 { margin: 0; font-size: 16px; font-weight: 600; }

.admin-body .admin-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--admin-border);
    color: var(--admin-text);
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}
.admin-body .admin-btn-outline:hover { background: rgba(255,255,255,0.05); }

.admin-body .admin-table-responsive {
    overflow-x: auto;
}

.admin-body .admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-body .admin-table th {
    padding: 14px 24px;
    background: rgba(0,0,0,0.15);
    color: var(--admin-text-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--admin-border);
}

.admin-body .admin-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(26, 46, 75, 0.4);
    font-size: 13px;
    color: #cbd5e1;
}

.admin-body .admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.admin-body .admin-table a { color: var(--admin-primary); text-decoration: none; }
.admin-body .admin-table a:hover { text-decoration: underline; }

.admin-body .admin-badge {
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .admin-body .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .admin-body .admin-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 50;
        transform: translateX(-100%);
    }
    .admin-body .admin-sidebar.active { transform: translateX(0); }
    .admin-body .admin-mobile-toggle { display: block; }
    .admin-body .admin-greeting { display: none; }
    .admin-body .admin-stats-grid { grid-template-columns: 1fr; }
    .admin-body .admin-login-header { position: static; justify-content: center; margin-top: 20px; }
    body:not(.about-page) .founder .founder-photo { display: none !important; }
}

.admin-body .admin-blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--admin-border);
}

.admin-body .admin-blog-toolbar > div {
  display: grid;
  gap: 4px;
}

.admin-body .admin-blog-list-search {
  display: grid;
  width: min(360px, 100%);
  gap: 5px;
}

.admin-body .admin-blog-list-search input {
  width: 100%;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid #243a57;
  border-radius: 6px;
  background: #09182a;
  color: #f4f7fb;
  font: inherit;
}

.admin-body .admin-blog-toolbar span,
.admin-body .admin-blog-slug {
  display: block;
  color: var(--admin-text-muted);
  font-size: 11px;
}

.admin-body .admin-blog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.admin-body .admin-blog-actions form {
  margin: 0;
}

.admin-body .admin-blog-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff8c6b;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.admin-body .admin-lead-status-form select {
  min-width: 150px;
  padding: 8px 10px;
  border: 1px solid #243a57;
  border-radius: 6px;
  background: #09182a;
  color: #f4f7fb;
}

.admin-body .admin-blog-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.admin-body .admin-blog-form label {
  display: grid;
  gap: 7px;
}

.admin-body .admin-blog-form label > span,
.admin-body .admin-blog-faqs legend {
  color: #cdd8e6;
  font-size: 12px;
  font-weight: 700;
}

.admin-body .admin-blog-form input,
.admin-body .admin-blog-form select,
.admin-body .admin-blog-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #243a57;
  border-radius: 6px;
  background: #09182a;
  color: #f4f7fb;
  font: inherit;
}

.admin-body .admin-blog-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.admin-body .admin-blog-form input:focus,
.admin-body .admin-blog-form select:focus,
.admin-body .admin-blog-form textarea:focus {
  outline: 2px solid rgba(60, 130, 246, .25);
  border-color: var(--admin-primary);
}

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

.admin-body .admin-blog-sections {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-body .admin-blog-faqs,
.admin-body .admin-blog-seo {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid #243a57;
  border-radius: 6px;
  background: rgba(7, 18, 32, .55);
}

.admin-body .admin-blog-faqs > div {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 12px;
}

.admin-body .admin-blog-seo h3 {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  font-size: 15px;
}

.admin-body [data-seo-score] {
  color: var(--admin-text-muted);
  font-size: 12px;
}

.admin-body [data-seo-score][data-score="excellent"] { color: #3ce196; }
.admin-body [data-seo-score][data-score="good"] { color: #eec231; }
.admin-body [data-seo-score][data-score="poor"] { color: #ff8c6b; }

.admin-body .admin-blog-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-body .admin-blog-form-actions .admin-btn-primary,
.admin-body .admin-blog-form-actions .admin-btn-outline,
.admin-body .admin-blog-toolbar .admin-btn-primary {
  width: auto;
  min-width: 130px;
  padding: 10px 16px;
  text-align: center;
}

.admin-body .admin-blog-setup,
.admin-body .admin-blog-preview,
.admin-body .admin-blog-notice {
  margin: 22px;
  padding: 20px;
}

.admin-body .admin-blog-setup {
  border: 1px solid #4d3f16;
  border-radius: 6px;
  background: #211c0b;
}

.admin-body .admin-blog-preview {
  border: 1px solid #243a57;
  border-radius: 6px;
  background: #09182a;
}

.admin-body .admin-blog-preview h1 {
  margin: 14px 0;
  font-size: 32px;
}

.admin-body .admin-table-responsive:has(.admin-blog-form),
.admin-body .admin-table-responsive:has(.admin-blog-preview) {
  overflow: visible;
}

@media (max-width: 900px) {
  .admin-body .admin-blog-form-grid,
  .admin-body .admin-blog-sections,
  .admin-body .admin-blog-faqs > div {
    grid-template-columns: 1fr;
  }

  .admin-body .admin-blog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}


/* Final UX polish: subtle readability, hover, trust alignment, and compact controls. */
.btn:hover,
.text-link:hover,
.library-filter:hover,
.story-filter:hover {
  filter: brightness(1.08);
}
.btn:focus-visible,
.library-filter:focus-visible,
.story-filter:focus-visible,
.text-link:focus-visible {
  outline: 2px solid rgba(255, 106, 0, .55);
  outline-offset: 3px;
}
.hero-proof-panel,
.trust-strip {
  align-items: center;
}

.free-updates-cta,
.library-registration-panel {
  border: 1px solid rgba(255, 106, 0, .35);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at left, rgba(255, 106, 0, .13), transparent 22rem),
    rgba(9, 21, 34, .9);
  box-shadow: var(--shadow);
}

.free-updates-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-block: 28px;
  padding: 30px 34px;
}

.free-updates-cta h2 {
  margin: 6px 0 8px;
  font-size: clamp(24px, 3vw, 36px);
}

.free-updates-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.library-registration-modal[hidden] {
  display: none;
}

.library-registration-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 9, 16, .82);
}

.library-registration-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(90vh, 780px);
  overflow: auto;
  padding: 30px;
}

.library-registration-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0c1c2f;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

.library-registration-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.library-registration-form label {
  display: grid;
  gap: 7px;
}

.library-registration-form label span,
.contact-updates-optin span {
  color: #cfd9e5;
  font-size: 12px;
  font-weight: 800;
}

.library-registration-form input,
.library-registration-form select {
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #29405b;
  border-radius: 6px;
  background: #0a1828;
  color: var(--text);
  font: inherit;
}

.library-registration-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-updates-optin {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-updates-optin input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.hero-desktop-visual {
  display: none;
}

@media (min-width: 992px) {
  .shell,
  .trust-strip {
    width: min(92vw, 1240px);
    max-width: 1240px;
    margin-inline: auto;
  }

  .hero {
    padding-top: 86px;
    padding-bottom: 58px;
  }

  .hero-text-first .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
    column-gap: clamp(34px, 4vw, 58px);
    row-gap: 22px;
    align-items: center;
    justify-content: stretch;
  }

  .hero-text-first .hero-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .hero-text-first h1 {
    max-width: 760px;
    font-size: clamp(50px, 4vw, 66px);
    line-height: 1.05;
    letter-spacing: -.03em;
  }

  .hero-text-first .hero-lead {
    max-width: 700px;
    font-size: 19px;
    line-height: 1.7;
  }

  .hero-desktop-visual {
    display: flex;
    grid-column: 2;
    grid-row: 1 / span 2;
    width: min(430px, 100%);
    justify-self: end;
  }

  .hero-desktop-visual img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    object-position: center center;
  }

  .hero-text-first .hero-proof-panel {
    grid-column: 1;
    grid-row: 2;
    max-width: 760px;
  }

  .hero-text-first .proof-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    width: 100%;
  }

  .hero-text-first .proof-grid article {
    width: auto;
  }

  .hero-text-first .micro-strip {
    max-width: 760px;
  }

  .trust-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding-inline: clamp(24px, 3vw, 46px);
  }

  .section-heading.centered {
    width: min(92vw, 1120px);
    max-width: 1120px;
    margin-inline: auto;
  }

  .section-heading.centered h2 {
    max-width: 1040px;
    margin-inline: auto;
  }

  .section-heading.centered p {
    max-width: 920px;
    margin-inline: auto;
  }

  .founder .founder-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(92vw, 1240px);
    max-width: 1240px;
    margin-inline: auto;
  }

  .founder .founder-photo {
    display: none;
  }

  .founder .founder-copy {
    max-width: 100%;
    padding: clamp(34px, 3.4vw, 54px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(12, 23, 36, .86), rgba(6, 14, 24, .94));
    box-shadow: var(--shadow);
  }

  .founder .founder-copy > p {
    max-width: 1000px;
    font-size: 17px;
    line-height: 1.75;
  }

  .founder .founder-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
  }

  .founder .founder-cards article,
  .why .feature-card,
  .about-mini-card,
  .method-grid article {
    min-height: 190px;
  }

  .why-grid,
  .trainer-grid,
  .program-grid {
    width: min(92vw, 1240px);
    max-width: 1240px;
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 22px;
  }

  .feature-card,
  .trainer-card,
  .program-card {
    padding: clamp(28px, 2.4vw, 38px);
  }

  .stories-panel,
  .assessment-grid,
  .free-updates-cta,
  .final-cta {
    width: min(92vw, 1240px);
    max-width: 1240px;
  }

  .about-hero-grid,
  .about-story-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: clamp(34px, 4vw, 58px);
    width: min(92vw, 1240px);
    max-width: 1240px;
    margin-inline: auto;
  }

  .about-intro .section-heading,
  .about-why .section-heading,
  .methodology .section-heading {
    width: min(92vw, 1120px);
    max-width: 1120px;
  }

  .about-intro .section-heading p {
    max-width: 920px;
  }

  .audience-grid {
    width: min(92vw, 1240px);
    max-width: 1240px;
    margin-inline: auto;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 18px;
  }

  .method-grid {
    width: min(92vw, 1240px);
    max-width: 1240px;
    margin-inline: auto;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 18px;
  }

  .about-mini-card,
  .method-grid article {
    padding: clamp(24px, 2vw, 32px);
  }
}

@media (min-width: 1024px) {
  .hero-text-first .proof-grid {
    display: none;
  }

  .hero-text-first .hero-trust-bar {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
    width: fit-content;
    max-width: 100%;
    padding: 13px 18px;
    border: 1px solid rgba(255, 106, 0, .32);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(12, 23, 36, .92), rgba(6, 14, 24, .96));
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
    color: #f2f5f9;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.35;
  }

  .hero-text-first .hero-trust-bar i {
    color: var(--orange-2);
    font-style: normal;
    font-size: 18px;
    line-height: 1;
  }
}

@media (max-width: 760px) {
  .free-updates-cta {
    grid-template-columns: 1fr;
  }

  .free-updates-cta .btn {
    width: 100%;
  }
}

