:root {
  --blue: #1E5BFF;
  --purple: #9B2BFF;
  --ink: #0B0B14;
  --ink-2: #1A1A28;
  --muted: #6B6B7A;
  --hair: rgba(255,255,255,0.10);
  --hair-dark: rgba(11,11,20,0.08);
  --bg: #FAFAFC;
  --gradient: linear-gradient(135deg, #1E5BFF 0%, #6936FF 55%, #9B2BFF 100%);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
@supports (font-variation-settings: normal) {
  body { font-family: 'Inter var', system-ui, -apple-system, sans-serif; }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(11,11,20,0.55);
  border-bottom: 1px solid var(--hair);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px;
  gap: 20px;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; letter-spacing: -0.01em; }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav-links { display: flex; gap: 28px; color: rgba(255,255,255,0.78); font-size: 14px; }
.nav-links a:hover { color: #fff; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.lang-picker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
.lang-picker label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.lang-picker select {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
  padding: 10px 36px 10px 14px;
  font: inherit;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.lang-picker option {
  color: var(--ink);
  background: #fff;
}
@media (max-width: 960px) { .nav-links { display: none; } }
@media (max-width: 640px) {
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-actions {
    justify-content: space-between;
  }
}

.hero {
  position: relative;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  padding: 88px 0 120px;
}
.hero::before {
  content: '';
  position: absolute; inset: -20%;
  background:
    radial-gradient(60% 50% at 15% 20%, rgba(30,91,255,0.55), transparent 60%),
    radial-gradient(50% 50% at 85% 30%, rgba(155,43,255,0.55), transparent 60%),
    radial-gradient(70% 60% at 60% 100%, rgba(105,54,255,0.45), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.04);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: #4ade80; box-shadow: 0 0 12px #4ade80; }
.domain-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--hair);
  margin-left: 10px;
  font-variant-numeric: tabular-nums;
}
.domain-chip .arrow {
  opacity: 0.55;
  transition: opacity .2s ease, transform .2s ease;
}
.domain-chip:hover .arrow { opacity: 1; transform: translateX(2px); }
@media (max-width: 540px) {
  .domain-chip { margin-left: 0; margin-top: 10px; }
}
.brand-row { display: flex; align-items: center; flex-wrap: wrap; }
h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 24px 0 20px;
  max-width: 18ch;
}
h1 .grad {
  background: linear-gradient(110deg, #8FB4FF, #C99BFF 60%, #FFC7F0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin: 0 0 36px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #fff;
  color: var(--ink);
}
.btn-primary:hover { background: #f3f3f8; }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: var(--hair);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.micro {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  border-radius: 44px;
  background: #0E0E18;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 2px rgba(255,255,255,0.08),
    0 40px 80px rgba(0,0,0,0.55),
    0 12px 32px rgba(105,54,255,0.25);
  padding: 8px;
  overflow: hidden;
}
.phone img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 36px;
  display: block;
}
.phone-stage {
  perspective: 1200px;
}
.phone.tilt {
  transform: rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
}
@media (max-width: 900px) {
  .phone.tilt { transform: none; }
}

.strip {
  padding: 28px 0;
  border-top: 1px solid var(--hair);
  color: rgba(255,255,255,0.6);
  background: var(--ink);
}
.strip .wrap {
  display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.strip span { opacity: 0.85; }

.kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 12px 0 16px;
  font-weight: 700;
  max-width: 22ch;
}
.sub {
  color: var(--muted);
  max-width: 60ch;
  font-size: 17px;
}

.messages {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 800px) { .messages { grid-template-columns: 1fr; } }
.message {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(11,11,20,0.06);
  box-shadow: 0 1px 0 rgba(11,11,20,0.02);
}
.message .num {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.message h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.015em; }
.message p { margin: 0; color: var(--muted); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: #fff;
  border: 1px solid rgba(11,11,20,0.06);
  border-radius: 20px;
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11,11,20,0.06);
}
.ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,91,255,0.10), rgba(155,43,255,0.10));
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature h3 { margin: 4px 0 6px; font-size: 18px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

.gallery-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 10% 10%, rgba(30,91,255,0.20), transparent 60%),
    radial-gradient(50% 50% at 100% 90%, rgba(155,43,255,0.20), transparent 60%);
  pointer-events: none;
}
.gallery-section .kicker { color: #8FB4FF; }
.gallery-section h2 { color: #fff; }
.gallery-section .sub { color: rgba(255,255,255,0.7); }
.shots {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: end;
}
@media (max-width: 1000px) { .shots { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .shots { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.shot {
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
  text-align: center;
}
.shot .frame {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  background: #0E0E18;
  padding: 5px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 1.5px rgba(255,255,255,0.08),
    0 20px 40px rgba(0,0,0,0.45);
  transition: transform .3s ease;
}
.shot:hover .frame { transform: translateY(-6px); }
.shot .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.shot .caption {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}
.shot .caption strong {
  display: block;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
  margin-bottom: 2px;
}

.journey-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 40% at 90% 0%, rgba(155,43,255,0.25), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(30,91,255,0.25), transparent 60%);
  pointer-events: none;
}
.journey-section .kicker { color: #8FB4FF; }
.journey-section .sub { color: rgba(255,255,255,0.7); }
.journey-section h2 { color: #fff; }
.ladder {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 900px) { .ladder { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ladder { grid-template-columns: 1fr; } }
.rung {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}
.rung .step {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.rung h4 {
  margin: 8px 0 6px;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.rung p { margin: 0; color: rgba(255,255,255,0.65); font-size: 14px; }

.how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  counter-reset: step;
}
@media (max-width: 800px) { .how { grid-template-columns: 1fr; } }
.step-card {
  counter-increment: step;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #F5F5FA);
  border: 1px solid rgba(11,11,20,0.06);
  position: relative;
}
.step-card::before {
  content: "0" counter(step);
  position: absolute; top: 24px; right: 28px;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.25;
}
.step-card h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -0.015em; }
.step-card p { margin: 0; color: var(--muted); }

.cta-band {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 96px 0;
}
.cta-band h2 { margin: 0 auto 16px; color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0 auto 28px; max-width: 56ch; }
.cta-band .btn-primary { background: #0B0B14; color: #fff; }
.cta-band .btn-primary:hover { background: #1A1A28; }
.cta-band .btn-ghost { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.2); }

footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 40px;
  border-top: 1px solid var(--hair);
}
.foot {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
  font-size: 14px;
}
.foot .brand { color: #fff; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a:hover { color: #fff; }
.legal {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}
