:root {
  --bg: #0b1118;
  --bg-alt: #121b25;
  --panel: rgba(15, 23, 32, 0.82);
  --panel-strong: #172331;
  --panel-soft: #1b2b3b;
  --card: rgba(247, 245, 239, 0.06);
  --paper: #edf2f7;
  --ink: #f7f5ef;
  --muted: #a7b4c2;
  --line: rgba(247, 245, 239, 0.12);
  --line-strong: rgba(247, 245, 239, 0.24);
  --accent: #f46b45;
  --accent-2: #f2b255;
  --accent-3: #5dd3c6;
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.24);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-sans: "Sora", "Trebuchet MS", sans-serif;
  --font-display: "Baskervville", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(93, 211, 198, 0.1), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(242, 178, 85, 0.11), transparent 24%),
    linear-gradient(180deg, #0b1118 0%, #0d1720 42%, #091018 100%);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.tp-skip {
  position: absolute;
  left: -999px;
}

.tp-skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 10px;
}

.tp-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.tp-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(9, 16, 24, 0.76);
  border-bottom: 1px solid rgba(247, 245, 239, 0.08);
}

.tp-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.tp-mainbar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 8px 0 16px;
}

.tp-logo {
  display: inline-flex;
  align-items: center;
}

.tp-logo img {
  width: 260px;
  max-width: 100%;
}

.tp-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.tp-nav a,
.tp-subnav a,
.tp-linkline a,
.tp-footer-nav a {
  text-decoration: none;
}

.tp-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(247, 245, 239, 0.05);
  border: 1px solid rgba(247, 245, 239, 0.08);
  font-size: 0.9rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tp-nav a:hover,
.tp-linkline a:hover,
.tp-subnav a:hover,
.tp-footer-nav a:hover {
  transform: translateY(-1px);
  background: rgba(244, 107, 69, 0.12);
  border-color: rgba(244, 107, 69, 0.34);
}

.tp-home {
  padding: 24px 0 64px;
}

.tp-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
  align-items: stretch;
}

.tp-intro,
.tp-media,
.tp-ranking,
.tp-module,
.tp-utility,
.tp-page-card,
.tp-footer {
  background: linear-gradient(180deg, rgba(27, 43, 59, 0.92), rgba(12, 19, 28, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.tp-intro {
  border-radius: 32px 32px 24px 24px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.tp-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(244, 107, 69, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(93, 211, 198, 0.18), transparent 22%);
  pointer-events: none;
}

.tp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247, 245, 239, 0.06);
  border: 1px solid rgba(247, 245, 239, 0.1);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.tp-intro h1,
.tp-page-card h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.tp-intro p,
.tp-page-card p,
.tp-module p,
.tp-ranking p,
.tp-footer p,
.tp-utility p {
  margin: 0 0 14px;
  color: var(--paper);
}

.tp-subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.tp-subnav a,
.tp-chip {
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(247, 245, 239, 0.05);
  border: 1px solid rgba(247, 245, 239, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
}

.tp-media {
  min-height: 100%;
  border-radius: 24px 32px 32px 24px;
  overflow: hidden;
  position: relative;
}

.tp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: saturate(0.9) contrast(1.02);
}

.tp-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 16, 24, 0.14), rgba(9, 16, 24, 0.84)),
    radial-gradient(circle at 22% 18%, rgba(244, 107, 69, 0.18), transparent 18%);
}

.tp-media-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 270px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(9, 16, 24, 0.78);
  border: 1px solid rgba(247, 245, 239, 0.14);
}

.tp-media-note strong,
.tp-module h2,
.tp-ranking-title h2,
.tp-page-card h2,
.tp-page-card h3 {
  display: block;
  margin: 0 0 12px;
}

.tp-ranking {
  margin-top: 24px;
  border-radius: 34px;
  padding: 28px;
}

.tp-ranking-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.tp-ranking-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.tp-date-pill {
  align-self: start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(93, 211, 198, 0.1);
  border: 1px solid rgba(93, 211, 198, 0.22);
  color: #d0f5ef;
  font-size: 0.84rem;
}

.tp-rank-list {
  display: grid;
  gap: 16px;
}

.tp-rank-card {
  display: grid;
  grid-template-columns: 96px 1.2fr 0.9fr 160px;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: 24px;
  background: rgba(247, 245, 239, 0.045);
  border: 1px solid rgba(247, 245, 239, 0.08);
}

.tp-place {
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(244, 107, 69, 0.18), rgba(244, 107, 69, 0.06));
  border: 1px solid rgba(244, 107, 69, 0.26);
  text-align: center;
}

.tp-place strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.tp-brandline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.tp-brandline img {
  width: 118px;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
}

.tp-brandline h3 {
  margin: 0;
  font-size: 1.3rem;
}

.tp-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tp-points span {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(247, 245, 239, 0.05);
  border: 1px solid rgba(247, 245, 239, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
}

.tp-bonus {
  padding: 16px;
  border-radius: 20px;
  background: rgba(242, 178, 85, 0.08);
  border: 1px solid rgba(242, 178, 85, 0.18);
}

.tp-score {
  text-align: right;
}

.tp-score strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}

.tp-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 136px;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #ff8c53);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(244, 107, 69, 0.22);
  transition: transform 180ms ease, filter 180ms ease;
}

.tp-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.tp-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

.tp-module,
.tp-utility,
.tp-page-card {
  border-radius: 28px;
  padding: 28px;
}

.tp-module h2,
.tp-page-card h2,
.tp-page-card h3 {
  font-size: 1.55rem;
  line-height: 1.12;
}

.tp-checks,
.tp-list,
.tp-faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.tp-check,
.tp-list li,
.tp-faq article {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(247, 245, 239, 0.045);
  border: 1px solid rgba(247, 245, 239, 0.08);
}

.tp-list {
  padding-left: 0;
  list-style: none;
}

.tp-linkline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tp-linkline a {
  color: #d2fff8;
}

.tp-utility {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.tp-utility-band {
  padding: 22px;
  border-radius: 22px;
  background: rgba(247, 245, 239, 0.045);
  border: 1px solid rgba(247, 245, 239, 0.08);
}

.tp-utility-band h2,
.tp-utility-band h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.tp-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tp-pill-row span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(93, 211, 198, 0.08);
  border: 1px solid rgba(93, 211, 198, 0.16);
  color: #d7fff8;
  font-size: 0.8rem;
}

.tp-disclosure,
.tp-legal-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(247, 245, 239, 0.045);
  border: 1px solid rgba(247, 245, 239, 0.08);
}

.tp-footer {
  margin: 28px auto 52px;
  border-radius: 30px;
  padding: 28px;
}

.tp-footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.tp-footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tp-footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.tp-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tp-badges span {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(247, 245, 239, 0.05);
  border: 1px solid rgba(247, 245, 239, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.tp-page {
  padding: 26px 0 56px;
}

.tp-page-card {
  position: relative;
  overflow: hidden;
}

.tp-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(244, 107, 69, 0.14), transparent 20%),
    linear-gradient(140deg, rgba(93, 211, 198, 0.08), transparent 30%);
  pointer-events: none;
}

.tp-page-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tp-page-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(247, 245, 239, 0.05);
  border: 1px solid rgba(247, 245, 239, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
}

.tp-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tp-note {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .tp-mainbar,
  .tp-hero-grid,
  .tp-utility,
  .tp-grid.tp-grid-2,
  .tp-footer-bottom,
  .tp-columns,
  .tp-ranking-head,
  .tp-footer-top {
    grid-template-columns: 1fr;
  }

  .tp-nav,
  .tp-footer-nav {
    justify-content: flex-start;
  }

  .tp-rank-card {
    grid-template-columns: 1fr;
  }

  .tp-score {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .tp-shell {
    width: min(100% - 20px, 1160px);
  }

  .tp-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .tp-intro,
  .tp-media,
  .tp-ranking,
  .tp-module,
  .tp-utility,
  .tp-page-card,
  .tp-footer {
    border-radius: 22px;
  }

  .tp-intro,
  .tp-ranking,
  .tp-module,
  .tp-page-card,
  .tp-footer {
    padding: 22px;
  }

  .tp-intro h1,
  .tp-page-card h1 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }
}
