/* --------- Base / Theme --------- */
:root {
  --bg0: #07081a;
  --bg1: #090b21;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.085);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);
  --muted2: rgba(255, 255, 255, 0.5);

  --accent: #1fd2ff;   /* mirror merge blue vibe */
  --accent2: #ffd23f;  /* score yellow vibe */
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow2: 0 10px 34px rgba(0, 0, 0, 0.5);
  --container: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg0); /* fallback */
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  overflow-x: hidden;
  position: relative;
}

/* Static, fixed background layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background:
    radial-gradient(900px 700px at 20% -10%, rgba(31, 210, 255, 0.18), transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(255, 210, 63, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

a { color: inherit; text-decoration: none; }
p { margin: 0; line-height: 1.6; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.12; color: var(--text); }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  padding: 0.15em 0.35em;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* decorative */
.bg-glow {
  position: fixed;
  inset: -40vh -20vw auto -20vw;
  height: 80vh;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.7;
  background:
    radial-gradient(closest-side, rgba(31, 210, 255, 0.24), transparent 70%),
    radial-gradient(closest-side, rgba(255, 210, 63, 0.18), transparent 75%);
}

/* --------- Nav --------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7, 8, 26, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 210, 255, 0.24), rgba(255, 210, 63, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.brand__name { font-size: 16px; }

.nav__links {
  display: none;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}
.nav__links a {
  padding: 8px 10px;
  border-radius: 12px;
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 860px) {
  .nav__links { display: inline-flex; }
}

/* --------- Buttons --------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.075); }
.btn:active { transform: translateY(0px); }

.btn--primary {
  background: linear-gradient(180deg, rgba(31, 210, 255, 0.9), rgba(31, 210, 255, 0.62));
  color: #03101a;
  border-color: rgba(31, 210, 255, 0.65);
  box-shadow: 0 16px 45px rgba(31, 210, 255, 0.18), 0 20px 65px rgba(0,0,0,0.45);
}
.btn--primary:hover {
  background: linear-gradient(180deg, rgba(31, 210, 255, 0.98), rgba(31, 210, 255, 0.7));
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.045);
}
.btn--small {
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14px;
}

.btn__icon { font-weight: 900; }

/* --------- Hero --------- */
.hero {
  position: relative;
  padding: 56px 0 24px;
}
.hero__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 46px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted);
  font-weight: 700;
  width: fit-content;
}
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(31, 210, 255, 0.12);
}

.hero__title {
  margin-top: 16px;
  font-size: clamp(36px, 4.2vw, 58px);
  letter-spacing: -0.03em;
}
.text-accent {
  background: linear-gradient(90deg, rgba(31,210,255,1), rgba(255,210,63,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin-top: 14px;
  font-size: 16px;
  max-width: 58ch;
}

.hero__cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
}
.stat {
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.stat__num {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.92);
}
.stat__label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 700;
}

.trust {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted2);
  font-weight: 700;
  font-size: 13px;
}
.trust__item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.trust__icon {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* --------- Phone preview --------- */
.hero__media { position: relative; }
.phone {
  position: relative;
  width: min(420px, 92%);
  margin: 0 auto;
}
.phone__frame {
  border-radius: 34px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.phone__frame img {
  width: 100%;
  display: block;
  border-radius: 26px;
}
.phone__shadow {
  position: absolute;
  inset: auto 10% -20px 10%;
  height: 120px;
  filter: blur(24px);
  background: radial-gradient(closest-side, rgba(31,210,255,0.22), transparent 70%);
  z-index: -1;
}

.floating {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(5, 8, 22, 0.62);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  width: 240px;
}
.floating__icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 18px;
}
.floating__title { font-weight: 900; letter-spacing: -0.02em; }
.floating__sub { font-size: 12px; color: var(--muted2); font-weight: 700; margin-top: 2px; }

.floating--a { top: 14%; left: -2%; }
.floating--b { bottom: 16%; right: -2%; }

@media (max-width: 980px) {
  .floating { display: none; }
}

.hero__fade {
  margin-top: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

/* --------- Sections --------- */
.section { padding: 64px 0; }
.section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section__head {
  display: grid;
  gap: 10px;
  max-width: 760px;
}
.section__head h2 {
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing: -0.03em;
}
.section__head p { font-size: 15px; }

/* --------- Feature cards --------- */
.cards {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1060px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.card {
  padding: 18px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.14);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(31, 210, 255, 0.12);
  border: 1px solid rgba(31,210,255,0.22);
  margin-bottom: 10px;
}
.card h3 { font-size: 18px; letter-spacing: -0.02em; }
.card p { margin-top: 8px; }

/* --------- Gallery --------- */
.gallery {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.shot {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
  transform: translateZ(0);
}
.shot img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: transform 220ms ease;
}
.shot:hover img { transform: scale(1.03); }

.note {
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.note__icon {
  width: 34px;
  height: 34px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 210, 63, 0.12);
  border: 1px solid rgba(255, 210, 63, 0.22);
}

/* --------- Steps --------- */
.steps {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.step {
  padding: 16px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
}
.step__num {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  letter-spacing: -0.03em;
  color: #051019;
  background: linear-gradient(180deg, rgba(255,210,63,0.95), rgba(255,210,63,0.65));
  border: 1px solid rgba(255,210,63,0.55);
  box-shadow: 0 14px 40px rgba(255,210,63,0.12);
}
.step__body h3 { font-size: 18px; }
.step__body p { margin-top: 6px; }

/* --------- Callout --------- */
.callout {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(31,210,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow2);
}
@media (min-width: 960px) {
  .callout { grid-template-columns: 1.1fr 0.9fr; }
}
.callout__left h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}
.callout__left p { margin-top: 8px; max-width: 60ch; }

.mini {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.mini img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

/* --------- CTA --------- */
.section--cta {
  padding: 72px 0;
}
.cta {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(31,210,255,0.18), transparent 60%),
    radial-gradient(700px 450px at 90% 20%, rgba(255,210,63,0.14), transparent 60%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
@media (min-width: 960px) {
  .cta { grid-template-columns: 1.2fr 0.8fr; }
}

.cta__copy h2 {
  font-size: clamp(26px, 2.7vw, 42px);
  letter-spacing: -0.03em;
}
.cta__copy p { margin-top: 10px; max-width: 60ch; }

.storeRow {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
@media (min-width: 520px) {
  .storeRow { grid-template-columns: 1fr 1fr; }
}

.storeBtn {
  display: block;
  padding: 16px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  transition: transform 160ms ease, background 160ms ease;
}
.storeBtn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.075); }
.storeBtn__kicker { font-size: 12px; font-weight: 800; color: var(--muted2); }
.storeBtn__title { font-size: 18px; font-weight: 1000; letter-spacing: -0.02em; margin-top: 2px; }

.fineprint { margin-top: 10px; font-size: 12px; color: var(--muted2); font-weight: 700; }

.cta__media {
  display: grid;
  place-items: center;
}
.ctaPhone {
  width: min(320px, 92%);
  border-radius: 30px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow2);
}
.ctaPhone img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

/* --------- FAQ --------- */
.faq {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  max-width: 860px;
}
.qa {
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px 14px;
}
.qa summary {
  cursor: pointer;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--text);
  list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "＋";
  float: right;
  color: var(--muted2);
  font-weight: 1000;
}
.qa[open] summary::after { content: "－"; }
.qa p { margin-top: 10px; }

/* --------- Footer --------- */
.footer {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: grid;
  gap: 18px;
  align-items: start;
}
@media (min-width: 900px) {
  .footer__inner { grid-template-columns: 1.2fr 0.8fr; }
}

.footer__tag { margin-top: 10px; max-width: 50ch; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--muted);
  font-weight: 700;
}
.footer__links a {
  padding: 8px 10px;
  border-radius: 14px;
}
.footer__links a:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.footer__fine {
  margin-top: 12px;
  color: var(--muted2);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer__fine .dot { opacity: 0.6; }
.footer__fine .muted { color: var(--muted2); }
.footer__fine .muted:hover { color: var(--text); }
