:root {
  --bg: #080914;
  --bg-soft: #111426;
  --card: rgba(255,255,255,.07);
  --card-border: rgba(255,255,255,.11);
  --text: #f7f7fb;
  --muted: #a9aec4;
  --pink: #ff4fd8;
  --purple: #8b5cff;
  --blue: #4ca9ff;
  --green: #52e3a4;
  --yellow: #ffd36a;
  --red: #ff6b7d;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(139,92,255,.18), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(255,79,216,.13), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8,9,20,.72);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 780; letter-spacing: -.03em; font-size: 1.15rem; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--pink) 55%, var(--blue));
  display: grid; place-items: center; box-shadow: 0 10px 35px rgba(139,92,255,.25);
  position: relative;
}
.logo-mark::before {
  content: ""; width: 17px; height: 21px; border: 3px solid white; border-radius: 50% 50% 50% 6px; transform: rotate(-45deg);
}
.logo-mark::after {
  content: ""; width: 5px; height: 5px; background: white; border-radius: 50%; position: absolute; top: 13px; left: 17px;
}
.nav-links { display: flex; gap: 24px; align-items: center; color: var(--muted); font-size: .94rem; }
.nav-links a:hover { color: white; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 999px; padding: 13px 20px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.07);
  transition: .2s ease;
}
.button:hover { transform: translateY(-1px); background: rgba(255,255,255,.11); }
.button.primary { background: white; color: #0b0c16; border-color: white; box-shadow: 0 8px 40px rgba(255,255,255,.11); }
.button.primary:hover { background: #efeff6; }

.hero { padding: 92px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: #d9d9ec;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px; padding: 8px 12px; font-size: .84rem; margin-bottom: 20px;
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(82,227,164,.11); }
h1 { margin: 0; font-size: clamp(3.2rem, 7.8vw, 6.4rem); line-height: .92; letter-spacing: -.075em; max-width: 760px; }
.gradient-text { background: linear-gradient(90deg, #fff 8%, #c7b5ff 40%, #ff9be7 66%, #8ac7ff); -webkit-background-clip: text; color: transparent; }
.hero-copy { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 600px; margin: 26px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.small-note { color: #7d839f; font-size: .83rem; margin-top: 15px; }

.phone-wrap { position: relative; min-height: 600px; display: grid; place-items: center; }
.glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,255,.28), rgba(255,79,216,.09) 42%, transparent 70%); filter: blur(2px); }
.phone {
  width: min(320px, 78vw); aspect-ratio: 9 / 19.2; border-radius: 48px; padding: 10px;
  background: #020306; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 35px 100px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.05);
  position: relative; z-index: 2; transform: rotate(2deg);
}
.phone-screen {
  height: 100%; border-radius: 39px; overflow: hidden; padding: 24px 20px;
  background: linear-gradient(180deg, #1a102b 0%, #0f1121 35%, #090a12 100%);
  border: 1px solid rgba(255,255,255,.06); position: relative;
}
.island { width: 95px; height: 27px; border-radius: 18px; background: #000; margin: -17px auto 26px; }
.screen-top { display: flex; align-items: center; justify-content: space-between; }
.avatar, .mini-button { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #dce0f1; font-size: .75rem; }
.screen-title { font-weight: 700; font-size: .92rem; }
.venue-card { margin-top: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 24px; padding: 18px; }
.venue-img { height: 150px; border-radius: 17px; background: linear-gradient(145deg, #693e9d, #251d52 50%, #101121); position: relative; overflow: hidden; }
.venue-img::before, .venue-img::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.14); }
.venue-img::before { width: 180px; height: 180px; right: -50px; top: -70px; }
.venue-img::after { width: 120px; height: 120px; left: -35px; bottom: -50px; }
.venue-name { font-weight: 750; margin-top: 14px; display: flex; justify-content: space-between; gap: 12px; }
.distance { color: var(--muted); font-size: .75rem; font-weight: 500; }
.busy { margin-top: 12px; display: flex; gap: 9px; align-items: center; }
.busy-pill { border-radius: 999px; padding: 8px 12px; background: rgba(255,79,216,.14); color: #ff9be7; border: 1px solid rgba(255,79,216,.25); font-size: .8rem; font-weight: 750; }
.people { color: #a9aec4; font-size: .78rem; }
.place-list { display: grid; gap: 11px; margin-top: 12px; }
.place-row { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; background: rgba(255,255,255,.045); padding: 10px; border-radius: 15px; }
.thumb { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #274260, #8059a7); }
.place-row b { font-size: .8rem; }
.place-row span { display: block; color: var(--muted); font-size: .69rem; }
.level { font-size: .68rem; border-radius: 20px; padding: 5px 8px; font-weight: 700; }
.level.normal { color: #ffe39a; background: rgba(255,211,106,.1); }
.level.empty { color: #92efc2; background: rgba(82,227,164,.1); }
.floating-card { position: absolute; z-index: 5; border-radius: 18px; padding: 13px 15px; background: rgba(20,22,39,.89); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0,0,0,.26); }
.floating-card.one { left: -8px; top: 110px; }
.floating-card.two { right: -4px; bottom: 105px; }
.floating-card strong { display: block; font-size: .83rem; }
.floating-card span { color: var(--muted); font-size: .72rem; }

.section { padding: 92px 0; }
.section.soft { background: rgba(255,255,255,.025); border-top: 1px solid rgba(255,255,255,.055); border-bottom: 1px solid rgba(255,255,255,.055); }
.kicker { color: #b8a4ff; font-weight: 750; font-size: .85rem; text-transform: uppercase; letter-spacing: .14em; }
h2 { margin: 10px 0 14px; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.02; letter-spacing: -.055em; }
.section-intro { color: var(--muted); max-width: 680px; font-size: 1.05rem; }

.pulse-demo { margin-top: 44px; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)); border: 1px solid var(--card-border); border-radius: 30px; padding: 30px; overflow: hidden; }
.pulse-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 12px; }
.pulse-item { padding: 22px 18px; border-radius: 20px; background: rgba(255,255,255,.045); }
.pulse-item .pulse-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .09em; }
.pulse-item strong { font-size: 1.16rem; display: block; margin-top: 6px; }
.pulse-bar { height: 5px; border-radius: 10px; background: rgba(255,255,255,.08); margin-top: 16px; overflow: hidden; }
.pulse-fill { height: 100%; border-radius: 10px; transform-origin: left; animation: pulse 3s ease-in-out infinite alternate; }
.p1 { width: 24%; background: var(--green); } .p2 { width: 51%; background: var(--yellow); } .p3 { width: 78%; background: var(--pink); } .p4 { width: 94%; background: var(--red); }
@keyframes pulse { from { transform: scaleX(.82); } to { transform: scaleX(1); } }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.card { background: var(--card); border: 1px solid var(--card-border); border-radius: 24px; padding: 25px; min-height: 220px; }
.card-icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; font-size: 1.25rem; background: linear-gradient(135deg, rgba(139,92,255,.24), rgba(255,79,216,.13)); border: 1px solid rgba(255,255,255,.09); }
.card h3 { margin: 22px 0 8px; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); font-size: .94rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.step-number { font-size: .75rem; font-weight: 800; color: #b9a9ff; border: 1px solid rgba(185,169,255,.2); background: rgba(139,92,255,.08); width: fit-content; padding: 6px 9px; border-radius: 999px; }
.step h3 { margin: 14px 0 8px; }
.step p { color: var(--muted); margin: 0; }

.cta { margin: 80px auto 0; border-radius: 34px; padding: 55px 34px; text-align: center; border: 1px solid rgba(255,255,255,.12); background: radial-gradient(circle at 50% 0%, rgba(139,92,255,.22), transparent 55%), rgba(255,255,255,.045); }
.cta h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.cta p { color: var(--muted); max-width: 620px; margin: 0 auto 24px; }

footer { padding: 35px 0 45px; color: #777d95; font-size: .86rem; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: #c7cbdd; }

.legal-hero { padding: 90px 0 38px; }
.legal-wrap { width: min(calc(100% - 36px), 780px); margin: 0 auto; }
.legal-wrap h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.legal-wrap .updated { color: var(--muted); margin-top: 18px; }
.legal-content { padding: 30px 0 80px; }
.legal-content h2 { font-size: 1.55rem; letter-spacing: -.03em; margin-top: 38px; }
.legal-content h3 { margin-top: 26px; }
.legal-content p, .legal-content li { color: #b3b8cb; }
.legal-content a { color: #c7b5ff; text-decoration: underline; text-underline-offset: 3px; }
.notice { border: 1px solid rgba(255,211,106,.22); background: rgba(255,211,106,.08); color: #f9e6ad; padding: 16px 18px; border-radius: 16px; margin: 24px 0; }
.support-card { margin-top: 30px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 25px; }
.faq { border-top: 1px solid rgba(255,255,255,.09); margin-top: 30px; }
details { border-bottom: 1px solid rgba(255,255,255,.09); padding: 17px 0; }
summary { cursor: pointer; font-weight: 700; }
details p { color: var(--muted); }

@media (max-width: 900px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero-copy { max-width: 720px; }
  .phone-wrap { min-height: 560px; }
  .cards, .steps { grid-template-columns: 1fr 1fr; }
  .pulse-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav-inner { height: 66px; }
  .nav-links .button { padding: 10px 14px; font-size: .82rem; }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .phone-wrap { min-height: 530px; }
  .floating-card.one { left: 0; } .floating-card.two { right: 0; }
  .section { padding: 70px 0; }
  .cards, .steps, .pulse-grid { grid-template-columns: 1fr; }
  .pulse-demo { padding: 18px; }
  .cta { padding: 42px 21px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}


.showcase-list { display: grid; gap: 28px; margin-top: 46px; }
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 30px;
  padding: 28px;
}
.showcase-item.reverse { grid-template-columns: 360px 1fr; }
.showcase-item.reverse .showcase-copy { order: 2; }
.showcase-item.reverse .showcase-shot { order: 1; }
.showcase-label {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f0ebff;
  background: rgba(139,92,255,.14);
  border: 1px solid rgba(185,169,255,.16);
}
.showcase-copy h3 {
  margin: 16px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.showcase-copy p { margin: 0; color: var(--muted); font-size: 1rem; max-width: 560px; }
.showcase-shot {
  justify-self: center;
  width: min(100%, 320px);
  padding: 12px;
  border-radius: 34px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}
.showcase-shot img { width: 100%; border-radius: 26px; display: block; }

@media (max-width: 900px) {
  .showcase-item,
  .showcase-item.reverse { grid-template-columns: 1fr; }
  .showcase-item.reverse .showcase-copy,
  .showcase-item.reverse .showcase-shot { order: initial; }
}
@media (max-width: 620px) {
  .showcase-item { padding: 18px; gap: 20px; }
  .showcase-shot { width: min(100%, 300px); padding: 10px; border-radius: 26px; }
  .showcase-shot img { border-radius: 20px; }
}


.hero-copy-only {
  display: flex;
  align-items: center;
}
.hero-points-grid {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 460px;
}
.hero-point-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 18px 20px;
}
.hero-point-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}
.hero-point-card span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
}
.hero-grid {
  grid-template-columns: 1fr 420px;
}
@media (max-width: 900px) {
  .hero-copy-only {
    margin-top: 4px;
  }
}
@media (max-width: 620px) {
  .hero-points-grid {
    max-width: none;
  }
}

/* Prevent the last letter of the gradient word from being visually clipped. */
.gradient-text {
  display: inline-block;
  padding-right: 0.07em;
  margin-right: -0.07em;
}


.brand-icon-image {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 35px rgba(139,92,255,.25);
  flex: 0 0 auto;
}
