/* ==================================================================
   sendaprize, design system
   Premium pink · black · glassmorphism · smooth everywhere
   ================================================================== */

:root {
  --black: #0a0a0d;
  --black-2: #111116;
  --black-3: #181820;
  --ink: #f5f0f4;
  --ink-dim: #b9adb6;
  --pink: #ff2d78;
  --pink-2: #ff5f8f;
  --pink-3: #ff9ec2;
  --pink-soft: #ffd3e4;
  --pink-deep: #c2185b;
  --blush: #ffe9f2;
  --gold: #ffd9a0;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px -20px rgba(255, 45, 120, 0.35);
  --shadow-sm: 0 12px 32px -12px rgba(0, 0, 0, 0.6);
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--black); }

body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection { background: var(--pink); color: #fff; }

/* ambient background glows */
body::before, body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
body::before {
  width: 60vmax; height: 60vmax;
  top: -20vmax; left: -15vmax;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.22), transparent 65%);
}
body::after {
  width: 55vmax; height: 55vmax;
  bottom: -25vmax; right: -15vmax;
  background: radial-gradient(circle, rgba(255, 95, 143, 0.16), transparent 65%);
}

a { color: var(--pink-2); text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

/* ---------- typography ---------- */
h1, h2, h3, .serif { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.01em; }
.grad {
  background: linear-gradient(100deg, var(--pink-3), var(--pink) 45%, var(--pink-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.muted { color: var(--ink-dim); }
.small { font-size: 0.85rem; }

/* ---------- layout ---------- */
.container { width: min(1120px, 92vw); margin: 0 auto; }
.center { text-align: center; }
.flex { display: flex; align-items: center; gap: 14px; }
.between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.grid { display: grid; gap: 18px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 13, 0.72);
  border-bottom: 1px solid var(--stroke);
}
.nav__inner { height: 68px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0; font-weight: 800; letter-spacing: -0.02em; font-size: 1.15rem; color: var(--ink); }
.logo .dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink-2), var(--pink));
  box-shadow: 0 0 14px var(--pink);
  margin-right: 10px;
}
.logo em { font-style: normal; color: var(--pink); }
.nav__links { display: flex; gap: 6px; align-items: center; }
.nav__links a { color: var(--ink-dim); font-size: 0.92rem; padding: 8px 14px; border-radius: 999px; transition: 0.25s; }
.nav__links a:hover { color: var(--ink); background: var(--glass); }

/* hamburger, only visible on tablet/mobile */
.nav__burger {
  display: none;
  width: 46px; height: 46px; border-radius: 13px;
  border: 1px solid var(--stroke); background: var(--glass);
  color: var(--ink); cursor: pointer; place-items: center;
  transition: 0.25s; touch-action: manipulation;
}
.nav__burger:hover { background: var(--glass-2); }
.nav__burger svg { width: 1.35rem; height: 1.35rem; }
.nav__burger [data-lucide="x"] { display: none; }
.nav.open .nav__burger [data-lucide="menu"] { display: none; }
.nav.open .nav__burger [data-lucide="x"] { display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: none; cursor: pointer; font-weight: 700; font-size: 0.95rem;
  padding: 14px 26px; border-radius: 999px; color: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, opacity 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn[disabled] { opacity: 0.55; pointer-events: none; }
.btn-primary {
  background: linear-gradient(120deg, var(--pink-2), var(--pink) 55%, var(--pink-deep));
  box-shadow: 0 10px 30px -8px rgba(255, 45, 120, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px rgba(255, 45, 120, 0.7); }
.btn-ghost {
  background: var(--glass); color: var(--ink);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--glass-2); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 45, 120, 0.12); color: var(--pink-3);
  border: 1px solid rgba(255, 45, 120, 0.35);
}
.chip--glass { background: var(--glass); color: var(--ink-dim); border-color: var(--stroke); }

/* ---------- inputs ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.83rem; font-weight: 700; color: var(--ink-dim); letter-spacing: 0.02em; }
.input, .textarea, select.input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit; font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
}
.input::placeholder, .textarea::placeholder { color: rgba(185, 173, 182, 0.55); }
.input:focus, .textarea:focus, select.input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 45, 120, 0.18);
  background: rgba(255, 255, 255, 0.07);
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.7; }
select.input option { background: var(--black-2); color: var(--ink); }

/* ---------- cards ---------- */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(14px);
}
.card--glow { box-shadow: var(--shadow); border-color: rgba(255, 45, 120, 0.25); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.48s; }
.reveal.d5 { transition-delay: 0.6s; }

/* ---------- loading ---------- */
.spinner {
  width: 22px; height: 22px; border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--pink);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- lucide icons ---------- */
.lucide, svg[data-lucide] { width: 1.1em; height: 1.1em; stroke-width: 2; }
.lucide { display: inline-block; vertical-align: -0.15em; }

/* ---------- floating hearts ---------- */
.hearts { position: fixed; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }
.hearts .rain-h {
  position: absolute; bottom: -40px; width: 18px; height: 18px;
  opacity: 0; animation: rise linear infinite;
}
.hearts .rain-h svg { width: 100%; height: 100%; }
@keyframes rise {
  0% { transform: translateY(0) rotate(0); opacity: 0; }
  12% { opacity: 0.7; }
  100% { transform: translateY(-110vh) rotate(40deg); opacity: 0; }
}

/* ---------- footer ---------- */
footer {
  margin-top: 90px;
  border-top: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 70%);
  color: var(--ink-dim); font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 60px 0 48px;
}
.footer-brand p { margin-top: 16px; max-width: 300px; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-dim); background: var(--glass);
  border: 1px solid var(--stroke);
  transition: transform 0.25s var(--ease), color 0.25s, border-color 0.25s, background 0.25s;
}
.footer-social a:hover {
  color: var(--pink-2); border-color: rgba(255, 45, 120, 0.45);
  background: rgba(255, 45, 120, 0.08); transform: translateY(-3px);
}
.footer-social svg, .footer-social .lucide { width: 1rem; height: 1rem; }
.footer-col h4 {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(245, 240, 244, 0.72); font-size: 0.9rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--pink-2); }
.footer-bottom {
  border-top: 1px solid var(--stroke);
  padding: 22px 0; text-align: center;
  color: rgba(185, 173, 182, 0.6); font-size: 0.8rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 48px 0 40px; }
}

/* ---------- toast ---------- */
#toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 90;
  transform: translate(-50%, 30px); opacity: 0; pointer-events: none;
  background: rgba(20, 20, 26, 0.92); border: 1px solid rgba(255, 45, 120, 0.4);
  color: var(--ink); padding: 13px 22px; border-radius: 999px;
  backdrop-filter: blur(12px); box-shadow: var(--shadow-sm);
  transition: 0.35s var(--ease); font-size: 0.9rem; font-weight: 600;
}
#toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- hero ---------- */
.hero {
  padding: 28px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 26% at 22% 18%, rgba(255, 45, 120, 0.16), transparent 70%),
    radial-gradient(34% 24% at 78% 14%, rgba(255, 95, 143, 0.1), transparent 70%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.hero__copy {
  position: relative;
  padding: 10px 0 16px;
}
.hero__copy .chip { margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.85rem); line-height: 1.06; margin: 0 0 18px; }
.hero h1 .grad { display: inline-block; }
.hero p.lead { font-size: clamp(1rem, 2vw, 1.13rem); color: var(--ink-dim); max-width: 540px; margin: 0 0 28px; line-height: 1.8; }
.hero .actions { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }

.hero-stage { display: flex; justify-content: center; margin-top: 0; }
.hero-stage { position: relative; }
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 12% 16% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.16), transparent 68%);
  filter: blur(26px);
  z-index: 0;
}
.hero-stage .phone-demo {
  transform: scale(0.96);
  transform-origin: top center;
  position: relative;
  z-index: 1;
}

/* ==================================================================
   iPhone mockup, plays the surprise-opening animation
   ================================================================== */
.phone-demo { position: relative; width: 300px; height: 608px; }
.phone-demo .phone {
  position: relative; width: 100%; height: 100%;
  border-radius: 52px; padding: 11px;
  background: linear-gradient(160deg, #43434e, #191920 45%, #30303a);
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.85),
    0 24px 60px -24px rgba(255, 45, 120, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.09),
    0 0 0 1px rgba(0, 0, 0, 0.65);
}
/* dynamic island */
.phone-demo .phone::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 94px; height: 27px; border-radius: 999px; background: #050507; z-index: 6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
/* side buttons */
.phone-demo .phone .side { position: absolute; background: #3a3a44; border-radius: 4px; }
.phone-demo .phone .sb1 { top: 120px; right: -3px; width: 3px; height: 62px; }
.phone-demo .phone .sb2 { top: 192px; right: -3px; width: 3px; height: 40px; }
.phone-demo .phone .sb3 { top: 128px; left: -3px; width: 3px; height: 84px; }

.phone-demo .phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 42px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 45, 120, 0.18), transparent 55%),
    #0b0b11;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
/* status bar */
.phone-demo .phone-status {
  position: relative; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px 0; color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem; font-weight: 700; font-variant-numeric: tabular-nums;
}
.phone-demo .phone-status__icons { display: inline-flex; align-items: flex-end; gap: 2px; }
.phone-demo .phone-status__icons i { width: 3px; border-radius: 1px; background: #fff; opacity: 0.9; }
.phone-demo .phone-status__icons i:nth-child(1) { height: 6px; }
.phone-demo .phone-status__icons i:nth-child(2) { height: 9px; }
.phone-demo .phone-status__icons i:nth-child(3) { height: 12px; }

/* the gift box, scaled to live inside the screen */
.phone-demo .demo-box { position: absolute; left: 50%; top: 47%; transform: translate(-50%, -50%); }
.phone-demo .gift-stage { transform: scale(0.5); transform-origin: center; }

/* caption under the box */
.phone-demo .demo-caption {
  position: absolute; left: 0; right: 0; bottom: 26px; text-align: center; z-index: 2;
}
.phone-demo .demo-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--pink-3); background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.3); border-radius: 999px; padding: 6px 12px;
}
.phone-demo .demo-chip .lucide { width: 0.85rem; height: 0.85rem; }

/* full-screen mini-reveal after the box opens */
.phone-demo .demo-reveal {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 30px 26px; text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 45, 120, 0.3), transparent 60%),
    radial-gradient(100% 80% at 80% 100%, rgba(255, 95, 143, 0.16), transparent 60%),
    #0a0a0d;
  opacity: 0; transform: scale(0.95); pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.phone-demo .demo-reveal.show { opacity: 1; transform: none; }
.phone-demo .demo-reveal__icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(140deg, var(--pink-2), var(--pink));
  box-shadow: 0 12px 30px -8px rgba(255, 45, 120, 0.7);
  margin-bottom: 6px;
}
.phone-demo .demo-reveal__icon .lucide { width: 1.6rem; height: 1.6rem; }
.phone-demo .demo-reveal b { font-family: var(--font-head); font-size: 1.4rem; line-height: 1.2; }
.phone-demo .demo-reveal span { color: var(--ink-dim); font-size: 0.82rem; }

/* animated marquee of types */
.marquee {
  overflow: hidden; margin: 56px 0 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; gap: 12px; width: max-content; animation: marquee 30s linear infinite; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--stroke);
  color: var(--ink-dim); font-weight: 600; font-size: 0.88rem; white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 80px 0; }
.section { position: relative; }
.section:last-child { padding-bottom: 26px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.6rem, 3.6vw, 2.35rem); margin: 12px 0 10px; }
.section-head p { line-height: 1.7; }

.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature {
  position: relative; padding: 30px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--stroke);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(255, 45, 120, 0.4); }
.feature .ico {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 15px; margin-bottom: 18px; color: var(--pink-2);
  background: linear-gradient(140deg, rgba(255, 45, 120, 0.22), rgba(255, 45, 120, 0.05));
  border: 1px solid rgba(255, 45, 120, 0.3);
}
.feature .ico .lucide { width: 1.6rem; height: 1.6rem; }
.feature h3 { font-size: 1.04rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.7; }

/* ---------- surprise type cards ---------- */
.type-grid { grid-template-columns: repeat(3, 1fr); }
.type-card {
  cursor: pointer; position: relative; overflow: hidden;
  border-radius: var(--radius); padding: 26px 24px;
  background: var(--glass); border: 1px solid var(--stroke);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.type-card:hover { transform: translateY(-5px); border-color: rgba(255, 45, 120, 0.45); }
.type-card .t-ico {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 13px; margin-bottom: 14px; color: var(--pink-2);
  background: rgba(255, 45, 120, 0.1); border: 1px solid rgba(255, 45, 120, 0.25);
}
.type-card .t-ico .lucide { width: 1.5rem; height: 1.5rem; }
.type-card h4 { font-family: var(--font-head); font-size: 1.08rem; }
.type-card p { font-size: 0.84rem; color: var(--ink-dim); margin-top: 6px; line-height: 1.6; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; text-align: left; }
.step .n {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 45, 120, 0.7);
  display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--ink-dim); line-height: 1.65; }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden; text-align: center;
  padding: 64px 44px; border-radius: 28px;
  background: linear-gradient(140deg, rgba(255, 45, 120, 0.18), rgba(255, 45, 120, 0.05));
  border: 1px solid rgba(255, 45, 120, 0.35);
}
.cta h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 12px; }
.cta p { color: var(--ink-dim); max-width: 460px; margin: 0 auto 26px; line-height: 1.75; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav__burger { display: grid; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    max-height: calc(100vh - 68px); overflow-y: auto;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 10, 13, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--stroke);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.6);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav.open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { display: flex; align-items: center; justify-content: flex-start; padding: 15px 16px; font-size: 0.98rem; border-radius: var(--radius-sm); }
  .nav__links .btn { justify-content: center; width: 100%; margin-top: 6px; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .actions { justify-content: center; }
}

@media (max-width: 600px) {
  .feature-grid, .type-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { text-align: center; }
  .step .n { display: block; }
  .step p { margin: 0 auto; max-width: 340px; }
  .feature { text-align: center; }
  .feature .ico { margin: 0 auto 16px; }
  .feature p { margin: 0 auto; max-width: 340px; }
  .type-card { text-align: center; }
  .type-card .t-ico { margin: 0 auto 12px; }
  .type-card p { margin: 6px auto 0; max-width: 320px; }
  .hero { padding-top: 56px; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(2.4rem, 10.5vw, 2.7rem); }
  .hero .actions { flex-wrap: nowrap; gap: 10px; }
  .hero .actions .btn { flex: 1; padding: 13px 12px; font-size: 0.88rem; white-space: normal; }
  .hero .actions .btn .lucide { flex-shrink: 0; }
  .hero-stage .phone-demo { transform: scale(0.64); transform-origin: top center; }
  .section { padding: 60px 0; }
  .cta { padding: 48px 22px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
