/* ==========================================================
   Orbit36ty — shared styles
   Colors are taken from the logo: deep space navy, cyan,
   violet and magenta. Change them in :root to re-theme.
   ========================================================== */
:root {
  --void: #01030f;
  --deep: #060b26;
  --panel: #0a1131;
  --line: rgba(140, 160, 255, 0.16);
  --cyan: #26d0ff;
  --blue: #3b6bff;
  --violet: #8a5cff;
  --magenta: #ff3fd8;
  --text: #eef1ff;
  --dim: #a3abd6;
  --grad: linear-gradient(90deg, var(--cyan), var(--violet) 55%, var(--magenta));
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Soft colored glows fixed behind the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(55rem 38rem at 85% -5%, rgba(59, 107, 255, 0.22), transparent 60%),
    radial-gradient(45rem 32rem at 5% 30%, rgba(138, 92, 255, 0.16), transparent 60%),
    radial-gradient(40rem 30rem at 90% 80%, rgba(255, 63, 216, 0.10), transparent 60%);
  pointer-events: none;
}

#stars { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-underline-offset: 3px; }
a:hover { color: #7fe3ff; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }

h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: -0.025em; line-height: 1.08; }
h1 { font-size: clamp(2.3rem, 4.9vw, 3.7rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: clamp(1.95rem, 4.2vw, 3.1rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0; }

.lead { color: var(--dim); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 34rem; }
.section-head { max-width: 44rem; margin-bottom: clamp(2.2rem, 5vw, 3.8rem); }
.section-head p { color: var(--dim); margin-top: 1rem; max-width: 36rem; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons & forms ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem;
  border: 0; border-radius: 999px;
  background: var(--grad);
  color: #020414;
  font: 700 1rem/1 var(--font-body);
  text-decoration: none; cursor: pointer;
  box-shadow: 0 10px 30px -10px rgba(138, 92, 255, 0.8);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { color: #020414; transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(255, 63, 216, 0.6); }
.btn-small { padding: .65rem 1.15rem; font-size: .95rem; }

.waitlist {
  display: flex; gap: .5rem; flex-wrap: wrap;
  max-width: 30rem; padding: .4rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(10, 17, 49, 0.7);
  backdrop-filter: blur(8px);
}
.waitlist input {
  flex: 1 1 12rem; min-width: 0;
  padding: .8rem 1.1rem;
  background: transparent; border: 0; color: var(--text);
  font: 500 1rem var(--font-body);
}
.waitlist input::placeholder { color: #7f88b8; }
.waitlist input:focus-visible { outline: none; }
.waitlist:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(38, 208, 255, .18); }
.form-note { min-height: 1.5rem; margin-top: .75rem; color: var(--dim); font-size: .95rem; max-width: 30rem; }

.stores { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.store {
  display: flex; flex-direction: column; justify-content: center;
  min-width: 10.5rem; padding: .6rem 1.2rem;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(10, 17, 49, .6);
  color: var(--text); line-height: 1.25;
  cursor: default;
}
.store small { color: var(--cyan); font-size: .75rem; font-weight: 600; }
.store strong { font: 700 1.05rem var(--font-display); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(1, 3, 15, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--text); font: 800 1.35rem var(--font-display); letter-spacing: -0.03em; }
.brand:hover { color: var(--text); }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.brand .n36 { background: linear-gradient(90deg, var(--cyan), var(--magenta)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: var(--dim); text-decoration: none; font-weight: 600; font-size: .98rem; }
.nav-links a:hover { color: var(--text); }
.nav-links a.btn { color: #020414; }
.menu-btn { display: none; background: none; border: 1px solid var(--line); color: var(--text); border-radius: 10px; padding: .5rem .7rem; cursor: pointer; font: 600 .95rem var(--font-body); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem); overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .95rem; margin-bottom: 1.5rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(10, 17, 49, .6);
  color: var(--dim); font-size: .92rem; font-weight: 600;
}
.pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2.4s ease-in-out infinite; }
.hero h1 span { display: block; }
.hero .lead { margin: 1.5rem 0 2rem; }

.hero-art { position: relative; width: min(100%, 640px); margin-inline: auto; aspect-ratio: 1134 / 725; }
.hero-art .emblem {
  width: 100%; height: 100%; object-fit: contain;
  -webkit-mask-image: radial-gradient(ellipse 54% 56% at 50% 50%, #000 62%, transparent 100%), linear-gradient(to bottom, #000 80%, transparent 97%);
  -webkit-mask-composite: source-in;
  mask-image: radial-gradient(ellipse 54% 56% at 50% 50%, #000 62%, transparent 100%), linear-gradient(to bottom, #000 80%, transparent 97%);
  mask-composite: intersect;
}
.orbit-svg { position: absolute; left: -7%; top: -10%; width: 114%; height: 120%; pointer-events: none; overflow: visible; }

.bubble {
  position: absolute;
  padding: .55rem .95rem;
  border-radius: 18px 18px 18px 4px;
  background: rgba(10, 17, 49, .85);
  border: 1px solid rgba(140, 160, 255, .3);
  backdrop-filter: blur(8px);
  font-size: .85rem; line-height: 1.35; font-weight: 600;
  box-shadow: 0 14px 40px -12px rgba(59, 107, 255, .6);
  animation: drift 7s ease-in-out infinite;
}
.bubble b { display: block; font-size: .72rem; color: var(--cyan); font-weight: 700; }
.bubble.b1 { left: -2%; top: 6%; }
.bubble.b2 { right: -3%; top: 40%; border-radius: 18px 18px 4px 18px; animation-delay: -2.5s; animation-duration: 8s; }
.bubble.b2 b { color: var(--magenta); }
.bubble.b3 { left: 6%; bottom: 2%; animation-delay: -4.5s; animation-duration: 9s; }
.bubble.b3 b { color: #b79bff; }

/* ---------- Features ---------- */
.feature-list { border-top: 1px solid var(--line); }
.feature {
  display: grid; grid-template-columns: 4.5rem minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.5rem 2rem; align-items: start;
  padding-block: 2.2rem;
  border-bottom: 1px solid var(--line);
}
.feature-icon {
  width: 4.5rem; height: 4.5rem; display: grid; place-items: center;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(38, 208, 255, .16), rgba(255, 63, 216, .14));
  border: 1px solid rgba(140, 160, 255, .3);
}
.feature-icon svg { width: 30px; height: 30px; stroke: url(#icon-grad); }
.feature h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: -0.025em; padding-top: .35rem; }
.feature p { color: var(--dim); padding-top: .5rem; max-width: 32rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; counter-reset: step; }
.step { position: relative; padding-top: 4.2rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 3.2rem; height: 3.2rem; display: grid; place-items: center;
  border-radius: 50%;
  font: 800 1.25rem var(--font-display); color: #020414;
  background: var(--grad);
  box-shadow: 0 0 30px -4px rgba(138, 92, 255, .8);
}
.step::after {
  content: ""; position: absolute; top: 1.6rem; left: 4rem; right: -1.2rem; height: 1px;
  background: repeating-linear-gradient(90deg, rgba(140, 160, 255, .5) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }
.step p { color: var(--dim); margin-top: .5rem; max-width: 20rem; }

/* ---------- Screenshots (CSS phones) ---------- */
.phones { display: flex; justify-content: center; align-items: flex-start; gap: clamp(1rem, 3vw, 2.5rem); }
.phone-wrap { flex: 0 0 auto; text-align: center; }
.phone-wrap:nth-child(2) { margin-top: -1.5rem; }
.phone-wrap figcaption { margin-top: 1.1rem; color: var(--dim); font-size: .95rem; font-weight: 600; }
.phone {
  width: 250px; aspect-ratio: 9 / 17.2; padding: 8px;
  border-radius: 38px;
  background: linear-gradient(160deg, #38408a, #0a0f2e 60%);
  box-shadow: 0 40px 90px -30px rgba(80, 100, 255, .65), 0 0 0 1px rgba(160, 175, 255, .28);
}
.screen {
  position: relative; height: 100%; overflow: hidden;
  border-radius: 31px; padding: 1.7rem .8rem .8rem;
  background: linear-gradient(180deg, #0a1030, #050820 70%);
  text-align: left; font-size: .72rem; line-height: 1.4;
}
.screen::before { /* notch */
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 16px; border-radius: 10px; background: #01030f;
}
.scr-title { font: 700 1.05rem var(--font-display); margin: .5rem 0 .2rem; letter-spacing: -0.02em; }
.scr-sub { color: var(--dim); font-size: .7rem; margin-bottom: .8rem; }
.scr-search { padding: .5rem .7rem; border-radius: 12px; background: rgba(140, 160, 255, .1); color: #7f88b8; margin-bottom: .6rem; }

.room { display: flex; align-items: center; gap: .6rem; padding: .5rem .3rem; border-bottom: 1px solid rgba(140, 160, 255, .1); }
.room-ico { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 11px; font: 800 .9rem var(--font-display); color: #020414; }
.room strong { display: block; font-size: .78rem; }
.room span { color: var(--dim); font-size: .66rem; }
.room .live { margin-left: auto; width: 7px; height: 7px; border-radius: 50%; background: #3dffa8; box-shadow: 0 0 8px #3dffa8; }

.code-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: .3rem; margin: .8rem 0 1rem; }
.code-row span { display: grid; place-items: center; aspect-ratio: 1 / 1.25; border-radius: 9px; border: 1px solid rgba(140, 160, 255, .3); font: 700 .95rem var(--font-display); }
.code-row span.on { border-color: var(--cyan); box-shadow: 0 0 12px -2px var(--cyan); }
.field { padding: .6rem .75rem; border-radius: 12px; border: 1px solid rgba(140, 160, 255, .3); background: rgba(140, 160, 255, .07); margin-top: .35rem; font-size: .78rem; }
.scr-btn { margin-top: .9rem; padding: .65rem; text-align: center; border-radius: 999px; background: var(--grad); color: #020414; font-weight: 800; font-size: .78rem; }
.scr-fine { color: #7f88b8; font-size: .62rem; margin-top: .7rem; }

.chat-head { display: flex; align-items: center; gap: .55rem; padding: .5rem 0 .7rem; border-bottom: 1px solid rgba(140, 160, 255, .12); margin-bottom: .7rem; }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--magenta)); display: grid; place-items: center; font: 800 .8rem var(--font-display); color: #020414; }
.chat-head strong { display: block; font-size: .8rem; }
.chat-head span { color: #3dffa8; font-size: .64rem; }
.msg { max-width: 82%; padding: .5rem .7rem; border-radius: 14px 14px 14px 4px; background: rgba(140, 160, 255, .14); margin-bottom: .45rem; font-size: .72rem; }
.msg.me { margin-left: auto; border-radius: 14px 14px 4px 14px; background: linear-gradient(135deg, var(--blue), var(--violet)); }
.typing { display: inline-flex; gap: 3px; padding: .55rem .7rem; border-radius: 14px 14px 14px 4px; background: rgba(140, 160, 255, .14); }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--dim); animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .2s; }
.typing i:nth-child(3) { animation-delay: .4s; }
.composer { position: absolute; left: .8rem; right: .8rem; bottom: .8rem; padding: .6rem .8rem; border-radius: 999px; background: rgba(140, 160, 255, .12); color: #7f88b8; font-size: .7rem; }
.shots-note { text-align: center; color: #7f88b8; font-size: .85rem; margin-top: 2.4rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.25rem; }
.quote {
  padding: 1.8rem; border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(20, 30, 90, .55), rgba(10, 17, 49, .5));
}
.quote.big { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.quote blockquote { margin: 0; font: 600 1.15rem/1.5 var(--font-display); letter-spacing: -0.015em; }
.quote.big blockquote { font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.3; }
.quote figcaption { display: flex; align-items: center; gap: .7rem; margin-top: 1.4rem; color: var(--dim); font-size: .92rem; }
.tag-ph { margin-left: auto; padding: .15rem .6rem; border-radius: 999px; border: 1px dashed rgba(255, 63, 216, .6); color: #ff8be9; font-size: .72rem; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 50rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.3rem 0; cursor: pointer; list-style: none;
  font: 700 1.15rem var(--font-display); letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: 0 0 auto; width: 2rem; height: 2rem; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line); color: var(--cyan); font-size: 1.3rem; line-height: 1;
  transition: transform .25s ease, background .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); background: rgba(38, 208, 255, .12); }
.faq details p { padding: 0 3rem 1.4rem 0; color: var(--dim); }

/* ---------- Download / CTA ---------- */
.cta-panel {
  position: relative; overflow: hidden;
  padding: clamp(2.2rem, 6vw, 4.5rem);
  border-radius: 34px;
  border: 1px solid rgba(140, 160, 255, .3);
  background:
    radial-gradient(30rem 20rem at 100% 0%, rgba(255, 63, 216, .22), transparent 65%),
    radial-gradient(30rem 20rem at 0% 100%, rgba(38, 208, 255, .2), transparent 65%),
    var(--panel);
}
.cta-panel h2 { max-width: 40rem; }
.cta-panel .lead { margin: 1rem 0 1.8rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact p { color: var(--dim); margin-top: 1rem; max-width: 30rem; }
.contact-card { padding: 1.6rem 1.8rem; border-radius: 22px; border: 1px solid var(--line); background: rgba(10, 17, 49, .6); }
.contact-card + .contact-card { margin-top: 1rem; }
.contact-card h3 { font-size: 1.05rem; }
.contact-card p { margin-top: .35rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 2.5rem 3rem; color: var(--dim); font-size: .95rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.2rem; }
.footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer a { color: var(--dim); text-decoration: none; font-weight: 600; }
.footer a:hover { color: var(--text); }

/* ---------- Legal pages ---------- */
.legal { max-width: 46rem; padding-block: clamp(2.5rem, 6vw, 4.5rem) 5rem; }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
.legal .updated { color: var(--dim); margin: .8rem 0 2.5rem; }
.legal h2 { font-size: 1.35rem; margin: 2.4rem 0 .6rem; }
.legal p, .legal li { color: #c9cff0; }
.legal ul { padding-left: 1.3rem; margin: .6rem 0; }
.legal li { margin-bottom: .35rem; }
.legal .back { display: inline-block; margin-bottom: 1.5rem; font-weight: 600; text-decoration: none; }

/* ---------- Motion ---------- */
@keyframes drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .phones { justify-content: flex-start; overflow-x: auto; scroll-snap-type: x mandatory; padding: 1rem 1.25rem 2rem; margin-inline: -1.25rem; }
  .phone-wrap { scroll-snap-align: center; }
  .phone-wrap:nth-child(2) { margin-top: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; width: min(100%, 520px); }
  .feature { grid-template-columns: 4.5rem 1fr; }
  .feature p { grid-column: 2; padding-top: 0; }
  .quotes { grid-template-columns: 1fr; }
  .quote.big { grid-row: auto; }
  .contact { grid-template-columns: 1fr; }
  .menu-btn { display: inline-block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 1rem;
    padding: 1.2rem 1.25rem 1.5rem;
    background: rgba(1, 3, 15, .96); border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step { padding: .2rem 0 0 4.6rem; }
  .step::after { display: none; }
  .waitlist { border-radius: 24px; }
  .waitlist .btn { flex: 1 1 100%; }
  .bubble { font-size: .75rem; padding: .45rem .75rem; }
  .bubble.b2 { right: 0; }
  .bubble.b1 { left: 0; }
  .faq details p { padding-right: 0; }
}
