/* ═══════════════════════════════════════════
   Token RX — Main Stylesheet v1.0.0
   ═══════════════════════════════════════════ */

/* ── Reset & Custom Properties ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #080D1A;
  --navy2:      #0D1526;
  --navy3:      #111C35;
  --cyan:       #00E5FF;
  --cyan2:      #00B8D9;
  --violet:     #6B48FF;
  --violet2:    #8B6EFF;
  --white:      #F0F4FF;
  --white2:     #A8B8D8;
  --white3:     #5A6A8A;
  --green:      #00FFB3;
  --amber:      #FFB800;
  --red:        #FF4D6D;
  --card:       rgba(255,255,255,0.04);
  --border:     rgba(255,255,255,0.08);
  --glow-cyan:  0 0 40px rgba(0,229,255,0.15);
  --glow-viol:  0 0 40px rgba(107,72,255,0.20);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
}

html { scroll-behavior: smooth; }

body.trx-body {
  background:   var(--navy);
  color:        var(--white);
  font-family:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x:   hidden;
  line-height:  1.6;
  min-height:   100vh;
}

::selection { background: rgba(0,229,255,0.25); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track  { background: var(--navy); }
::-webkit-scrollbar-thumb  { background: var(--violet); border-radius: 2px; }

/* ── Grid background ── */
#trx-root {
  position: relative;
  background-image:
    linear-gradient(rgba(0,229,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  min-height: 100vh;
}

/* ── Typography ── */
.trx-display {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.trx-mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}
.trx-gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.trx-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ── Buttons ── */
.trx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.trx-btn:hover { transform: translateY(-2px); }

.trx-btn-primary {
  padding: 13px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(0,229,255,0.28);
}
.trx-btn-primary:hover { box-shadow: 0 8px 36px rgba(0,229,255,0.4); }

.trx-btn-secondary {
  padding: 12px 24px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white2);
}
.trx-btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }

.trx-btn-ghost {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white2);
}
.trx-btn-ghost:hover { border-color: rgba(0,229,255,0.3); color: var(--cyan); }

/* ── Cards ── */
.trx-card {
  background:    var(--navy2);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:    border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position:      relative;
  overflow:      hidden;
}
.trx-card:hover {
  border-color: rgba(0,229,255,0.2);
  transform:    translateY(-3px);
  box-shadow:   var(--glow-cyan);
}
.trx-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,72,255,0.04), rgba(0,229,255,0.02));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.trx-card:hover::before { opacity: 1; }

/* ── Badges ── */
.trx-badge {
  display:       inline-flex;
  align-items:   center;
  gap:           6px;
  border-radius: 30px;
  font-size:     0.72rem;
  font-weight:   600;
  letter-spacing: 0.04em;
}
.trx-badge-cyan   { background: rgba(0,229,255,0.1);  border: 1px solid rgba(0,229,255,0.22);  color: var(--cyan);   padding: 4px 12px; }
.trx-badge-green  { background: rgba(0,255,179,0.1);  border: 1px solid rgba(0,255,179,0.22);  color: var(--green);  padding: 4px 12px; }
.trx-badge-amber  { background: rgba(255,184,0,0.1);  border: 1px solid rgba(255,184,0,0.22);  color: var(--amber);  padding: 4px 12px; }
.trx-badge-red    { background: rgba(255,77,109,0.1); border: 1px solid rgba(255,77,109,0.22); color: var(--red);    padding: 4px 12px; }
.trx-badge-violet { background: rgba(107,72,255,0.12);border: 1px solid rgba(107,72,255,0.22); color: var(--violet2);padding: 4px 12px; }

/* ── Pulse dot ── */
.trx-dot-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: trx-pulse 1.8s infinite;
}
.trx-dot-live.green  { background: var(--green); }
.trx-dot-live.cyan   { background: var(--cyan); }
.trx-dot-live.amber  { background: var(--amber); }
@keyframes trx-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

/* ── Shimmer animation ── */
@keyframes trx-shimmer {
  from { left: -100%; }
  to   { left:  100%; }
}

/* ── Section anatomy ── */
.trx-section { padding: 88px 5%; position: relative; z-index: 1; }
.trx-section-eyebrow {
  font-size:      0.72rem;
  font-weight:    600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--cyan);
  margin-bottom:  14px;
}
.trx-section-title {
  font-family:    'Syne', sans-serif;
  font-size:      clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight:    800;
  letter-spacing: -0.03em;
  line-height:    1.1;
  margin-bottom:  14px;
}
.trx-section-sub {
  font-size:     1rem;
  color:         var(--white2);
  line-height:   1.7;
  max-width:     520px;
  margin-bottom: 48px;
}

/* ── Inputs ── */
.trx-input {
  background:    rgba(255,255,255,0.05);
  border:        1px solid var(--border);
  border-radius: var(--radius-md);
  padding:       13px 18px;
  color:         var(--white);
  font-family:   'Inter', sans-serif;
  font-size:     0.9rem;
  outline:       none;
  width:         100%;
  transition:    border-color 0.2s, box-shadow 0.2s;
}
.trx-input:focus {
  border-color: var(--cyan);
  box-shadow:   0 0 0 3px rgba(0,229,255,0.1);
}
.trx-input::placeholder { color: var(--white3); }

/* ── Nav ── */
.trx-nav {
  position:        fixed;
  top:             0; left: 0; right: 0;
  z-index:         1000;
  padding:         18px 5%;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  background:      rgba(8,13,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom:   1px solid var(--border);
}
.trx-nav-logo {
  font-family:  'Syne', sans-serif;
  font-weight:  800;
  font-size:    1.5rem;
  background:   linear-gradient(135deg, var(--cyan), var(--violet2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.trx-nav-links {
  display:     flex;
  align-items: center;
  gap:         2rem;
}
.trx-nav-links a {
  color:           var(--white2);
  text-decoration: none;
  font-size:       0.875rem;
  font-weight:     500;
  transition:      color 0.2s;
}
.trx-nav-links a:hover { color: var(--cyan); }

/* ── Lang switcher ── */
.trx-lang {
  display:       flex;
  align-items:   center;
  gap:           3px;
  background:    var(--card);
  border:        1px solid var(--border);
  border-radius: 30px;
  padding:       4px;
}
.trx-lang-btn {
  padding:       4px 11px;
  border-radius: 20px;
  border:        none;
  cursor:        pointer;
  font-family:   'Inter', sans-serif;
  font-size:     0.76rem;
  font-weight:   500;
  transition:    all 0.2s;
  background:    transparent;
  color:         var(--white2);
}
.trx-lang-btn.active {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color:      var(--navy);
  font-weight: 700;
}

/* ── Hero ── */
.trx-hero {
  min-height: 100vh;
  display:    flex;
  align-items: center;
  gap:        64px;
  padding:    120px 5% 80px;
  position:   relative;
  z-index:    1;
  overflow:   hidden;
}
.trx-hero-glow {
  position:      absolute;
  border-radius: 50%;
  pointer-events: none;
}
.trx-hero-content { flex: 1; max-width: 560px; }
.trx-hero h1 {
  font-family:    'Syne', sans-serif;
  font-size:      clamp(2.5rem, 5.2vw, 4.2rem);
  font-weight:    800;
  line-height:    1.06;
  letter-spacing: -0.03em;
  margin-bottom:  24px;
}
.trx-hero-sub { font-size: 1.05rem; color: var(--white2); line-height: 1.75; margin-bottom: 36px; }
.trx-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trx-hero-stats {
  display:      flex;
  gap:          36px;
  margin-top:   48px;
  padding-top:  40px;
  border-top:   1px solid var(--border);
  flex-wrap:    wrap;
}
.trx-stat-num {
  font-family: 'Syne', sans-serif;
  font-size:   1.9rem;
  font-weight: 800;
  line-height: 1;
  color:       var(--cyan);
}
.trx-stat-label { font-size: 0.76rem; color: var(--white3); margin-top: 4px; }

/* ── Token demo ── */
.trx-token-demo {
  flex:          0 0 400px;
  background:    var(--navy2);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:       28px;
  box-shadow:    var(--glow-viol), 0 40px 80px rgba(0,0,0,0.5);
  position:      relative;
  overflow:      hidden;
}
.trx-token-demo::before {
  content:  '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,72,255,0.06), rgba(0,229,255,0.03));
  pointer-events: none;
}

.trx-demo-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.trx-demo-hosp   { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; }
.trx-demo-dept   { font-size: 0.75rem; color: var(--white3); margin-top: 3px; }

.trx-token-num-box {
  text-align:    center;
  padding:       20px 0;
  border:        1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  background:    rgba(0,0,0,0.2);
  position:      relative;
  overflow:      hidden;
}
.trx-token-num-box::after {
  content:  '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.06), transparent);
  animation: trx-shimmer 3s infinite;
}
.trx-token-label { font-size: 0.68rem; color: var(--white3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.trx-token-big   { font-family: 'JetBrains Mono', monospace; font-size: 3rem; font-weight: 500; line-height: 1; }

.trx-qr-row   { display: flex; gap: 14px; margin-bottom: 18px; }
.trx-qr-box   { width: 100px; height: 100px; flex-shrink: 0; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.trx-qr-scan  { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); top: 0; }
.trx-qr-scan.scanning { animation: trx-scan 2s ease-in-out infinite; }
@keyframes trx-scan { 0% { top: 0; } 50% { top: 96px; } 100% { top: 0; } }

.trx-meta-col  { flex: 1; display: flex; flex-direction: column; gap: 0; }
.trx-meta-row  { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--border); }
.trx-meta-row:last-child { border-bottom: none; }
.trx-meta-key  { font-size: 0.72rem; color: var(--white3); }
.trx-meta-val  { font-size: 0.8rem; font-family: 'JetBrains Mono', monospace; font-weight: 500; color: var(--white); }

.trx-progress-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-top: 6px; }
.trx-progress-fill  { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--cyan), var(--violet2)); transition: width 1s ease; box-shadow: 0 0 10px rgba(0,229,255,0.4); }

.trx-alert-bar {
  display:       flex;
  align-items:   center;
  gap:           10px;
  background:    rgba(0,255,179,0.08);
  border:        1px solid rgba(0,255,179,0.22);
  border-radius: 10px;
  padding:       10px 14px;
  font-size:     0.8rem;
  color:         var(--green);
  font-weight:   500;
  margin-top:    14px;
  animation:     trx-fade-up 0.5s ease;
}
@keyframes trx-fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── City section ── */
.trx-search-bar {
  display:       flex;
  align-items:   center;
  background:    var(--navy2);
  border:        1px solid var(--border);
  border-radius: var(--radius-md);
  padding:       6px 6px 6px 18px;
  max-width:     520px;
  margin-bottom: 28px;
  transition:    border-color 0.2s, box-shadow 0.2s;
}
.trx-search-bar:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,255,0.1); }
.trx-search-bar input {
  flex:       1;
  background: transparent;
  border:     none;
  outline:    none;
  color:      var(--white);
  font-size:  0.9rem;
  padding:    8px 10px 8px 0;
  font-family: 'Inter', sans-serif;
}
.trx-search-bar input::placeholder { color: var(--white3); }

.trx-city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.trx-city-chip  {
  padding:       7px 18px;
  border-radius: 30px;
  font-size:     0.82rem;
  font-weight:   500;
  background:    var(--card);
  border:        1px solid var(--border);
  color:         var(--white2);
  cursor:        pointer;
  transition:    all 0.2s;
}
.trx-city-chip:hover, .trx-city-chip.active { border-color: var(--cyan); color: var(--cyan); background: rgba(0,229,255,0.06); }

/* ── Hospital cards grid ── */
.trx-hosp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }

.trx-hosp-card { padding: 24px; cursor: pointer; }
.trx-hosp-top  { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.trx-hosp-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--violet), var(--cyan2)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.trx-hosp-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.trx-hosp-area { font-size: 0.78rem; color: var(--white3); margin-bottom: 12px; }
.trx-hosp-depts { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.trx-dept-pill  { font-size: 0.68rem; padding: 3px 10px; border-radius: 20px; background: rgba(107,72,255,0.12); border: 1px solid rgba(107,72,255,0.2); color: var(--violet2); }
.trx-hosp-stats { display: flex; gap: 20px; padding-top: 14px; border-top: 1px solid var(--border); margin-bottom: 14px; }
.trx-hosp-stat-num { font-family: 'JetBrains Mono', monospace; font-size: 1rem; font-weight: 500; }
.trx-hosp-stat-label { font-size: 0.68rem; color: var(--white3); margin-top: 2px; }
.trx-hosp-cta {
  width: 100%; padding: 11px; border-radius: 12px; cursor: pointer; transition: all 0.2s;
  background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(107,72,255,0.08));
  border: 1px solid rgba(0,229,255,0.15);
  color: var(--cyan); font-weight: 600; font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}
.trx-hosp-cta:hover { background: linear-gradient(135deg, rgba(0,229,255,0.18), rgba(107,72,255,0.18)); }

/* ── How it works ── */
.trx-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.trx-how-step {
  padding:    36px 28px;
  background: var(--navy2);
  transition: background 0.3s;
  position:   relative;
}
.trx-how-step:hover     { background: var(--navy3); }
.trx-how-step + .trx-how-step { border-left: 1px solid var(--border); }
.trx-how-num    { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; color: var(--white3); margin-bottom: 18px; letter-spacing: 0.1em; }
.trx-how-icon   { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.trx-how-title  { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.trx-how-desc   { font-size: 0.84rem; color: var(--white2); line-height: 1.65; }

/* ── Token types ── */
.trx-tokentypes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.trx-tokentype-card  { padding: 36px; border-radius: var(--radius-lg); }
.trx-tokentype-card.general { background: linear-gradient(135deg, rgba(0,229,255,0.06), rgba(0,229,255,0.02)); border: 1px solid rgba(0,229,255,0.15); }
.trx-tokentype-card.special { background: linear-gradient(135deg, rgba(255,184,0,0.08), rgba(107,72,255,0.05)); border: 1px solid rgba(255,184,0,0.2); }
.trx-type-title  { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; margin: 16px 0 10px; }
.trx-type-desc   { font-size: 0.9rem; color: var(--white2); line-height: 1.7; margin-bottom: 22px; }
.trx-type-feats  { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.trx-type-feats li { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--white2); }
.trx-check-cyan   { color: var(--cyan);  font-weight: 700; }
.trx-check-amber  { color: var(--amber); font-weight: 700; }

/* ── Features bento ── */
.trx-bento { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto; gap: 16px; margin-top: 48px; }
.trx-feature-card { padding: 28px; }
.trx-feature-card.span2 { grid-column: span 2; }
.trx-feat-icon  { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.trx-feat-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.trx-feat-desc  { font-size: 0.83rem; color: var(--white2); line-height: 1.65; }
.trx-feat-preview {
  margin-top: 18px; background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm); padding: 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 0.74rem;
}
.trx-prev-row { display: flex; justify-content: space-between; padding: 5px 0; color: var(--white2); }
.trx-prev-active { color: var(--green); font-weight: 500; }
.trx-prev-cyan   { color: var(--cyan); }
.trx-prev-dim    { color: var(--white3); }

/* ── Pricing ── */
.trx-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.trx-price-card   { padding: 32px; }
.trx-price-card.featured { border-color: rgba(0,229,255,0.3) !important; background: linear-gradient(135deg, rgba(107,72,255,0.1), rgba(0,229,255,0.05)); box-shadow: var(--glow-cyan); }
.trx-price-badge { position: absolute; top: 18px; right: 18px; background: linear-gradient(135deg, var(--cyan), var(--violet)); color: var(--navy); font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.trx-price-plan  { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white3); margin-bottom: 12px; }
.trx-price-amt   { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.trx-price-per   { font-size: 0.78rem; color: var(--white3); margin-bottom: 24px; }
.trx-price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.trx-price-feats li { display: flex; align-items: center; gap: 10px; font-size: 0.83rem; color: var(--white2); }
.trx-pf-ok  { color: var(--cyan); }
.trx-pf-no  { color: var(--white3); }
.trx-price-cta { width: 100%; padding: 13px; border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: opacity 0.2s; }
.trx-price-cta.primary   { background: linear-gradient(135deg, var(--cyan), var(--violet)); color: var(--navy); border: none; }
.trx-price-cta.secondary { background: transparent; color: var(--white2); border: 1px solid var(--border); }
.trx-price-cta:hover { opacity: 0.85; }

/* ── Register CTA ── */
.trx-register-wrap { padding: 80px 5%; position: relative; z-index: 1; }
.trx-register-card {
  background:    linear-gradient(135deg, rgba(107,72,255,0.14), rgba(0,229,255,0.07));
  border:        1px solid rgba(107,72,255,0.25);
  border-radius: var(--radius-xl);
  padding:       72px 64px;
  text-align:    center;
  position:      relative;
  overflow:      hidden;
}
.trx-register-card::before {
  content: ''; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,72,255,0.18) 0%, transparent 70%);
  top: -140px; right: -100px; pointer-events: none;
}
.trx-register-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.1; }
.trx-register-sub   { font-size: 1rem; color: var(--white2); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.trx-register-form  { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.trx-register-form .trx-input { border-radius: 50px; padding: 13px 22px; }

/* ── Footer ── */
.trx-footer { padding: 56px 5% 32px; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.trx-footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 44px; flex-wrap: wrap; gap: 36px; }
.trx-footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; background: linear-gradient(135deg, var(--cyan), var(--violet2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.trx-footer-tag  { font-size: 0.83rem; color: var(--white3); max-width: 240px; line-height: 1.65; }
.trx-footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.trx-footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.trx-footer-col a { display: block; font-size: 0.82rem; color: var(--white3); text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.trx-footer-col a:hover { color: var(--cyan); }
.trx-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.trx-footer-copy { font-size: 0.78rem; color: var(--white3); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .trx-hero { gap: 40px; }
  .trx-token-demo { flex: 0 0 360px; }
  .trx-how-grid { grid-template-columns: repeat(2,1fr); }
  .trx-how-step + .trx-how-step:nth-child(3) { border-left: none; border-top: 1px solid var(--border); }
  .trx-bento { grid-template-columns: repeat(2,1fr); }
  .trx-feature-card.span2 { grid-column: span 1; }
}

@media (max-width: 768px) {
  .trx-hero           { flex-direction: column; padding-top: 100px; }
  .trx-token-demo     { flex: none; width: 100%; max-width: 400px; }
  .trx-hero-content   { max-width: 100%; }
  .trx-tokentypes-grid{ grid-template-columns: 1fr; }
  .trx-pricing-grid   { grid-template-columns: 1fr; }
  .trx-how-grid       { grid-template-columns: 1fr; }
  .trx-how-step + .trx-how-step { border-left: none; border-top: 1px solid var(--border); }
  .trx-bento          { grid-template-columns: 1fr; }
  .trx-register-card  { padding: 44px 28px; }
  .trx-register-form  { flex-direction: column; }
  .trx-nav-links > a  { display: none; }
  .trx-hero-stats     { gap: 20px; }
}

@media (max-width: 480px) {
  .trx-section        { padding: 64px 5%; }
  .trx-hero-stats     { flex-wrap: wrap; }
  .trx-hosp-grid      { grid-template-columns: 1fr; }
}

/* ── WP admin bar offset ── */
.admin-bar .trx-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .trx-nav { top: 46px; } }
