:root {
  --navy: #07152f;
  --navy-2: #0c2148;
  --ink: #151922;
  --muted: #606775;
  --cream: #f6f2eb;
  --paper: #fffdf9;
  --gold: #b58b52;
  --gold-dark: #8f6635;
  --line: #ded7cd;
  --success: #214c3a;
  --shadow: 0 18px 54px rgba(7, 21, 47, .13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.tml-anr-page {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.tml-anr-page.admin-bar .tml-topbar { top: 32px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.tml-wrap { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.tml-section { padding: 72px 0; }
.tml-section--tight { padding: 46px 0; }
.tml-section--cream { background: var(--cream); }
.tml-section--navy { background: var(--navy); color: white; }

.tml-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222, 215, 205, .75);
}
.tml-topbar__inner { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.tml-brand { font-family: Georgia, "Times New Roman", serif; font-size: 19px; letter-spacing: .02em; font-weight: 700; text-decoration: none; }
.tml-topbar__label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; }

.tml-disclosure {
  background: #f1ece3;
  border-bottom: 1px solid var(--line);
  color: #4b4d52;
  font-size: 13px;
  text-align: center;
  padding: 10px 18px;
}

.tml-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(181, 139, 82, .24), transparent 27%),
    linear-gradient(135deg, #061329 0%, #0b224b 60%, #17264a 100%);
  color: white;
  padding: 52px 0 64px;
}
.tml-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% 35%;
  height: 72%;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  filter: blur(1px);
}
.tml-hero__grid { position: relative; z-index: 1; display: grid; gap: 34px; align-items: center; }
.tml-eyebrow { margin: 0 0 14px; color: #e3c79f; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
.tml-hero h1, .tml-heading {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.025em;
}
.tml-hero h1 { margin: 0; font-size: clamp(42px, 10vw, 74px); line-height: 1.02; }
.tml-hero__lead { max-width: 680px; margin: 22px 0 0; font-size: clamp(18px, 4.4vw, 24px); color: #edf2fb; line-height: 1.45; }
.tml-hero__verdict { margin: 26px 0 0; padding: 18px 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.07); border-radius: 0 16px 16px 0; color: #f5f7fc; }
.tml-hero__verdict strong { display: block; color: #fff; margin-bottom: 3px; }
.tml-hero__media { position: relative; }
.tml-hero__image {
  width: min(520px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0,0,0,.35);
  background: white;
}
.tml-hero__note { margin: 10px auto 0; max-width: 520px; color: #c9d2e4; font-size: 12px; text-align: center; }

.tml-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.tml-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
}
.tml-btn:hover { transform: translateY(-1px); }
.tml-btn--gold { background: linear-gradient(135deg, #d4ad72, #a9783d); color: #111; box-shadow: 0 12px 30px rgba(181,139,82,.28); }
.tml-btn--light { background: white; color: var(--navy); }
.tml-btn--outline { border: 1px solid rgba(255,255,255,.45); color: white; }
.tml-microcopy { margin: 9px 0 0; color: #c6cfdf; font-size: 12px; }

.tml-pills { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 0; padding: 0; list-style: none; }
.tml-pills li { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); border-radius: 999px; padding: 8px 12px; font-size: 13px; color: #eaf0fa; }

.tml-heading { margin: 0; color: var(--navy); font-size: clamp(35px, 7vw, 55px); line-height: 1.08; }
.tml-section--navy .tml-heading { color: white; }
.tml-subhead { max-width: 720px; margin: 17px 0 0; font-size: 18px; color: var(--muted); }
.tml-section--navy .tml-subhead { color: #cbd4e3; }

.tml-glance { margin-top: -30px; position: relative; z-index: 5; }
.tml-glance__card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; display: grid; gap: 18px; }
.tml-stat { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: start; }
.tml-stat__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #f1e6d5; color: var(--gold-dark); font-weight: 900; }
.tml-stat strong { display: block; color: var(--navy); }
.tml-stat span { color: var(--muted); font-size: 14px; }

.tml-two-col { display: grid; gap: 34px; align-items: center; }
.tml-copy p { margin: 0 0 16px; }
.tml-copy p:last-child { margin-bottom: 0; }
.tml-image-card { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: white; }
.tml-image-card img { width: 100%; }
.tml-caption { padding: 12px 16px 15px; color: var(--muted); font-size: 12px; }

.tml-cards { display: grid; gap: 16px; margin-top: 30px; }
.tml-card { background: white; border: 1px solid #e7e0d7; border-radius: 20px; padding: 22px; box-shadow: 0 8px 24px rgba(7,21,47,.05); }
.tml-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 20px; }
.tml-card p { margin: 0; color: var(--muted); }
.tml-card__kicker { display: inline-block; margin-bottom: 12px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 900; }

.tml-banner { margin-top: 30px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #081731; }
.tml-banner img { width: 100%; }

.tml-proof-grid { display: grid; gap: 18px; margin-top: 28px; }
.tml-proof { background: white; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.tml-proof img { width: 100%; }
.tml-proof__text { padding: 18px 20px; }
.tml-proof__text strong { display: block; color: var(--navy); font-size: 18px; }
.tml-proof__text span { color: var(--muted); font-size: 13px; }
.tml-legal-note { margin-top: 14px; color: var(--muted); font-size: 12px; }

.tml-feedback { display: grid; gap: 18px; margin-top: 30px; }
.tml-feedback__item { border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; }
.tml-feedback__item strong { display: block; color: white; font-size: 18px; }
.tml-feedback__item p { margin: 7px 0 0; color: #cbd4e3; }

.tml-procon { display: grid; gap: 18px; margin-top: 30px; }
.tml-list-card { border-radius: 22px; padding: 24px; }
.tml-list-card--pro { background: #eef7f2; border: 1px solid #cfe4d8; }
.tml-list-card--con { background: #fbf3ed; border: 1px solid #ead7c7; }
.tml-list-card h3 { margin: 0 0 15px; color: var(--navy); }
.tml-checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.tml-checklist li { position: relative; padding-left: 29px; }
.tml-checklist li::before { position: absolute; left: 0; top: 0; font-weight: 900; }
.tml-list-card--pro li::before { content: "✓"; color: var(--success); }
.tml-list-card--con li::before { content: "•"; color: #9b5832; font-size: 24px; line-height: 18px; }

.tml-use-steps { counter-reset: step; display: grid; gap: 14px; margin-top: 28px; }
.tml-use-step { counter-increment: step; display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: start; background: white; border: 1px solid #e7e0d7; border-radius: 18px; padding: 18px; }
.tml-use-step::before { content: counter(step); width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: white; font-weight: 900; }
.tml-use-step strong { display: block; color: var(--navy); }
.tml-use-step p { margin: 4px 0 0; color: var(--muted); }

.tml-verdict-box { background: linear-gradient(140deg, #07152f, #0c2a59); color: white; border-radius: 28px; padding: 30px 24px; box-shadow: var(--shadow); }
.tml-verdict-box h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 8vw, 58px); font-weight: 400; line-height: 1.05; }
.tml-verdict-box p { color: #d8e0ed; }
.tml-verdict-grid { display: grid; gap: 18px; margin-top: 24px; }
.tml-verdict-mini { padding: 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 18px; }
.tml-verdict-mini strong { display: block; color: white; }
.tml-verdict-mini span { color: #cbd4e3; }

.tml-faq { display: grid; gap: 12px; margin-top: 30px; }
.tml-faq details { border: 1px solid #e5ddd3; background: white; border-radius: 17px; padding: 0 18px; }
.tml-faq summary { cursor: pointer; list-style: none; padding: 18px 30px 18px 0; font-weight: 800; color: var(--navy); position: relative; }
.tml-faq summary::-webkit-details-marker { display: none; }
.tml-faq summary::after { content: "+"; position: absolute; right: 0; top: 14px; font-size: 24px; color: var(--gold-dark); }
.tml-faq details[open] summary::after { content: "–"; }
.tml-faq details p { margin: 0 0 18px; color: var(--muted); }

.tml-final { text-align: center; background: var(--cream); }
.tml-final .tml-heading { max-width: 820px; margin-inline: auto; }
.tml-final p { max-width: 700px; margin: 18px auto 0; color: var(--muted); }
.tml-final .tml-actions { max-width: 470px; margin-inline: auto; }

.tml-footer { background: #050d1d; color: #cbd4e3; padding: 36px 0 110px; font-size: 13px; }
.tml-footer__grid { display: grid; gap: 16px; }
.tml-footer strong { color: white; font-family: Georgia, "Times New Roman", serif; font-size: 18px; }
.tml-footer p { margin: 6px 0 0; }
.tml-footer a { color: #e5c89f; }

.tml-mobile-cta {
  position: fixed;
  z-index: 70;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(5, 13, 29, .94);
  box-shadow: 0 16px 44px rgba(0,0,0,.36);
  backdrop-filter: blur(12px);
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.tml-mobile-cta.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.tml-mobile-cta .tml-btn { width: 100%; min-height: 50px; font-size: 15px; }

@media (min-width: 700px) {
  .tml-wrap { width: min(1160px, calc(100% - 64px)); }
  .tml-actions { flex-direction: row; align-items: center; }
  .tml-btn { width: auto; }
  .tml-glance__card { grid-template-columns: repeat(3, 1fr); padding: 28px; }
  .tml-cards { grid-template-columns: repeat(2, 1fr); }
  .tml-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .tml-feedback { grid-template-columns: repeat(2, 1fr); }
  .tml-procon { grid-template-columns: 1fr 1fr; }
  .tml-verdict-grid { grid-template-columns: repeat(2, 1fr); }
  .tml-footer { padding-bottom: 42px; }
}

@media (min-width: 960px) {
  .tml-section { padding: 96px 0; }
  .tml-hero { padding: 74px 0 94px; }
  .tml-hero__grid { grid-template-columns: 1.03fr .97fr; gap: 58px; }
  .tml-two-col { grid-template-columns: 1fr 1fr; gap: 64px; }
  .tml-two-col--reverse .tml-copy { order: 2; }
  .tml-two-col--reverse .tml-image-card { order: 1; }
  .tml-cards { grid-template-columns: repeat(3, 1fr); }
  .tml-feedback { grid-template-columns: repeat(4, 1fr); }
  .tml-mobile-cta { display: none; }
}

@media (max-width: 782px) {
  body.tml-anr-page.admin-bar .tml-topbar { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
