:root {
  --bg: #ffffff;
  --soft: #f5f7fb;
  --line: #e3e8f0;
  --ink: #0f1b2d;
  --muted: #5b6b82;
  --brand: #f59105;
  --brand-soft: #fff4e2;
  --blue: #1454c0;
  --radius: 16px;
  --shadow: 0 10px 30px -18px rgba(15, 27, 45, 0.35);
  --max: 1160px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
}
p {
  margin: 0.6rem 0 0;
}
.muted {
  color: var(--muted);
}
section {
  padding: clamp(48px, 7vw, 88px) 0;
}
.center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--brand);
  line-height: 1;
}
.logo span.mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
}
.links {
  display: none;
  gap: 28px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--muted);
}
.links a:hover {
  color: var(--ink);
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 26px -14px rgba(245, 145, 5, 0.9);
}
.btn-primary:hover {
  filter: brightness(1.05);
}
.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.burger {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 1.1rem;
}
@media (min-width: 900px) {
  .links {
    display: flex;
  }
  .burger {
    display: none;
  }
}

/* hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9, 20, 36, 0.86) 0%,
    rgba(9, 20, 36, 0.62) 45%,
    rgba(9, 20, 36, 0.25) 100%
  );
}
.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;

  margin: 0 auto;
  padding: 60px 20px;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 800;
  /* max-width: 15ch; */
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
}
.hero p {
  max-width: 52ch;
  color: #dfe6f0;
}
.hero .cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffd79a;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
  max-width: 620px;
}
.stats b {
  display: block;
  font-size: 1.7rem;
  color: var(--brand);
}
.stats small {
  color: #c9d3e0;
  font-size: 0.82rem;
}
@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* logo strip */
.strip {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.strip .row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  justify-content: center;
  padding: 22px 0;
  font-weight: 700;
  color: #8492a6;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* split */
.split {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 64px;
  }
  .split.rev {
    grid-template-columns: 0.95fr 1.15fr;
  }
  .split.rev > div:first-child {
    order: 2;
  }
}
.shot {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -32px rgba(15, 27, 45, 0.55);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
}
.shot:hover img {
  transform: scale(1.04);
}
@media (min-width: 900px) {
  .shot img {
    aspect-ratio: 5/4;
    min-height: 460px;
  }
}
.full-media {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.full-media img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
}
.ticks {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.ticks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.ticks li::before {
  content: "✓";
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

/* cards */
.grid {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}
.g2 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .g2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .g4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: 0.2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.card p {
  font-size: 0.9rem;
  color: var(--muted);
}
.ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.soft {
  background: var(--soft);
}
.step .num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.14em;
}

/* stats band */
.band {
  background: #0f1b2d;
  color: #fff;
  display: flex;
  justify-content: center;
}
.band .grid {
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  margin: 0;
}
@media (min-width: 800px) {
  .band .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.band b {
  font-size: 2rem;
  color: var(--brand);
  display: block;
}
.band small {
  color: #a9b6c8;
}

/* quote */
.quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 600;
}
.quote footer {
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

/* cta */
.final {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
}
.final img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(9, 20, 36, 0.9),
    rgba(245, 145, 5, 0.55)
  );
}
.final .inner {
  position: relative;
  z-index: 2;
}

footer.site {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.fgrid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

/* icons */
.ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  transition: 0.25s;
}
.ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card:hover .ico {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px) rotate(-4deg);
}

/* reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.7, 0.3, 1),
    transform 0.7s cubic-bezier(0.22, 0.7, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* hero enhancements */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
    1100px 520px at 12% 20%,
    rgba(245, 145, 5, 0.22),
    transparent 60%
  );
}
.hero .wrap {
  animation: heroUp 0.9s cubic-bezier(0.22, 0.7, 0.3, 1) both;
}
@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero img.bg {
  animation: slowZoom 22s ease-out forwards;
}
@keyframes slowZoom {
  from {
    transform: scale(1.09);
  }
  to {
    transform: scale(1);
  }
}
.hero h1 em {
  position: relative;
}
.hero .cta .btn-primary {
  position: relative;
  overflow: hidden;
}
.hero .cta .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  animation: shine 3.4s 1.2s infinite;
}
@keyframes shine {
  0% {
    left: -120%;
  }
  55%,
  100% {
    left: 140%;
  }
}
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}
.stats > div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(8px);
  transition: 0.25s;
}
.stats > div:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e8eef7;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 13px;
  border-radius: 999px;
}
.hero-badges svg {
  width: 15px;
  height: 15px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 4;
  color: #dfe6f0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}
.scroll-hint i {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(#fff, transparent);
  animation: hint 1.8s infinite;
}
@keyframes hint {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.2;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}
.ticks li {
  transition: 0.2s;
}
.ticks li:hover {
  transform: translateX(4px);
}
