:root {
  --bg: #061018;
  --ink: #e8f3fa;
  --muted: #8faabb;
  --line: rgba(255,255,255,.1);
  --sky: #2eb6ef;
  --sky-2: #0891c4;
  --accent: #ffc456;
  --accent-2: #f59e0b;
  --ok: #2dd4a0;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); background: var(--bg); color: var(--ink);
  min-height: 100%; line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

.bg-mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 10% -10%, rgba(8,145,196,.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(255,196,86,.14), transparent),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(45,212,160,.1), transparent);
}

.media-frame { position: relative; overflow: hidden; background: #0f172a; }
.media-frame > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 14px clamp(20px, 5vw, 48px);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  background: rgba(6,16,24,.78);
  transition: box-shadow .35s ease, background .35s ease;
}
.site-header.is-scrolled {
  background: rgba(6,16,24,.94);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-weight: 700; }
.brand img {
  height: 40px; width: auto; border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.brand-tag {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sky); background: rgba(46,182,239,.12);
  border: 1px solid rgba(46,182,239,.28); padding: .28rem .55rem; border-radius: 999px;
}
.site-nav { display: flex; gap: 1.4rem; }
.site-nav a { color: var(--muted); font-weight: 600; font-size: .88rem; transition: color .2s; }
.site-nav a:hover { color: #fff; }
.header-actions { display: flex; gap: .55rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; padding: .78rem 1.2rem; font-weight: 800; border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.34,1.4,.64,1), box-shadow .25s, background .2s;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1208; box-shadow: 0 10px 28px rgba(245,158,11,.35);
}
.btn-ghost {
  background: rgba(255,255,255,.06); border-color: var(--line); color: #fff;
}
.btn-xl { padding: 1rem 1.45rem; font-size: 1rem; }

.hero {
  position: relative; z-index: 1;
  min-height: min(92vh, 860px);
  display: grid; align-items: end;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { animation: kenBurns 18s ease-in-out infinite alternate; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,16,24,.92) 0%, rgba(6,16,24,.72) 48%, rgba(6,16,24,.35) 100%),
    linear-gradient(180deg, rgba(6,16,24,.25) 0%, rgba(6,16,24,.88) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px; width: 100%; margin: 0 auto;
  padding: clamp(5rem, 12vh, 8rem) clamp(20px, 5vw, 48px) 4rem;
}
.hero-brand {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: .04em; color: #fff; margin: 0 0 1rem;
  animation: fadeUp .8s cubic-bezier(.22,1,.36,1) both;
}
.hero h1 {
  font-family: var(--display); font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02; letter-spacing: -.04em; margin: 0 0 1.1rem; max-width: 14ch;
  animation: fadeUp .8s .08s cubic-bezier(.22,1,.36,1) both;
}
.hero h1 span {
  background: linear-gradient(135deg, #7dd3fc, #2eb6ef);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead {
  color: #c2d4e2; font-size: 1.08rem; max-width: 34rem; margin: 0 0 1.5rem;
  animation: fadeUp .8s .16s cubic-bezier(.22,1,.36,1) both;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: .9rem;
  animation: fadeUp .8s .24s cubic-bezier(.22,1,.36,1) both;
}
.demo-hint {
  color: var(--muted); font-size: .88rem; margin: 0;
  animation: fadeUp .8s .3s cubic-bezier(.22,1,.36,1) both;
}

.strip {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 1180px; margin: -1.5rem auto 0; padding: 0 clamp(20px,5vw,48px);
}
.strip div {
  background: rgba(13,33,51,.9); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.1rem 1.15rem; backdrop-filter: blur(10px);
  transition: transform .3s ease, border-color .3s ease;
}
.strip div:hover { transform: translateY(-4px); border-color: rgba(46,182,239,.35); }
.strip strong { display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: .2rem; }
.strip span { color: var(--muted); font-size: .85rem; }

.section { position: relative; z-index: 1; padding: 5rem clamp(20px,5vw,48px); max-width: 1180px; margin: 0 auto; }
.section.alt { max-width: none; background: rgba(255,255,255,.02); border-block: 1px solid var(--line); }
.section.alt .section-head, .section.alt .steps { max-width: 1180px; margin-left: auto; margin-right: auto; padding-inline: clamp(20px,5vw,48px); }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.eyebrow {
  display: inline-block; margin: 0 0 .7rem; font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ok);
}
.eyebrow.light { color: #9ae6c5; }
.section-head h2, .showcase-copy h2, .cta-copy h2 {
  font-family: var(--display); font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -.03em; margin: 0 0 .7rem;
}
.section-sub { color: var(--muted); margin: 0 auto; max-width: 34rem; }

.showcase-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.2rem; align-items: center; }
.showcase-media { aspect-ratio: 4/3; border-radius: 28px; border: 1px solid var(--line); box-shadow: 0 28px 60px rgba(0,0,0,.35); }
.showcase-copy p { color: var(--muted); }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0 1.5rem; display: grid; gap: .55rem; }
.checklist li {
  position: relative; padding-left: 1.5rem; color: #d5e6f2; font-weight: 600;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .45rem; width: .65rem; height: .65rem;
  border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(46,182,239,.18);
}

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature {
  background: linear-gradient(180deg, rgba(18,48,72,.9), rgba(10,26,40,.95));
  border: 1px solid var(--line); border-radius: 22px; padding: 1.35rem 1.25rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(46,182,239,.4);
  box-shadow: 0 18px 40px rgba(8,145,196,.15);
}
.feature-icon {
  width: 2.6rem; height: 2.6rem; display: grid; place-items: center;
  border-radius: 14px; background: rgba(46,182,239,.12); margin-bottom: .9rem; font-size: 1.2rem;
}
.feature h3 { font-family: var(--display); margin: 0 0 .4rem; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

.gallery-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 1rem; }
.gallery-main { aspect-ratio: 16/11; border-radius: 24px; border: 1px solid var(--line); }
.gallery-caption {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2;
  padding: 1rem 1.1rem; border-radius: 16px;
  background: rgba(6,16,24,.72); backdrop-filter: blur(10px); border: 1px solid var(--line);
}
.gallery-caption strong { display: block; font-family: var(--display); }
.gallery-caption span { color: var(--muted); font-size: .9rem; }
.gallery-side { display: grid; gap: 1rem; }
.gallery-side .media-frame { aspect-ratio: 16/10; border-radius: 20px; border: 1px solid var(--line); }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding-bottom: 4rem !important;
}
.step {
  background: rgba(13,33,51,.85); border: 1px solid var(--line); border-radius: 20px; padding: 1.3rem;
}
.step span {
  display: inline-block; font-family: var(--display); font-weight: 700;
  color: var(--sky); font-size: 1.1rem; margin-bottom: .7rem;
}
.step h3 { margin: 0 0 .35rem; font-family: var(--display); font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.dl-card {
  position: relative; overflow: hidden; border-radius: 22px; min-height: 220px;
  border: 1px solid var(--line); display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dl-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0,0,0,.35); }
.dl-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dl-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,16,24,.92) 100%);
}
.dl-card div { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2; }
.dl-card strong { display: block; font-family: var(--display); font-size: 1.1rem; }
.dl-card span { color: #b7c9d8; font-size: .9rem; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.plan {
  background: rgba(13,33,51,.9); border: 1px solid var(--line); border-radius: 22px;
  padding: 1.5rem 1.3rem; position: relative;
}
.plan.featured {
  background: linear-gradient(160deg, #0891c4, #0369a1 55%, #0c4a6e);
  border: none; transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(8,145,196,.3);
}
.plan-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent); color: #1a1208; font-size: .7rem; font-weight: 800;
  padding: .28rem .55rem; border-radius: 999px;
}
.plan h3 { font-family: var(--display); margin: 0 0 .35rem; }
.price { color: var(--sky); font-weight: 800; margin: 0 0 1rem; }
.plan.featured .price { color: #e0f2fe; }
.plan ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.plan.featured ul { color: rgba(255,255,255,.9); }

.cta-band {
  position: relative; z-index: 1; margin: 1rem clamp(20px,5vw,48px) 3rem;
  border-radius: 28px; overflow: hidden; border: 1px solid var(--line);
  min-height: 520px;
}
.cta-band-media { position: absolute; inset: 0; }
.cta-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,16,24,.92), rgba(6,16,24,.55));
}
.cta-band-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.5rem; align-items: start;
  padding: 2rem;
}
.cta-copy p { color: #c5d7e5; max-width: 28rem; }
.lead-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: .8rem;
  background: rgba(8,20,32,.82); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 22px; padding: 1.15rem;
}
.lead-form label { display: grid; gap: .3rem; font-size: .8rem; font-weight: 700; color: var(--muted); }
.lead-form .full { grid-column: 1 / -1; }
.lead-form input, .lead-form select, .lead-form textarea {
  border: 1px solid var(--line); border-radius: 12px; padding: .75rem .85rem;
  font: inherit; color: var(--ink); background: rgba(255,255,255,.04);
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: rgba(46,182,239,.55); box-shadow: 0 0 0 3px rgba(46,182,239,.15);
}
.form-msg { grid-column: 1 / -1; margin: 0; font-weight: 700; color: var(--ok); }

.site-footer {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.5rem clamp(20px,5vw,48px) 2.5rem; color: var(--muted); font-size: .9rem;
}
.site-footer img { height: 34px; width: auto; border-radius: 8px; opacity: .9; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes kenBurns {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 980px) {
  .site-nav { display: none; }
  .strip, .features-grid, .steps, .plans, .dl-grid, .showcase-grid, .gallery-grid, .cta-band-inner {
    grid-template-columns: 1fr;
  }
  .strip { grid-template-columns: 1fr 1fr; }
  .plan.featured { transform: none; }
  .hero { min-height: 78vh; }
  .hero-bg img { object-position: 70% center; }
}
@media (max-width: 640px) {
  .strip { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
}
