/* ============================================================
   Aspire by frantiger — static stylesheet
   Palette: obsidian ink + frantiger tiger orange
   Type: Quicksand (display/body) + JetBrains Mono (editorial)
   ============================================================ */

:root {
  --ink: #060607;
  --panel: #0b0b0d;
  --cream: #f5f2ec;
  --tiger: #e78c1c;
  --tiger-soft: #f5a13c;
  --line: rgba(255, 255, 255, 0.1);
  --muted: rgba(255, 255, 255, 0.55);
  --faint: rgba(255, 255, 255, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { background: var(--ink); scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--tiger); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #26262a; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--tiger); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 72rem; }
.container-faq { max-width: 56rem; }
.text-tiger { color: var(--tiger); }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 70; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  padding: 0.8rem 1.6rem; transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-tiger { background: var(--tiger); color: var(--ink); }
.btn-tiger:hover { background: var(--tiger-soft); box-shadow: 0 0 44px rgba(231, 140, 28, 0.45); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.2); color: var(--cream); }
.btn-ghost:hover { border-color: var(--tiger); color: var(--tiger); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.875rem; }
.btn-block { width: 100%; }
.btn i { transition: transform 0.3s var(--ease); }
.btn:hover i.fa-whatsapp { transform: rotate(-12deg); }

/* ---------- navbar ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.25rem 0; transition: all 0.5s var(--ease);
}
#navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { height: 1.75rem; width: auto; }
.brand-sep { width: 1px; height: 1.25rem; background: rgba(255, 255, 255, 0.2); }
.brand-name { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.brand-badge {
  font-family: "JetBrains Mono", monospace; font-size: 0.55rem; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--tiger);
  border: 1px solid rgba(231, 140, 28, 0.4); background: rgba(231, 140, 28, 0.1);
  border-radius: 999px; padding: 0.2rem 0.65rem;
}
.nav-links { display: none; align-items: center; gap: 1.75rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); transition: color 0.3s; }
.nav-links a:hover { color: var(--cream); }
.nav-links .nav-ext { display: flex; align-items: center; gap: 0.3rem; color: var(--faint); font-size: 0.82rem; }
.nav-links .nav-ext:hover { color: var(--tiger); }
.nav-links .nav-ext i { font-size: 0.65rem; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-actions .btn { display: none; }
#menu-toggle {
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
#mobile-menu {
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 0.75rem 1.5rem 1.25rem;
  background: rgba(11, 11, 13, 0.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
#mobile-menu.open { display: flex; }
#mobile-menu a { padding: 0.8rem 0.75rem; border-radius: 0.5rem; font-weight: 500; color: rgba(255, 255, 255, 0.7); }
#mobile-menu a:hover { background: rgba(255, 255, 255, 0.05); color: var(--cream); }
#mobile-menu .btn { margin-top: 0.5rem; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-actions .btn { display: inline-flex; }
  #menu-toggle { display: none; }
}
@media (max-width: 640px) {
  .brand-badge, .brand-sep { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(231, 140, 28, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(231, 140, 28, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at 50% 38%, black 10%, transparent 92%);
  mask-image: radial-gradient(circle at 50% 38%, black 10%, transparent 92%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px at 68% 30%, rgba(231, 140, 28, 0.14) 0%, transparent 65%),
    radial-gradient(120% 120%, transparent 45%, rgba(0, 0, 0, 0.9) 100%);
}
.hero-inner {
  position: relative; z-index: 2; flex: 1;
  display: grid; align-items: center; gap: 3rem;
  padding-top: 8rem; padding-bottom: 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.05);
  border-radius: 999px; padding: 0.5rem 1rem;
  font-family: "JetBrains Mono", monospace; font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.7);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tiger); animation: blink 1.6s infinite; }
.hero-badge-wrap { margin-bottom: 1.75rem; opacity: 0; animation: fadeUp 0.7s var(--ease) 0.1s forwards; }
.hero-title {
  font-size: clamp(2.6rem, 7.2vw, 5.4rem); font-weight: 700;
  line-height: 1.02; letter-spacing: -0.02em;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.15rem; }
.hero-title .line > span { display: block; transform: translateY(112%); animation: lineUp 1.05s var(--ease) forwards; }
.hero-title .line:nth-child(1) > span { animation-delay: 0.25s; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.39s; }
.hero-title .line:nth-child(3) > span { animation-delay: 0.53s; }
.hero-sub {
  margin-top: 1.75rem; max-width: 36rem; font-size: 1.05rem; line-height: 1.65;
  color: var(--muted); opacity: 0; animation: fadeUp 0.9s var(--ease) 0.85s forwards;
}
.hero-ctas {
  margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1s forwards;
}
.hero-visual { position: relative; display: none; max-width: 520px; margin: 0 auto; width: 100%; will-change: transform; }
.tiger-glow {
  position: absolute; inset: 0; z-index: -1; transform: scale(0.9);
  background: rgba(231, 140, 28, 0.2); border-radius: 50%; filter: blur(110px);
}
.tiger-img {
  width: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  opacity: 0; animation: tigerIn 1.3s var(--ease) 0.5s forwards;
}
.chip {
  position: absolute; display: flex; align-items: center; gap: 0.75rem;
  background: rgba(11, 11, 13, 0.72); backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 1rem;
  padding: 0.75rem 1rem; animation: floaty 7s ease-in-out infinite;
  opacity: 0;
}
.chip-a { top: 2.5rem; left: -2.5rem; animation: floaty 7s ease-in-out infinite, fadeUp 0.8s var(--ease) 1.2s forwards; }
.chip-b { bottom: 6rem; right: -1.5rem; animation: floaty 7s ease-in-out 1.4s infinite, fadeUp 0.8s var(--ease) 1.4s forwards; }
.chip-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; flex-shrink: 0;
  background: rgba(231, 140, 28, 0.15); color: var(--tiger);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.chip small {
  display: block; font-family: "JetBrains Mono", monospace; font-size: 0.55rem;
  text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255, 255, 255, 0.45);
}
.chip strong { display: block; font-size: 0.85rem; }
.hero-stats {
  position: relative; z-index: 2; border-top: 1px solid var(--line);
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1.35s forwards;
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat { padding: 1.5rem 1.25rem; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat-v { display: block; font-family: "JetBrains Mono", monospace; font-size: 1.6rem; font-weight: 700; color: var(--tiger); }
.stat-l { display: block; margin-top: 0.25rem; font-family: "JetBrains Mono", monospace; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255, 255, 255, 0.45); }

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.08fr 0.92fr; padding-top: 6rem; }
  .hero-visual { display: block; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-v { font-size: 1.9rem; }
}

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); padding: 1.5rem 0; }
.marquee-track { display: flex; align-items: center; gap: 3rem; width: max-content; animation: marquee 55s linear infinite; }
.mq-item { white-space: nowrap; font-family: "JetBrains Mono", monospace; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255, 255, 255, 0.55); }
.mq-diamond { width: 8px; height: 8px; background: rgba(231, 140, 28, 0.7); transform: rotate(45deg); flex-shrink: 0; }

/* ---------- sections ---------- */
.section { position: relative; padding: 6rem 0; }
.section-panel { background: var(--panel); }
@media (min-width: 1024px) { .section { padding: 9rem 0; } }

.sec-head { max-width: 48rem; }
.sec-head.center { margin: 0 auto; text-align: center; }
.eyebrow {
  font-family: "JetBrains Mono", monospace; font-size: 0.68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.35em; color: var(--tiger);
}
.sec-head h2 {
  margin-top: 1rem; font-size: clamp(2.1rem, 4.5vw, 3.6rem); font-weight: 700;
  line-height: 1.04; letter-spacing: -0.02em;
}
.sec-copy { margin-top: 1.25rem; font-size: 1.05rem; line-height: 1.65; color: var(--muted); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- manifesto ---------- */
.pull-quote {
  margin-top: 4rem; max-width: 56rem;
  font-size: clamp(1.4rem, 3vw, 2.25rem); font-weight: 600; line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}
.chapters { margin-top: 5rem; }
.chapter {
  display: grid; gap: 1.5rem; padding: 2.5rem 0;
  border-top: 1px solid var(--line); transition: border-color 0.5s;
}
.chapter:hover { border-color: rgba(231, 140, 28, 0.4); }
.ch-num { font-family: "JetBrains Mono", monospace; font-size: 0.85rem; letter-spacing: 0.3em; color: var(--tiger); }
.chapter h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 700; line-height: 1.2; transition: color 0.5s; }
.chapter:hover h3 { color: var(--tiger); }
.chapter p { font-size: 1.02rem; line-height: 1.65; color: rgba(255, 255, 255, 0.5); }
@media (min-width: 768px) {
  .chapter { grid-template-columns: 140px 1fr 1.2fr; gap: 2.5rem; align-items: start; }
}

/* ---------- templates ---------- */
.tpl-layout { margin-top: 4rem; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .tpl-layout { grid-template-columns: 0.9fr 1.4fr; gap: 3.5rem; } }
.tpl-list { display: flex; flex-direction: column; gap: 0.75rem; }
.tpl-tab {
  display: flex; align-items: center; justify-content: space-between; text-align: left;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem; padding: 1.25rem 1.5rem; transition: all 0.3s var(--ease);
}
.tpl-tab:hover { border-color: rgba(255, 255, 255, 0.25); }
.tpl-tab.active { border-color: rgba(231, 140, 28, 0.6); background: rgba(231, 140, 28, 0.1); }
.tpl-tab strong { display: block; font-size: 1.1rem; }
.tpl-tab small {
  display: block; margin-top: 0.15rem; font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--faint);
}
.tpl-dot { width: 1.5rem; height: 1.5rem; border-radius: 50%; border: 2px solid transparent; flex-shrink: 0; transition: transform 0.3s; }
.tpl-tab:hover .tpl-dot { transform: scale(1.1); }
.tpl-tab.active .tpl-dot { border-color: var(--cream); }
.tpl-included { margin-top: 1rem; display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.tpl-included span { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--muted); }
.tpl-included i { color: var(--tiger); width: 1rem; }
@media (min-width: 640px) { .tpl-included { grid-template-columns: 1fr 1fr; } }

.tpl-preview {
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 1rem; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
@media (min-width: 1024px) { .tpl-preview { position: sticky; top: 7rem; align-self: start; } }
.browser-bar {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--ink); border-bottom: 1px solid var(--line); padding: 0.85rem 1.25rem;
}
.b-dots { display: flex; gap: 0.4rem; }
.b-dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.b-domain {
  flex: 1; text-align: center; font-family: "JetBrains Mono", monospace; font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 1rem;
  max-width: 22rem; margin: 0 auto;
}
.b-spacer { width: 2.5rem; }
.tpl-body {
  padding: 2rem; background: var(--t-bg);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.tpl-body.switching { opacity: 0; transform: scale(0.985); }
.tpl-nav { display: flex; align-items: center; justify-content: space-between; }
.tpl-brand { display: flex; align-items: center; gap: 0.6rem; }
.tpl-brand-mark { width: 1.75rem; height: 1.75rem; border-radius: 0.5rem; background: var(--t-accent); }
.tpl-brand b { font-size: 0.9rem; color: var(--t-ink); }
.tpl-links { display: none; align-items: center; gap: 1rem; }
.tpl-links em { font-style: normal; font-size: 0.68rem; font-weight: 600; color: var(--t-muted); }
.tpl-cta {
  font-style: normal; font-size: 0.68rem; font-weight: 700;
  background: var(--t-accent); color: var(--t-bg);
  border-radius: 999px; padding: 0.4rem 0.9rem;
}
@media (min-width: 640px) { .tpl-links { display: flex; } }
.tpl-hero { margin-top: 2.5rem; max-width: 28rem; }
.tpl-h { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; line-height: 1.2; color: var(--t-ink); }
.tpl-search {
  margin-top: 1.25rem; display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--t-muted); border-radius: 999px; padding: 0.65rem 1rem;
  font-size: 0.75rem; color: var(--t-muted);
}
.tpl-cards { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.tpl-card { border: 1px solid var(--t-muted); border-radius: 0.75rem; padding: 0.85rem; }
.tpl-card-img { display: block; height: 2rem; border-radius: 0.4rem; margin-bottom: 0.6rem; background: color-mix(in srgb, var(--t-accent) 20%, transparent); }
.tpl-card b { display: block; font-size: 0.68rem; line-height: 1.25; color: var(--t-ink); }
.tpl-card small {
  display: block; margin-top: 0.2rem; font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--t-muted);
}
.tpl-note { display: flex; align-items: center; gap: 0.5rem; padding: 1rem 1.25rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); background: var(--ink); border-top: 1px solid var(--line); }
.tpl-note i { color: var(--tiger); }

/* ---------- suite ---------- */
.suite-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(800px at 15% 20%, rgba(231, 140, 28, 0.08) 0%, transparent 60%);
}
.suite-tabs { margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: 0.65rem; }
.suite-tab {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6); border-radius: 999px; padding: 0.65rem 1.25rem;
  font-size: 0.875rem; font-weight: 700; transition: all 0.3s var(--ease);
}
.suite-tab:hover { border-color: rgba(255, 255, 255, 0.35); color: var(--cream); }
.suite-tab.active { border-color: var(--tiger); background: var(--tiger); color: var(--ink); }
.suite-grid { margin-top: 3rem; display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .suite-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.suite-copy { transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.suite-copy.switching { opacity: 0; transform: translateY(16px); }
.suite-copy h3 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.15; }
.suite-copy p { margin-top: 1.25rem; max-width: 32rem; font-size: 1.05rem; line-height: 1.65; color: var(--muted); }
.suite-copy ul { margin-top: 2rem; list-style: none; }
.suite-copy li { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.85rem; font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); }
.suite-copy li::before { content: ""; width: 6px; height: 6px; background: var(--tiger); transform: rotate(45deg); flex-shrink: 0; }

.suite-panel {
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 1rem;
  background: var(--panel); padding: 1.5rem;
  box-shadow: 0 0 60px rgba(231, 140, 28, 0.22), 0 0 140px rgba(231, 140, 28, 0.1);
}
@media (min-width: 1024px) { .suite-panel { position: sticky; top: 7rem; } }
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: 1.25rem;
  font-family: "JetBrains Mono", monospace; font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.3em; color: rgba(255, 255, 255, 0.45);
}
.panel-head i { color: var(--tiger); margin-right: 0.25rem; }
.panel-live { display: flex; align-items: center; gap: 0.4rem; color: var(--tiger); letter-spacing: 0.15em; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tiger); animation: blink 1.6s infinite; display: inline-block; }
.suite-mock { display: none; }
.suite-mock.active { display: block; animation: fadeUp 0.4s var(--ease); }

.dr-stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 1rem; }
.dr-stages div { border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); border-radius: 0.5rem; padding: 0.75rem 0.5rem; text-align: center; }
.dr-stages b { display: block; font-family: "JetBrains Mono", monospace; font-size: 1.1rem; color: var(--tiger); }
.dr-stages small { display: block; margin-top: 0.25rem; font-family: "JetBrains Mono", monospace; font-size: 0.52rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.45); }
.dr-row, .inv-row, .doc-row, .opp-row, .field { border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); border-radius: 0.75rem; padding: 1rem; margin-top: 0.75rem; }
.dr-row-head { display: flex; align-items: center; justify-content: space-between; }
.dr-row-head b { font-size: 0.85rem; }
.dr-row-head span { font-family: "JetBrains Mono", monospace; font-size: 0.68rem; color: var(--tiger); font-weight: 700; }
.bar { margin-top: 0.75rem; height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--tiger); transition: width 0.9s var(--ease); }
.doc-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.doc-row > span:first-child { font-family: "JetBrains Mono", monospace; font-size: 0.72rem; display: flex; align-items: center; gap: 0.6rem; }
.doc-row > span:first-child i { color: var(--faint); }
.tag {
  display: inline-flex; align-items: center; gap: 0.35rem; border-radius: 999px;
  padding: 0.3rem 0.75rem; font-family: "JetBrains Mono", monospace; font-size: 0.55rem;
  text-transform: uppercase; letter-spacing: 0.12em; background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
.tag-ok { background: rgba(231, 140, 28, 0.15); color: var(--tiger); }
.mock-foot { margin-top: 1rem; font-family: "JetBrains Mono", monospace; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255, 255, 255, 0.35); }
.mock-search {
  display: flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04); border-radius: 999px; padding: 0.65rem 1rem;
  font-size: 0.75rem; color: var(--faint); margin-bottom: 0.5rem;
}
.opp-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.opp-row b { font-size: 0.85rem; display: block; }
.opp-row small { font-family: "JetBrains Mono", monospace; font-size: 0.58rem; color: var(--faint); display: block; margin-top: 0.15rem; }
.opp-r { text-align: right; }
.opp-r b { font-family: "JetBrains Mono", monospace; font-size: 0.75rem; color: var(--tiger); }
.opp-r small { text-transform: uppercase; letter-spacing: 0.12em; }
.inv-sub { display: block; margin-top: 0.25rem; font-family: "JetBrains Mono", monospace; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); }
.field small { font-family: "JetBrains Mono", monospace; font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--faint); display: block; }
.field b { display: block; margin-top: 0.25rem; font-size: 0.9rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.field-score { border-color: rgba(231, 140, 28, 0.4); background: rgba(231, 140, 28, 0.1); text-align: center; }
.field-score small { color: var(--tiger); }
.field-score b { font-family: "JetBrains Mono", monospace; font-size: 1.5rem; color: var(--tiger); }
.mock-route {
  margin-top: 0.75rem; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04);
  border-radius: 0.75rem; padding: 0.85rem; text-align: center;
  font-family: "JetBrains Mono", monospace; font-size: 0.58rem; text-transform: uppercase;
  letter-spacing: 0.25em; color: rgba(255, 255, 255, 0.45);
}

/* ---------- timeline ---------- */
.steps {
  margin-top: 4rem; display: grid; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 1rem; overflow: hidden;
}
@media (min-width: 768px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; background: var(--panel); padding: 2rem; transition: background 0.5s; }
.step:hover { background: #101014; }
.step::before { content: ""; position: absolute; top: 0; left: 0; height: 2px; width: 0; background: var(--tiger); transition: width 0.7s var(--ease); }
.step:hover::before { width: 100%; }
.step-hour { font-family: "JetBrains Mono", monospace; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--tiger); }
.step-num { display: block; margin-top: 1.5rem; font-family: "JetBrains Mono", monospace; font-size: 3rem; font-weight: 700; color: rgba(255, 255, 255, 0.1); transition: color 0.5s; }
.step:hover .step-num { color: rgba(231, 140, 28, 0.25); }
.step h3 { margin-top: 1rem; font-size: 1.25rem; font-weight: 700; }
.step p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255, 255, 255, 0.5); }
.steps-foot { margin-top: 2.5rem; display: flex; align-items: center; gap: 1rem; }
.steps-foot .rule { flex: 1; height: 1px; background: var(--line); }
.steps-foot p { font-family: "JetBrains Mono", monospace; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--faint); text-align: center; }

/* ---------- opportunities ---------- */
.opp-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.opp-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .opp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .opp-grid { grid-template-columns: repeat(4, 1fr); } }
.opp-card {
  overflow: hidden; border-radius: 1rem; border: 1px solid var(--line); background: var(--panel);
  transition: all 0.5s var(--ease);
}
.opp-card:hover {
  transform: translateY(-6px); border-color: rgba(231, 140, 28, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.opp-img { position: relative; height: 11rem; overflow: hidden; }
.opp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.opp-card:hover .opp-img img { transform: scale(1.06); }
.opp-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--panel), transparent 55%); }
.opp-tags { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.opp-tags i {
  font-style: normal; font-family: "JetBrains Mono", monospace; font-size: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  background: rgba(6, 6, 7, 0.7); backdrop-filter: blur(4px);
  border-radius: 999px; padding: 0.3rem 0.65rem;
}
.opp-body { padding: 1.25rem; }
.opp-body h3 { font-size: 1rem; font-weight: 700; line-height: 1.35; }
.opp-rows { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.opp-rows > div { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.opp-rows span { font-family: "JetBrains Mono", monospace; font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.35); }
.opp-rows b { font-size: 0.75rem; color: rgba(255, 255, 255, 0.75); }
.opp-rows b.text-tiger { color: var(--tiger); }

/* ---------- pricing ---------- */
.pricing-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px at 50% 0%, rgba(231, 140, 28, 0.1) 0%, transparent 60%);
}
.plans { margin-top: 4rem; display: grid; gap: 2rem; }
@media (min-width: 1024px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan {
  position: relative; display: flex; flex-direction: column; height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 1.5rem;
  background: rgba(6, 6, 7, 0.6); padding: 2.5rem; transition: all 0.5s var(--ease);
}
.plan:hover { border-color: rgba(255, 255, 255, 0.25); }
.plan-featured {
  border-color: rgba(231, 140, 28, 0.6); background: var(--ink);
  box-shadow: 0 0 60px rgba(231, 140, 28, 0.22), 0 0 140px rgba(231, 140, 28, 0.1);
}
.plan-badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--tiger); color: var(--ink); border-radius: 999px; padding: 0.35rem 1rem;
  font-family: "JetBrains Mono", monospace; font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em; white-space: nowrap;
}
.plan-head { display: flex; align-items: center; gap: 0.75rem; }
.plan-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; flex-shrink: 0;
  background: rgba(231, 140, 28, 0.15); color: var(--tiger);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.plan-icon-solid { background: var(--tiger); color: var(--ink); }
.plan-head h3 { font-size: 1.5rem; font-weight: 700; }
.plan-head small { font-family: "JetBrains Mono", monospace; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--faint); }
.plan-price { margin-top: 2rem; font-size: 3rem; font-weight: 700; letter-spacing: -0.02em; }
.plan-price small { font-family: "JetBrains Mono", monospace; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--tiger); margin-left: 0.5rem; }
.plan-tag { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); }
.plan-features { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); list-style: none; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 0.9rem; font-size: 0.92rem; color: rgba(255, 255, 255, 0.75); }
.plan-features i { color: var(--tiger); margin-top: 0.2rem; font-size: 0.75rem; flex-shrink: 0; }
.plan .btn-block { margin-top: 2.5rem; }
.pricing-note {
  margin-top: 2.5rem; text-align: center; font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255, 255, 255, 0.35);
}

/* ---------- faq ---------- */
.faqs { margin-top: 3.5rem; }
.faq {
  overflow: hidden; border-radius: 1rem; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02); margin-top: 1rem; transition: border-color 0.5s, background 0.5s;
}
.faq.open { border-color: rgba(231, 140, 28, 0.5); background: var(--panel); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 1.5rem; text-align: left; font-size: 1.05rem; font-weight: 700;
}
.faq-icon {
  width: 2rem; height: 2rem; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.5);
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, color 0.3s;
}
.faq.open .faq-icon { transform: rotate(45deg); border-color: var(--tiger); color: var(--tiger); }
.faq-a { display: none; }
.faq-a p { padding: 0 1.5rem 1.5rem; font-size: 0.95rem; line-height: 1.7; color: var(--muted); }
.faq.open .faq-a { display: block; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); background: var(--ink); overflow: hidden; }
footer .container { padding-top: 5rem; padding-bottom: 5rem; }
.footer-cta { display: flex; flex-direction: column; gap: 2.5rem; }
.footer-cta h2 { margin-top: 1rem; font-size: clamp(2.1rem, 4.5vw, 3.6rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
@media (min-width: 1024px) { .footer-cta { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.footer-grid {
  margin-top: 5rem; padding-top: 3.5rem; border-top: 1px solid var(--line);
  display: grid; gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 0.8fr 2fr; } }
.f-col p { margin-top: 1.25rem; max-width: 20rem; font-size: 0.875rem; line-height: 1.65; color: rgba(255, 255, 255, 0.45); }
.f-head { font-family: "JetBrains Mono", monospace; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255, 255, 255, 0.35); display: block; }
.f-col > a { display: block; margin-top: 0.8rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.55); transition: color 0.3s; }
.f-col > a:hover { color: var(--tiger); }
.f-col > a:first-of-type { margin-top: 1.25rem; }
.f-contact { display: inline-flex !important; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-weight: 600; }
.f-contact i { color: var(--tiger); }
.backlinks { margin-top: 1.25rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .backlinks { grid-template-columns: 1fr 1fr; } }
.backlink {
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem; padding: 1.5rem; transition: all 0.5s var(--ease);
}
.backlink:hover { transform: translateY(-4px); border-color: rgba(231, 140, 28, 0.5); }
.bl-head { display: flex; align-items: center; justify-content: space-between; }
.bl-head b { font-family: "JetBrains Mono", monospace; font-size: 0.875rem; color: var(--tiger); }
.bl-head i { font-size: 0.7rem; color: var(--faint); transition: all 0.3s; }
.backlink:hover .bl-head i { color: var(--tiger); transform: translate(2px, -2px); }
.backlink p { margin-top: 0.75rem; font-size: 0.85rem; line-height: 1.6; color: rgba(255, 255, 255, 0.5); }
.giant {
  margin-top: 4rem; text-align: center; white-space: nowrap; user-select: none;
  font-size: clamp(4rem, 17vw, 11rem); font-weight: 700; line-height: 1; letter-spacing: -0.02em;
  -webkit-text-stroke: 1.5px rgba(245, 242, 236, 0.16); color: transparent;
}
.footer-bar {
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.5rem; text-align: center;
  font-family: "JetBrains Mono", monospace; font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) { .footer-bar { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ---------- whatsapp widget ---------- */
#wa-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 80;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--tiger); color: var(--ink); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(231, 140, 28, 0.45);
  transition: transform 0.3s var(--ease);
  transform: scale(0); opacity: 0;
  animation: fabIn 0.5s var(--ease) 1.8s forwards;
}
#wa-fab:hover { transform: scale(1.1); }
.wa-ring { position: absolute; inset: 0; border-radius: 50%; background: var(--tiger); animation: pulseRing 2.2s var(--ease) infinite; z-index: -1; }
#wa-fab i { position: relative; }
#wa-modal {
  position: fixed; bottom: 6rem; right: 1rem; z-index: 80;
  width: calc(100vw - 2rem); max-width: 360px;
  border-radius: 1.5rem; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12); background: var(--panel);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.7);
  display: none;
}
#wa-modal.open { display: block; animation: modalIn 0.35s var(--ease); }
.wa-header {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--ink); border-bottom: 1px solid var(--line); padding: 1rem 1.25rem;
}
.wa-header img { height: 1.5rem; width: auto; }
.wa-header b { display: block; font-size: 0.875rem; }
.wa-header span {
  display: flex; align-items: center; gap: 0.35rem; font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--tiger);
}
.wa-body { padding: 1.25rem; }
.wa-bubble {
  max-width: 85%; background: rgba(255, 255, 255, 0.06);
  border-radius: 1rem; border-top-left-radius: 0.15rem;
  padding: 0.75rem 1rem; font-size: 0.85rem; line-height: 1.6; color: rgba(255, 255, 255, 0.8);
}
.wa-prompts { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.wa-prompt {
  border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 999px;
  padding: 0.5rem 0.85rem; font-size: 0.68rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.6); text-align: left; transition: all 0.3s;
}
.wa-prompt:hover { border-color: rgba(231, 140, 28, 0.5); color: var(--cream); }
.wa-prompt.active { border-color: var(--tiger); background: rgba(231, 140, 28, 0.15); color: var(--tiger); }
.wa-preview {
  margin-top: 1rem; border: 1px solid var(--line); background: var(--ink);
  border-radius: 1rem; padding: 0.75rem 1rem;
  font-size: 0.72rem; font-style: italic; line-height: 1.6; color: rgba(255, 255, 255, 0.45);
}
#wa-continue { margin-top: 1rem; }
.wa-foot {
  margin-top: 0.75rem; text-align: center; font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 640px) { #wa-modal { right: 1.5rem; } }

/* ---------- keyframes ---------- */
@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tigerIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.9); opacity: 0; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes fabIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
