:root {
  --bg: #F3F6FB;
  --surface: #FFFFFF;
  --text: #162033;
  --text-muted: #6F7D94;
  --primary: #047857;
  --primary-deep: #065F46;
  --primary-light: #10B981;
  --primary-muted: #D1FAE5;
  --primary-surface: #ECFDF5;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  zoom: 1.1;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--primary-surface), transparent 60%),
    radial-gradient(900px 500px at 100% 110%, #E6F7F0, transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Floating background icons */
.bg-icons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  color: var(--primary);
  opacity: 0.12;
  transform: translate(var(--px, 0), var(--py, 0));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  animation: drift linear infinite;
}

.float-icon svg {
  width: 100%;
  height: 100%;
  animation: bob ease-in-out infinite alternate;
}

@keyframes drift {
  0%   { rotate: 0deg; }
  100% { rotate: 360deg; }
}

@keyframes bob {
  from { translate: 0 -10px; }
  to   { translate: 0 10px; }
}

.i1  { top: 12%; left: 8%;  width: 56px; height: 56px; animation-duration: 26s; }
.i2  { top: 22%; left: 82%; width: 44px; height: 44px; animation-duration: 30s; }
.i3  { top: 70%; left: 14%; width: 64px; height: 64px; animation-duration: 34s; }
.i4  { top: 80%; left: 78%; width: 50px; height: 50px; animation-duration: 28s; }
.i5  { top: 40%; left: 4%;  width: 40px; height: 40px; animation-duration: 32s; }
.i6  { top: 8%;  left: 46%; width: 46px; height: 46px; animation-duration: 24s; }
.i7  { top: 58%; left: 90%; width: 54px; height: 54px; animation-duration: 36s; }
.i8  { top: 88%; left: 40%; width: 48px; height: 48px; animation-duration: 27s; }
.i9  { top: 30%; left: 64%; width: 42px; height: 42px; animation-duration: 31s; }
.i10 { top: 52%; left: 34%; width: 38px; height: 38px; animation-duration: 29s; }
.i11 { top: 16%; left: 26%; width: 50px; height: 50px; animation-duration: 33s; }
.i12 { top: 66%; left: 56%; width: 44px; height: 44px; animation-duration: 25s; }

.float-icon svg { animation-duration: 6s; }
.i2 svg, .i6 svg, .i10 svg { animation-duration: 8s; }
.i4 svg, .i8 svg, .i12 svg { animation-duration: 5s; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.hero-inner {
  width: min(100%, 1320px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
}

.brand img { width: clamp(140px, 28vw, 200px); height: auto; object-fit: contain; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--primary-muted);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(4, 120, 87, 0.08);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 18px;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--primary-deep), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 { text-align: left; }

.hero p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 36px;
}

/* Google Play button */
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px 14px 24px;
  border-radius: 16px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(11, 23, 38, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11, 23, 38, 0.28);
}

.play-btn svg { width: 30px; height: 30px; flex-shrink: 0; }

.play-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
}

.play-btn small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.note {
  margin: 20px 0 0 !important;
  font-size: 0.85rem !important;
  color: var(--text-muted);
}

/* Partner / compliance logos */
.partners {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.partners-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.partners img {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.partners img:hover { opacity: 1; }

.contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.contact a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.contact a:hover { text-decoration: underline; }

/* Screenshot slots */
.screenshots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.shot { flex: 0 1 320px; }

.shot .phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 2400;
  background: #1a1f36;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(11, 23, 38, 0.24);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.shot:first-child .phone-frame { transform: rotate(-4deg); }
.shot:last-child .phone-frame { transform: rotate(4deg); }
.shot .phone-frame:hover { transform: rotate(0deg) translateY(-6px); }

.shot .phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.shot-hint {
  display: none;
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  align-items: center;
  justify-content: center;
  background: var(--primary-surface);
  border: 2px dashed var(--primary-light);
  color: var(--primary-deep);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 16px;
}

.shot .phone-frame.empty .shot-hint { display: flex; }

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content { align-items: center; text-align: center; }
  .hero h1 { text-align: center; }
}

@media (max-width: 560px) {
  .screenshots { gap: 16px; }
  .shot { flex-basis: 175px; }
}

@media (prefers-reduced-motion: reduce) {
  .float-icon, .float-icon svg { animation: none; }
}
