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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(125, 211, 252, 0.12), transparent 20%),
    linear-gradient(180deg, var(--kp-bg) 0%, #030b1d 100%);
  color: var(--kp-text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.95em;
  color: var(--kp-accent-soft);
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.noise,
.orb {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.noise {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
}

.orb-a,
.orb-b {
  filter: blur(90px);
}

.orb-a {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 60%);
  transform: translate(-10%, -15%);
}

.orb-b {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 60%);
  transform: translate(55%, 15%);
}

main {
  position: relative;
  z-index: 2;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 14px;
  color: rgb(148 163 184);
  font-size: 0.875rem;
  transition: 0.22s ease;
}

.nav-link:hover {
  color: rgb(241 245 249);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(56, 189, 248, 0.95));
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
  transition: 0.22s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.34);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--kp-text);
  margin: 4px auto;
  border-radius: 999px;
}

.hero,
.server-hero {
  padding: 72px 0 34px;
}

.hero-grid,
.server-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--kp-accent-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.alt {
  color: #f0c674;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.hero h1,
.server-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  line-height: 0.95;
  margin: 18px 0 18px;
  letter-spacing: -0.04em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--kp-accent-soft), #ffffff 45%, var(--kp-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--kp-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  color: #00111c;
  background: linear-gradient(135deg, var(--kp-accent-soft), var(--kp-accent));
  box-shadow: 0 14px 34px var(--kp-glow);
}

.btn-secondary {
  color: var(--kp-text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  color: var(--kp-text);
  background: transparent;
  border-color: var(--kp-border);
}

.alt-theme {
  background: linear-gradient(135deg, #f0c674, #f59e0b);
  color: #1a1202;
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.22);
}

.dark-theme {
  background: rgba(17, 24, 39, 0.8);
  border-color: rgba(240, 198, 116, 0.18);
}

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

.stat-card,
.feature-card,
.cta-card,
.story-card,
.preview-card,
.info-card,
.invite-banner {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.75));
  backdrop-filter: blur(16px);
  box-shadow: var(--kp-shadow);
}

.stat-card {
  border-radius: 18px;
  padding: 16px;
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.stat-card span {
  color: var(--kp-muted);
  font-size: 0.9rem;
}

.glass-panel {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.78), rgba(15, 23, 42, 0.62));
  box-shadow: var(--kp-shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 18px;
}

.panel-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.panel-pill {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(56, 189, 248, 0.12);
  color: var(--kp-accent-soft);
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.panel-pill.subtle {
  color: var(--kp-muted);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.mock-window {
  display: grid;
  grid-template-columns: 84px 1fr;
  min-height: 380px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-sidebar {
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.mock-logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--kp-accent-soft), var(--kp-accent));
  color: #03131d;
}

.mock-dots span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 12px auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mock-content {
  padding: 22px;
}

.mock-header,
.mock-row,
.mock-grid > div {
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  background-size: 200% 100%;
  animation: shimmer 4.2s linear infinite;
}

.mock-header {
  height: 56px;
  margin-bottom: 18px;
}

.mock-row {
  height: 22px;
  margin-top: 14px;
}

.mock-row.row-lg {
  height: 96px;
  margin-top: 0;
}

.mock-row.short {
  width: 72%;
}

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

.mock-grid > div {
  height: 108px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.section {
  padding: 40px 0 30px;
}

.compact-top {
  padding-top: 18px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  margin: 8px 0 0;
  line-height: 1.04;
}

.section-head p {
  max-width: 580px;
  color: var(--kp-muted);
  line-height: 1.7;
}

.feature-grid,
.preview-grid,
.cta-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.feature-card,
.cta-card,
.story-card,
.preview-card,
.info-card {
  border-radius: 24px;
  padding: 22px;
}

.feature-card h3,
.preview-card h3,
.cta-card h3,
.story-card h2 {
  margin: 0 0 10px;
}

.feature-card p,
.preview-card p,
.cta-card p,
.story-card p,
.info-card p {
  margin: 0;
  color: var(--kp-muted);
  line-height: 1.7;
}

.feature-icon {
  display: inline-flex;
  min-width: 48px;
  height: 36px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(56, 189, 248, 0.1);
  color: var(--kp-accent-soft);
  border: 1px solid rgba(56, 189, 248, 0.16);
}

.server-hero-tarnished {
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 198, 116, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15), transparent 24%);
}

.server-badge-wrap {
  display: flex;
  justify-content: center;
}

.server-badge-card {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.server-badge-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(240, 198, 116, 0.24);
  box-shadow:
    0 0 0 20px rgba(245, 158, 11, 0.04),
    0 0 80px rgba(245, 158, 11, 0.14);
}

.server-badge-core {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1b1408;
  background: linear-gradient(135deg, #f7d58a, #f59e0b);
  box-shadow: 0 25px 70px rgba(245, 158, 11, 0.28);
}

.split-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.info-stack {
  display: grid;
  gap: 16px;
}

.info-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #f0c674;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.invite-banner {
  border-radius: 28px;
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 1100px) {
  .hero-grid,
  .server-hero-grid,
  .feature-grid,
  .cta-grid,
  .preview-grid,
  .split-showcase {
    grid-template-columns: 1fr;
  }

  .section-head,
  .invite-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--kp-shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-link,
  .nav-cta {
    width: 100%;
  }

  .hero,
  .server-hero {
    padding-top: 44px;
  }

  .hero h1,
  .server-hero h1 {
    line-height: 1;
  }

  .mock-window {
    grid-template-columns: 62px 1fr;
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-card,
  .cta-card,
  .story-card,
  .preview-card,
  .info-card,
  .invite-banner,
  .stat-card {
    border-radius: 20px;
    padding: 18px;
  }

  .server-badge-core {
    width: 150px;
    height: 150px;
    font-size: 2.5rem;
  }
}

/* --------------------------------------------------
   TarnishedTown custom theme
-------------------------------------------------- */

.tt-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: clip;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tt-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tt-hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.06) brightness(0.38);
  transform: scale(1.03);
}

.tt-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 136, 0, 0.20), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(255, 115, 0, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(2, 8, 23, 0.96) 100%);
}

.tt-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.tt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffb15d;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.82rem;
  font-weight: 800;
}

.tt-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff8a00;
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.8);
}

.tt-hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.tt-hero-copy h1 span {
  display: block;
  background: linear-gradient(135deg, #ffcf99 0%, #ff8a00 42%, #ffd7ae 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 36px rgba(255, 138, 0, 0.12);
}

.tt-lead {
  max-width: 760px;
  color: #d7d8df;
  font-size: 1.08rem;
  line-height: 1.82;
}

.tt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tt-btn-fire {
  background: linear-gradient(135deg, #ffcc8c 0%, #ff8a00 42%, #ff6a00 100%);
  color: #1a0d00;
  box-shadow: 0 18px 38px rgba(255, 115, 0, 0.24);
}

.tt-btn-fire:hover {
  box-shadow: 0 22px 42px rgba(255, 115, 0, 0.34);
}

.tt-live-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tt-live-pill {
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 171, 94, 0.14);
  background: linear-gradient(180deg, rgba(19, 19, 24, 0.82), rgba(19, 19, 24, 0.58));
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.tt-live-pill strong {
  display: block;
  margin-bottom: 4px;
  color: #fff0df;
  font-size: 0.95rem;
}

.tt-live-pill span {
  color: #c7c9d3;
  font-size: 0.92rem;
}

.tt-command-card {
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 166, 82, 0.14);
  background:
    linear-gradient(180deg, rgba(16, 16, 19, 0.88), rgba(20, 20, 24, 0.72));
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease;
}

.tt-command-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.tt-icon {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 173, 99, 0.16);
  box-shadow: 0 14px 28px rgba(255, 115, 0, 0.12);
}

.tt-command-top small {
  display: block;
  color: #ffbd7b;
  margin-bottom: 4px;
}

.tt-command-top strong {
  color: #fff6ea;
  font-size: 1.08rem;
}

.tt-command-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tt-mini-card {
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 171, 94, 0.10);
}

.tt-mini-card span {
  display: block;
  color: #ffbb76;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.tt-mini-card strong {
  color: #f4f0e9;
  font-size: 0.96rem;
  line-height: 1.45;
}

.tt-section-top {
  padding-top: 26px;
}

.tt-tab-shell {
  border-radius: 30px;
  padding: 18px;
  border: 1px solid rgba(255, 171, 94, 0.12);
  background:
    linear-gradient(180deg, rgba(14, 15, 18, 0.90), rgba(14, 15, 18, 0.78));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.tt-tab-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tt-tab-btn {
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  color: #cfd1da;
  transition: 0.22s ease;
}

.tt-tab-btn:hover,
.tt-tab-btn.active {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.20), rgba(255, 185, 120, 0.12));
  color: #fff3e5;
  box-shadow: inset 0 0 0 1px rgba(255, 171, 94, 0.12);
}

.tt-tab-panel {
  display: none;
}

.tt-tab-panel.active {
  display: block;
}

.tt-panel-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.tt-info-panel,
.tt-side-panel,
.tt-highlight-card,
.tt-dual-cta,
.tt-platform-card {
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 171, 94, 0.10);
  background:
    linear-gradient(180deg, rgba(20, 20, 25, 0.82), rgba(18, 18, 22, 0.70));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.tt-panel-kicker {
  display: inline-block;
  color: #ffb76d;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tt-info-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.08;
  color: #fff7f0;
}

.tt-info-panel p,
.tt-side-panel p {
  margin: 0;
  color: #cfd1d8;
  line-height: 1.76;
}

.tt-stat-line {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tt-stat-line:last-child {
  border-bottom: 0;
}

.tt-stat-line span {
  display: block;
  color: #ffb56a;
  font-size: 0.84rem;
  margin-bottom: 6px;
}

.tt-stat-line strong {
  color: #fff7ee;
  font-size: 1rem;
}

.tt-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tt-platform-badge {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
  color: #fff0de;
  border: 1px solid rgba(255, 171, 94, 0.10);
}

.tt-platform-badge.modded {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.20), rgba(255, 208, 153, 0.09));
}

.tt-platform-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tt-platform-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffb56a;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tt-platform-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff7ef;
  font-size: 1.16rem;
}

.tt-platform-card p {
  margin: 0;
  color: #cfd1da;
  line-height: 1.72;
}

.tt-check-list {
  margin: 0;
  padding-left: 18px;
  color: #f2f3f7;
}

.tt-check-list li {
  margin-bottom: 12px;
  line-height: 1.65;
}

.tt-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tt-highlight-card h3 {
  margin: 0 0 10px;
  color: #fff7ef;
}

.tt-highlight-card p {
  margin: 0;
  color: #cdd0d9;
  line-height: 1.72;
}

.tt-highlight-icon {
  display: inline-flex;
  min-width: 48px;
  height: 36px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(255, 197, 128, 0.12));
  color: #fff0de;
  border: 1px solid rgba(255, 171, 94, 0.12);
}

.tt-dual-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.tt-dual-cta-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  color: #fff7ef;
}

.tt-dual-cta-copy p {
  margin: 0;
  color: #cfd1da;
  line-height: 1.75;
  max-width: 700px;
}

.tt-dual-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tt-floating-join {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.tt-floating-join a {
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd29d 0%, #ff8a00 42%, #ff6a00 100%);
  color: #1e0f00;
  box-shadow: 0 18px 42px rgba(255, 115, 0, 0.28);
}

@media (max-width: 1180px) {
  .tt-hero-inner,
  .tt-panel-grid,
  .tt-platform-layout,
  .tt-highlight-grid {
    grid-template-columns: 1fr;
  }

  .tt-dual-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .tt-live-strip,
  .tt-command-grid {
    grid-template-columns: 1fr;
  }

  .tt-hero {
    min-height: auto;
  }

  .tt-hero-inner {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .tt-hero-copy h1 {
    line-height: 1;
  }

  .tt-hero-actions,
  .tt-dual-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .tt-floating-join {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .tt-floating-join a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .tt-tab-shell,
  .tt-info-panel,
  .tt-side-panel,
  .tt-highlight-card,
  .tt-dual-cta,
  .tt-platform-card,
  .tt-command-card {
    border-radius: 22px;
    padding: 18px;
  }

  .tt-tab-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tt-tab-btn {
    width: 100%;
    text-align: left;
  }
}