:root {
  --bg: #061225;
  --bg-soft: #0d1b35;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --stroke: rgba(255, 255, 255, 0.14);
  --text: #eef5ff;
  --muted: #b7c9e7;
  --primary-light: #6fd3ff;
  --primary: #2f80ff;
  --primary-royal: #2146ff;
  --success: #6ef0c2;
  --shadow: 0 24px 80px rgba(6, 18, 37, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(111, 211, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(47, 128, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #04101f 0%, #0a1830 45%, #10214a 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 320px;
  height: 320px;
  top: 90px;
  left: -90px;
  background: rgba(111, 211, 255, 0.16);
}

body::after {
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: -100px;
  background: rgba(33, 70, 255, 0.14);
}

img {
  max-width: 100%;
  display: block;
}

 a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 42px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  position: sticky;
  top: 16px;
  z-index: 10;
  background: rgba(7, 18, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 12px 50px rgba(4, 11, 23, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(111, 211, 255, 0.25), rgba(33, 70, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.brand-mark img,
.app-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.eyebrow,
.mini-label,
.section-tag,
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
  color: white;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-royal));
  box-shadow: 0 10px 24px rgba(33, 70, 255, 0.28);
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dff7ee;
  margin-bottom: 22px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(110, 240, 194, 0.13);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-light), #ffffff 40%, var(--primary-royal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-heading p,
.feature-card p,
.contact-copy p,
.flow-item p,
.stat-card span {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-royal));
  box-shadow: 0 16px 32px rgba(33, 70, 255, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats,
.feature-grid {
  display: grid;
  gap: 16px;
}

.hero-stats {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.stat-card,
.glass-card,
.contact-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.stat-card {
  border-radius: var(--radius-md);
  padding: 18px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.app-card {
  width: min(100%, 500px);
  border-radius: 30px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(111, 211, 255, 0.22), transparent 32%);
  pointer-events: none;
}

.app-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.app-icon-wrap {
  width: 74px;
  height: 74px;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(111, 211, 255, 0.22), rgba(33, 70, 255, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.app-card h2,
.section-heading h2,
.contact-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.delivery-flow {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.flow-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-royal));
  color: #fff;
}

.flow-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.flow-item p {
  margin: 0;
}

.card-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.card-badge-row span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.92rem;
}

.info-section,
.contact-section {
  padding: 36px 0 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(111, 211, 255, 0.24), rgba(33, 70, 255, 0.2));
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-radius: 34px;
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 22px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 211, 255, 0.35);
}

.contact-item strong {
  font-size: 1.08rem;
}

.contact-item.static {
  cursor: default;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 30px 4px 8px;
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-card,
  .feature-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 16px;
  }

  .topbar,
  .footer {
    border-radius: 28px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar,
  .nav-links,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    line-height: 1.02;
  }

  .app-card,
  .feature-card,
  .contact-card {
    padding: 22px;
  }

  .contact-item strong {
    font-size: 1rem;
  }
}
