:root {
  --red: #2f5bff;
  --red-deep: #12275a;
  --ink: #ffffff;
  --sub: #cfd4e6;
  --lab: #8b93ab;
  --line: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  overflow-x: hidden;
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.svgdefs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

/* ---------- background video ---------- */
.bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  filter: url(#grade);
}
.bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.55;
}

.scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(47,91,255,0.20), transparent 55%),
    linear-gradient(100deg, #000 20%, rgba(0,0,0,.82) 42%, rgba(0,0,0,.35) 68%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

/* ---------- layout frame ---------- */
.frame {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  padding: 32px 48px 0;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #fff;
}
.logo span {
  color: var(--red);
  font-weight: 700;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 48px 56px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(47, 91, 255, 0.14);
  border: 1px solid rgba(47, 91, 255, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: #fff;
}
h1 .ln { display: block; overflow: hidden; }
h1 .highlight { color: var(--red); }

.subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--sub);
  max-width: 460px;
  margin: 0 0 34px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 17px 30px;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(47, 91, 255, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(47, 91, 255, 0.45);
}
.cta-btn:active { transform: translateY(0); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #eef0fa;
}
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* ---------- photo with glow border ---------- */
.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(140deg, #6b8cff, #2f5bff 35%, #12275a 65%, #6b8cff);
  background-size: 260% 260%;
  animation: glowMove 7s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 70px rgba(0,0,0,0.65),
    0 0 60px rgba(47,91,255,0.35);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(47,91,255,0.35), transparent 70%);
  filter: blur(22px);
  z-index: -1;
}

.model-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
}

@keyframes glowMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 24px 32px;
  font-size: 13px;
  color: var(--lab);
}

/* ---------- entrance animation ---------- */
.intro {
  opacity: 1;
  transform: translateY(0);
}
html.intro-run .intro { opacity: 0; }
html.intro-run .topbar.intro { animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .05s forwards; }
html.intro-run .eyebrow.intro { animation: fadeUp .6s cubic-bezier(.22,1,.36,1) .25s forwards; }
html.intro-run h1.intro { animation: fadeUp .8s cubic-bezier(.22,.85,.24,1) .35s forwards; }
html.intro-run .subtitle.intro { animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .6s forwards; }
html.intro-run .cta-btn.intro { animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .75s forwards; }
html.intro-run .trust-row.intro { animation: fadeUp .6s cubic-bezier(.22,1,.36,1) .9s forwards; }
html.intro-run .hero-media.intro { animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .4s forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .intro { opacity: 1 !important; }
  .photo-frame { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .topbar { padding: 24px 24px 0; }
  .hero {
    grid-template-columns: 1fr;
    padding: 24px 24px 40px;
    text-align: center;
  }
  .hero-text { align-items: center; order: 2; }
  .hero-media { order: 1; margin-bottom: 8px; }
  .subtitle { max-width: 100%; }
  .trust-row { justify-content: center; }
  .photo-frame { max-width: 300px; }
}
