/* Holler — site styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: var(--t-md);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--t-xs); letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--brand-600);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: var(--tracking-tight); line-height: 1.04; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: var(--t-md);
  padding: 14px 26px; border-radius: var(--r-pill);
  background: var(--grad-brand); color: var(--on-brand);
  box-shadow: var(--shadow-glow); border: 0; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 26px 80px rgba(239,99,22,.45); }
.btn.ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn.ghost:hover { box-shadow: inset 0 0 0 1.5px var(--brand-400); background: var(--brand-50); }
.btn small { font-weight: 500; opacity: .8; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: var(--t-lg); }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: var(--t-sm); color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 680px) { .nav-links a:not(.btn) { display: none; } }

/* ---- Hero ---- */
.hero { position: relative; padding: 84px 0 60px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.hero h1 { font-size: var(--t-hero); margin: 18px 0 0; }
.hero h1 .accent { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { font-size: var(--t-lg); color: var(--ink-soft); margin: 22px 0 30px; max-width: 30ch; }
@media (max-width: 900px) { .hero .lede { margin-inline: auto; } }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-cta { justify-content: center; } }
.hero-note { margin-top: 16px; font-size: var(--t-sm); color: var(--muted); }

/* radiating broadcast rings behind the phone */
.stage { position: relative; display: grid; place-items: center; min-height: 540px; }
.rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.ring {
  position: absolute; border-radius: 50%;
  border: 2px solid var(--brand-400);
  width: 240px; height: 240px; opacity: 0;
  animation: ripple 3.6s var(--ease) infinite;
}
.ring:nth-child(2) { animation-delay: 1.2s; }
.ring:nth-child(3) { animation-delay: 2.4s; }
@keyframes ripple {
  0%   { transform: scale(0.5); opacity: 0.55; }
  70%  { opacity: 0.12; }
  100% { transform: scale(2.6); opacity: 0; }
}
.glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,99,22,.28), transparent 62%);
  filter: blur(10px);
}
.phone {
  position: relative; width: 270px; border-radius: 42px;
  box-shadow: var(--shadow-md); border: 9px solid var(--ink);
  background: var(--ink); overflow: hidden; z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.phone img { border-radius: 33px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---- Sections ---- */
section { padding: 88px 0; }
.section-head { max-width: 620px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: var(--t-3xl); margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: var(--t-lg); }
.alt { background: var(--cream); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--font-display); font-weight: 700; font-size: var(--t-2xl); background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: var(--t-lg); margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: var(--t-sm); }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .features { grid-template-columns: 1fr; } }
.feature { padding: 26px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); transition: transform .2s var(--ease), border-color .2s var(--ease); }
.feature:hover { transform: translateY(-4px); border-color: var(--brand-300); }
.feature .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); margin-bottom: 14px; }
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--t-md); margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: var(--t-sm); }

/* showcase */
.showcase { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.showcase .phone { width: 240px; animation: none; }
.showcase figure { text-align: center; }
.showcase figcaption { margin-top: 16px; color: var(--muted); font-size: var(--t-sm); }

/* CTA band */
.cta-band { background: var(--grad-ink); color: #fff; border-radius: var(--r-lg); padding: 64px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: var(--t-3xl); color: #fff; }
.cta-band p { color: rgba(255,255,255,.7); margin: 14px auto 28px; max-width: 40ch; }
.cta-band .ring { border-color: rgba(251,146,60,.5); }

/* footer */
.foot { padding: 56px 0 64px; border-top: 1px solid var(--line); color: var(--muted); font-size: var(--t-sm); }
.foot .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot .brand { font-size: var(--t-md); color: var(--ink); }
.foot nav { display: flex; gap: 20px; flex-wrap: wrap; }
.foot nav a:hover { color: var(--brand-600); }
.foot .made a { color: var(--brand-600); }

/* scroll reveal — only hides when JS is active, so no-JS/crawlers see content */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.in { opacity: 1; transform: none; }

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