/* ==========================================================================
   trt.css — TRT flagship landing page
   Cinematic dark aesthetic. Cyan + grays only.
   Referenced classes: .trt-hero, .trt-plan, .trt-formulary-card, .trt-step
   ========================================================================== */

/* ---------- HERO ---------- */
.trt-hero {
  min-height: min(760px, 90vh);
  padding-top: clamp(120px, 22vh, 200px);
  padding-bottom: clamp(80px, 12vh, 140px);
  background: var(--color-bg-deep, #0a0a0a);
}
.trt-hero .hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.trt-hero .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.trt-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(10, 12, 16, 0.94) 0%,
      rgba(10, 12, 16, 0.85) 32%,
      rgba(10, 12, 16, 0.55) 55%,
      rgba(10, 12, 16, 0.15) 82%,
      rgba(10, 12, 16, 0.05) 100%);
}
.trt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* Trust row under hero */
.trt-trust-row {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin: clamp(1.5rem, 4vh, 2.25rem) 0 clamp(1.75rem, 4vh, 2.5rem);
}
.trt-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trt-trust-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  border: 1px solid rgba(0, 168, 232, 0.35);
  border-radius: 10px;
  background: rgba(0, 168, 232, 0.06);
  flex-shrink: 0;
}
.trt-trust-icon svg { width: 20px; height: 20px; }
.trt-trust-text {
  font-size: 0.875rem;
  line-height: 1.35;
  color: #E6EAF0;
  font-weight: 500;
}

/* ---------- PROOF STRIP ---------- */
.trt-proof-strip {
  background: #0F1216;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.25rem, 3vh, 1.75rem) 0;
}
.trt-proof-strip__text {
  text-align: center;
  color: #B8C0CC;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  margin: 0;
  line-height: 1.55;
}
.trt-proof-strip__accent {
  color: #E6EAF0;
  font-weight: 500;
  display: inline-block;
  margin-left: 0.5rem;
}

/* ---------- PLANS SECTION ---------- */
.trt-plans-section {
  background: #0A0A0A;
  color: #E6EAF0;
  padding-block: clamp(4rem, 10vh, 7rem);
  scroll-margin-top: 80px;
}
.trt-plans-section .section-header__title { color: #FFFFFF; }
.trt-plans-section .section-header__lede { color: #B8C0CC; }
.trt-plans-section .eyebrow { color: var(--color-primary); }

.trt-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
  max-width: 1100px;
  margin-inline: auto;
}

.trt-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #14171C 0%, #0F1216 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.trt-plan:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 232, 0.35);
  box-shadow: 0 20px 60px -20px rgba(0, 168, 232, 0.25);
}
.trt-plan--featured {
  border-color: rgba(0, 168, 232, 0.5);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(0, 168, 232, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #14171C 0%, #0F1216 100%);
  box-shadow: 0 20px 60px -20px rgba(0, 168, 232, 0.35);
}
.trt-plan__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: var(--color-primary);
  color: #001820;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.trt-plan__badge--alt {
  background: rgba(255, 255, 255, 0.92);
  color: #0A0F14;
}

.trt-plan__product {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0A0A0A;
}
.trt-plan__product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.trt-plan:hover .trt-plan__product img { transform: scale(1.04); }

.trt-plan__body {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.trt-plan__header { margin-bottom: 1.25rem; }
.trt-plan__name {
  font-family: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.375rem;
  letter-spacing: -0.01em;
}
.trt-plan__tagline {
  color: #B8C0CC;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}
.trt-plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  color: #FFFFFF;
  margin-bottom: 0.375rem;
}
.trt-plan__currency {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}
.trt-plan__amount {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: clamp(3rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trt-plan__cadence {
  color: #8A93A3;
  font-size: 0.9375rem;
  margin-left: 0.25rem;
}
.trt-plan__commitment {
  font-size: 0.8125rem;
  color: #8A93A3;
  margin: 0 0 1.5rem;
}
.trt-plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.5rem, 3vh, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}
.trt-plan__list li {
  position: relative;
  padding-left: 1.75rem;
  color: #D0D6DE;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.trt-plan__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.375rem;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300B8D4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.trt-plan__list strong { color: #FFFFFF; font-weight: 600; }
.trt-plan__cta { width: 100%; justify-content: center; }

/* Plan benefits chips */
.trt-plan-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}
.trt-plan-benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #B8C0CC;
  font-size: 0.875rem;
  font-weight: 500;
}
.trt-plan-benefit svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

/* ---------- LINEUP EDITORIAL ---------- */
.trt-lineup-section {
  background: #0A0A0A;
  padding-block: clamp(3rem, 8vh, 5rem);
}
.trt-lineup-hero {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.trt-lineup-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.trt-lineup-copy { max-width: 720px; text-align: center; margin: 0 auto; }
.trt-lineup-copy .eyebrow { color: var(--color-primary); }
.trt-lineup-title {
  font-family: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  line-height: 1.15;
}
.trt-lineup-lede {
  color: #B8C0CC;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  margin: 0;
}

/* ---------- FORMULARY GRID ---------- */
.trt-formulary-section {
  background: #0F1216;
  color: #E6EAF0;
  padding-block: clamp(4rem, 10vh, 7rem);
}
.trt-formulary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
}
.trt-formulary-card {
  background: #14171C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.trt-formulary-card:hover {
  border-color: rgba(0, 168, 232, 0.35);
  transform: translateY(-2px);
}
.trt-formulary-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.trt-formulary-card__title {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.875rem;
  letter-spacing: -0.01em;
}
.trt-formulary-card__body {
  color: #B8C0CC;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.trt-formulary-card__body em { color: #D0D6DE; font-style: italic; }
.trt-formulary-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trt-formulary-card__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 168, 232, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(0, 168, 232, 0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trt-formulary-card__note {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  color: #8A93A3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
}

.trt-formulary-exclusions {
  background: rgba(0, 168, 232, 0.05);
  border: 1px solid rgba(0, 168, 232, 0.2);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.trt-formulary-exclusions__title {
  display: block;
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.trt-formulary-exclusions__body {
  color: #C4CAD3;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- HOW IT WORKS ---------- */
.trt-how-section {
  background: #0A0A0A;
  padding-block: clamp(4rem, 10vh, 7rem);
}
.trt-how-section .section-header__title { color: #FFFFFF; }
.trt-how-section .eyebrow { color: var(--color-primary); }

.trt-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.trt-step {
  background: #14171C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: clamp(1.5rem, 2.5vw, 1.875rem);
}
.trt-step__num {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}
.trt-step__title {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
}
.trt-step__body {
  color: #B8C0CC;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- ELIGIBILITY YES / NO ---------- */
.trt-eligibility-section {
  background: #0F1216;
  padding-block: clamp(4rem, 10vh, 7rem);
}
.trt-eligibility-section .section-header__title { color: #FFFFFF; }
.trt-eligibility-section .eyebrow { color: var(--color-primary); }

.trt-eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-top: clamp(2rem, 4vh, 3rem);
}
.trt-eligibility-col {
  background: #14171C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2rem);
}
.trt-eligibility-col--yes { border-color: rgba(0, 168, 232, 0.3); }
.trt-eligibility-col--no  { border-color: rgba(255, 255, 255, 0.12); }
.trt-eligibility-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
}
.trt-eligibility-header svg { width: 22px; height: 22px; }
.trt-eligibility-col--yes .trt-eligibility-header svg { color: var(--color-primary); }
.trt-eligibility-col--no  .trt-eligibility-header svg { color: #6C7684; }
.trt-eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trt-eligibility-list li {
  color: #C4CAD3;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.trt-eligibility-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}
.trt-eligibility-col--no .trt-eligibility-list li::before { background: #6C7684; }

/* ---------- FAQ ---------- */
.trt-faq-section {
  background: #0A0A0A;
  padding-block: clamp(4rem, 10vh, 7rem);
}
.trt-faq-section .section-header__title { color: #FFFFFF; }
.trt-faq-section .eyebrow { color: var(--color-primary); }

.trt-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trt-faq-item {
  background: #14171C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.trt-faq-item[open] { border-color: rgba(0, 168, 232, 0.3); }
.trt-faq-item__q {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  line-height: 1.35;
}
.trt-faq-item__q::-webkit-details-marker { display: none; }
.trt-faq-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.trt-faq-item[open] .trt-faq-item__chevron { transform: rotate(180deg); }
.trt-faq-item__a {
  padding: 0 1.5rem 1.5rem;
  color: #B8C0CC;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.trt-faq-item__a p { margin: 0; }
.trt-faq-item__a em { color: #D0D6DE; font-style: italic; }

/* ---------- FINAL CTA ---------- */
.trt-final-cta {
  background:
    radial-gradient(80% 120% at 50% 50%, rgba(0, 168, 232, 0.14) 0%, transparent 60%),
    #0A0A0A;
  padding-block: clamp(4rem, 10vh, 6.5rem);
}
.eyebrow--on-dark { color: var(--color-primary); }
.trt-final-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.trt-final-cta__title {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}
.trt-final-cta__lede {
  color: #B8C0CC;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  margin: 0 0 clamp(1.5rem, 3vh, 2rem);
}
.trt-final-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- DISCLAIMER ---------- */
.trt-disclaimer-section {
  background: #0A0A0A;
  padding-block: clamp(2rem, 6vh, 3.5rem) clamp(3rem, 8vh, 5rem);
}
.trt-disclaimer {
  background: #0F1216;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #8A93A3;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.trt-disclaimer__title {
  display: block;
  color: #C4CAD3;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.trt-disclaimer p { margin: 0; }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet */
@media (max-width: 1080px) {
  .trt-plans-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .trt-plan__product {
    aspect-ratio: 4 / 3;
    background: #0A0A0A;
  }
  .trt-plan__product img {
    object-fit: contain;
    object-position: center center;
    padding: 0.5rem;
  }
  .trt-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trt-formulary-grid { grid-template-columns: 1fr; }
}

/* Mobile — override .hero--cinematic split-layout entirely for TRT.
   Use classic full-bleed background photo with text overlay + safe top padding
   so the header never clips the badge. */
@media (max-width: 760px) {
  .trt-hero.hero--cinematic {
    min-height: min(720px, 96vh);
    padding-block: clamp(2rem, 5vh, 3rem);
    padding-top: clamp(2.5rem, 8vh, 4rem);
    display: block;
    overflow: hidden;
  }
  /* Restore full-bleed background media */
  .trt-hero.hero--cinematic .hero__media {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .trt-hero.hero--cinematic .hero__media picture,
  .trt-hero.hero--cinematic .hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
  }
  /* Strong scrim so text is legible on top of the photo */
  .trt-hero.hero--cinematic .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(10, 12, 16, 0.55) 0%,
        rgba(10, 12, 16, 0.75) 40%,
        rgba(10, 12, 16, 0.94) 100%);
  }
  /* Container returns to normal positioning */
  .trt-hero.hero--cinematic .container {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
  }

  .trt-trust-row { gap: 1rem; }
  .trt-trust-icon { width: 36px; height: 36px; }
  .trt-trust-icon svg { width: 18px; height: 18px; }
  .trt-trust-text { font-size: 0.8125rem; }

  .trt-eligibility-grid { grid-template-columns: 1fr; }
  .trt-steps-grid { grid-template-columns: 1fr; }
  .trt-final-cta__actions { flex-direction: column; align-items: stretch; }
  .trt-final-cta__actions .btn { justify-content: center; }
}

@media (max-width: 420px) {
  .trt-plan__amount { font-size: 2.75rem; }
  .trt-plan__body { padding: 1.5rem 1.25rem; }
  .trt-faq-item__q { font-size: 1rem; padding: 1rem 1.25rem; gap: 0.75rem; }
  .trt-faq-item__a { padding: 0 1.25rem 1.25rem; }
}
