:root {
  --bg: #140f16;
  --surface: #1e1620;
  --surface-raised: #2a1f2e;
  --ink: #fdf3e7;
  --muted: #cbb8c6;
  --line: #3b2c3e;
  --accent: #f2711c;
  --accent-bright: #f9c22e;
}

body::before {
  background:
    radial-gradient(circle at 78% 6%, rgba(242, 113, 28, 0.2), transparent 30rem),
    radial-gradient(circle at 12% 90%, rgba(109, 90, 110, 0.3), transparent 34rem);
}

.site-header { background: rgba(20, 15, 22, 0.9); border-bottom-color: rgba(242, 113, 28, 0.2); }

/* Hero */
.tigrr-hero { overflow: hidden; }
.tigrr-hero-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: center; gap: clamp(2.5rem, 7vw, 6rem); padding-block: clamp(3.5rem, 9vw, 7rem); }
.tigrr-brand { display: inline-block; color: var(--accent); font-size: 1rem; font-weight: 800; letter-spacing: 0.32em; }
.tigrr-hero h1 { margin: 1rem 0 0; color: #fff7ee; font-size: clamp(2.3rem, 5vw, 4rem); font-weight: 750; letter-spacing: -0.04em; line-height: 1; }
.tigrr-lead { max-width: 34rem; margin: 1.5rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.6; }
.tigrr-claim { margin: 1.5rem 0 0; padding: 0.85rem 1.1rem; border-radius: 12px; background: rgba(242, 113, 28, 0.14); color: var(--accent-bright); font-weight: 700; }
.tigrr-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.tigrr-visual { display: grid; justify-items: center; gap: 0.5rem; }
.tigrr-logo { width: min(100%, 420px); height: auto; border-radius: 28px; box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45); }
.tigrr-visual-word { color: var(--accent-bright); font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: 0.3em; }

/* Secciones TIGRR */
.t-section { border-top: 1px solid var(--line); }
.t-section:first-of-type { border-top: 0; }
.t-head { max-width: 1000px; }
.t-head-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.t-num { color: var(--muted); font-size: 0.9rem; font-weight: 700; }
.t-title { margin: 0.6rem 0 0; color: #fff7ee; font-size: clamp(1.8rem, 3.6vw, 3rem); letter-spacing: -0.045em; line-height: 1.05; }
.t-sub { margin: 1rem 0 0; color: var(--accent-bright); font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 700; line-height: 1.4; }
.t-subtitle { margin: 3rem 0 1.5rem; color: #fff7ee; font-size: clamp(1.3rem, 2.4vw, 1.8rem); letter-spacing: -0.03em; }

.t-grid { display: grid; gap: 1rem; margin-top: 2.5rem; }
.t-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.t-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.t-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.t-card { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.t-card h3 { margin: 0; color: var(--accent); font-size: 1.2rem; letter-spacing: -0.02em; }
.t-card p { margin: 0.7rem 0 0; color: var(--muted); line-height: 1.6; }
.t-card ul { margin: 0.9rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.t-card li { margin: 0.45rem 0; }
.t-card-num { display: block; margin-bottom: 1.4rem; color: var(--accent-bright); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; }
.t-highlight { border-color: rgba(242, 113, 28, 0.55); background: linear-gradient(150deg, rgba(242, 113, 28, 0.16), var(--surface)); }

.t-flow, .t-cycle { display: grid; align-items: center; gap: 0.75rem; margin-top: 2.5rem; }
.t-flow { grid-template-columns: 1fr auto 1fr auto 1fr; }
.t-cycle { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
.t-flow-card, .t-cycle-card { height: 100%; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-align: center; }
.t-flow-card h3, .t-cycle-card h3 { margin: 0.9rem 0 0; color: #fff7ee; font-size: 1.15rem; letter-spacing: -0.02em; }
.t-flow-card p, .t-cycle-card p { margin: 0.7rem 0 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.t-step { color: var(--accent-bright); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; }
.t-cycle-num { display: inline-grid; place-items: center; width: 56px; height: 56px; border: 2px solid var(--accent); border-radius: 50%; color: var(--accent-bright); font-size: 1.4rem; font-weight: 800; }
.t-cycle-active { border-color: var(--accent); background: linear-gradient(160deg, rgba(242, 113, 28, 0.22), var(--surface)); }
.t-cycle-active .t-cycle-num { background: var(--accent); border-color: var(--accent); color: #1a0f06; }
.t-arrow { position: relative; width: 28px; height: 2px; background: var(--accent); }
.t-arrow::after { position: absolute; top: 50%; right: 0; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent var(--accent); content: ""; transform: translateY(-50%); }
.t-quote { margin: 2.5rem 0 0; color: var(--accent-bright); font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 700; text-align: center; }

.t-funnel { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: center; gap: clamp(2rem, 6vw, 4rem); margin-top: 2.5rem; }
.t-funnel-steps { display: grid; gap: 1rem; justify-items: center; }
.t-funnel-step { width: 100%; padding: 1.1rem 1.4rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.t-funnel-step strong { display: block; color: #fff7ee; font-size: 1.05rem; letter-spacing: 0.01em; }
.t-funnel-step span { color: var(--muted); font-size: 0.95rem; }
.t-funnel-step.s1 { width: 70%; }
.t-funnel-step.s2 { width: 82%; background: rgba(242, 113, 28, 0.08); }
.t-funnel-step.s3 { width: 92%; background: rgba(242, 113, 28, 0.16); }
.t-funnel-step.s4 { width: 100%; border-color: var(--accent); background: var(--accent); }
.t-funnel-step.s4 strong { color: #1a0f06; }
.t-funnel-step.s4 span { color: #3a1c04; }
.t-result { padding: 2rem; border: 1px solid rgba(242, 113, 28, 0.5); border-radius: var(--radius); background: var(--surface); text-align: center; }
.t-result-tag { color: var(--accent); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.t-result h3 { margin: 0.9rem 0 0; color: #fff7ee; font-size: 1.35rem; letter-spacing: -0.02em; }
.t-result p { margin: 0.9rem 0 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

.t-compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.t-compare-card { padding: clamp(1.5rem, 3vw, 2.2rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.t-compare-highlight { border-color: rgba(242, 113, 28, 0.55); background: linear-gradient(160deg, rgba(242, 113, 28, 0.16), var(--surface)); }
.t-compare-title { margin: 0; font-size: 1.3rem; letter-spacing: -0.02em; }
.t-compare-title.traditional { color: #b5838d; }
.t-compare-title.tigrr { color: var(--accent-bright); }
.t-compare-card p { margin: 1rem 0 0; color: var(--muted); }
.t-compare-card ul { margin: 0.8rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.t-compare-card li { margin: 0.5rem 0; }
.t-impact { margin: 2rem 0 0; color: var(--ink); font-size: 1.05rem; line-height: 1.6; }
.t-impact strong { margin-right: 0.5rem; color: var(--accent); }
.t-note { margin: 0.8rem 0 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

.t-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.t-tags span { padding: 0.6rem 1.1rem; border: 1px solid rgba(242, 113, 28, 0.45); border-radius: 999px; background: rgba(242, 113, 28, 0.08); color: var(--accent-bright); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.01em; }
.t-tag-highlight { background: var(--accent) !important; color: #1a0f06 !important; }

.t-close { text-align: center; }
.t-close p { max-width: 52rem; margin: 1.25rem auto 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.t-close .t-tags { justify-content: center; }
.t-close .btn { margin-top: 2rem; }

/* Video */
.video-frame { position: relative; aspect-ratio: 16 / 9; margin-top: 2.5rem; overflow: hidden; border: 1px solid rgba(249, 194, 46, 0.35); border-radius: var(--radius); background: linear-gradient(150deg, #2a1d24, #141017); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.video-player { display: block; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 1rem; color: #f2d9c4; text-align: center; }
.video-play { position: relative; width: 74px; height: 74px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 10px rgba(242, 113, 28, 0.18); }
.video-play::before { position: absolute; top: 50%; left: 54%; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #1a0f06; content: ""; transform: translate(-50%, -50%); }
.video-note { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; }

/* Glassmorphism */
.t-card, .t-flow-card, .t-cycle-card, .t-compare-card, .t-result, .t-funnel-step, .video-frame {
  background: linear-gradient(155deg, rgba(242, 113, 28, 0.12), rgba(255, 255, 255, 0.02) 62%);
  border-color: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 960px) {
  .nav { background: rgba(20, 15, 22, 0.98); }
  .t-grid-3, .t-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .tigrr-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-block: clamp(2.5rem, 8vw, 4rem); }
  .tigrr-visual { order: -1; }
  .tigrr-logo { width: min(100%, 300px); }
  .tigrr-hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .t-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .t-sub { font-size: 1.05rem; }
  .t-subtitle { margin-top: 2.25rem; }
  .t-grid { gap: 0.85rem; margin-top: 2rem; }
  .t-grid-2, .t-grid-3, .t-grid-4 { grid-template-columns: 1fr; }
  .t-card { padding: 1.3rem; }
  .t-card-num { margin-bottom: 1rem; }
  .t-flow, .t-cycle { grid-template-columns: 1fr; justify-items: center; margin-top: 2rem; }
  .t-flow-card, .t-cycle-card { width: 100%; padding: 1.3rem; }
  .t-arrow { width: 2px; height: 22px; }
  .t-arrow::after { top: auto; right: 50%; bottom: 0; border-width: 8px 5px 0 5px; border-color: var(--accent) transparent transparent transparent; transform: translateX(50%); }
  .t-quote { margin-top: 1.75rem; font-size: 1.05rem; }
  .t-funnel { grid-template-columns: 1fr; gap: 1.75rem; margin-top: 2rem; }
  .t-funnel-step.s1, .t-funnel-step.s2, .t-funnel-step.s3, .t-funnel-step.s4 { width: 100%; }
  .t-result { padding: 1.5rem; }
  .t-compare { grid-template-columns: 1fr; }
  .t-compare-card { padding: 1.4rem; }
  .t-tags { gap: 0.6rem; }
}

@media (max-width: 480px) {
  .tigrr-brand { font-size: 0.85rem; letter-spacing: 0.24em; }
  .tigrr-hero h1 { font-size: clamp(1.85rem, 9vw, 2.3rem); }
  .t-cycle-num { width: 46px; height: 46px; font-size: 1.15rem; }
  .t-card, .t-flow-card, .t-cycle-card { padding: 1.1rem; }
  .t-card h3, .t-flow-card h3, .t-cycle-card h3 { font-size: 1.05rem; }
  .t-tags span { padding: 0.5rem 0.85rem; font-size: 0.72rem; }
  .t-impact { font-size: 1rem; }
  .t-funnel-step { padding: 0.9rem 1.1rem; }
  .t-funnel-step strong { font-size: 0.95rem; }
}
