:root {
  --ink: #0f172a;
  --ink-soft: #475569;
  --paper: #f6f8fa;
  --mist: #eef2f7;
  --accent: #3b62d8;
  --accent-strong: #2f4fb5;
  --accent-soft: #4d7bff;
  --spark: #4d7bff;
  --line: rgba(15, 23, 42, 0.1);
  --font-display: "Bricolage Grotesque", "Avenir Next", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.landing-page a {
  color: inherit;
}

.landing-shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.landing-top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  padding: 1.15rem 0;
}

.landing-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  letter-spacing: -0.02em;
}

.landing-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.landing-top-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}

.landing-top-cta:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.landing-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.landing-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.28) 0%, rgba(15, 23, 42, 0.58) 48%, rgba(15, 23, 42, 0.86) 100%),
    url("/img/header.webp") center / cover no-repeat;
  transform: scale(1.06);
  animation: landing-kenburns 18s ease-in-out infinite alternate;
}

@keyframes landing-kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, 1%, 0); }
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(3.5rem, 8vh, 5.5rem);
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.landing-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateY(18px);
  animation: landing-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.landing-hero-copy h1 {
  margin: 0 0 0.9rem;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(18px);
  animation: landing-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.landing-hero-copy p {
  margin: 0 0 1.6rem;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(18px);
  animation: landing-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.44s forwards;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(18px);
  animation: landing-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

@keyframes landing-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.85rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.landing-btn:hover {
  transform: translateY(-2px);
}

.landing-btn-primary {
  background: var(--accent-soft);
  color: #fff;
}

.landing-btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

.landing-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}

.landing-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.landing-btn-solid {
  background: var(--accent);
  color: #fff;
}

.landing-btn-solid:hover {
  background: var(--accent-strong);
  color: #fff;
}

.landing-btn-outline {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.18);
  color: var(--ink);
}

.landing-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.landing-section {
  padding: clamp(3.75rem, 9vw, 6.5rem) 0;
}

.landing-section-head {
  max-width: 38rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.landing-section-head h2,
.landing-split-copy h2,
.landing-final h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
}

.landing-section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.landing-flow {
  display: grid;
  gap: 1.25rem;
  counter-reset: landing-step;
}

@media (min-width: 840px) {
  .landing-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.landing-step {
  position: relative;
  padding: 1.15rem 0 0 0.15rem;
  border-top: 2px solid var(--ink);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.landing-step.is-in {
  opacity: 1;
  transform: translateY(0);
}

.landing-step:nth-child(2) { transition-delay: 0.08s; }
.landing-step:nth-child(3) { transition-delay: 0.16s; }

.landing-step::before {
  counter-increment: landing-step;
  content: counter(landing-step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.landing-step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.landing-step p {
  margin: 0;
  color: var(--ink-soft);
}

.landing-split {
  display: grid;
  min-height: 28rem;
}

@media (min-width: 860px) {
  .landing-split {
    grid-template-columns: 1.05fr 1fr;
  }
}

.landing-split-photo {
  min-height: 18rem;
  background: url("/img/header_2.webp") center / cover no-repeat;
}

.landing-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: clamp(2.2rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  background: #0f172a;
  color: #fff;
}

.landing-split-copy p {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.landing-points {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.landing-points li {
  padding-left: 1.15rem;
  border-left: 3px solid var(--accent-soft);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.landing-final {
  text-align: center;
}

.landing-final p {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  color: var(--ink-soft);
}

.landing-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.landing-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
}

.landing-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing-footer-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.landing-footer-meta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.landing-footer-meta a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .landing-shell,
  .landing-hero-copy {
    width: min(1120px, calc(100% - 1.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-media,
  .landing-kicker,
  .landing-hero-copy h1,
  .landing-hero-copy p,
  .landing-hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .landing-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
