:root {
  --ink: #020502;
  --ink-2: #071107;
  --paper: #f7fbf5;
  --muted: #657468;
  --white: #ffffff;
  --aqua: #25c536;
  --aqua-dark: #1aa52a;
  --orange: #25c536;
  --orange-dark: #16851f;
  --lime: #83ff6f;
  --line: rgba(2, 15, 3, 0.12);
  --soft-shadow: 0 22px 70px rgba(6, 26, 8, 0.16);
  --hard-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --shell: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(2, 5, 2, 0.72);
  border: 1px solid rgba(37, 197, 54, 0.28);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  left: 50%;
  padding: 14px 22px;
  position: fixed;
  top: 20px;
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  width: var(--shell);
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(2, 5, 2, 0.94);
  border-color: rgba(37, 197, 54, 0.34);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  background: #000000;
  border-radius: 50%;
  border: 1px solid rgba(131, 255, 111, 0.58);
  box-shadow: 0 0 18px rgba(37, 197, 54, 0.24);
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.88;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: var(--lime);
  opacity: 1;
}

.lang-link {
  border: 1px solid rgba(131, 255, 111, 0.36);
  border-radius: 999px;
  color: var(--lime);
  padding: 9px 11px;
}

.nav-cta {
  background: var(--orange);
  border-radius: 999px;
  color: var(--white);
  padding: 10px 16px;
}

.nav a.nav-cta:hover {
  color: var(--white);
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.hero {
  min-height: 88vh;
  overflow: hidden;
  padding: 140px 0 72px;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(2, 5, 2, 0.92), rgba(37, 197, 54, 0.58)),
    url("https://tdmmanagement.com/wp-content/themes/tdm-theme/assets/images/stellaTestPoster.png") center / cover;
  inset: 0;
  position: absolute;
}

.hero-bg::after {
  background: radial-gradient(circle at 74% 28%, rgba(131, 255, 111, 0.26), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-inner,
.section-shell {
  margin: 0 auto;
  position: relative;
  width: var(--shell);
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.7fr);
  z-index: 1;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-light {
  background: var(--paper);
}

.eyebrow,
.section-kicker {
  color: var(--aqua-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

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

h1 {
  font-size: clamp(3.6rem, 6.2vw, 6rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 28px;
  max-width: 640px;
}

.hero-script {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.hero h1 span {
  display: block;
}

.hero-tight {
  font-size: clamp(2.9rem, 5.5vw, 5.15rem);
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.75rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 0;
}

h3 {
  font-size: 1.24rem;
  letter-spacing: 0;
  line-height: 1.18;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 680px;
}

.hero-actions,
.split-heading {
  align-items: center;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-primary {
  background: var(--orange);
  box-shadow: 0 18px 40px rgba(37, 197, 54, 0.28);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  min-height: 520px;
  position: relative;
}

.hero-portrait {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
  box-shadow: var(--hard-shadow);
  height: min(66vh, 620px);
  margin-left: auto;
  object-fit: cover;
  width: min(420px, 100%);
}

.hero-metric,
.floating-note {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  padding: 18px 20px;
  position: absolute;
}

.hero-metric span,
.floating-note span {
  color: var(--muted);
  display: block;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-metric strong,
.floating-note strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-top: 6px;
}

.metric-top {
  right: 280px;
  top: 64px;
}

.metric-bottom {
  bottom: 54px;
  right: 0;
}

.section {
  padding: 104px 0;
  scroll-margin-top: 112px;
}

.press-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.press-band .section-shell {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 180px 1fr;
}

.press-band .section-kicker {
  margin-bottom: 0;
}

.press-logos {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.press-logos span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  font-weight: 900;
  min-height: 52px;
  padding: 14px 10px;
  text-align: center;
}

.split-heading {
  justify-content: space-between;
  margin-bottom: 52px;
}

.split-heading > * {
  max-width: 600px;
}

.split-heading > p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section-dark .split-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-card {
  border-radius: var(--radius);
  overflow: hidden;
  padding: 20px;
}

.comparison-card img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  margin-bottom: 24px;
  object-fit: cover;
  width: 100%;
}

.highlight-card img {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(131, 255, 111, 0.2);
  box-shadow: 0 20px 52px rgba(37, 197, 54, 0.16);
}

.muted-card img {
  background: rgba(7, 21, 28, 0.04);
  border: 1px solid rgba(7, 21, 28, 0.08);
}

.muted-card {
  background: #eff6ef;
  border: 1px solid var(--line);
}

.highlight-card {
  background: var(--ink);
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  align-items: center;
  display: flex;
  gap: 12px;
}

.check-list li::before {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 0.86rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.check-list.negative li::before {
  background: rgba(242, 74, 58, 0.12);
  color: #bf2d22;
  content: "\00d7";
}

.check-list.positive li::before {
  background: var(--lime);
  color: var(--ink);
  content: "\2713";
}

.work-layout {
  align-items: start;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
}

.work-visual {
  position: sticky;
  top: 120px;
}

.work-visual img {
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  box-shadow: var(--hard-shadow);
  object-fit: cover;
  width: 100%;
}

.floating-note {
  bottom: 32px;
  left: 24px;
  max-width: calc(100% - 48px);
}

.floating-note strong {
  font-size: 1.05rem;
  line-height: 1.22;
}

.work-list h2 {
  margin-bottom: 36px;
}

.work-intro {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  margin-bottom: 12px;
  max-width: 680px;
}

.work-item {
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 22px;
  grid-template-columns: 52px 1fr;
  padding: 26px 0;
}

.work-item span {
  color: var(--aqua);
  font-weight: 900;
}

.work-item p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

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

.service-card,
.process-steps article,
.testimonial-card,
.case-study,
.calc-panel,
.calc-results,
.apply-form,
.faq-item {
  border-radius: var(--radius);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 260px;
  padding: 28px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  border-color: rgba(37, 197, 54, 0.45);
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.service-card svg {
  color: var(--aqua-dark);
  height: 34px;
  margin-bottom: 28px;
  width: 34px;
}

.service-card p,
.process-steps p,
.traffic-grid p,
.academy-grid p,
.case-study p,
.referral-layout p,
.faq-item p,
.apply-layout > div p,
.site-footer p {
  color: var(--muted);
}

.process-section {
  background: #edf8ec;
}

.traffic-section {
  background:
    linear-gradient(180deg, rgba(2, 5, 2, 0.9), rgba(2, 5, 2, 0.96)),
    url("https://tdmmanagement.com/wp-content/themes/tdm-theme/assets/images/Becca-Creator-Polaroid.png") center / cover;
  color: var(--white);
}

.traffic-section .split-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

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

.traffic-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(131, 255, 111, 0.2);
  border-radius: var(--radius);
  min-height: 260px;
  padding: 28px;
}

.traffic-grid span {
  color: var(--lime);
  display: block;
  font-weight: 950;
  margin-bottom: 34px;
}

.traffic-grid h3 {
  color: var(--white);
}

.traffic-grid p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  gap: 46px;
  grid-template-columns: 0.72fr 1fr;
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-steps article {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 42px 110px 1fr;
  padding: 22px;
}

.process-steps svg {
  color: var(--orange);
}

.process-steps span {
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-steps h3,
.process-steps p {
  grid-column: 3;
  margin-bottom: 0;
}

.academy-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 197, 54, 0.18), transparent 34%),
    var(--ink);
}

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

.academy-grid article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  min-height: 230px;
  padding: 28px;
}

.academy-grid svg {
  color: var(--lime);
  height: 32px;
  margin-bottom: 28px;
  width: 32px;
}

.academy-grid h3 {
  color: var(--white);
}

.academy-grid p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.calculator-section {
  background: var(--white);
}

.calculator {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
}

.calc-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  gap: 24px;
  padding: 28px;
}

.field {
  display: grid;
  gap: 12px;
}

.field.is-disabled {
  opacity: 0.58;
}

.field.is-disabled input {
  cursor: not-allowed;
}

.field > span,
.segmented legend,
.apply-form span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.field output {
  color: var(--aqua-dark);
  font-size: 1.6rem;
  font-weight: 900;
}

input[type="range"] {
  accent-color: var(--orange);
  width: 100%;
}

.segmented {
  border: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
}

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

.segmented legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.segmented label {
  min-width: 0;
}

.segmented input {
  position: absolute;
  opacity: 0;
}

.segmented span {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
  padding: 0 12px;
  text-align: center;
}

.segmented input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.calc-results {
  background:
    linear-gradient(180deg, rgba(2, 5, 2, 0.92), rgba(2, 5, 2, 0.98)),
    url("https://tdmmanagement.com/wp-content/themes/tdm-theme/assets/images/stellaTestPoster.png") center / cover;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.result-main {
  padding: 36px 0;
}

.result-main span {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
}

.result-main small,
.result-breakdown small {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-weight: 800;
  margin-top: 8px;
}

.result-breakdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
  padding: 22px 0;
}

.result-breakdown span {
  color: var(--lime);
  display: block;
  font-size: 1.22rem;
  font-weight: 900;
}

.creator-section {
  overflow: hidden;
}

.proof-first {
  padding-top: 88px;
}

.proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  margin-bottom: 30px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(131, 255, 111, 0.2);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.proof-card-large {
  grid-row: span 2;
}

.proof-card img {
  display: block;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  width: 100%;
}

.proof-card-large img {
  min-height: 516px;
}

.proof-card::after {
  background: linear-gradient(180deg, transparent 48%, rgba(2, 5, 2, 0.88));
  content: "";
  inset: 0;
  position: absolute;
}

.proof-card figcaption {
  bottom: 18px;
  color: var(--white);
  font-weight: 950;
  left: 18px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  z-index: 1;
}

.proof-first .testimonial-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  margin-bottom: 30px;
}

.creator-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto 46px;
  max-width: 1120px;
  padding: 0 20px;
}

.creator-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(131, 255, 111, 0.18);
  border-radius: var(--radius);
  margin: 0;
  min-height: 370px;
  overflow: hidden;
  position: relative;
}

.creator-tile:nth-child(even) {
  transform: translateY(28px);
}

.creator-tile img {
  aspect-ratio: 3 / 4;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.creator-tile::after {
  background: linear-gradient(180deg, transparent 44%, rgba(2, 5, 2, 0.82));
  content: "";
  inset: 0;
  position: absolute;
}

.creator-tile figcaption {
  bottom: 18px;
  color: var(--white);
  font-weight: 950;
  left: 18px;
  letter-spacing: 0;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  z-index: 1;
}

.video-showcase {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(131, 255, 111, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(131, 255, 111, 0.2);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 520px);
  margin-bottom: 30px;
  padding: 28px;
}

.video-showcase h3 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  margin: 0 0 18px;
}

.video-showcase p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
  max-width: 58ch;
}

.video-stack {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: end;
  width: min(100%, 520px);
}

.video-frame {
  background: #020502;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  width: 100%;
}

.video-frame video {
  aspect-ratio: 9 / 16;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.testimonial-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1fr;
}

.case-study,
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
}

.case-study p,
.testimonial-card blockquote {
  color: rgba(255, 255, 255, 0.76);
}

.stats-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.stats-grid span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.stats-grid strong {
  color: var(--lime);
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.tabs {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  padding: 6px;
}

.tabs button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
}

.tabs button[aria-selected="true"] {
  background: var(--white);
  color: var(--ink);
}

.testimonial-card blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.4vw, 2.5rem);
  line-height: 1.18;
  margin: 0 0 28px;
}

.quote-author {
  align-items: center;
  display: flex;
  gap: 14px;
}

.quote-author img {
  border-radius: 50%;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.referral-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(131, 255, 111, 0.24), transparent 28%),
    linear-gradient(135deg, #020502, #08250c 54%, #104017);
  color: var(--white);
  padding: 82px 0;
}

.referral-layout {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(131, 255, 111, 0.24);
  border-radius: 8px;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 320px;
  padding: 36px;
}

.referral-layout h2 {
  max-width: 820px;
}

.referral-layout p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
}

.referral-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.referral-points span {
  background: rgba(131, 255, 111, 0.12);
  border: 1px solid rgba(131, 255, 111, 0.28);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 9px 13px;
  text-transform: uppercase;
}

.referral-action {
  background: rgba(2, 5, 2, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.referral-action strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.referral-action small {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.faq-layout {
  display: grid;
  gap: 52px;
  grid-template-columns: 0.75fr 1fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  padding: 22px;
  text-align: left;
  width: 100%;
}

.faq-item svg {
  color: var(--aqua-dark);
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 22px;
}

.faq-item.is-open p {
  display: block;
}

.faq-item.is-open svg {
  transform: rotate(180deg);
}

.apply-section {
  background:
    linear-gradient(90deg, rgba(2, 5, 2, 0.94), rgba(10, 52, 14, 0.76)),
    url("https://tdmmanagement.com/wp-content/themes/tdm-theme/assets/images/stellaTestPoster.png") center / cover;
  color: var(--white);
}

.apply-layout {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: 0.82fr 1fr;
}

.apply-layout > div p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
}

.apply-form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--hard-shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 28px;
}

.apply-form label {
  display: grid;
  gap: 8px;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.apply-form textarea {
  min-height: 130px;
  resize: vertical;
}

.honeypot-field {
  display: none;
}

.apply-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  color: var(--aqua-dark);
  font-weight: 900;
  margin: 0;
  min-height: 24px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.8fr repeat(3, 1fr);
}

.site-footer h2 {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--white);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  margin: 44px auto 0;
  padding-top: 22px;
  text-align: center;
  width: var(--shell);
}

@media (max-width: 1020px) {
  html {
    scroll-padding-top: 94px;
  }

  .section {
    scroll-margin-top: 94px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    align-content: start;
    background: rgba(7, 21, 28, 0.98);
    border-radius: 24px;
    box-shadow: var(--hard-shadow);
    display: grid;
    gap: 0;
    left: 14px;
    max-height: calc(100dvh - 106px);
    opacity: 0;
    overflow-y: auto;
    padding: 18px;
    pointer-events: none;
    position: fixed;
    right: 14px;
    top: 78px;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0;
    padding: 16px 8px;
  }

  .nav .nav-cta {
    border-bottom: 0;
    justify-content: center;
    margin-top: 12px;
    text-align: center;
  }

  .nav .lang-link {
    border-bottom: 1px solid rgba(131, 255, 111, 0.36);
    margin-top: 10px;
    text-align: center;
  }

  .hero-inner,
  .work-layout,
  .process-grid,
  .calculator,
  .proof-grid,
  .video-showcase,
  .testimonial-wrap,
  .faq-layout,
  .apply-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-portrait {
    height: 380px;
    margin-left: 0;
    width: min(420px, 88%);
  }

  .metric-top {
    right: 8%;
    top: 42px;
  }

  .metric-bottom {
    bottom: 22px;
    right: 12%;
  }

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

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

  .press-band .section-shell,
  .referral-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .press-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .proof-card-large {
    grid-row: auto;
  }

  .proof-card-large img {
    min-height: 300px;
  }

  .proof-first .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .creator-tile:nth-child(even) {
    transform: none;
  }

  .video-stack {
    justify-self: center;
  }

  .work-visual {
    max-width: 520px;
    position: relative;
    top: auto;
  }

  .work-list {
    order: -1;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  body {
    line-height: 1.5;
  }

  .site-header,
  .hero-inner,
  .section-shell {
    width: calc(100vw - 28px);
  }

  .hero-inner {
    overflow: hidden;
  }

  .hero-copy,
  .hero-actions,
  .hero-media,
  .hero-lede,
  .hero .eyebrow {
    max-width: 100%;
    min-width: 0;
  }

  .hero .eyebrow {
    overflow-wrap: break-word;
  }

  .site-header {
    top: 12px;
    padding: 10px 12px 10px 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-logo {
    height: 40px;
    width: 40px;
  }

  .hero {
    padding: 108px 0 44px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 3.35rem);
    margin-bottom: 22px;
  }

  .hero-tight {
    font-size: clamp(2.45rem, 10.4vw, 2.95rem);
  }

  h2 {
    font-size: clamp(1.92rem, 10vw, 2.72rem);
  }

  .section {
    padding: 64px 0;
  }

  .split-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .hero-actions,
  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions,
  .hero-media {
    width: min(100%, var(--shell));
  }

  .btn {
    min-height: 50px;
    max-width: calc(100vw - 28px);
    padding: 0 18px;
    width: min(100%, calc(100vw - 28px));
  }

  .hero-media {
    min-height: 318px;
    overflow: hidden;
  }

  .hero-portrait {
    border-radius: 18px;
    height: 318px;
    width: min(100%, 330px);
  }

  .hero-metric {
    max-width: min(160px, calc(50% - 8px));
    padding: 12px 14px;
  }

  .metric-top {
    right: 0;
  }

  .metric-bottom {
    right: 0;
  }

  .hero-metric strong {
    font-size: 1.34rem;
  }

  .press-band {
    padding: 18px 0;
  }

  .press-band .section-shell {
    gap: 14px;
  }

  .press-logos {
    gap: 8px;
  }

  .press-logos span {
    font-size: 0.82rem;
    min-height: 46px;
    padding: 12px 8px;
  }

  .comparison-card,
  .service-card,
  .traffic-grid article,
  .academy-grid article,
  .calc-panel,
  .calc-results,
  .case-study,
  .testimonial-card,
  .apply-form,
  .referral-layout,
  .referral-action {
    padding: 20px;
  }

  .comparison-card img {
    margin-bottom: 18px;
  }

  .work-layout {
    gap: 30px;
  }

  .work-list h2 {
    margin-bottom: 22px;
  }

  .work-item {
    gap: 14px;
    grid-template-columns: 40px 1fr;
    padding: 18px 0;
  }

  .work-visual img {
    aspect-ratio: 16 / 11;
    border-radius: var(--radius);
  }

  .floating-note {
    bottom: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    padding: 12px 14px;
  }

  .floating-note strong {
    font-size: 0.92rem;
  }

  .service-card,
  .traffic-grid article {
    min-height: auto;
  }

  .comparison-grid,
  .service-grid,
  .traffic-grid,
  .academy-grid,
  .stats-grid,
  .result-breakdown {
    grid-template-columns: 1fr;
  }

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

  .process-steps article {
    grid-template-columns: 36px 1fr;
  }

  .process-steps h3,
  .process-steps p {
    grid-column: 1 / -1;
  }

  .segmented {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .segmented span {
    font-size: 0.88rem;
    min-height: 48px;
    padding: 0 8px;
  }

  .calculator {
    gap: 18px;
  }

  .calc-panel {
    gap: 18px;
  }

  .result-main {
    padding: 24px 0;
  }

  .result-main span {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .result-breakdown {
    gap: 12px;
    padding: 18px 0;
  }

  .proof-first {
    padding-top: 64px;
  }

  .proof-first .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .testimonial-card blockquote {
    font-size: clamp(1.34rem, 7vw, 1.75rem);
    margin-bottom: 22px;
  }

  .tabs {
    border-radius: var(--radius);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 22px;
  }

  .tabs button {
    border-radius: 6px;
    font-size: 0.78rem;
    min-height: 42px;
    padding: 0 4px;
  }

  .stats-grid {
    margin-top: 18px;
  }

  .stats-grid span {
    padding: 16px;
  }

  .stats-grid strong {
    font-size: 1.55rem;
  }

  .creator-gallery {
    gap: 12px;
    padding: 0 14px;
  }

  .creator-tile {
    min-height: 260px;
  }

  .creator-tile figcaption {
    bottom: 14px;
    font-size: 0.74rem;
    left: 14px;
    right: 14px;
  }

  .proof-grid {
    gap: 12px;
  }

  .proof-card img,
  .proof-card-large img {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
  }

  .proof-card figcaption {
    bottom: 14px;
    font-size: 0.76rem;
    left: 14px;
    right: 14px;
  }

  .video-showcase {
    gap: 20px;
    padding: 20px;
  }

  .video-showcase h3 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
  }

  .video-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .referral-section {
    padding: 64px 0;
  }

  .referral-points {
    margin-top: 18px;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq-item button {
    padding: 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .apply-form {
    gap: 14px;
  }

  .apply-form textarea {
    min-height: 104px;
  }

  .site-footer {
    padding: 44px 0 22px;
  }

  .footer-grid {
    gap: 24px;
  }

  .copyright {
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100vw - 24px);
  }

  html {
    scroll-padding-top: 90px;
  }

  .section {
    padding: 56px 0;
    scroll-margin-top: 90px;
  }

  .site-header,
  .hero-inner,
  .section-shell {
    width: calc(100vw - 24px);
  }

  .site-header {
    padding: 8px 10px;
    top: 10px;
  }

  .brand {
    font-size: 0.9rem;
    gap: 8px;
  }

  .brand-logo {
    height: 36px;
    width: 36px;
  }

  .nav-toggle {
    height: 40px;
    width: 40px;
  }

  .nav {
    border-radius: 20px;
    left: 12px;
    max-height: calc(100dvh - 92px);
    padding: 14px;
    right: 12px;
    top: 68px;
  }

  .nav a {
    padding: 14px 8px;
  }

  .hero {
    padding: 96px 0 40px;
  }

  .hero-inner {
    overflow: hidden;
  }

  .hero-copy,
  .hero-actions,
  .hero-media {
    max-width: calc(100vw - 40px);
    min-width: 0;
    width: calc(100vw - 40px);
  }

  .hero .eyebrow,
  .section-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
  }

  .hero .eyebrow {
    line-height: 1.3;
    max-width: 32ch;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3rem);
    margin-bottom: 18px;
  }

  .hero-tight {
    font-size: clamp(2.18rem, 10.5vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.78rem, 9.4vw, 2.42rem);
  }

  h3 {
    line-height: 1.08;
  }

  .hero-lede {
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 32ch;
  }

  .hero-actions {
    gap: 10px;
    width: 100%;
  }

  .btn {
    max-width: 100%;
    min-height: 48px;
    width: 100%;
  }

  .hero .btn {
    max-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
  }

  .hero-media {
    min-height: 286px;
    max-width: calc(100vw - 40px);
    overflow: hidden;
    width: calc(100vw - 40px);
  }

  .hero .hero-media {
    max-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
  }

  .hero-portrait {
    height: 286px;
    max-width: 100%;
    object-position: center top;
    width: min(100%, calc(100vw - 40px));
  }

  .hero .hero-portrait {
    width: calc(100vw - 40px);
  }

  .hero-metric {
    max-width: min(126px, calc(50% - 12px));
    padding: 10px 12px;
  }

  .hero-metric span,
  .floating-note span {
    font-size: 0.68rem;
  }

  .hero-metric strong {
    font-size: 1.18rem;
  }

  .metric-top {
    right: 8px;
    top: 24px;
  }

  .metric-bottom {
    bottom: 10px;
    right: 8px;
  }

  .press-band {
    padding: 14px 0;
  }

  .press-logos span {
    font-size: 0.75rem;
    min-height: 42px;
    padding: 10px 6px;
  }

  .comparison-card,
  .service-card,
  .traffic-grid article,
  .academy-grid article,
  .calc-panel,
  .calc-results,
  .case-study,
  .testimonial-card,
  .apply-form,
  .referral-layout,
  .referral-action,
  .video-showcase {
    padding: 18px;
  }

  .split-heading {
    gap: 14px;
    margin-bottom: 26px;
  }

  .testimonial-card blockquote {
    font-size: 1.38rem;
  }

  .tabs {
    gap: 5px;
    padding: 5px;
  }

  .tabs button,
  .segmented span {
    min-height: 44px;
  }

  .segmented span {
    font-size: 0.8rem;
    padding: 0 5px;
  }

  .stats-grid span,
  .result-breakdown div {
    padding: 14px;
  }

  .video-showcase h3 {
    font-size: clamp(1.72rem, 9vw, 2.32rem);
  }

  .video-stack {
    gap: 10px;
  }

  .proof-card figcaption,
  .creator-tile figcaption {
    font-size: 0.7rem;
  }

  .work-layout {
    gap: 24px;
  }

  .work-item {
    grid-template-columns: 36px 1fr;
    padding: 16px 0;
  }

  .result-main {
    padding: 20px 0;
  }

  .result-main span {
    font-size: clamp(2.52rem, 13vw, 3.32rem);
  }

  .apply-form input,
  .apply-form select,
  .apply-form textarea {
    font-size: 16px;
  }

  .footer-grid {
    gap: 20px;
  }
}
