/* =========================================================
   TTG MANAGEMENT
   FINAL ZOHO CUSTOM CSS
   ========================================================= */

:root {
  --ttg-black: #050607;
  --ttg-black-soft: #080b0c;
  --ttg-charcoal: #0d1213;
  --ttg-panel: #101617;
  --ttg-white: #f5f7f7;
  --ttg-muted: #9ba5a8;
  --ttg-muted-light: #c8cecf;
  --ttg-teal: #5ec8c4;
  --ttg-teal-bright: #76ddd8;
  --ttg-line: rgba(255, 255, 255, 0.09);
  --ttg-line-strong: rgba(94, 200, 196, 0.26);
  --ttg-max: 1180px;
  --ttg-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

/* GLOBAL */
html {
  scroll-behavior: smooth;
  background: var(--ttg-black) !important;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--ttg-black) !important;
  color: var(--ttg-white) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

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

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

::selection {
  background: var(--ttg-teal);
  color: #031011;
}

/* ZOHO CLEANUP */
.theme-content-container,
.theme-content-area,
.theme-section,
.zpsection,
.zprow,
.zpcontainer {
  background: transparent !important;
}

.theme-content-container,
.theme-content-area {
  margin: 0 !important;
  padding: 0 !important;
}

.zpsection {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.zpcontainer {
  width: 100% !important;
  max-width: none !important;
}

.shell {
  width: min(var(--ttg-max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(5, 6, 7, 0.94) !important;
  border-bottom: 1px solid var(--ttg-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.brand img {
  width: 170px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.brand:hover img {
  opacity: 0.88;
}

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

.nav a {
  position: relative;
  color: #c9cfd0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--ttg-teal);
  transition: width 0.22s ease;
}

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

.nav a:hover::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  background: var(--ttg-teal);
  color: #041011 !important;
  border: 1px solid var(--ttg-teal);
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--ttg-teal-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(94, 200, 196, 0.18);
}

.btn-small {
  min-height: 42px;
  padding-left: 18px;
  padding-right: 18px;
}

.btn.ghost {
  background: transparent;
  color: var(--ttg-white) !important;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn.ghost:hover {
  color: var(--ttg-teal) !important;
  border-color: var(--ttg-teal);
  background: rgba(94, 200, 196, 0.04);
}

/* TYPOGRAPHY */
.eyebrow {
  margin: 0 0 18px;
  color: var(--ttg-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #071112;
}

.section-title {
  margin: 0;
  color: var(--ttg-white);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.95;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

.section-dark {
  background: var(--ttg-black-soft);
  border-top: 1px solid var(--ttg-line);
  border-bottom: 1px solid var(--ttg-line);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 78% 44%, rgba(94, 200, 196, 0.14), transparent 32%), radial-gradient(circle at 17% 90%, rgba(94, 200, 196, 0.04), transparent 25%), linear-gradient(180deg, #050607 0%, #080b0c 100%);
  border-bottom: 1px solid var(--ttg-line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.75;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.hero-glow {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(94, 200, 196, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 130px rgba(94, 200, 196, 0.03);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: center;
  padding: 105px 0;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ttg-white);
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--ttg-teal);
}

.hero-text {
  max-width: 690px;
  margin: 30px 0 36px;
  color: var(--ttg-muted-light);
  font-size: 20px;
  line-height: 1.65;
}

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

.hero-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(94, 200, 196, 0.11);
  border-radius: 50%;
}

.hero-mark img {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.36));
}

/* INTRO */
.intro {
  border-bottom: 1px solid var(--ttg-line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: center;
}

.intro-copy p {
  margin: 0 0 20px;
  color: var(--ttg-muted-light);
  font-size: 18px;
  line-height: 1.75;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

/* BRANDS AND SPONSORS */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 70px;
  align-items: end;
}

.section-head > p {
  margin: 0;
  color: var(--ttg-muted);
  font-size: 17px;
  line-height: 1.7;
}

.cards {
  display: grid;
  gap: 16px;
  margin-top: 52px;
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 305px;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--ttg-line);
  transition: transform 0.24s ease, border 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 3px;
  background: var(--ttg-teal);
  transition: width 0.24s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 200, 196, 0.34);
  background: linear-gradient(145deg, rgba(94, 200, 196, 0.055), rgba(255, 255, 255, 0.012));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.card:hover::before {
  width: 100%;
}

.card-number {
  color: var(--ttg-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.card h3 {
  margin: 72px 0 14px;
  color: var(--ttg-white);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  color: var(--ttg-muted);
  font-size: 15px;
  line-height: 1.7;
}

.cta-row {
  margin-top: 22px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #080b0c;
  border: 1px solid var(--ttg-line);
}

.cta-row strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ttg-white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.cta-row span {
  display: block;
  color: var(--ttg-muted);
  font-size: 14px;
}

/* MEDIA REACH */
.reach {
  padding: 82px 0;
  background: var(--ttg-teal);
  color: #071112;
}

.reach-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 60px;
  align-items: end;
}

.reach-head h2 {
  margin: 0;
  max-width: 760px;
  color: #071112;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -2.8px;
  line-height: 0.95;
  text-transform: uppercase;
}

.reach-head > p {
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.stat {
  padding: 35px 32px;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.stat strong {
  display: block;
  color: #071112;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -2.4px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* FIGHTER REPRESENTATION */
.fighter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: start;
}

.fighter-copy {
  position: sticky;
  top: 120px;
}

.fighter-copy > p:not(.eyebrow) {
  margin: 26px 0 30px;
  color: var(--ttg-muted-light);
  font-size: 18px;
  line-height: 1.7;
}

.fighter-list {
  border-top: 1px solid var(--ttg-line);
}

.line-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ttg-line);
  transition: padding 0.2s ease, background 0.2s ease;
}

.line-item:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(94, 200, 196, 0.035), transparent);
}

.line-item > span {
  padding-top: 5px;
  color: var(--ttg-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.line-item h3 {
  margin: 0 0 8px;
  color: var(--ttg-white);
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.line-item p {
  margin: 0;
  color: var(--ttg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* PARTNERSHIP CTA */
.roster-note {
  text-align: center;
}

.roster-inner {
  max-width: 860px;
}

.roster-inner > p:not(.eyebrow) {
  max-width: 700px;
  margin: 26px auto 32px;
  color: var(--ttg-muted-light);
  font-size: 18px;
  line-height: 1.7;
}

/* CONTACT */
.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: radial-gradient(circle at 12% 18%, rgba(94, 200, 196, 0.09), transparent 28%), var(--ttg-black);
  border-top: 1px solid var(--ttg-line);
}

.contact::after {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(94, 200, 196, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  margin: 0;
  color: var(--ttg-white);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-copy > p:not(.eyebrow) {
  margin: 26px 0;
  color: var(--ttg-muted-light);
  font-size: 18px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-links a {
  width: fit-content;
  color: var(--ttg-teal);
  font-weight: 800;
  transition: color 0.2s ease;
}

.contact-links a:hover {
  color: var(--ttg-teal-bright);
}

/* INQUIRY FORM */
.inquiry-form {
  padding: 34px;
  background: linear-gradient(145deg, #101617, #0c1112);
  border: 1px solid var(--ttg-line);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
}

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

.inquiry-form label {
  display: block;
  margin-bottom: 18px;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #cfd5d6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ttg-white);
  background: #090d0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.inquiry-form input:hover,
.inquiry-form select:hover,
.inquiry-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--ttg-teal);
  background: #0b1011;
  box-shadow: 0 0 0 3px rgba(94, 200, 196, 0.07);
}

.inquiry-form textarea {
  min-height: 140px;
  resize: vertical;
}

.inquiry-form select option {
  background: #090d0e;
  color: var(--ttg-white);
}

.submit-btn {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 12px 0 0;
  color: #7f8a8c;
  font-size: 12px;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #030404;
  border-top: 1px solid var(--ttg-line);
}

.footer-inner {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 50px;
  align-items: center;
}

.footer-brand img {
  width: 195px;
  height: auto;
  margin-bottom: 14px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: #707b7d;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  width: fit-content;
  color: #c9cfd0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--ttg-teal);
}

/* INTERNAL PAGES */
.page-head {
  padding: 100px 0 55px;
  background: radial-gradient(circle at 80% 20%, rgba(94, 200, 196, 0.08), transparent 30%), var(--ttg-black);
  border-bottom: 1px solid var(--ttg-line);
}

.page-head h1 {
  margin: 0;
  color: var(--ttg-white);
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-body {
  min-height: 60vh;
  padding: 70px 0;
  color: #d6dbdc;
}

.page-body h2,
.page-body h3,
.page-body h4 {
  color: var(--ttg-white);
}

.page-body a {
  color: var(--ttg-teal);
}

/* DESKTOP POLISH */
@media (min-width: 1001px) {
  .hero-copy,
  .intro-grid,
  .section-head,
  .cards,
  .fighter-grid,
  .contact-grid {
    animation: ttgFadeUp 0.55s ease both;
  }
}

@keyframes ttgFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TABLET */
@media (max-width: 1000px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 90px 0;
  }

  .hero-mark {
    display: none;
  }

  .intro-grid,
  .section-head,
  .reach-head,
  .fighter-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .fighter-copy,
  .contact-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .shell {
    width: min(var(--ttg-max), calc(100% - 28px));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 140px;
    height: auto;
    max-height: 50px;
  }

  .nav-wrap > .btn {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

  .hero-grid {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: 57px;
    letter-spacing: -2.6px;
  }

  .hero-text {
    margin-top: 24px;
    font-size: 17px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .cards.four {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .card h3 {
    margin-top: 48px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }

  .reach {
    padding: 64px 0;
  }

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

  .stat,
  .stat:first-child {
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.16);
  }

  .stat:first-child {
    border-top: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .inquiry-form {
    padding: 24px 18px;
  }

  .contact {
    padding: 84px 0;
  }

  .contact-copy h2 {
    font-size: 45px;
    letter-spacing: -2px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 0;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
