:root {
  --bg: #080808;
  --surf: #0d0d0d;
  --card: #111;
  --b0: #181818;
  --b1: #222;
  --lime: #c8f135;
  --lime-d: #a3c427;
  --white: #efefef;
  --mid: #666;
  --muted: #444;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}


/* ── HERO BANNER ── */
.tc-hero {
  background: var(--surf);
  border-bottom: 1px solid var(--b0);
  padding: 72px 52px 60px;
  position: relative;
  overflow: hidden;
}

.tc-hero::before {
  content: 'T&C';
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  letter-spacing: -5px;
  color: rgba(255, 255, 255, .025);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.tc-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.tc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 20px;
}

.tc-tag-line {
  width: 24px;
  height: 1px;
  background: #e8ff47;
}

.tc-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.tc-hero h1 em {
  font-style: normal;
  color: #e8ff47;
}

.tc-hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--b0);
}

.meta-item {
  font-size: 12px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item svg {
  color: #e8ff47;
}

/* ── LAYOUT ── */
.tc-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 52px 100px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

/* ── SIDEBAR ── */
.tc-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mid);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all .2s;
  line-height: 1.3;
}

.sidebar-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .03);
  border-left-color: #e8ff47;
}

.sidebar-nav a.active {
  color: var(--white);
  background: rgba(200, 241, 53, .06);
  border-left-color: #e8ff47;
}

/* ── MAIN CONTENT ── */
.tc-content {
  min-width: 0;
}

/* Section */
.tc-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--b0);
}

.tc-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.sec-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.sec-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  padding-top: 6px;
  flex-shrink: 0;
  width: 28px;
}

.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.3px;
}

.sec-title em {
  font-style: normal;
  color: #e8ff47;
}

/* Body text */
.tc-body {
  font-size: 15px;
  color: #888;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.tc-body strong {
  color: var(--white);
  font-weight: 600;
}

.tc-body:last-child {
  margin-bottom: 0;
}

/* Highlight box */
.highlight-box {
  background: rgba(200, 241, 53, .05);
  border: 1px solid rgba(200, 241, 53, .15);
  border-left: 3px solid #e8ff47;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 20px 0;
}

.highlight-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin: 0;
}

.highlight-box p strong {
  color: var(--white);
}

/* Warning box */
.warning-box {
  background: rgba(255, 107, 107, .05);
  border: 1px solid rgba(255, 107, 107, .2);
  border-left: 3px solid #ff6b6b;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 20px 0;
}

.warning-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin: 0;
}

.warning-box p strong {
  color: #ff8a8a;
}

/* Timeline — payment flow */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
}

.tl-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  width: 1px;
  height: calc(100% + 2px);
  background: var(--b1);
}

.tl-item:last-child::before {
  display: none;
}

.tl-dot {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--b1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: #e8ff47;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}

.tl-body {
  padding-bottom: 28px;
}

.tl-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tl-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* Policy cards */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin: 20px 0;
}

.policy-card {
  background: var(--card);
  border: 1px solid var(--b0);
  padding: 24px 22px;
  border-radius: 0;
  transition: background .25s;
}

.policy-card:first-child {
  border-radius: 10px 0 0 10px;
}

.policy-card:last-child {
  border-radius: 0 10px 10px 0;
}

.policy-card:hover {
  background: #131313;
}

.pc-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.pc-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pc-title.green {
  color: #4ade80;
}

.pc-title.red {
  color: #ff6b6b;
}

.pc-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

/* List */
.tc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.tc-list li {
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.tc-list li::before {
  content: '→';
  color: #e8ff47;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact card */
.contact-card {
  background: rgba(200, 241, 53, .05);
  border: 1px solid rgba(200, 241, 53, .15);
  border-radius: 12px;
  padding: 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cc-text {}

.cc-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mid);
  margin-bottom: 4px;
}

.cc-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.cc-btn {
  background: #e8ff47;
  color: var(--bg);
  padding: 11px 24px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cc-btn:hover {
  background: var(--lime-d);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  padding: 36px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}

.footer-logo span {
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;

}

/* ── RESPONSIVE ── */
@media(max-width:860px) {
  nav {
    padding: 14px 24px;
  }

  .tc-hero {
    padding: 52px 24px 44px;
  }

  .tc-hero::before {
    display: none;
  }

  .tc-layout {
    grid-template-columns: 1fr;
    padding: 40px 24px 72px;
    gap: 0;
  }

  .tc-sidebar {
    display: none;
  }

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

  .policy-card:first-child {
    border-radius: 10px 10px 0 0;
  }

  .policy-card:last-child {
    border-radius: 0 0 10px 10px;
  }

  .tc-footer {
    padding: 28px 24px;
  }
}