/* ─── RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #0b1228;
  --navy2: #0f172a;
  --blue: #0ea5e9;
  --cyan: #38bdf8;
  --light: #f0f6ff;
  --muted: #94a3b8;
  --slate: #475569;
  --border: rgba(14, 165, 233, 0.15);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
/* ─── TYC CONTENT ────────────────────────────────────────── */
.tyc-page {
  padding-top: 64px;
}
.tyc-hero {
  background: var(--navy);
  padding: 72px 40px 56px;
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
}
.tyc-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}
.tyc-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--kicker);
  margin-bottom: 16px;
}
.tyc-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #f0f6ff;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 16px;
}
.tyc-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}
.tyc-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}
.tyc-section {
  margin-bottom: 48px;
}
.tyc-section h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--card-border);
}
.tyc-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  margin-top: 20px;
}
.tyc-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.tyc-section ul {
  list-style: none;
  margin: 8px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tyc-section ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.tyc-section ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.tyc-contact-box {
  background: var(--section-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 16px;
}
.tyc-contact-box p {
  margin-bottom: 6px;
}
.tyc-contact-box a {
  color: var(--blue);
}
@media (max-width: 768px) {
  .tyc-hero {
    padding: 60px 20px 40px;
  }
  .tyc-body {
    padding: 40px 20px 60px;
  }
}
/* ─── UTILS ──────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.servicios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }
}
.servicio-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--card-border);
  transition: all 0.25s;
}
.servicio-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.08);
}
.servicio-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.servicio-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.servicio-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.servicio-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.servicio-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.servicio-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.servicio-features li::before {
  content: "✦";
  color: var(--blue);
  font-size: 10px;
}
.servicio-btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--blue-btn);
  color: #fff;
  border-radius: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.servicio-btn:hover {
  background: var(--blue-btn-hover);
}
.tokens-note {
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  margin-top: 24px;
}
.tokens-badge {
  background: var(--blue-btn);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.tokens-note p {
  font-size: 13px;
  color: var(--text-muted);
}

.servicio-card {
  box-shadow: 0 1px 2px rgba(11, 18, 40, 0.04), 0 6px 16px rgba(11, 18, 40, 0.05);
}
