:root {
      --primary: #4A90E2;
      --primary-soft: #6BB7F2;
      --primary-dark: #2F6FCF;
      --aqua: #41D4FF;
      --mint: #41D4A8;
      --sun: #FFD166;
      --coral: #FF7A85;
      --bg: #F5FAFF;
      --bg-soft: #EAF6FF;
      --white: #FFFFFF;
      --text: #102033;
      --muted: #5D728A;
      --border: #D7E8F6;
      --shadow: 0 18px 45px rgba(47, 111, 207, 0.12);
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Nunito", sans-serif;
    }

    *::before,
    *::after,
    button,
    input,
    textarea,
    select,
    a,
    span,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Nunito", sans-serif;
    }

    body {
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 999px;
      filter: blur(10px);
      opacity: 0.18;
      z-index: 0;
    }

    .blob.blue {
      width: 460px;
      height: 460px;
      background: var(--primary-soft);
      top: -200px;
      left: -160px;
    }

    .blob.mint {
      width: 540px;
      height: 540px;
      background: var(--mint);
      right: -240px;
      bottom: -200px;
    }

    .blob.coral {
      width: 240px;
      height: 240px;
      background: var(--coral);
      top: 45%;
      left: 4%;
      opacity: 0.09;
    }

    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    header {
      padding: 26px 0;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 25px;
      letter-spacing: -0.04em;
    }

    .brand-icon img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 10px;
      display: block;
    }

    .brand .drop { color: var(--primary-dark); }
    .brand .i { color: var(--mint); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 15px;
      font-weight: 800;
      color: var(--muted);
    }

    .nav-links a:hover {
      color: var(--primary-dark);
    }

    .hero {
      padding: 72px 0 88px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border: 1px solid rgba(74, 144, 226, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--primary-dark);
      font-weight: 900;
      font-size: 14px;
      box-shadow: 0 10px 30px rgba(47, 111, 207, 0.06);
    }

    h1 {
      margin-top: 24px;
      font-size: clamp(48px, 7vw, 82px);
      line-height: 0.95;
      letter-spacing: -0.08em;
      font-weight: 900;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-soft) 45%, var(--mint) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      margin-top: 24px;
      max-width: 570px;
      font-size: 20px;
      line-height: 1.7;
      color: var(--muted);
      font-weight: 600;
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 22px;
      border-radius: 18px;
      font-weight: 900;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-soft) 52%, var(--mint) 100%);
      box-shadow: 0 18px 34px rgba(74, 144, 226, 0.26);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--text);
      border: 1px solid var(--border);
      box-shadow: 0 14px 30px rgba(47, 111, 207, 0.07);
    }

    .store-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 44px;
      padding: 0 15px;
      border-radius: 14px;
      background: #102033;
      color: white;
      font-size: 14px;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(16, 32, 51, 0.14);
    }

    .store-btn.light {
      background: white;
      color: var(--text);
      border: 1px solid var(--border);
    }

    .store-btn.disabled {
      opacity: 0.55;
      pointer-events: none;
    }

    .store-icon {
      font-size: 17px;
      line-height: 1;
    }

    .hero-card {
      min-height: 540px;
      border-radius: 42px;
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow);
      position: relative;
      padding: 34px;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 24% 18%, rgba(65, 212, 255, 0.22), transparent 30%),
        radial-gradient(circle at 82% 82%, rgba(65, 212, 168, 0.20), transparent 32%);
      z-index: 0;
    }

    .phone-showcase {
      position: relative;
      z-index: 1;
      height: 100%;
      min-height: 470px;
      display: grid;
      place-items: center;
      text-align: center;
    }

    .phone {
      width: min(285px, 78%);
      min-height: 500px;
      border-radius: 42px;
      background: linear-gradient(180deg, #FFFFFF 0%, #EFF9FF 100%);
      border: 10px solid #102033;
      box-shadow: 0 30px 40px rgba(16, 32, 51, 0.18);
      padding: 24px 18px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .phone::before {
      content: "";
      width: 72px;
      height: 6px;
      border-radius: 999px;
      background: #24364A;
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
    }

    .phone-title {
      margin-top: 18px;
      font-size: 15px;
      font-weight: 900;
      color: var(--primary-dark);
    }

    .mascot {
      width: 126px;
      height: 126px;
      margin-top: 26px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary-soft), var(--primary-dark));
      position: relative;
      box-shadow: 0 18px 28px rgba(74, 144, 226, 0.22);
    }

    .mascot::before,
    .mascot::after {
      content: "";
      position: absolute;
      top: 42px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: #102033;
    }

    .mascot::before { left: 37px; }
    .mascot::after { right: 37px; }

    .smile {
      position: absolute;
      left: 50%;
      bottom: 34px;
      width: 38px;
      height: 20px;
      border-bottom: 5px solid white;
      border-radius: 0 0 999px 999px;
      transform: translateX(-50%);
    }

    .drop-highlight {
      position: absolute;
      top: 18px;
      left: 28px;
      width: 24px;
      height: 38px;
      border-radius: 50% 50% 50% 50%;
      background: rgba(255,255,255,0.5);
      transform: rotate(18deg);
    }

    .progress-ring {
      width: 190px;
      height: 96px;
      margin-top: 26px;
      border-radius: 190px 190px 0 0;
      background: conic-gradient(from 270deg, var(--mint) 0deg 128deg, #D9ECFA 128deg 180deg, transparent 180deg 360deg);
      position: relative;
      overflow: hidden;
    }

    .progress-ring::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 0;
      height: 78px;
      border-radius: 160px 160px 0 0;
      background: #F8FCFF;
    }

    .phone-stat {
      margin-top: -28px;
      position: relative;
      z-index: 2;
      font-size: 34px;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .phone-caption {
      margin-top: 4px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .mini-card {
      width: 100%;
      margin-top: 22px;
      padding: 14px;
      border-radius: 20px;
      background: white;
      border: 1px solid var(--border);
      text-align: left;
      box-shadow: 0 12px 24px rgba(47, 111, 207, 0.08);
    }

    .mini-card strong {
      display: block;
      font-size: 14px;
      color: var(--text);
      margin-bottom: 4px;
    }

    .mini-card span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .floating-pill {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 15px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(215, 232, 246, 0.95);
      box-shadow: 0 12px 30px rgba(47, 111, 207, 0.10);
      color: var(--muted);
      font-weight: 900;
      font-size: 14px;
    }

    .floating-pill span {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: var(--primary-dark);
      background: rgba(74, 144, 226, 0.1);
    }

    .pill-1 { top: 46px; right: 34px; }
    .pill-2 { bottom: 66px; left: 30px; }
    .pill-3 { bottom: 42px; right: 40px; }

    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 38px;
    }

    .section-title h2 {
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 900;
    }

    .section-title p {
      margin-top: 16px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
      font-weight: 600;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .card {
      padding: 28px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 14px 35px rgba(47, 111, 207, 0.07);
    }

    .card-icon {
      width: 56px;
      height: 56px;
      border-radius: 19px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      background: linear-gradient(135deg, rgba(74, 144, 226, 0.12), rgba(65, 212, 168, 0.15));
      color: var(--primary-dark);
      font-size: 25px;
    }

    .card h3 {
      font-size: 22px;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .card p {
      color: var(--muted);
      line-height: 1.65;
      font-weight: 600;
    }

    .feature-band {
      margin-top: 36px;
      padding: 34px;
      border-radius: 36px;
      background: linear-gradient(135deg, #FFFFFF 0%, #EAF7FF 100%);
      border: 1px solid rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .feature-band h3 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 900;
    }

    .feature-band p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
      font-weight: 600;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .stat {
      padding: 20px;
      border-radius: 24px;
      background: white;
      border: 1px solid var(--border);
    }

    .stat strong {
      display: block;
      font-size: 27px;
      letter-spacing: -0.05em;
      color: var(--primary-dark);
    }

    .stat span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-weight: 800;
    }

    .cta {
      margin: 60px 0 90px;
      padding: 54px;
      border-radius: 42px;
      text-align: center;
      color: white;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-soft) 52%, var(--mint) 100%);
      box-shadow: 0 28px 60px rgba(74, 144, 226, 0.26);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      width: 380px;
      height: 380px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      top: -180px;
      left: -120px;
    }

    .cta h2 {
      position: relative;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1;
      letter-spacing: -0.07em;
      font-weight: 900;
    }

    .cta p {
      position: relative;
      max-width: 640px;
      margin: 18px auto 28px;
      font-size: 19px;
      line-height: 1.6;
      opacity: 0.94;
      font-weight: 700;
    }

    .cta .store-actions {
      position: relative;
      justify-content: center;
      margin-top: 0;
    }

    .cta .store-btn {
      background: white;
      color: var(--text);
    }

    footer {
      padding: 32px 0 44px;
      color: var(--muted);
      font-weight: 800;
      text-align: center;
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
        padding-top: 36px;
      }

      .hero-card {
        display: none;
      }

      .cards,
      .feature-band {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 28px, 1120px);
      }

      h1 {
        font-size: clamp(44px, 14vw, 64px);
      }

      .hero p {
        font-size: 18px;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .cta {
        padding: 36px 22px;
      }
    }
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--primary-dark);
}