@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --ink: #26151f;
  --wine: #651a45;
  --berry: #d82f68;
  --coral: #ff6b75;
  --cream: #fff9f4;
  --paper: #fffdfb;
  --muted: #75666e;
  --line: rgba(62, 24, 45, .12);
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--cream); }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 183, 184, .35), transparent 27%),
    radial-gradient(circle at 8% 88%, rgba(235, 173, 204, .24), transparent 25%),
    linear-gradient(145deg, #fffdf9 0%, #fff8f4 48%, #fbf2f3 100%);
  font-family: "DM Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  opacity: .18;
}

.glow-one { top: -260px; left: 28%; background: #ff8b98; }
.glow-two { right: -280px; bottom: -260px; background: #a64379; }

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.wordmark > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px 13px 13px 4px;
  color: #fff;
  background: linear-gradient(145deg, var(--coral), var(--berry));
  box-shadow: 0 10px 28px rgba(216, 47, 104, .24);
  font: 800 20px "Manrope", sans-serif;
}

.wordmark strong {
  font: 800 25px "Manrope", sans-serif;
  letter-spacing: -.8px;
}

.launch-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 8px 30px rgba(67, 24, 48, .05);
  color: #604d58;
  font-size: 12px;
  font-weight: 700;
}

.launch-chip i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #40b77b;
  box-shadow: 0 0 0 5px rgba(64, 183, 123, .12);
}

.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 76px;
  padding: 52px 0 72px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font: 800 clamp(48px, 5.5vw, 76px)/1.02 "Manrope", sans-serif;
  letter-spacing: -4px;
}

.hero-copy h1 em {
  color: var(--berry);
  font-style: normal;
}

.intro {
  max-width: 540px;
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.progress-note {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 17px 13px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 16px 45px rgba(55, 25, 42, .06);
}

.progress-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 3px;
  padding-bottom: 11px;
  border-radius: 12px;
  background: #fae8ee;
}

.progress-icon i {
  width: 4px;
  border-radius: 3px;
  background: var(--berry);
  animation: pulse 1.3s ease-in-out infinite alternate;
}

.progress-icon i:nth-child(1) { height: 9px; }
.progress-icon i:nth-child(2) { height: 16px; animation-delay: .2s; }
.progress-icon i:nth-child(3) { height: 12px; animation-delay: .4s; }

@keyframes pulse { to { height: 21px; } }

.progress-note p { display: grid; gap: 3px; margin: 0; }
.progress-note strong { font-size: 12px; }
.progress-note small { color: var(--muted); font-size: 10px; }

.preview {
  min-height: 510px;
  position: relative;
  display: grid;
  place-items: center;
}

.preview::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f9d7df, #f5bfd0);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .65);
}

.preview-orbit {
  position: absolute;
  border: 1px solid rgba(102, 26, 70, .12);
  border-radius: 50%;
}

.orbit-one { width: 490px; height: 490px; }
.orbit-two { width: 545px; height: 545px; }

.phone-card {
  width: 280px;
  min-height: 440px;
  position: relative;
  z-index: 2;
  padding: 22px;
  border: 7px solid #2e1825;
  border-radius: 35px;
  background: var(--paper);
  box-shadow: 0 38px 80px rgba(67, 22, 46, .22);
  transform: rotate(3deg);
}

.phone-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 35px; }
.phone-top span { color: var(--berry); font: 800 12px "Manrope"; letter-spacing: 1.5px; }
.phone-top i { width: 26px; height: 8px; border-radius: 8px; background: #2e1825; }
.phone-card > p { margin: 0; color: #897983; font-size: 9px; }
.phone-card h2 { margin: 5px 0 16px; font: 800 20px/1.2 "Manrope"; letter-spacing: -.6px; }
.search-line { padding: 11px; border-radius: 10px; background: #f5f1f2; color: #a0939a; font-size: 8px; }
.search-line span { margin-right: 5px; color: var(--berry); font-size: 13px; }
.food-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 16px 0; }
.food-card { min-height: 106px; padding: 8px; border-radius: 13px; background: #fff3e7; }
.food-card:nth-child(2) { background: #f4eaf1; }
.food-card i { height: 65px; display: block; border-radius: 9px; background: radial-gradient(circle at 50% 45%, #f4c96b 0 18%, #bd6a3e 19% 30%, #4c8c55 31% 35%, #f8df9e 36% 55%, #fff 56%); }
.card-two i { background: radial-gradient(circle at 50% 45%, #efce93 0 20%, #be3f4d 21% 27%, #e9a653 28% 42%, #f8e5b8 43% 58%, #fff 59%); }
.food-card span { display: block; margin-top: 7px; font-size: 8px; font-weight: 700; }
.restaurant-line { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid #eee7eb; }
.restaurant-line > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: #fbe1e7; }
.restaurant-line > span i { width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(145deg, #ff9b7d, #c92f68); }
.restaurant-line p { flex: 1; display: grid; gap: 3px; margin: 0; }
.restaurant-line b { font-size: 9px; }
.restaurant-line small { color: #8b7f85; font-size: 7px; }
.restaurant-line em { color: var(--berry); font-style: normal; }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(79, 28, 56, .1);
  border-radius: 15px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 45px rgba(64, 20, 44, .13);
  backdrop-filter: blur(10px);
}

.floating-card > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; color: #fff; background: #42ad77; font-weight: 800; }
.floating-card p { display: grid; gap: 2px; margin: 0; }
.floating-card b { font-size: 10px; }
.floating-card small { color: var(--muted); font-size: 8px; }
.delivery-card { top: 70px; right: -10px; }
.partner-card { left: -14px; bottom: 72px; }
.partner-card > span { background: linear-gradient(145deg, var(--coral), var(--berry)); }

.platform-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-strip > div { display: flex; align-items: center; gap: 17px; padding: 25px 24px; }
.platform-strip > div + div { border-left: 1px solid var(--line); }
.platform-strip > div > span { color: var(--berry); font: 800 10px "Manrope"; }
.platform-strip p { display: grid; gap: 3px; margin: 0; }
.platform-strip strong { font: 700 13px "Manrope"; }
.platform-strip small { color: var(--muted); font-size: 10px; }

footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

footer p { margin: 0; }

@media (max-width: 950px) {
  .hero { grid-template-columns: 1fr; gap: 25px; padding-top: 45px; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .intro { margin-inline: auto; }
  .progress-note { margin-inline: auto; text-align: left; }
  .preview { min-height: 560px; }
}

@media (max-width: 680px) {
  .site-header, main, footer { width: min(100% - 32px, 1180px); }
  .site-header { height: 82px; }
  .launch-chip { padding: 9px 11px; font-size: 9px; }
  .wordmark strong { font-size: 21px; }
  .hero { padding: 38px 0 50px; }
  .hero-copy h1 { font-size: clamp(42px, 13vw, 58px); letter-spacing: -2.8px; }
  .intro { font-size: 15px; }
  .preview { min-height: 500px; transform: scale(.88); margin: -25px -25px; }
  .preview::before { width: 390px; height: 390px; }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { display: none; }
  .delivery-card { right: 0; }
  .partner-card { left: 0; }
  .platform-strip { grid-template-columns: 1fr; }
  .platform-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .progress-icon i { animation: none; }
}
