:root {
  --orange: #F97316;
  --orange-dk: #EA6D0A;
  --orange-lt: #FFF0E6;
  --blue: #2B7EC1;
  --blue-dk: #1E6BAA;
  --blue-lt: #E8F3FB;
  --cream: #FAF2E8;
  --cream-2: #F5E8D8;
  --ink: #1A1A24;
  --ink-2: #3D3D4A;
  --sub: #6B6F7A;
  --muted: #9CA3AF;
  --card: #FFFFFF;
  --border: #EADBC8;
  --shadow: 0 10px 40px rgba(46, 38, 30, 0.10);
  --shadow-sm: 0 4px 16px rgba(46, 38, 30, 0.08);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Nunito', -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 242, 232, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(234, 219, 200, 0.6);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain
}

.brand-name {
  letter-spacing: -0.3px
}

.brand-name .sg-blue {
  color: var(--blue)
}

.brand-name .sg-orange {
  color: var(--orange)
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  transition: color .15s
}

.nav-links a:hover {
  color: var(--orange)
}

.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .15s, background .15s;
}

.nav-cta:hover {
  background: var(--orange);
  transform: translateY(-1px)
}

/* ── HERO ── */
.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 65%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(43, 126, 193, 0.15), transparent 65%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--ink-2);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18)
}

h1.hero-title {
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

h1.hero-title .accent {
  color: var(--orange)
}

h1.hero-title .blue {
  color: var(--blue)
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Store badges */
.stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  transition: transform .15s, box-shadow .15s, background .15s;
  box-shadow: var(--shadow-sm);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: #000
}

.store-btn svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0
}

.store-btn .lbl {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15
}

.store-btn .lbl .small {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.5px;
  text-transform: uppercase
}

.store-btn .lbl .big {
  font-size: 17px;
  font-weight: 800
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.meta-item .num {
  font-size: 24px;
  font-weight: 900;
  color: var(--orange)
}

.meta-item .lbl {
  font-size: 12px;
  color: var(--sub);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase
}

/* Phone mockup */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}

.phone {
  position: relative;
  width: 300px;
  height: 610px;
  background: #0d0d12;
  border-radius: 46px;
  padding: 8px;
  box-shadow:
    0 30px 80px rgba(40, 28, 12, 0.3),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  transform: rotate(-3deg);
  transition: transform .4s ease;
}

.phone:hover {
  transform: rotate(-1deg) translateY(-6px)
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #0d0d12;
  border-radius: 14px;
  z-index: 5;
}

.mock-status {
  padding: 14px 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink)
}

.mock-status .right {
  display: flex;
  gap: 4px
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 14px;
  gap: 8px
}

.mock-header img {
  width: 26px;
  height: 26px;
  object-fit: contain
}

.mock-header .name {
  font-size: 18px;
  font-weight: 900
}

.mock-header .name .b {
  color: var(--blue)
}

.mock-header .name .o {
  color: var(--orange)
}

.mock-chips {
  display: flex;
  gap: 6px;
  padding: 0 14px 12px;
  overflow: hidden
}

.mock-chip {
  padding: 5px 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #EADBC8;
  font-size: 10px;
  font-weight: 700;
  color: var(--sub);
  white-space: nowrap;
  flex-shrink: 0
}

.mock-chip.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange)
}

.mock-card {
  margin: 8px 14px 12px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06)
}

.mock-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative
}

.mock-img.kite {
  background: linear-gradient(135deg, #5fb8d6 0%, #3b8ec0 60%, #2c6e9c 100%)
}

.mock-img.giro {
  background: linear-gradient(135deg, #c85a3a 0%, #a04a30 100%)
}

.mock-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.15), transparent 50%)
}

.mock-bookmark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1
}

.mock-body {
  padding: 10px 12px 12px
}

.mock-cat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.6px;
  margin-bottom: 4px
}

.mock-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3
}

.mock-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--sub);
  margin-bottom: 2px
}

.mock-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: #fff;
  border-top: 1px solid #EADBC8;
  padding: 8px 0 14px
}

.mock-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted)
}

.mock-nav-item.active {
  color: var(--orange)
}

.mock-nav-item.active .pill-bg {
  background: #FFE5D2
}

.pill-bg {
  padding: 4px 14px;
  border-radius: 14px
}

/* Floating tags around phone */
.float-tag {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  animation: float 6s ease-in-out infinite;
}

.float-tag .ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.float-1 {
  top: 60px;
  left: -30px;
  animation-delay: 0s
}

.float-2 {
  top: 230px;
  right: -20px;
  animation-delay: 1.2s
}

.float-3 {
  bottom: 120px;
  left: -40px;
  animation-delay: 2.4s
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* ── SECTIONS ── */
section.block {
  padding: 90px 24px;
  position: relative
}

.container {
  max-width: 1160px;
  margin: 0 auto
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h2.section-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 680px;
}

h2.section-title .blue {
  color: var(--blue)
}

h2.section-title .orange {
  color: var(--orange)
}

.section-lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 640px;
  margin-bottom: 48px
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.feat {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.3px
}

.feat p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.65
}

/* Why list */
.why {
  background: linear-gradient(180deg, var(--cream-2), var(--cream))
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px
}

.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform .15s;
}

.check-item:hover {
  transform: translateX(4px)
}

.check-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
}

.check-item h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 3px
}

.check-item p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.5
}

/* Right side scenes */
.scene-stack {
  position: relative;
  height: 520px
}

.scene-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.scene-1 {
  top: 0;
  left: 0;
  width: 280px;
  height: 200px;
  transform: rotate(-4deg)
}

.scene-2 {
  top: 80px;
  right: 0;
  width: 240px;
  height: 280px;
  transform: rotate(3deg);
  z-index: 2
}

.scene-3 {
  bottom: 0;
  left: 60px;
  width: 300px;
  height: 180px;
  transform: rotate(-2deg);
  z-index: 1
}

.scene-bg {
  width: 100%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.scene-info {
  padding: 14px 16px
}

.scene-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px
}

.scene-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3
}

.scene-meta {
  font-size: 11px;
  color: var(--sub)
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #FB923C 50%, var(--blue) 130%);
  border-radius: 32px;
  padding: 64px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1
}

.cta-banner p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 480px;
  position: relative;
  z-index: 1
}

.cta-banner .stores {
  position: relative;
  z-index: 1;
  margin-bottom: 0
}

.cta-banner .store-btn {
  background: #fff;
  color: var(--ink)
}

.cta-banner .store-btn:hover {
  background: #fff;
  color: #000
}

.cta-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center
}

.cta-logo {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: rotate(6deg);
}

.cta-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain
}

/* Footer */
footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 24px 30px;
}

.foot-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.foot-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain
}

.foot-brand .name {
  font-weight: 900;
  font-size: 20px
}

.foot-brand .name .b {
  color: #60A5FA
}

.foot-brand .name .o {
  color: #FB923C
}

footer p.tag {
  color: #9CA3AF;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px
}

.foot-col h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #FB923C
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: #D1D5DB;
  margin-bottom: 10px;
  transition: color .15s
}

.foot-col a:hover {
  color: #fff
}

.foot-bottom {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid #2A2A38;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #9CA3AF;
}

.bg-orange-lt {
  background: var(--orange-lt)
}

.bg-blue-lt {
  background: var(--blue-lt)
}

.bg-green-lt {
  background: #E8F8F0
}

.bg-yellow-lt {
  background: #FEF3C7
}

.bg-purple-lt {
  background: #F3E8FF
}

.bg-red-lt {
  background: #FEE2E2
}

.mock-img-sm {
  height: 90px
}

.scene-bg-sea {
  background: linear-gradient(135deg, #5fb8d6, #2c6e9c);
  height: 60%
}

.scene-bg-orange {
  background: linear-gradient(135deg, #F97316, #EA580C);
  height: 55%
}

.scene-bg-purple {
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
  height: 55%
}

.scene-rating {
  margin-top: 6px;
  color: #F59E0B;
  font-weight: 800
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    gap: 40px
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .hero-meta {
    justify-content: center
  }

  .stores {
    justify-content: center
  }

  .hero::before,
  .hero::after {
    display: none
  }

  .features {
    grid-template-columns: 1fr 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .scene-stack {
    height: auto;
    min-height: 400px;
    margin: 0 auto
  }

  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 32px
  }

  .cta-banner .stores {
    justify-content: center
  }

  .cta-visual {
    order: -1
  }

  .foot-inner {
    grid-template-columns: 1fr 1fr
  }

  .nav-links {
    display: none
  }
}

@media (max-width: 560px) {
  section.block {
    padding: 64px 20px
  }

  .features {
    grid-template-columns: 1fr
  }

  .foot-inner {
    grid-template-columns: 1fr
  }

  .cta-banner {
    padding: 40px 24px;
    border-radius: 24px
  }

  .float-1,
  .float-2,
  .float-3 {
    display: none
  }

  .phone {
    transform: rotate(0)
  }
}