:root {
  --navy: #0B1B45;
  --ink: #152447;
  --muted: #5B6B8C;
  --blue: #008FF5;
  --blue-deep: #0755D9;
  --sky: #E8F4FF;
  --white: #FFFFFF;
  --line: rgba(11, 27, 69, 0.08);
  --shadow: 0 24px 60px rgba(7, 85, 217, 0.18);
  --radius: 22px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", "Outfit", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #d8ecff 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 20%, #cfe4ff 0%, transparent 50%),
    linear-gradient(180deg, #f3f8ff 0%, #ffffff 40%, #f7fbff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

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

.glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.glow-a { top: -120px; left: -80px; background: #7ec4ff; }
.glow-b { bottom: 10%; right: -120px; background: #9ad0ff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}
.brand img { width: 36px; height: 36px; object-fit: contain; }

.nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
}
.nav a {
  color: var(--muted);
  font-weight: 560;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--blue-deep); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 16px; font-size: 0.88rem; }
.btn-lg { padding: 15px 24px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(7, 85, 217, 0.28);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(7, 85, 217, 0.38); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  border: 1px solid rgba(11, 27, 69, 0.12);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 5vw, 64px) clamp(18px, 4vw, 48px) 40px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 72%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.05) brightness(0.92);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 28, 72, 0.35) 0%, rgba(243, 248, 255, 0.55) 48%, #f3f8ff 78%),
    linear-gradient(90deg, rgba(243, 248, 255, 0.85) 0%, rgba(243, 248, 255, 0.2) 55%, transparent 100%);
}

.hero-copy {
  position: relative;
  max-width: 560px;
  animation: rise 0.9s ease both;
}
.hero-logo {
  width: min(280px, 70vw);
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}
.hero-tag {
  margin: 0 0 12px;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-deep);
}
.hero h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.hero-lead {
  margin: 0 0 24px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: rise 1.05s 0.12s ease both;
}
.phone-orbit {
  position: absolute;
  width: min(460px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 143, 245, 0.28), transparent 68%);
  filter: blur(10px);
  animation: pulse 5s ease-in-out infinite;
}
.phone-img {
  width: min(380px, 78vw);
  height: auto;
  filter: drop-shadow(var(--shadow));
  animation: float 5.5s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 48px);
}
.section-head {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.section-head h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
.feature {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 27, 69, 0.08);
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue-deep);
  background: linear-gradient(160deg, #e8f4ff, #d4e9ff);
  margin-bottom: 14px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--navy);
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Places */
.places { padding-top: 20px; }
.place-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.place {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}
.place img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.5s ease;
}
.place:hover img { transform: scale(1.06); }
.place figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 18px 18px;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  background: linear-gradient(transparent, rgba(8, 20, 50, 0.78));
}

/* Download */
.download-panel {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(0, 143, 245, 0.12), rgba(7, 85, 217, 0.08)),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 143, 245, 0.18);
  box-shadow: 0 20px 50px rgba(7, 85, 217, 0.1);
  overflow: hidden;
}
.download-wordmark {
  width: min(220px, 60vw);
  margin-bottom: 12px;
}
.download-copy h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
}
.download-copy > p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 46ch;
}
.steps {
  margin: 0 0 22px;
  padding-left: 1.15rem;
  color: var(--ink);
}
.steps li { margin-bottom: 6px; }
.download-visual {
  display: flex;
  justify-content: center;
}
.download-visual img {
  width: min(280px, 70%);
  filter: drop-shadow(0 20px 40px rgba(7, 85, 217, 0.25));
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 36px 20px 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.footer-note { font-size: 0.85rem; opacity: 0.8; }

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

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-logo { margin-left: auto; margin-right: auto; }
  .hero-bg img { height: 55%; }
  .download-panel { grid-template-columns: 1fr; text-align: center; }
  .download-wordmark { margin-left: auto; margin-right: auto; }
  .download-copy > p { margin-left: auto; margin-right: auto; }
  .steps { display: inline-block; text-align: left; }
  .download-visual { order: -1; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .site-header .btn-sm { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-header.nav-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 8px 18px 16px;
  }
  .site-header.nav-open .nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }
  .place-strip { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

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