:root {
  --bg: #081426;
  --bg-2: #0d1c32;
  --panel: rgba(12, 28, 50, 0.72);
  --panel-strong: rgba(16, 36, 63, 0.92);
  --text: #edf3ff;
  --muted: #9badcb;
  --line: rgba(132, 164, 214, 0.2);
  --mint: #4de2b1;
  --teal: #2fc5ce;
  --coral: #ff6b79;
  --amber: #ffb85e;
  --violet: #8a7cff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(47, 197, 206, 0.18), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(255, 107, 121, 0.16), transparent 18%),
    radial-gradient(circle at 70% 80%, rgba(138, 124, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #07101e 0%, #081426 40%, #0b1a31 100%);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.08));
  opacity: .28;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 108px 0; position: relative; }
.section-title {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}
.section-copy, .lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.75;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(77, 226, 177, 0.12);
  border: 1px solid rgba(77, 226, 177, 0.25);
  border-radius: 999px;
  color: #cffff1;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--teal));
  box-shadow: 0 0 18px rgba(77, 226, 177, .55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(6, 17, 31, 0.66);
  border-bottom: 1px solid rgba(138, 164, 202, 0.12);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(77,226,177,0.22), rgba(255,107,121,0.18));
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 10px 30px rgba(0,0,0,.22);
  position: relative;
  overflow: hidden;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}
.brand-mark::before {
  width: 32px;
  height: 12px;
  background: linear-gradient(90deg, var(--mint), var(--teal));
  transform: rotate(-22deg);
  box-shadow: 0 0 20px rgba(77,226,177,.3);
}
.brand-mark::after {
  width: 12px;
  height: 30px;
  background: linear-gradient(180deg, var(--amber), var(--coral));
  transform: translate(11px, 3px) rotate(-22deg);
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-text strong {
  font-family: Sora, Inter, sans-serif;
  font-size: .95rem;
  letter-spacing: .04em;
}
.brand-text span {
  color: var(--muted);
  font-size: .78rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav a {
  color: #c4d2ea;
  font-weight: 500;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--mint), var(--coral));
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(77, 226, 177, 0.25);
  background: rgba(77, 226, 177, 0.12);
  font-weight: 700;
}

.hero {
  padding: 68px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 56px;
}
.hero-copy h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.25rem);
  line-height: .95;
  letter-spacing: -0.06em;
  margin: 0 0 20px;
}
.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(110deg, #ffffff 0%, #d7fbe9 15%, var(--mint) 45%, var(--amber) 73%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p { max-width: 58ch; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--mint), var(--teal));
  color: #04233a;
  box-shadow: 0 16px 34px rgba(47, 197, 206, 0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.metric {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(10, 24, 44, 0.65);
  border: 1px solid var(--line);
}
.metric strong {
  display: block;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 6px;
}
.metric span { color: var(--muted); font-size: .95rem; }

.visual-stage {
  position: relative;
  min-height: 650px;
}
.visual-stage::before,
.visual-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}
.visual-stage::before {
  width: 260px;
  height: 260px;
  top: 20px;
  right: 40px;
  background: rgba(77, 226, 177, 0.12);
}
.visual-stage::after {
  width: 220px;
  height: 220px;
  bottom: 80px;
  left: 10px;
  background: rgba(255, 107, 121, 0.1);
}
.hero-banner-card {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(100%, 640px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.12);
  transform: rotate(-2deg);
}
.hero-banner-card img { width: 100%; height: auto; }
.float-icon {
  position: absolute;
  width: 160px;
  left: 10px;
  top: 320px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(9, 23, 43, 0.9), rgba(8, 19, 36, 0.84));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.float-icon img { border-radius: 22px; }
.float-card {
  position: absolute;
  right: -10px;
  bottom: 20px;
  max-width: 260px;
  background: rgba(8, 21, 41, 0.92);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.float-card strong { display:block; font-size:1.1rem; margin-bottom:10px; }
.float-card p { margin:0; color: var(--muted); line-height:1.65; }
.float-card::before {
  content: "Launch in progress";
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 184, 94, .12);
  border: 1px solid rgba(255, 184, 94, .35);
  color: #ffe1b5;
  font-size: .82rem;
  font-weight: 700;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
}
.story-main, .story-side {
  padding: 34px;
}
.story-main ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 18px;
}
.story-main li,
.service,
.process-card,
.stat-tile,
.showcase-card,
.contact-card,
.policy-card,
.faq-item,
.release-card {
  position: relative;
  overflow: hidden;
}
.story-main li {
  padding: 16px 18px 16px 68px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}
.story-main li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), var(--coral));
}
.story-main li strong { display:block; margin-bottom:6px; }
.story-main li span { color: var(--muted); line-height: 1.6; }
.story-side {
  display: grid;
  gap: 20px;
}
.story-side .mini {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}
.story-side .mini strong { display:block; font-size:1.1rem; margin-bottom:10px; }
.story-side .mini p { color: var(--muted); margin:0; line-height:1.65; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.service {
  padding: 28px;
  border-radius: 26px;
  background: rgba(11, 26, 46, 0.8);
  border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.service:hover {
  transform: translateY(-4px);
  border-color: rgba(77,226,177,.35);
}
.service .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #052033;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mint), var(--amber));
}
.service h3 { font-size: 1.25rem; margin: 0 0 10px; }
.service p { margin: 0; color: var(--muted); line-height: 1.7; }

.showcase-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.showcase-card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(8, 22, 42, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.app-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.phone-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.04);
  transform: translateY(var(--offset, 0));
}
.phone-frame img { width: 100%; }
.showcase-copy h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  margin: 0 0 16px;
}
.bullet-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.bullet {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bullet strong { display:block; margin-bottom:6px; }
.bullet span { color: var(--muted); line-height:1.6; }
.bullet .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  margin-top: 8px;
  flex: 0 0 auto;
}

.release-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 26px;
}
.release-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(8, 22, 42, 0.82);
  border: 1px solid var(--line);
}
.release-card strong {
  display:block;
  font-size:1.1rem;
  margin-bottom:10px;
}
.release-card p { margin:0; color: var(--muted); line-height:1.65; }
.release-card .num {
  display:inline-flex;
  width:42px;
  height:42px;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  background: linear-gradient(135deg, rgba(77,226,177,.2), rgba(255,107,121,.18));
  border:1px solid rgba(255,255,255,.1);
  font-weight:800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(10, 26, 47, 0.82);
  border: 1px solid var(--line);
}
.process-card .step {
  font-family: Sora, Inter, sans-serif;
  color: var(--amber);
  font-size: 2rem;
  margin-bottom: 14px;
  display:block;
}
.process-card h3 { margin: 0 0 10px; font-size:1.2rem; }
.process-card p { margin:0; color: var(--muted); line-height:1.7; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.stat-tile {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}
.stat-tile strong {
  display:block;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin-bottom: 10px;
}
.stat-tile span { color: var(--muted); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.faq-item {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(8, 22, 42, 0.76);
}
.faq-item h3 { margin: 0 0 12px; font-size: 1.15rem; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.7; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 24px;
}
.contact-card {
  padding: 32px;
  border-radius: 30px;
  background: rgba(8, 22, 42, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.contact-row {
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
}
.contact-row small {
  display:block;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-row strong { font-size: 1.02rem; }
.contact-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.promo-card {
  padding: 0;
  overflow: hidden;
}
.promo-card img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}
.promo-copy {
  padding: 24px;
}
.promo-copy h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}
.promo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(6, 16, 30, 0.8);
  backdrop-filter: blur(14px);
}
.footer-inner {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-copy {
  color: var(--muted);
  font-size: .94rem;
}
.footer-links {
  display:flex;
  gap:16px;
  flex-wrap: wrap;
  align-items:center;
}
.footer-links a {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.policy-hero {
  padding: 64px 0 28px;
}
.policy-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(9, 24, 44, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.policy-card h2, .policy-card h3 {
  font-family: Sora, Inter, sans-serif;
  margin: 0 0 14px;
}
.policy-card p, .policy-card li {
  color: var(--muted);
  line-height: 1.8;
}
.policy-card ul { padding-left: 18px; }
.policy-card strong { color: var(--text); }
.back-link {
  display: inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom: 22px;
  color: #d4e7ff;
}

.not-found {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 60px 0;
}
.not-found-card {
  width: min(760px, 100%);
  padding: 50px;
  text-align: center;
  border-radius: 32px;
  background: rgba(9, 24, 44, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.not-found-card h1 {
  margin: 0 0 12px;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(4rem, 15vw, 7rem);
  line-height: .95;
}
.not-found-card p { color: var(--muted); font-size: 1.08rem; line-height:1.8; }

@media (max-width: 1120px) {
  .hero-grid, .story-grid, .showcase-grid, .contact-layout {
    grid-template-columns: 1fr;
  }
  .services-grid, .process-grid, .release-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-stage { min-height: 720px; }
}

@media (max-width: 820px) {
  .header-inner { min-height: auto; padding: 18px 0; align-items: flex-start; flex-direction: column; }
  .nav { gap: 16px; }
  .header-cta { width: 100%; }
  .hero { padding-top: 44px; }
  .hero-metrics, .faq-grid, .services-grid, .process-grid, .release-grid, .stats-grid, .app-stack {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 { max-width: 11ch; }
  .float-icon {
    top: auto;
    bottom: 170px;
    left: 14px;
    width: 130px;
  }
  .float-card {
    position: absolute;
    right: 12px;
    left: 12px;
    max-width: none;
    bottom: 20px;
  }
  .visual-stage { min-height: 680px; }
  .hero-banner-card { width: calc(100% - 14px); }
  .section { padding: 78px 0; }
  .story-main, .story-side, .showcase-card, .contact-card, .policy-card, .not-found-card { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
