:root {
  --ink: #111827;
  --muted: #667085;
  --line: #e6eaf0;
  --paper: #ffffff;
  --canvas: #f5f7fb;
  --brand: #ed4e73;
  --brand-dark: #cf365f;
  --navy: #071527;
  --blue: #3164f4;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(230, 234, 240, .86);
  background: rgba(255, 255, 255, .91);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
.brand img { width: 42px; height: 42px; border-radius: 13px; object-fit: cover; }
.brand-copy { display: grid; line-height: 1.04; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.language {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: #344054;
  font-size: 13px;
  font-weight: 750;
}
.header-cta { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 0 74px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(73, 114, 255, .8), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(237, 78, 115, .56), transparent 33%),
    linear-gradient(145deg, #07111f 0%, #0c2447 52%, #102f5d 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-grid { display: grid; align-items: center; gap: 42px; }
.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: #d9e7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(38px, 10vw, 70px); line-height: .98; letter-spacing: -.055em; }
.hero-copy > p { max-width: 650px; margin: 22px 0 0; color: #d5deec; font-size: clamp(17px, 4.2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
}
.button-primary { background: var(--brand); color: #fff; box-shadow: 0 14px 28px rgba(237, 78, 115, .28); }
.button-secondary { border: 1px solid rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .08); color: #fff; }
.hero-points { margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.hero-points li { padding: 7px 11px; border-radius: 999px; background: rgba(255, 255, 255, .09); color: #dbe7f8; font-size: 12px; font-weight: 720; }

.phone-wrap { position: relative; width: min(74vw, 325px); margin: 0 auto; }
.phone-wrap::before {
  content: "";
  position: absolute;
  inset: 9% -20% -4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 126, 255, .48), transparent 68%);
  filter: blur(10px);
}
.phone {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 8px solid #111722;
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255,255,255,.18);
}
.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 30%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #111722;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.actual-label {
  position: absolute;
  right: -10px;
  bottom: 9%;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #1d2939;
  box-shadow: 0 10px 26px rgba(0,0,0,.2);
  font-size: 11px;
  font-weight: 850;
}

.proof-strip { position: relative; z-index: 4; margin-top: -26px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 40px rgba(16, 24, 40, .1);
}
.proof-item { padding: 10px 8px; text-align: center; }
.proof-item strong { display: block; font-size: 16px; }
.proof-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }

.intro { padding: 84px 0 26px; text-align: center; }
.kicker { margin: 0 0 12px; color: var(--brand-dark); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.intro h2, .feature-copy h2, .download h2 { margin: 0; letter-spacing: -.035em; }
.intro h2 { font-size: clamp(30px, 8vw, 52px); }
.intro p { max-width: 720px; margin: 16px auto 0; color: var(--muted); font-size: 17px; line-height: 1.72; }

.features { padding: 24px 0 84px; }
.feature {
  display: grid;
  align-items: center;
  gap: 30px;
  margin-top: 22px;
  padding: 28px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(16, 24, 40, .055);
}
.feature-copy { padding: 4px 2px; }
.feature-copy h2 { font-size: clamp(28px, 7vw, 44px); line-height: 1.08; }
.feature-copy p { margin: 15px 0 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.feature-list { margin: 20px 0 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.feature-list li { position: relative; padding-left: 27px; color: #344054; line-height: 1.5; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 900; }
.visual-panel { position: relative; min-height: 470px; display: grid; place-items: center; border-radius: 22px; background: linear-gradient(145deg, #edf2ff, #fdf1f5); }
.visual-panel .phone { width: min(72%, 285px); }
.visual-panel.blue { background: linear-gradient(145deg, #eaf2ff, #f5f8ff); }
.visual-panel.gold { background: linear-gradient(145deg, #fff5df, #fffafb); }
.visual-panel.green { background: linear-gradient(145deg, #e9fbf4, #f7fffc); }
.visual-panel.violet { background: linear-gradient(145deg, #f2edff, #fff8ff); }
.screen-note { position: absolute; left: 16px; bottom: 16px; padding: 9px 12px; border: 1px solid #fff; border-radius: 999px; background: rgba(255,255,255,.94); color: #344054; box-shadow: 0 8px 22px rgba(16,24,40,.1); font-size: 11px; font-weight: 800; }

.download { padding: 0 0 88px; }
.download-card {
  position: relative;
  overflow: hidden;
  padding: 36px 24px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #ee4d73, #b93268 55%, #6d2ca4);
  box-shadow: 0 24px 55px rgba(178, 51, 104, .24);
}
.download-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; top: -100px; border: 45px solid rgba(255,255,255,.1); border-radius: 50%; }
.download p { position: relative; z-index: 1; max-width: 640px; margin: 14px 0 0; color: #ffe8ef; line-height: 1.65; }
.store-buttons { position: relative; z-index: 1; margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.store-buttons a { display: inline-flex; align-items: center; min-height: 56px; padding: 8px 12px; border-radius: 14px; background: #fff; }
.store-buttons img { width: auto; height: 46px; object-fit: contain; }
.store-buttons .apple img { width: 164px; height: auto; }

footer { padding: 34px 0 44px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; gap: 24px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 18px; }
.footer-brand { font-weight: 850; }
.footer-copy { color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-links a { color: #475467; font-size: 13px; text-decoration: none; }
.address-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.address-card { padding: 15px 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--canvas); }
.address-card strong { display: block; margin-bottom: 5px; color: #344054; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.address-card span { display: block; color: var(--muted); font-size: 12px; line-height: 1.6; }

@media (min-width: 680px) {
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .address-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-cta { display: inline-flex; min-height: 40px; padding: 0 15px; align-items: center; border-radius: 999px; background: var(--brand); color: #fff; text-decoration: none; font-size: 13px; font-weight: 800; }
}

@media (min-width: 820px) {
  .hero { padding: 82px 0 98px; }
  .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); }
  .feature { grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 58px; padding: 44px; }
  .feature.reverse .visual-panel { order: 2; }
  .feature.reverse .feature-copy { order: 1; }
  .visual-panel { min-height: 610px; }
  .download-card { padding: 52px; }
  .address-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 420px) {
  .shell { width: min(100% - 24px, 1120px); }
  .brand-copy small { display: none; }
  .language { padding: 0 11px; }
  .hero { padding-top: 44px; }
  .feature { padding: 20px 16px; border-radius: 22px; }
  .visual-panel { min-height: 440px; }
  .visual-panel .phone { width: min(78%, 270px); }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
