:root {
  --bg: #080A10;
  --bg-soft: #10131D;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);
  --text: #F6F7FB;
  --muted: #A7ADBE;
  --muted-2: #737B91;
  --yellow: #FFD84D;
  --yellow-dark: #F3B817;
  --red: #9F0909;
  --green: #41F0A1;
  --line: rgba(255, 255, 255, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 216, 77, 0.16), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(159, 9, 9, 0.28), transparent 34%),
    radial-gradient(circle at 60% 85%, rgba(65, 240, 161, 0.09), transparent 34%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  scroll-snap-type: y proximity;
}

section {
  scroll-margin-top: 110px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-reveal {
  position: relative;
  opacity: 0;
  transform: translate3d(0, 70px, 0) perspective(1200px) rotateX(8deg) scale(0.97);
  filter: blur(10px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 900ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) perspective(1200px) rotateX(0deg) scale(1);
  filter: blur(0);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.section-reveal + .section-reveal {
  margin-top: -24px;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 75%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(8, 10, 16, 0.35);
  backdrop-filter: blur(0.4px);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 18px;
  z-index: 50;
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 13, 22, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: transparent;
  color: #080A10;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(255, 216, 77, 0.26);
}

.brand-name {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #080A10;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  padding: 108px 0 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 216, 77, 0.24);
  border-radius: 999px;
  background: rgba(255, 216, 77, 0.08);
  color: #FFE99D;
  font-size: 0.86rem;
  font-weight: 700;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(65, 240, 161, 0.12);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 8vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy {
  max-width: 610px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 850;
  transition: transform 0.25s ease, background 0.25s ease, border 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: #080A10;
  box-shadow: 0 20px 55px rgba(255, 216, 77, 0.22);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.hero-proof {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.proof-card {
  min-width: 145px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.proof-card strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.proof-card span {
  margin-top: 4px;
  display: block;
  color: var(--muted-2);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.8), transparent 12%),
    radial-gradient(circle at 40% 40%, rgba(255, 216, 77, 0.65), rgba(159, 9, 9, 0.2) 48%, transparent 72%);
  filter: blur(6px);
  opacity: 0.55;
}

.phone {
  position: relative;
  z-index: 2;
  width: 318px;
  min-height: 638px;
  padding: 13px;
  border-radius: 46px;
  background: transparent;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: rotate(2deg);
}

.phone-screen {
  min-height: 612px;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 30% 5%, rgba(255, 216, 77, 0.25), transparent 28%),
    linear-gradient(180deg, #131724, #07090F);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.phone-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.mini-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #080A10;
  font-size: 0.82rem;
  font-weight: 900;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.16));
  border: 1px solid rgba(255,255,255,0.22);
}

.phone-title {
  margin-bottom: 18px;
}

.phone-title small {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.phone-title h3 {
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1.04;
  letter-spacing: -0.07em;
}

.job-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  background: rgba(255,255,255,0.085);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.22);
}

.job-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.job-head h4 {
  font-size: 1.05rem;
  letter-spacing: -0.035em;
}

.tag {
  height: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(65, 240, 161, 0.12);
  color: #8DFFC9;
  font-size: 0.72rem;
  font-weight: 900;
}

.job-info {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.job-info div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.job-info strong {
  color: var(--text);
}

.candidate {
  margin-top: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
}

.candidate-face {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, #FFD84D, #9F0909);
}

.candidate b {
  display: block;
  font-size: 0.92rem;
}

.candidate span {
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 650;
}

.accept-btn {
  width: 100%;
  height: 48px;
  margin-top: 18px;
  border: none;
  border-radius: 999px;
  background: var(--yellow);
  color: #080A10;
  font-weight: 900;
  font-family: inherit;
}

.floating-card {
  position: absolute;
  z-index: 4;
  width: 210px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13, 16, 26, 0.74);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.floating-card.one {
  left: 0;
  top: 128px;
}

.floating-card.two {
  right: 4px;
  bottom: 104px;
}

.floating-card small {
  color: var(--muted-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
}

.floating-card b {
  margin-top: 8px;
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

section {
  padding: 80px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-strong), rgba(255,255,255,0.045));
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 70px rgba(0,0,0,0.22);
}

.icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 216, 77, 0.12);
  color: var(--yellow);
  font-size: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
  letter-spacing: -0.045em;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.97rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow);
}

.panel h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.075em;
}

.panel p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  padding: 22px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #080A10;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 6px;
  font-size: 1.06rem;
  letter-spacing: -0.035em;
}

.step p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.cta {
  margin: 70px 0 90px;
  padding: 54px;
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.34), transparent 12%),
    linear-gradient(135deg, #FFD84D, #F3B817 52%, #A86E00);
  color: #080A10;
  box-shadow: 0 34px 100px rgba(255, 216, 77, 0.22);
}

.cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cta h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.cta p {
  margin-top: 18px;
  max-width: 620px;
  color: rgba(8,10,16,0.72);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 650;
}

.cta .btn {
  margin-top: 28px;
  background: #080A10;
  color: var(--text);
}

footer {
  margin-top: 120px;
  padding: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin-bottom: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.footer-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: var(--muted-2);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.footer-nav.social a {
  display: inline-block;
}

.footer-bottom {
  padding: 32px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 78px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .floating-card.one {
    left: 10px;
  }

  .floating-card.two {
    right: 10px;
  }
}

@media (max-width: 580px) {
  .page,
  .navbar {
    width: min(100% - 22px, 1180px);
  }

  .navbar {
    top: 10px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 11px 14px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 64px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 18vw, 5.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .proof-card {
    flex: 1;
    min-width: 130px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone {
    width: 286px;
    min-height: 590px;
  }

  .phone-screen {
    min-height: 564px;
    padding: 18px;
  }

  .floating-card {
    width: 180px;
  }

  .floating-card.one {
    top: 86px;
    left: -2px;
  }

  .floating-card.two {
    bottom: 54px;
    right: -2px;
  }

  section {
    padding: 58px 0;
  }

  .section-reveal + .section-reveal {
    margin-top: 0;
  }

  .feature-card,
  .panel {
    padding: 24px;
    border-radius: 28px;
  }

  .cta {
    padding: 34px 24px;
    border-radius: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 60px 0 40px;
  }

  .footer-column:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 34px;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-nav a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: 24px 0;
    font-size: 0.85rem;
  }
}
