:root {
  --red: #d71920;
  --red-dark: #a90f17;
  --yellow: #ffc72c;
  --dark: #151515;
  --muted: #6d6d6d;
  --surface: #ffffff;
  --soft: #fff7e2;
  --line: rgba(21, 21, 21, 0.1);
  --shadow: 0 28px 70px rgba(22, 20, 18, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, rgba(255, 199, 44, 0.42), transparent 34%),
    radial-gradient(circle at 92% 14%, rgba(215, 25, 32, 0.16), transparent 30%),
    linear-gradient(135deg, #fffdf7 0%, #fff3cf 42%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 82%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 44px;
}

.hero-card {
  position: relative;
  min-height: calc(100vh - 130px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
  animation: riseIn 700ms ease both;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(215, 25, 32, 0.09);
}

.top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--yellow);
  background: var(--red);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 14px 34px rgba(215, 25, 32, 0.24);
}

.brand-text {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #343434;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 14px 34px rgba(22, 20, 18, 0.08);
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(215, 25, 32, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  min-height: calc(100vh - 230px);
  padding: clamp(42px, 8vw, 96px) clamp(2px, 2vw, 24px) 18px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--red-dark);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(2.75rem, 7.1vw, 6.7rem);
  line-height: 0.89;
  letter-spacing: -0.085em;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.72;
  font-weight: 500;
}

.launch-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(560px, 100%);
  margin: 30px 0 0;
}

.launch-box > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 40px rgba(22, 20, 18, 0.07);
}

.label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.launch-box strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

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

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-btn {
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 38px rgba(215, 25, 32, 0.25);
}

.secondary-btn {
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(22, 20, 18, 0.07);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.visual-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.glow-one {
  width: 360px;
  height: 360px;
  background: var(--yellow);
  opacity: 0.35;
  animation: float 5.2s ease-in-out infinite;
}

.glow-two {
  width: 220px;
  height: 220px;
  right: 34px;
  bottom: 50px;
  background: rgba(215, 25, 32, 0.23);
  animation: float 6.2s ease-in-out infinite reverse;
}

.phone-mockup {
  position: relative;
  width: min(330px, 82vw);
  min-height: 510px;
  border-radius: 42px;
  padding: 24px;
  background: linear-gradient(160deg, #191919 0%, #2a201e 100%);
  box-shadow: 0 34px 80px rgba(22, 20, 18, 0.28);
  transform: rotate(4deg);
  animation: phoneIn 800ms 180ms ease both;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.phone-header {
  width: 84px;
  height: 8px;
  margin: 0 auto 36px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
}

.phone-title {
  width: 72%;
  height: 32px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--yellow), #fff0a6);
  margin-bottom: 22px;
}

.city-row {
  height: 62px;
  margin-bottom: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.city-row.active {
  background: #fff;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.city-row.small {
  width: 76%;
}

.order-preview {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  border-radius: 26px;
  padding: 20px;
  background: var(--red);
  box-shadow: 0 20px 46px rgba(215, 25, 32, 0.32);
}

.order-preview span {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
}

.order-preview span:nth-child(1) { width: 64%; }
.order-preview span:nth-child(2) { width: 92%; opacity: 0.72; }
.order-preview span:nth-child(3) { width: 48%; opacity: 0.55; margin-bottom: 0; }

.feature-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(22, 20, 18, 0.08);
  backdrop-filter: blur(18px);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.feature-card h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 500;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 800;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes phoneIn {
  from { opacity: 0; transform: rotate(9deg) translateY(24px); }
  to { opacity: 1; transform: rotate(4deg) translateY(0); }
}

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .visual-card {
    min-height: 420px;
  }

  .phone-mockup {
    min-height: 430px;
  }

  .feature-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
    padding-top: 12px;
  }

  .hero-card {
    min-height: auto;
    padding: 16px;
    border-radius: 28px;
  }

  .top-bar {
    align-items: flex-start;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 24px;
  }

  .brand-text {
    max-width: 150px;
    line-height: 1.1;
  }

  .status-pill {
    padding: 9px 11px;
    font-size: 0.75rem;
  }

  .hero-grid {
    gap: 24px;
    padding: 46px 0 6px;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.4rem);
  }

  .lead {
    font-size: 1rem;
    margin-top: 18px;
  }

  .launch-box {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .visual-card {
    min-height: 360px;
  }

  .phone-mockup {
    min-height: 365px;
    border-radius: 36px;
    padding: 20px;
    transform: rotate(2deg);
  }

  .phone-title {
    height: 26px;
  }

  .city-row {
    height: 48px;
  }

  .site-footer {
    width: min(100% - 22px, 1180px);
    padding-bottom: 24px;
  }
}
