@import url('https://fonts.googleapis.com/css2?family=Gantari:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
  --black: #0e0e0e;
  --off-black: #141414;
  --border: #232323;
  --green: #64f1a8;
  --danger: rgba(220, 53, 69);
  --green-dim: #64f1a818;
  --green-mid: #64f1a835;
  --danger-dim: rgba(220, 53, 69, 0.2);
  --danger-pulse: rgba(220, 53, 69, 0.4);
  --danger-mid: rgba(220, 53, 69, 0.5);
  --text: #e4e4e4;
  --muted: #888;
  --faint: #444;
  --white: #f5f5f5;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Gantari", sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

body .sib-form {
	font-family: "Gantari", sans-serif;
	color: var(--black);
}

/* ─── GRAIN OVERLAY ─── */
/* body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: .5;
} */

/* ─── NAVBAR ─── */
#navbar {
  transition: border-color .3s;
  height: 64px;
  background: #0e0e0ecc;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled { border-color: var(--border) !important; }
#navbar.scrolled .nav-cta { opacity: 1; transform: translateY(0); }

.logo {
  font-style: italic;
  font-size: 28px;
  color: var(--green);
  letter-spacing: -.01em;
}

.nav-cta {
  background: var(--green);
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .4s, transform .4s, background .2s;
}
.nav-cta:hover { background: #55cc8f; }

/* ─── URGENCY BANNER ─── */
.banner {
  background: var(--green-dim);
  border-top: 1px solid var(--green-mid);
  border-bottom: 1px solid var(--green-mid);
  font-size: 14px;
  color: var(--green);
  letter-spacing: .02em;
  text-align: center;
  margin-top: 64px;
}
.banner-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 #64f1a866; }
  50%       { box-shadow: 0 0 0 5px transparent; }
}

/* ─── URGENCY CLOSE ─── */
.banner-danger {
  background: var(--danger-dim);
  border-top: 1px solid var(--danger-mid);
  border-bottom: 1px solid var(--danger-mid);
  font-size: 14px;
  color: var(--danger);
  letter-spacing: .02em;
  text-align: center;
  margin-top: 64px;
}
.banner-danger-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  animation: pulse-danger 2s infinite;
}
@keyframes pulse-danger {
  0%, 100% { box-shadow: 0 0 0 0 var(--danger-pulse); }
  50%       { box-shadow: 0 0 0 5px transparent; }
}

/* ─── HERO ─── */
.hero {
	margin-top: 120px;
	min-height: 92vh;
}

.hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, #3ddc6e14 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .7s .1s forwards;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero h1 strong { font-weight: 600; color: var(--green); }

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s .35s forwards;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-cta-group {
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-fine-print { font-size: 14px; color: var(--faint); }

.btn-primary {
  background: var(--green);
  color: var(--black) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #55cc8f; transform: translateY(-1px); }

/* ─── MOCK DASHBOARD ─── */
.hero-visual {
  opacity: 0;
  animation: fadeUp .9s .65s forwards;
}
.mock-window {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px #00000080, 0 0 0 1px #ffffff08;
}
.mock-bar {
  background: #161616;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #ffbe2e; }
.mock-dot:nth-child(3) { background: #28c840; }
.mock-title { font-size: 14px; color: var(--faint); margin-left: auto; margin-right: auto; }

.mock-body { display: flex; }
.mock-sidebar {
  width: 160px;
  background: #111;
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  flex-shrink: 0;
}
.mock-nav-item {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--faint);
  margin-bottom: 2px;
}
.mock-nav-item.active { background: var(--green); color: var(--black); font-weight: 600; }
.mock-content { flex: 1; padding: 20px; }
.mock-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 16px; }
.mock-kpi {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}
.mock-kpi-l { font-size: 9px; color: var(--faint); margin-bottom: 4px; }
.mock-kpi-v { font-size: 18px; font-weight: 600; color: var(--white); }
.mock-kpi-d { font-size: 9px; color: var(--green); margin-top: 2px; }

.mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mock-card {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  border-left: 3px solid var(--green);
}
.mock-card.red { border-left-color: #ff5c5c; }
.mock-card-title { font-size: 10px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.mock-card-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 4px; overflow: hidden; }
.mock-card-bar-fill { height: 100%; border-radius: 2px; background: var(--green); }
.mock-card.red .mock-card-bar-fill { background: #ff5c5c; }
.mock-card-text { font-size: 9px; color: var(--faint); line-height: 1.4; }

/* ─── SHARED UTILITIES ─── */
.py-lg-6 { padding-top: 100px !important; padding-bottom: 100px !important; }
.mw-480 { max-width: 480px; }
.mw-600 { max-width: 600px; }
.text-muted-custom { color: var(--muted); }
.text-light-custom { color: var(--text); font-weight: 500; }
.text-faint {
	color: var(--muted);
	opacity: 0.7;
}
.text-sm { font-size: 18px; line-height: 1.65; }
.border-bottom-custom { border-bottom: 1px solid var(--border); }
.border-top-custom { border-top: 1px solid var(--border); }

/* Section heading — shared across all sections */
.section-h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.section-h2 em { font-style: italic; color: var(--green); }

/* Uppercase label — replaces section-label, loop-step-name, offer-box-title */
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green);
}

/* Dark card container — replaces svolta-wrap, loop-step, perchi-col, testimonial, form-card */
.box-dark {
  background: var(--off-black);
  border: 1px solid var(--border);
}
.box-dark.border-yes { border-top: 3px solid var(--green) !important; }
.box-dark.border-no  { border-top: 3px solid var(--faint) !important; }

/* ─── PROBLEMA ─── */
.num-label {
  font-size: 48px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  width: 48px;
  text-align: right;
}

/* ─── SVOLTA ─── */
.svolta-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3ddc6e0c, transparent 60%);
  pointer-events: none;
}
.not-tag {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
}
.not-tag.no  { background: #ffffff08; color: var(--faint); text-decoration: line-through; }
.not-tag.yes { background: var(--green-dim); color: var(--green); border: 1px solid var(--green-mid); }

/* ─── LOOP ─── */
.step-num {
  font-size: 64px;
  font-weight: 300;
  color: var(--green-dim);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.loop-arrow {
  padding-top: 40px;
  color: var(--faint);
  font-size: 20px;
}
@media (max-width: 767.98px) {
  .loop-arrow { padding-top: 12px; padding-bottom: 12px; }
}

/* ─── PER CHI ─── */
.icon-yes { color: var(--green); font-size: 15px; margin-top: 2px; }
.icon-no  { color: var(--faint); font-size: 15px; margin-top: 2px; }

/* ─── SOCIAL PROOF ─── */
.quote {
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  border: none;
  padding: 0;
}
.avatar {
  width: 50px;
	height: 50px;
}

.avatar img {
	border-radius: 100%;
	border: solid 1px var(--green);
}

/* ─── FORM ─── */
.offer-box {
  background: var(--green-dim);
  border: 1px solid var(--green-mid);
}
.offer-item {
  display: flex;
  gap: 10px;
  font-size: 18px;
  color: var(--text);
  align-items: center;
}
.offer-item i {
	color: var(--green);
 }
.text-fine { font-size: 14px; color: var(--faint); line-height: 1.6; }

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
}
.form-control {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 18px;
  color: var(--text);
  font-family: inherit;
  transition: border-color .2s;
  resize: none;
}
.form-control:focus {
  background: #111;
  border-color: var(--green);
  box-shadow: none;
  color: var(--text);
}
.form-control::placeholder { color: var(--faint); }

/* ─── FOOTER ─── */
.footer-link { font-size: 14px; color: var(--faint); text-decoration: none; }
.footer-link:hover { color: var(--muted); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
