:root {
      --navy: #071d3a;
      --navy-2: #0a2a52;
      --yellow: #ffb800;
      --yellow-2: #ffd15a;
      --white: #ffffff;
      --soft: #f6f8fb;
      --muted: #9aa7b7;
      --text: #102033;
      --shadow: 0 28px 80px rgba(7, 29, 58, 0.20);
      --radius: 28px;
    }

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

    body {
      margin: 0;
      font-family: 'Tajawal', sans-serif;
      color: var(--text);
      background: var(--soft);
      overflow-x: hidden;
    }

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

    .page {
      min-height: 100vh;
      background:
        radial-gradient(circle at 12% 15%, rgba(255, 184, 0, 0.18), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(255, 209, 90, 0.16), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #f5f8fc 100%);
    }

    .nav {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 10;
    }

    .brand img {
      height: 92px;
      max-width: 220px;
      object-fit: contain;
    }

    .nav-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(7, 29, 58, 0.06);
      border: 1px solid rgba(7, 29, 58, 0.08);
      padding: 11px 18px;
      border-radius: 999px;
      color: var(--navy);
      font-weight: 800;
      font-size: 14px;
    }

    .nav-pill span {
      width: 9px;
      height: 9px;
      background: var(--yellow);
      border-radius: 999px;
      box-shadow: 0 0 0 7px rgba(255, 184, 0, 0.14);
    }

    .hero {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      padding: 24px 0 80px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 48px;
      position: relative;
    }

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

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      background: rgba(255, 184, 0, 0.14);
      color: var(--navy);
      border: 1px solid rgba(255, 184, 0, 0.28);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 22px;
    }

    .bolt { color: var(--yellow); font-size: 20px; line-height: 1; }

    h1 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(42px, 6vw, 82px);
      line-height: 1.02;
      letter-spacing: -1.4px;
      font-weight: 900;
    }

    h1 .highlight {
      display: inline-block;
      color: var(--yellow);
      text-shadow: 0 12px 35px rgba(255, 184, 0, 0.28);
    }

    .lead {
      margin: 24px 0 0;
      max-width: 610px;
      color: #4b5b70;
      font-size: clamp(18px, 2vw, 23px);
      line-height: 1.9;
      font-weight: 500;
    }

    .actions {
      margin-top: 34px;
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 56px;
      padding: 0 28px;
      border-radius: 18px;
      font-family: inherit;
      font-size: 16px;
      font-weight: 900;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
      color: var(--navy);
      box-shadow: 0 18px 45px rgba(255, 184, 0, 0.34);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 58px rgba(255, 184, 0, 0.44);
    }

    .btn-dark {
      background: var(--navy);
      color: white;
      box-shadow: 0 18px 45px rgba(7, 29, 58, 0.22);
    }

    .btn-dark:hover { transform: translateY(-3px); background: #0b2a53; }

    .hero-stats {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 650px;
    }

    .stat {
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(7, 29, 58, 0.08);
      border-radius: 22px;
      padding: 18px 16px;
      box-shadow: 0 18px 45px rgba(7, 29, 58, 0.08);
      backdrop-filter: blur(12px);
    }

    .stat strong {
      display: block;
      color: var(--navy);
      font-size: 24px;
      font-weight: 900;
    }

    .stat small {
      display: block;
      margin-top: 5px;
      color: #6d7b8d;
      font-weight: 700;
      font-size: 13px;
    }

    .hero-visual { position: relative; min-height: 650px; }

    .phone-stage {
      position: absolute;
      inset: 0;
      border-radius: 44px;
      background:
        linear-gradient(145deg, rgba(7, 29, 58, 0.96), rgba(10, 42, 82, 0.90)),
        radial-gradient(circle at 30% 20%, rgba(255, 184, 0, 0.55), transparent 34%);
      box-shadow: var(--shadow);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .phone-stage::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      background: rgba(255, 184, 0, 0.20);
      border-radius: 50%;
      top: -120px;
      left: -110px;
      filter: blur(10px);
    }

    .phone-stage::after {
      content: "⚡";
      position: absolute;
      left: 38px;
      bottom: 20px;
      font-size: 210px;
      line-height: 1;
      color: rgba(255, 184, 0, 0.16);
      transform: rotate(-12deg);
    }

    .app-preview {
      position: absolute;
      width: 92%;
      max-width: 560px;
      right: 50%;
      top: 50%;
      transform: translate(50%, -50%) rotate(-3deg);
      border-radius: 30px;
      box-shadow: 0 35px 80px rgba(0, 0, 0, 0.34);
      z-index: 2;
    }

    .floating-card {
      position: absolute;
      z-index: 4;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
      border-radius: 22px;
      padding: 16px;
      backdrop-filter: blur(12px);
      color: var(--navy);
      animation: float 4s ease-in-out infinite;
    }

    .floating-card.one { top: 72px; right: -18px; }
    .floating-card.two { bottom: 90px; left: -18px; animation-delay: 1.2s; }

    .floating-card strong { display: block; font-size: 17px; font-weight: 900; }
    .floating-card small { display: block; margin-top: 4px; color: #6a7789; font-size: 13px; font-weight: 700; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    .section {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      padding: 86px 0;
    }

    .section-head { text-align: center; margin-bottom: 38px; }

    .section-head h2,
    .countdown-content h2,
    .bag-content h2,
    .showcase-content h2,
    .vertical-content h2 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1.15;
      font-weight: 900;
    }

    .section-head p {
      margin: 14px auto 0;
      max-width: 660px;
      color: #647386;
      font-size: 18px;
      line-height: 1.8;
      font-weight: 500;
    }

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

    .feature {
      background: white;
      border: 1px solid rgba(7, 29, 58, 0.08);
      border-radius: var(--radius);
      padding: 30px;
      min-height: 260px;
      box-shadow: 0 20px 55px rgba(7, 29, 58, 0.08);
      transition: 0.25s ease;
    }

    .feature:hover,
    .vertical-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 70px rgba(7, 29, 58, 0.14);
    }

    .icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin-bottom: 22px;
      box-shadow: 0 16px 34px rgba(255, 184, 0, 0.28);
    }

    .feature h3 {
      margin: 0;
      color: var(--navy);
      font-size: 24px;
      font-weight: 900;
    }

    .feature p {
      margin: 12px 0 0;
      color: #647386;
      font-size: 16px;
      line-height: 1.9;
      font-weight: 500;
    }

    .countdown-section {
      padding: 90px 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 184, 0, 0.20), transparent 28%),
        linear-gradient(145deg, #071d3a, #031123);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .countdown-section::before {
      content: "⚡";
      position: absolute;
      font-size: 360px;
      color: rgba(255, 184, 0, 0.08);
      right: 6%;
      top: -70px;
      transform: rotate(-14deg);
    }

    .countdown-wrap {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      align-items: center;
      gap: 34px;
    }

    .countdown-content h2 { color: white; }
    .countdown-content p {
      margin: 18px 0 0;
      color: rgba(255,255,255,.72);
      font-size: 18px;
      line-height: 1.9;
      font-weight: 600;
    }

    .countdown-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .time-box {
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 26px;
      padding: 26px 16px;
      text-align: center;
      backdrop-filter: blur(12px);
      box-shadow: 0 24px 65px rgba(0,0,0,.18);
    }

    .time-box strong {
      display: block;
      color: var(--yellow);
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1;
      font-weight: 900;
    }

    .time-box span {
      display: block;
      margin-top: 12px;
      color: rgba(255,255,255,.76);
      font-size: 15px;
      font-weight: 900;
    }

    .verticals-section {
      background:
        radial-gradient(circle at 82% 10%, rgba(255, 184, 0, .14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
      padding: 92px 0;
    }

    .vertical-wrap {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      align-items: center;
      gap: 40px;
    }

    .vertical-content p {
      margin: 18px 0 0;
      color: #647386;
      font-size: 18px;
      line-height: 1.9;
      font-weight: 500;
    }

    .vertical-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .vertical-card {
      min-height: 250px;
      background: #fff;
      border: 1px solid rgba(7, 29, 58, 0.08);
      border-radius: 30px;
      padding: 28px;
      box-shadow: 0 22px 60px rgba(7, 29, 58, 0.08);
      position: relative;
      overflow: hidden;
      transition: .25s ease;
    }

    .vertical-card::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(255, 184, 0, .13);
      left: -65px;
      bottom: -65px;
    }

    .vertical-icon {
      width: 68px;
      height: 68px;
      border-radius: 22px;
      background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      box-shadow: 0 18px 40px rgba(255,184,0,.28);
      margin-bottom: 22px;
      position: relative;
      z-index: 2;
    }

    .vertical-card h3 {
      margin: 0;
      color: var(--navy);
      font-size: 25px;
      font-weight: 900;
      position: relative;
      z-index: 2;
    }

    .vertical-card p {
      margin: 12px 0 0;
      color: #647386;
      font-size: 16px;
      line-height: 1.8;
      font-weight: 500;
      position: relative;
      z-index: 2;
    }

    .delivery-showcase {
      background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
      padding: 20px 0 90px;
    }

    .showcase-card {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 184, 0, 0.18), transparent 30%),
        linear-gradient(135deg, #071d3a, #031123);
      border-radius: 42px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      align-items: center;
      gap: 34px;
      color: #fff;
      box-shadow: 0 30px 90px rgba(7, 29, 58, 0.22);
      position: relative;
    }

    .showcase-card::after {
      content: "⚡";
      position: absolute;
      right: 7%;
      bottom: -60px;
      color: rgba(255, 184, 0, 0.08);
      font-size: 340px;
      transform: rotate(-14deg);
    }

    .showcase-image {
      position: relative;
      min-height: 520px;
      z-index: 2;
    }

    .showcase-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .showcase-content {
      padding: 58px 48px;
      position: relative;
      z-index: 3;
    }

    .showcase-content h2 { color: white; }

    .showcase-content p {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 18px;
      line-height: 1.9;
      font-weight: 500;
    }

    .showcase-points {
      margin-top: 30px;
      display: grid;
      gap: 14px;
    }

    .showcase-point {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 22px;
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 900;
    }

    .showcase-point span {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
      color: var(--navy);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .bag-showcase {
      background:
        radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.15), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
      padding: 90px 0;
    }

    .bag-wrap {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 46px;
    }

    .bag-photo {
      border-radius: 38px;
      overflow: hidden;
      box-shadow: 0 30px 90px rgba(7, 29, 58, 0.20);
      background: var(--navy);
      min-height: 500px;
      position: relative;
    }

    .bag-photo img {
      width: 100%;
      height: 100%;
      min-height: 500px;
      object-fit: cover;
      display: block;
    }

    .bag-content p {
      margin: 18px 0 0;
      color: #647386;
      font-size: 18px;
      line-height: 1.9;
      font-weight: 500;
    }

    .bag-tags {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .bag-tags span {
      background: #fff;
      border: 1px solid rgba(7, 29, 58, 0.08);
      border-radius: 999px;
      padding: 12px 18px;
      color: var(--navy);
      font-weight: 900;
      box-shadow: 0 16px 38px rgba(7, 29, 58, 0.08);
    }

    .dark-band {
      background:
        radial-gradient(circle at 18% 20%, rgba(255, 184, 0, 0.22), transparent 28%),
        linear-gradient(145deg, var(--navy), #031123);
      color: white;
      margin-top: 0;
      position: relative;
      overflow: hidden;
    }

    .dark-band::after {
      content: "⚡";
      position: absolute;
      font-size: 360px;
      color: rgba(255, 184, 0, 0.08);
      left: 5%;
      top: -35px;
      transform: rotate(-14deg);
    }

    .categories {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 34px;
      align-items: center;
    }

    .categories h2 {
      margin: 0;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.15;
      font-weight: 900;
    }

    .categories p {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 18px;
      line-height: 1.9;
      font-weight: 500;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .category {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      padding: 22px;
      backdrop-filter: blur(12px);
    }

    .category b {
      display: block;
      font-size: 20px;
      font-weight: 900;
      color: white;
    }

    .category span {
      display: block;
      margin-top: 7px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 14px;
      font-weight: 700;
    }

    .launch { padding-bottom: 90px; }

    .launch-box {
      background:
        linear-gradient(135deg, rgba(255, 184, 0, 0.96), rgba(255, 209, 90, 0.96)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 28%);
      border-radius: 38px;
      padding: 46px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 28px;
      box-shadow: 0 26px 80px rgba(255, 184, 0, 0.28);
      overflow: hidden;
      position: relative;
    }

    .launch-box::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(7, 29, 58, 0.10);
      left: -90px;
      bottom: -100px;
    }

    .launch h2 {
      position: relative;
      z-index: 2;
      margin: 0;
      color: var(--navy);
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.15;
      font-weight: 900;
    }

    .launch p {
      position: relative;
      z-index: 2;
      margin: 15px 0 0;
      color: rgba(7, 29, 58, 0.78);
      font-size: 18px;
      line-height: 1.8;
      font-weight: 700;
    }

    .notify-card {
      position: relative;
      z-index: 2;
      background: white;
      border-radius: 28px;
      padding: 24px;
      box-shadow: 0 22px 60px rgba(7, 29, 58, 0.16);
    }

    .notify-card label {
      display: block;
      color: var(--navy);
      font-weight: 900;
      margin-bottom: 10px;
    }

    .input-row {
      display: flex;
      gap: 10px;
    }

    .input-row input {
      flex: 1;
      min-height: 52px;
      border: 1px solid rgba(7, 29, 58, 0.12);
      border-radius: 16px;
      padding: 0 16px;
      font-family: inherit;
      font-size: 15px;
      outline: none;
    }

    .input-row input:focus {
      border-color: var(--yellow);
      box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.16);
    }

    .input-row button {
      min-height: 52px;
      border: none;
      border-radius: 16px;
      padding: 0 18px;
      background: var(--navy);
      color: white;
      font-family: inherit;
      font-weight: 900;
      cursor: pointer;
    }

    .footer {
      background: #031123;
      color: rgba(255, 255, 255, 0.74);
      padding: 28px 0;
    }

    .footer-inner {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      font-weight: 700;
      text-align: center;
    }

    @media (max-width: 950px) {
      .hero,
      .countdown-wrap,
      .vertical-wrap,
      .showcase-card,
      .bag-wrap,
      .categories,
      .launch-box {
        grid-template-columns: 1fr;
      }

      .hero { padding-top: 12px; }
      .hero-visual { min-height: 540px; }
      .features { grid-template-columns: 1fr; }
      .hero-stats { grid-template-columns: 1fr; }
      .showcase-image { min-height: 420px; order: 2; }
      .showcase-content { order: 1; }
    }

    @media (max-width: 560px) {
      .nav { width: min(100% - 24px, 1180px); }

      .brand img {
        height: 72px;
        max-width: 170px;
      }

      .nav-pill {
        font-size: 12px;
        padding: 9px 12px;
      }

      .hero,
      .section {
        width: min(100% - 24px, 1180px);
      }

      .hero {
        gap: 28px;
        padding-bottom: 54px;
      }

      h1 { letter-spacing: -0.5px; }
      .actions { align-items: stretch; }
      .btn { width: 100%; }
      .hero-visual { min-height: 430px; }
      .phone-stage { border-radius: 30px; }
      .floating-card { display: none; }
      .features { grid-template-columns: 1fr; }
      .countdown-grid { grid-template-columns: repeat(2, 1fr); }
      .vertical-grid { grid-template-columns: 1fr; }
      .category-grid { grid-template-columns: 1fr; }

      .showcase-card {
        width: min(100% - 24px, 1180px);
        border-radius: 30px;
      }

      .showcase-content { padding: 34px 24px; }
      .showcase-image { min-height: 360px; }

      .bag-showcase { padding: 60px 0; }
      .bag-wrap { width: min(100% - 24px, 1180px); }

      .bag-photo {
        border-radius: 28px;
        min-height: 360px;
      }

      .bag-photo img { min-height: 360px; }

      .launch-box {
        padding: 28px;
        border-radius: 28px;
      }

      .input-row { flex-direction: column; }
      .footer-inner { justify-content: center; text-align: center; }
    }