:root {
  --bg: #050505;
  --bg-soft: #0e0e0e;
  --ink: #f4f4f4;
  --muted: #a2a2a2;
  --line: #232323;
  --accent: #ff4d00;
  --accent-2: #ece436;
  --ok: #22c463;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  background: radial-gradient(circle at 15% -10%, rgba(255, 77, 0, 0.2), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(236, 228, 54, 0.1), transparent 40%),
    var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 0.35px, transparent 0.35px);
  background-size: 2.5px 2.5px;
}

.light-smear {
  position: fixed;
  z-index: -1;
  width: 70vw;
  height: 70vw;
  max-width: 740px;
  max-height: 740px;
  top: 8%;
  right: -24%;
  border-radius: 48% 52% 60% 40% / 40% 46% 54% 60%;
  background: linear-gradient(140deg, rgba(255, 77, 0, 0.24), rgba(236, 228, 54, 0.14));
  filter: blur(62px);
  animation: float 8s ease-in-out infinite alternate;
}

.shell {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  backdrop-filter: blur(6px);
}

.nav-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: inline-block;
}

.brand-logo {
  width: 168px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.86;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--accent-2);
}

.hero {
  padding: clamp(2.3rem, 7vw, 5.2rem) 0 2.5rem;
  position: relative;
}

.hero-kicker {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.hero h1 {
  margin-top: 0.8rem;
  font-size: clamp(1.65rem, 7vw, 4.5rem);
  line-height: 0.9;
  max-width: 36ch;
}

.hero-green {
  color: #8df5b2;
}

.hero-sub {
  font-size: 0.5em;
  line-height: 1.15;
}

.hero-text {
  margin: 1.2rem 0 0;
  max-width: 63ch;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #dddddd;
}

.hero-note {
  color: #ece436;
}

.hero-whats-link {
  color: #8df5b2;
  font-weight: 700;
}

.hero-whats-link:hover {
  color: #aefac9;
}

.hero-actions {
  display: flex;
  gap: 0.72rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  padding: 0.84rem 1.05rem;
  display: inline-block;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-main {
  background: var(--accent);
  color: #111;
}

.btn-line {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-strip {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.services,
.flow,
.faq,
.contact {
  margin-top: 1.2rem;
  padding: 1rem 0;
}

.section-top {
  margin-bottom: 0.9rem;
}

.marker {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.section-top h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.9rem, 6vw, 4.3rem);
  line-height: 0.95;
  max-width: 18ch;
}

.service-line {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.service-line h3 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.service-line p {
  margin: 0.3rem 0;
  color: #d2d2d2;
  max-width: 68ch;
}

.service-line strong {
  color: var(--accent-2);
  font-size: 0.94rem;
  letter-spacing: 0.04em;
}

.featured {
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(255, 77, 0, 0.09), rgba(255, 77, 0, 0));
  padding-left: 0.8rem;
}

.flow ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.flow li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 0.8rem;
  padding: 0.85rem 0 0.85rem 0.8rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.flow li span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--accent);
}

.flow li h3 {
  font-size: 1.9rem;
}

.flow li p {
  margin: 0.25rem 0 0;
  color: #d7d7d7;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.8rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq p {
  margin: 0.5rem 0 0;
  color: #d0d0d0;
}

.contact {
  margin-top: 2rem;
  border-top: 2px solid var(--accent);
  padding-top: 1.1rem;
  padding-bottom: 1.8rem;
}

.contact h2 {
  margin-top: 0.45rem;
  font-size: clamp(2.2rem, 8vw, 5.4rem);
  line-height: 0.92;
  max-width: 13ch;
}

.contact p {
  margin: 0.75rem 0 0;
  max-width: 58ch;
  color: #d4d4d4;
}

.contact .btn {
  margin-top: 1rem;
}

.whats-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  color: #052212;
  background: linear-gradient(145deg, #22c463, #0fa750);
  box-shadow: 0 10px 28px rgba(14, 167, 80, 0.35);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 2.1rem;
}

.footer p {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  color: #8c8c8c;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(14px);
  }
}

@media (max-width: 860px) {
  .nav-row {
    min-height: auto;
    padding: 0.72rem 0;
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .main-nav a {
    font-size: 0.73rem;
  }

  .brand-logo {
    width: 150px;
  }

  .flow li {
    grid-template-columns: 56px 1fr;
  }

  .flow li h3 {
    font-size: 1.55rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(1.4rem, 9vw, 2.4rem);
  }

  .hero {
    padding-top: 2.6rem;
  }

  .section-top h2 {
    font-size: clamp(1.65rem, 10vw, 2.8rem);
  }

  .service-line h3 {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .whats-float {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}
