:root {
      --watermelon: #FF4D6D;
      --watermelon-soft: #FF7A85;
      --green: #22C55E;
      --green-dark: #166534;
      --bg: #F8FAFC;
      --white: #FFFFFF;
      --text: #0F172A;
      --muted: #475569;
      --border: #E5E7EB;
      --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      --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 {
      font-family: "Nunito", sans-serif;
      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(8px);
      opacity: 0.16;
      z-index: 0;
    }

    .blob.red {
      width: 420px;
      height: 420px;
      background: var(--watermelon);
      top: -180px;
      left: -140px;
    }

    .blob.green {
      width: 520px;
      height: 520px;
      background: var(--green);
      right: -220px;
      bottom: -180px;
    }

    .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: 24px;
      letter-spacing: -0.04em;
    }

    .brand-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: linear-gradient(135deg, #fff 0%, #ffe9ed 100%);
      display: grid;
      place-items: center;
      box-shadow: 0 10px 24px rgba(255, 77, 109, 0.16);
    }

    .brand-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      display: block;
    }

    .brand .sandi { color: var(--watermelon); }
    .brand .apps { color: var(--green-dark); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 15px;
      font-weight: 700;
      color: var(--muted);
    }

    .nav-links a:hover {
      color: var(--green-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(34, 197, 94, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.76);
      color: var(--green-dark);
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    }

    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(--watermelon) 0%, var(--watermelon-soft) 45%, var(--green) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      margin-top: 24px;
      max-width: 560px;
      font-size: 20px;
      line-height: 1.7;
      color: var(--muted);
      font-weight: 500;
    }

    .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: 800;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--watermelon) 0%, var(--watermelon-soft) 45%, var(--green) 100%);
      box-shadow: 0 18px 32px rgba(255, 77, 109, 0.24);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--text);
      border: 1px solid var(--border);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    }

    .hero-card {
      min-height: 520px;
      border-radius: 42px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow);
      position: relative;
      padding: 34px;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 22% 18%, rgba(255, 77, 109, 0.18), transparent 30%),
        radial-gradient(circle at 82% 82%, rgba(34, 197, 94, 0.18), transparent 32%);
      z-index: 0;
    }

    .logo-showcase {
      position: relative;
      z-index: 1;
      height: 100%;
      min-height: 450px;
      display: grid;
      place-items: center;
      text-align: center;
    }

    .watermelon-mark {
      width: min(360px, 80%);
      filter: drop-shadow(0 30px 28px rgba(15, 23, 42, 0.16));
    }

    .floating-pill {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 15px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
      color: var(--muted);
      font-weight: 800;
      font-size: 14px;
    }

    .floating-pill span {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: var(--green-dark);
      background: rgba(34, 197, 94, 0.1);
    }

    .pill-1 { top: 44px; right: 34px; }
    .pill-2 { bottom: 58px; left: 34px; }
    .pill-3 { bottom: 40px; right: 40px; }

    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      max-width: 720px;
      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: 500;
    }

    .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(15, 23, 42, 0.05);
    }

    .card-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      background: linear-gradient(135deg, rgba(255, 77, 109, 0.12), rgba(34, 197, 94, 0.14));
      color: var(--green-dark);
      font-size: 24px;
    }

    .card h3 {
      font-size: 22px;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .card p {
      color: var(--muted);
      line-height: 1.65;
      font-weight: 500;
    }

    .apps-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 36px;
    }

    .store-actions {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 14px;
      background: #0F172A;
      color: white;
      font-size: 14px;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    }

    .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;
    }

    .app-card {
      min-height: 260px;
      padding: 30px;
      border-radius: 34px;
      background: linear-gradient(145deg, #ffffff 0%, #fdf2f4 100%);
      border: 1px solid rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
    }

    .app-card.greenish {
      background: linear-gradient(145deg, #ffffff 0%, #ecfdf3 100%);
    }

    .app-card::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      right: -60px;
      bottom: -70px;
      background: rgba(255, 77, 109, 0.12);
    }

    .app-card.greenish::after {
      background: rgba(34, 197, 94, 0.13);
    }

    .app-top {
      display: flex;
      align-items: center;
      gap: 14px;
      position: relative;
      z-index: 1;
    }

    .app-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: white;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
      font-size: 28px;
    }

    .app-top h3 {
      font-size: 24px;
      letter-spacing: -0.05em;
    }

    .app-card p {
      position: relative;
      z-index: 1;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.6;
      font-weight: 600;
      max-width: 420px;
    }

    .cta {
      margin: 60px 0 90px;
      padding: 54px;
      border-radius: 42px;
      text-align: center;
      color: white;
      background: linear-gradient(135deg, var(--watermelon) 0%, var(--watermelon-soft) 42%, var(--green) 100%);
      box-shadow: 0 28px 60px rgba(255, 77, 109, 0.22);
      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;
    }

    .cta p {
      position: relative;
      max-width: 640px;
      margin: 18px auto 28px;
      font-size: 19px;
      line-height: 1.6;
      opacity: 0.92;
      font-weight: 600;
    }

    .cta .btn {
      position: relative;
      background: white;
      color: var(--text);
      display: inline-flex;
    }

    footer {
      padding: 32px 0 44px;
      color: var(--muted);
      font-weight: 700;
      text-align: center;
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
        padding-top: 36px;
      }

      .hero-card {
        display: none;
      }

      .cards,
      .apps-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 28px, 1120px);
      }

      .hero p {
        font-size: 18px;
      }

      .floating-pill {
        display: none;
      }

      .cta {
        padding: 36px 22px;
      }
    }
.hero-logo-image {
  width: min(360px, 88%);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 34px rgba(255, 77, 109, 0.18));
}

.app-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  background: #fff;
}