  :root {
    --sky-deep: #1FA8D3;
    --sky-main: #4DCDEE;
    --sky-bright: #6FDAF2;
    --sky-light: #A6E7F6;
    --sky-pale: #E8F8FD;
    --cloud: #FFFFFF;
    --gold: #FFD233;
    --white: #FFFFFF;
    --off-white: #F4FBFE;
    --text-dark: #0F2536;
    --text-muted: #5A7384;
    --tag-green: #C9DD2A;
    --tag-red: #F25C5C;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: linear-gradient(180deg, #DFF3FB 0%, var(--off-white) 60%, var(--off-white) 100%);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
  }

  .bg-wrapper {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  }
  .bg-blob-1 {
    position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(77,205,238,0.22) 0%, transparent 70%);
    border-radius: 50%; animation: drift1 25s ease-in-out infinite;
  }
  .bg-blob-2 {
    position: absolute; bottom: -25%; left: -15%; width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(111,218,242,0.20) 0%, transparent 70%);
    border-radius: 50%; animation: drift2 30s ease-in-out infinite;
  }
  @keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-4%,6%)} }
  @keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(5%,-5%)} }

  /* Soft floating clouds */
  .cloud {
    position: absolute;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    filter: blur(1px);
  }
  .cloud::before, .cloud::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
  }
  .cloud-1 {
    top: 12%; left: 6%; width: 140px; height: 40px;
    animation: float1 18s ease-in-out infinite;
  }
  .cloud-1::before { width: 70px; height: 70px; top: -30px; left: 18px; }
  .cloud-1::after  { width: 50px; height: 50px; top: -20px; right: 18px; }
  .cloud-2 {
    top: 38%; right: 4%; width: 110px; height: 32px;
    animation: float2 22s ease-in-out infinite;
  }
  .cloud-2::before { width: 56px; height: 56px; top: -24px; left: 14px; }
  .cloud-2::after  { width: 40px; height: 40px; top: -16px; right: 12px; }
  .cloud-3 {
    bottom: 14%; left: 12%; width: 100px; height: 28px;
    animation: float1 26s ease-in-out infinite;
  }
  .cloud-3::before { width: 50px; height: 50px; top: -22px; left: 12px; }
  .cloud-3::after  { width: 36px; height: 36px; top: -14px; right: 10px; }
  .cloud-4 {
    top: 60%; left: 45%; width: 130px; height: 36px;
    animation: float2 30s ease-in-out infinite;
  }
  .cloud-4::before { width: 64px; height: 64px; top: -28px; left: 16px; }
  .cloud-4::after  { width: 46px; height: 46px; top: -18px; right: 14px; }
  .cloud-5 {
    top: 24%; left: 55%; width: 90px; height: 26px;
    animation: float1 32s ease-in-out infinite;
  }
  .cloud-5::before { width: 46px; height: 46px; top: -20px; left: 10px; }
  .cloud-5::after  { width: 32px; height: 32px; top: -12px; right: 8px; }
  @keyframes float1 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(20px)} }
  @keyframes float2 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-20px)} }

  .page { position: relative; z-index: 1; overflow-x: hidden; }
  .hero {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 100vh; padding: 48px 24px 64px; gap: 48px;
    width: 100%; max-width: 1140px; margin: 0 auto;
  }

  .content { text-align: center; max-width: 520px; animation: fadeUp .8s ease-out both; }
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

  .app-icon {
    width: 88px; height: 88px; border-radius: 22px; overflow: hidden;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(31,168,211,.30), 0 2px 8px rgba(0,0,0,.08);
    transition: transform .3s ease;
  }
  .app-icon:hover { transform: scale(1.05) rotate(-2deg); }
  .app-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .app-name {
    font-size: .95rem; font-weight: 700; color: var(--sky-deep);
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px;
  }
  h1 {
    font-size: 2.2rem; font-weight: 800; color: var(--text-dark);
    line-height: 1.15; margin-bottom: 16px; letter-spacing: -.025em;
  }
  .slogan {
    font-size: 1.05rem; color: var(--text-muted); line-height: 1.65;
    margin-bottom: 14px; font-weight: 400;
  }

  .rating {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
    padding: 8px 16px; background: white; border-radius: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
  }
  .stars { display: flex; gap: 2px; }
  .star { color: var(--gold); font-size: 16px; line-height: 1; }
  .rating-text { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
  .rating-text strong { color: var(--text-dark); font-weight: 700; }

  .badge-link { display: inline-block; transition: transform .25s ease; }
  .badge-link:hover { transform: scale(1.06); }
  .badge-link img { height: 54px; width: auto; }

  .carousel-section { width: 100%; max-width: min(320px, 82vw); animation: fadeUp .8s ease-out .25s both; margin: 0 auto; }
  .carousel-container { position: relative; width: 100%; overflow: visible; }

  /* iPhone-style frame for bare iOS screenshots (1125x2436 / 9:19.5 aspect).
     The screenshots already include the iOS status bar + dynamic island,
     so we don't add a pseudo-notch here — only the bezel + shadow. */
  .phone-shell {
    position: relative; width: 100%; aspect-ratio: 9/19.5; background: #111;
    border-radius: 42px; padding: 8px;
    box-shadow: 0 50px 100px rgba(31,168,211,.22), 0 20px 40px rgba(0,0,0,.10),
      inset 0 0 0 1.5px rgba(255,255,255,.1);
  }
  .phone-inner {
    width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
    position: relative; background: transparent;
  }

  .swipe-track {
    display: flex; width: 100%; height: 100%;
    transition: transform .4s cubic-bezier(.25,.1,.25,1);
    cursor: grab; user-select: none; -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
  }
  .swipe-track:active { cursor: grabbing; }
  .swipe-slide {
    min-width: 100%; height: 100%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 0;
  }
  .swipe-slide img {
    width: 100%; height: 100%; object-fit: cover; object-position: center center;
    display: block; pointer-events: none; -webkit-user-drag: none;
  }

  .phone-shell::after {
    content:''; position: absolute; top: 15%; left: -10%; right: -10%; bottom: 5%;
    background: radial-gradient(ellipse, rgba(77,205,238,.18) 0%, transparent 70%);
    z-index: -1; filter: blur(30px);
  }

  .carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
  .dot {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(77,205,238,.25);
    border: none; padding: 0; cursor: pointer; transition: all .3s ease;
  }
  .dot.active { background: var(--sky-deep); width: 24px; border-radius: 4px; }

  .carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%; border: none; background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,.12); cursor: pointer; display: none;
    align-items: center; justify-content: center; z-index: 20;
    transition: transform .2s ease, box-shadow .2s ease;
    color: var(--text-dark); font-size: 16px; line-height: 1;
  }
  .carousel-nav:hover { transform: translateY(-50%) scale(1.1); box-shadow: 0 4px 16px rgba(0,0,0,.16); }
  .carousel-nav.prev { left: -18px; }
  .carousel-nav.next { right: -18px; }

  /* ---- Features ---- */
  .features {
    position: relative; z-index: 1;
    max-width: 1080px; margin: 0 auto;
    padding: 24px 24px 56px;
  }
  .features h2 {
    font-size: 1.6rem; font-weight: 800; color: var(--text-dark);
    text-align: center; margin-bottom: 32px; letter-spacing: -.02em;
  }
  .feature-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .feature-card {
    background: white; border-radius: 18px; padding: 24px;
    box-shadow: 0 4px 18px rgba(31,168,211,.06);
    border: 1px solid rgba(77,205,238,.12);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(31,168,211,.14);
  }
  .feature-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--sky-pale); color: var(--sky-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
  }
  .feature-card h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--text-dark);
    margin-bottom: 6px;
  }
  .feature-card p {
    font-size: .92rem; color: var(--text-muted); line-height: 1.55;
  }

  /* ---- FAQ ---- */
  .faq {
    position: relative; z-index: 1; max-width: 720px; margin: 0 auto;
    padding: 24px 24px 56px;
  }
  .faq h2 {
    font-size: 1.5rem; font-weight: 800; color: var(--text-dark);
    text-align: center; margin-bottom: 24px; letter-spacing: -.02em;
  }
  .faq details {
    background: white; border-radius: 14px; padding: 16px 20px; margin-bottom: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04); border: 1px solid rgba(77,205,238,.12);
    transition: box-shadow .2s ease;
  }
  .faq details[open] { box-shadow: 0 6px 20px rgba(31,168,211,.10); }
  .faq summary {
    cursor: pointer; font-weight: 600; color: var(--text-dark); font-size: .98rem;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: '+'; color: var(--sky-deep); font-size: 1.4rem; font-weight: 400;
    transition: transform .2s ease;
  }
  .faq details[open] summary::after { transform: rotate(45deg); }
  .faq p {
    margin-top: 12px; color: var(--text-muted); font-size: .92rem; line-height: 1.6;
  }

  .footer {
    position: relative; z-index: 1; text-align: center;
    padding: 32px 24px 40px; color: var(--text-muted); font-size: .78rem; line-height: 1.7;
  }
  .footer a { color: var(--sky-deep); text-decoration: none; font-weight: 500; }
  .footer a:hover { text-decoration: underline; }
  .footer-links { margin-bottom: 8px; }
  .footer-links a { margin: 0 8px; }
  .footer-sep { color: rgba(90,115,132,.3); }

  @media (min-width:768px) {
    .hero { flex-direction: row; gap: 72px; padding: 80px 48px; }
    .content { text-align: left; max-width: 420px; flex-shrink: 0; }
    .app-icon { margin: 0 0 24px; }
    .rating { margin-left: 0; }
    h1 { font-size: 2.6rem; }
    .carousel-section { max-width: min(360px, 36vw); }
  }
  @media (max-width:1023px) {
    .carousel-section { max-width: min(360px, 80vw); }
    .carousel-container { overflow: hidden; }
    .phone-shell {
      aspect-ratio: auto;
      background: transparent;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      overflow: visible;
    }
    .phone-shell::after { display: none; }
    .phone-inner {
      border-radius: 0;
      overflow: visible;
      background: transparent;
    }
    .swipe-track {
      height: auto;
      gap: 14px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      cursor: auto;
    }
    .swipe-track::-webkit-scrollbar { display: none; }
    .swipe-track { scrollbar-width: none; }
    .swipe-slide {
      min-width: 100%;
      height: auto;
      flex: 0 0 100%;
      scroll-snap-align: center;
    }
    .swipe-slide img {
      height: auto;
      border-radius: 28px;
      box-shadow: 0 24px 50px rgba(31,168,211,.16), 0 10px 24px rgba(0,0,0,.08);
      background: white;
    }
    .carousel-nav { display: none; }
  }
  @media (max-width:767px) {
    .hero { padding: 32px 20px 48px; gap: 32px; }
    h1 { font-size: 1.8rem; }
    .slogan { font-size: .95rem; }
    .features h2 { font-size: 1.4rem; }
  }
  @media (min-width:768px) and (max-width:1023px) {
    .carousel-section { max-width: min(380px, 40vw); }
  }
  @media (max-width:390px) {
    .carousel-section { max-width: min(300px, 84vw); }
    h1 { font-size: 1.6rem; }
  }
  @media (min-width:1024px) {
    .hero { gap: 100px; }
    h1 { font-size: 3rem; }
    .carousel-section { max-width: 300px; }
    .carousel-nav { display: flex; }
  }
