:root {
  --bg: #05030b;
  --text: #ffffff;
  --muted: #cfc6df;
  --soft: #f3ecff;
  --pink: #ff2ca6;
  --pink-2: #ff71d2;
  --cyan: #38e7ff;
  --violet: #9b5cff;
  --blue: #2377ff;
  --panel: rgba(15, 10, 33, .78);
  --line: rgba(255, 255, 255, .16);
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 60px);
  background: linear-gradient(180deg, rgba(4, 2, 12, .9), rgba(4, 2, 12, .44));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #05020b;
  font-size: 22px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}
.brand strong { display: block; font-family: Montserrat, sans-serif; font-size: 21px; letter-spacing: 0; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.nav { display: flex; gap: 8px; }
.nav a {
  padding: 10px 12px;
  color: #eadfff;
  font-size: 14px;
  border-radius: 8px;
}
.nav a:hover { background: rgba(255, 255, 255, .09); }
.header-cta {
  padding: 11px 16px;
  color: #070411;
  font-weight: 850;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(255, 44, 166, .38);
}

.hero {
  position: relative;
  min-height: 98vh;
  display: grid;
  align-items: end;
  padding: 160px clamp(22px, 6vw, 88px) 72px;
  overflow: hidden;
}
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 2, 13, .9) 0%, rgba(5, 2, 13, .62) 38%, rgba(5, 2, 13, .16) 76%),
    linear-gradient(0deg, rgba(5, 3, 11, 1) 0%, rgba(5, 3, 11, .08) 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero h1 {
  margin: 14px 0 0;
  font-family: Montserrat, sans-serif;
  font-size: clamp(62px, 13vw, 172px);
  line-height: .82;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, .55), 0 0 45px rgba(255, 44, 166, .65);
}
.hero-subtitle {
  margin: 20px 0 0;
  color: var(--pink-2);
  font-size: clamp(30px, 4.7vw, 62px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 44, 166, .55);
}
.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: #f8f0ff;
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 850;
  border-radius: 8px;
  border: 1px solid transparent;
}
.btn.primary { color: #070411; background: linear-gradient(135deg, var(--pink), var(--cyan)); box-shadow: 0 0 34px rgba(255, 44, 166, .42); }
.btn.secondary { border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .08); }
.btn.large { min-height: 58px; padding: 0 26px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-stats span {
  min-width: 160px;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
}
.hero-stats strong { display: block; color: white; }

section { padding: 92px clamp(22px, 6vw, 88px); }
h2 {
  margin: 12px 0 0;
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 { margin: 14px 0 10px; font-size: 24px; line-height: 1.16; }
p { color: var(--muted); }
.section-heading { max-width: 900px; margin-bottom: 34px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 46px;
  align-items: center;
  background: linear-gradient(135deg, #12082d, #0b1e31 52%, #27061d);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-band p, .platform-copy p, .business-section p, .cta-section p, .corporate-copy p { font-size: 18px; line-height: 1.7; }

.lines-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 44, 166, .16), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(56, 231, 255, .14), transparent 28%),
    #06040f;
}
.line-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.line-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.line-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.line-card > div { padding: 26px; }
.line-label {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.line-card p { line-height: 1.62; }
.line-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.line-card li {
  padding: 12px 14px;
  color: #f5edff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.line-card.party { border-color: rgba(255, 44, 166, .34); }
.line-card.corporate { border-color: rgba(56, 231, 255, .34); }

.flow-section { background: #080615; }
.flow-grid, .feature-grid, .plans-grid {
  display: grid;
  gap: 18px;
}
.flow-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.flow-grid article, .feature-grid article, .plan-card {
  min-height: 210px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.flow-grid article span {
  display: inline-flex;
  color: var(--pink-2);
  font-size: 34px;
  font-weight: 900;
}
.flow-grid p, .feature-grid p, .plan-card p { line-height: 1.55; }

.platform-section {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 22% 22%, rgba(56, 231, 255, .18), transparent 32%),
    linear-gradient(135deg, #070412, #150626 54%, #071c2a);
}
.phone-panel {
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 14px;
  background: linear-gradient(135deg, #ffffff, #40384f 18%, #05030b 42%);
  border-radius: 42px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 65px rgba(255, 44, 166, .38);
}
.phone-screen { min-height: 610px; padding: 38px 22px 22px; background: #090711; border-radius: 32px; }
.phone-top { width: 118px; height: 22px; margin: 0 auto -28px; background: #05030a; border-radius: 0 0 18px 18px; position: relative; z-index: 2; }
.phone-logo { font-family: Montserrat, sans-serif; font-size: 32px; font-weight: 900; }
.phone-logo span { color: var(--pink); }
.now { display: inline-flex; margin: 14px 0 18px; padding: 6px 10px; color: white; font-size: 11px; font-weight: 850; text-transform: uppercase; background: var(--pink); border-radius: 8px; }
.queue-item { display: flex; align-items: center; gap: 12px; margin: 10px 0; padding: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; }
.queue-item.active { border-color: rgba(255,44,166,.65); box-shadow: 0 0 20px rgba(255,44,166,.18); }
.queue-item b { color: var(--cyan); }
.queue-item span { display: grid; gap: 3px; color: white; }
.queue-item small { color: var(--muted); }
.phone-screen button { width: 100%; min-height: 54px; margin-top: 18px; color: white; font-weight: 900; font-size: 17px; background: linear-gradient(135deg, var(--pink), var(--violet)); border: 0; border-radius: 8px; }
.module-grid, .business-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.module-grid span, .business-grid span, .feature-list span {
  padding: 11px 13px;
  color: #f5edff;
  background: rgba(56, 231, 255, .12);
  border: 1px solid rgba(56, 231, 255, .32);
  border-radius: 8px;
}

.features-section { background: #06040f; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid article span {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 38px;
  padding: 0 10px;
  color: #070411;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  border-radius: 8px;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, 1fr);
  gap: 44px;
  align-items: center;
  background: linear-gradient(135deg, #10142e, #180723 48%, #082231);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.business-grid span {
  display: block;
  margin: 0;
  font-weight: 800;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
}

.plans-section { background: #080615; }
.plans-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-card { min-height: 320px; display: flex; flex-direction: column; }
.plan-card h3 { font-size: 32px; }
.plan-card strong { margin-top: auto; color: var(--cyan); }
.plan-card a { margin-top: 22px; display: inline-flex; justify-content: center; padding: 13px 16px; color: #070411; font-weight: 850; background: white; border-radius: 8px; }
.plan-card.featured { background: linear-gradient(145deg, rgba(255,44,166,.32), rgba(56,231,255,.16)); border-color: rgba(255,44,166,.58); transform: translateY(-10px); }
.plan-card.featured a { background: linear-gradient(135deg, var(--pink), var(--cyan)); }

.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 72% 42%, rgba(56, 231, 255, .24), transparent 28%),
    radial-gradient(circle at 24% 18%, rgba(255, 44, 166, .28), transparent 30%),
    linear-gradient(135deg, #170721, #071527 62%, #24051b);
  min-height: 420px;
}
.cta-section div { max-width: 800px; }
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(22px, 6vw, 88px);
  color: var(--muted);
  background: #030208;
  border-top: 1px solid var(--line);
}
.site-footer strong { color: white; font-family: Montserrat, sans-serif; }

@media (max-width: 1080px) {
  .site-header { position: sticky; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .header-cta { margin-left: auto; }
  .intro-band, .line-grid, .platform-section, .business-section, .cta-section { grid-template-columns: 1fr; }
  .flow-grid, .feature-grid, .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: 880px; padding-top: 110px; }
  .hero-media img { object-position: 64% center; }
}

@media (max-width: 660px) {
  .brand { min-width: 0; }
  .brand small { display: none; }
  .header-cta { width: 100%; }
  .hero { min-height: 820px; padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 58px; }
  .hero-subtitle { font-size: 34px; }
  .hero-copy { font-size: 17px; }
  section { padding: 64px 18px; }
  .flow-grid, .feature-grid, .plans-grid, .business-grid { grid-template-columns: 1fr; }
  .phone-screen { min-height: 560px; }
  .phone-logo { font-size: 28px; }
  .plan-card.featured { transform: none; }
  .cta-section { align-items: flex-start; }
  .btn.large, .hero-actions .btn { width: 100%; }
}
