:root {
  --orange: #ef5a24;
  --orange-dark: #d9481a;
  --orange-soft: #fdece1;
  --purple: #6c5ce7;
  --pink: #ff5fa2;
  --pink-dark: #e94b8f;
  --ink: #16181d;
  --ink-soft: #333333;
  --cream: #fafaf9;
  --line: #ececec;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-1: 0 8px 24px rgba(22, 24, 29, 0.08);
  --shadow-2: 0 20px 45px rgba(22, 24, 29, 0.14);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--purple); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 95, 162, 0.35);
}
.btn-primary:hover { background: var(--pink-dark); box-shadow: 0 14px 30px rgba(255, 95, 162, 0.42); }
.btn-outline {
  background: #fff;
  border-color: var(--pink);
  color: var(--pink-dark);
  padding: 9px 20px;
}
.btn-outline:hover { background: var(--pink); color: #fff; }
.btn-outline img {
  display: inline-block;
  width: 14px;
  height: 14px;
  color: var(--pink);
  filter: none;
}
.btn-outline:hover img {
  color: #fff;
  filter: none;
}
.btn-lg { padding: 13px 24px; font-size: 0.98rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }
.btn-ghost {
  background: none;
  border: 1.5px dashed var(--line);
  color: var(--ink-soft);
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink-dark); }

/* ---------- Top nav ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark { color: var(--pink); display: inline-flex; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-link {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.nav-link:hover { background: #ffe9f3; color: var(--pink-dark); }
.chev { opacity: 0.55; margin-top: 1px; }

.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.icon-btn {
  background: none;
  border: none;
  color: var(--ink);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: background 0.15s ease;
}
.icon-btn:hover { background: #ffe9f3; }
.link-plain { font-size: 0.92rem; font-weight: 500; }
.link-plain:hover { color: var(--pink-dark); }

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
}
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero (Selene-style wavy layout) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 40px;
}

.hero-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.hero-wave img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 28px 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 24px;
}

.hero-copy { max-width: 520px; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pink-dark);
  background: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-1);
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.headline em { color: var(--purple); font-style: normal; }

.subhead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 30px;
}

.hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.scroll-down {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.scroll-down svg { animation: bounceDown 1.6s ease-in-out infinite; }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---------- Hero visual: android showcase phones ---------- */
.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.visual-wave-bottom {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -30px;
  width: 116%;
  height: 260px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 48% 52% 38% 62% / 60% 45% 55% 40%;
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.phones-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.phone-btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

/* ---------- Android phone mockup (scaled-down showcase) ---------- */
.android-phone {
  --frame: #1c1d1f;
  --frame-hi: #3c3d40;
  --punch: #0a0a0b;
  --accent: #ff5fa2;
  position: relative;
  width: 210px;
  height: 442px;
  border-radius: 26px;
  background: linear-gradient(155deg, var(--frame-hi), var(--frame) 40%, #050506 100%);
  padding: 7px;
  box-shadow:
    0 2px 0 rgba(255,255,255,.08) inset,
    0 26px 46px -18px rgba(0,0,0,.4),
    0 8px 16px -6px rgba(0,0,0,.3);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.14));
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.android-phone:nth-child(2) { transform: translateY(-26px); }
.android-phone:hover { transform: translateY(-8px); }
.android-phone:nth-child(2):hover { transform: translateY(-34px); }

.android-btn {
  position: absolute;
  background: linear-gradient(90deg, #2a2b2d, #1c1c1e);
  border-radius: 4px;
}
.android-btn.power { right: -3px; top: 105px; width: 3px; height: 34px; }
.android-btn.vol { right: -3px; top: 148px; width: 3px; height: 58px; }
.android-btn.sim { left: -3px; top: 92px; width: 3px; height: 14px; border-radius: 2px; }

.android-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.android-screen.drag-over::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 95, 162, 0.18);
  border: 2px dashed var(--accent);
  border-radius: 20px;
  z-index: 4;
}

.android-status {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  z-index: 5;
  font-size: 9.5px;
  font-weight: 600;
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
}
.android-status svg { width: 11px; height: 11px; }

.android-punch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--punch);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
  z-index: 6;
}

.android-showcase {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.android-showcase .showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.android-showcase .showcase-img.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.android-empty {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 0 20px;
  color: #9a9da5;
}
.android-empty svg { opacity: .55; }
.android-empty p { margin: 0; font-size: 10.5px; line-height: 1.5; }
.android-empty b { color: var(--ink); font-weight: 600; display: block; font-size: 11.5px; margin-bottom: 2px; }

.android-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(20,20,22,.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  transition: opacity .15s ease, background .15s ease;
}
.android-screen:hover .android-nav-arrow { opacity: 1; }
.android-nav-arrow:hover { background: rgba(20,20,22,.72); }
.android-nav-arrow.prev { left: 6px; }
.android-nav-arrow.next { right: 6px; }
.android-nav-arrow svg { width: 12px; height: 12px; }

.android-dots {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 4px;
  z-index: 6;
}
.android-dots .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background .15s ease, transform .15s ease;
}
.android-dots .dot.active { background: #fff; transform: scale(1.3); }

.android-navpill {
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 68px; height: 3px;
  border-radius: 3px;
  background: rgba(0,0,0,.55);
  z-index: 6;
}

.android-label {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.app-details {
  max-width: 1280px;
  margin: 24px auto 80px;
  padding: 0 28px;
  display: grid;
  gap: 22px;
}
.details-intro {
  text-align: center;
  padding: 8px 12px 4px;
}
.details-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  margin: 0 0 10px;
}
.details-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.7;
}
.app-detail-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(145deg, #ffffff 0%, #fffaf7 100%);
  border: 1px solid rgba(239, 90, 36, 0.12);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(22, 24, 29, 0.07);
}
.app-detail-card:nth-child(2n) {
  grid-template-columns: 0.95fr 1.05fr;
}
.app-detail-card:nth-child(2n) .app-detail-gallery {
  order: 1;
}
.app-detail-card:nth-child(2n) .app-detail-copy {
  order: 2;
}
.app-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff2e7;
  color: var(--pink-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.app-detail-copy h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
}
.app-detail-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}
.detail-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pink-dark);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}
.detail-pills li {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff4e8;
  border: 1px solid rgba(239, 90, 36, 0.14);
  color: var(--pink-dark);
  font-size: 0.84rem;
  font-weight: 600;
}
.app-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.app-detail-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f7f7;
  box-shadow: var(--shadow-1);
}
.app-detail-image.first {
  grid-column: 1 / -1;
}
.app-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
}
.coming-soon-btn {
  opacity: 0.95;
}

@media (max-width: 900px) {
  .app-detail-card,
  .app-detail-card:nth-child(2n) {
    grid-template-columns: 1fr;
  }
  .app-detail-card:nth-child(2n) .app-detail-gallery,
  .app-detail-card:nth-child(2n) .app-detail-copy {
    order: initial;
  }
  .app-detail-gallery {
    grid-template-columns: 1fr;
  }
}

/* ---------- Showcase manager panel ---------- */
.showcase-manager {
  max-width: 1000px;
  margin: 10px auto 80px;
  padding: 0 28px;
}
.manager-head {
  text-align: center;
  margin-bottom: 34px;
}
.manager-head h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 8px;
}
.manager-head p {
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-size: 0.96rem;
}

.showcase-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.showcase-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.15s ease;
}
.showcase-card.active-card { border-color: var(--pink); }

.showcase-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.showcase-name {
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-bottom: 1.5px dashed transparent;
  padding: 2px 0;
  width: 100%;
  color: var(--ink);
}
.showcase-name:hover, .showcase-name:focus { border-bottom-color: var(--pink); outline: none; }

.showcase-remove {
  background: none;
  border: none;
  color: #c7cad1;
  font-size: 1.1rem;
  line-height: 1;
  padding: 2px 4px;
  flex-shrink: 0;
}
.showcase-remove:hover { color: #e5484d; }

.showcase-dropzone {
  border: 1.5px dashed #d7dae0;
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.showcase-dropzone:hover, .showcase-dropzone.drag-over {
  border-color: var(--pink);
  background: #fff2f8;
}
.showcase-dropzone .dz-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: #f4f5f7;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ink-soft);
}
.showcase-dropzone .dz-txt b { display: block; font-size: 12px; }
.showcase-dropzone .dz-txt span { font-size: 10.5px; color: var(--ink-soft); }
.showcase-file-input { display: none; }

.showcase-thumbs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.showcase-thumb {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.showcase-thumb.active-thumb { border-color: var(--pink); }
.showcase-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-thumb .thumb-remove {
  position: absolute;
  top: 1px; right: 1px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  border: none;
  font-size: 9px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.showcase-thumb .thumb-remove:hover { background: #e5484d; }

.showcase-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ink-soft);
}

.add-showcase-card {
  border: 1.5px dashed #d7dae0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.9rem;
  gap: 8px;
  transition: border-color .15s ease, color .15s ease;
}
.add-showcase-card:hover { border-color: var(--pink); color: var(--pink-dark); }

/* ---------- Content pages ---------- */
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 28px 90px;
}
.page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}
.page-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 14px;
}
.page-hero-copy p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 22px;
}
.page-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-1);
}
.page-card-accent {
  background: linear-gradient(135deg, #fff7fb 0%, #ffffff 100%);
}
.page-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
}
.page-card p,
.page-card li {
  color: var(--ink-soft);
  line-height: 1.7;
}
.pill-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3f8;
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.page-grid .page-card h3 {
  margin-bottom: 8px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.contact-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff7fb;
  color: var(--ink-soft);
}
.contact-item strong {
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-link {
  color: var(--pink-dark);
  font-weight: 600;
}
.form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.form-status.success {
  color: #1f7a45;
}
.form-status.error {
  color: #c23333;
}

@media (max-width: 900px) {
  .page-hero,
  .page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .page-main {
    padding-top: 32px;
  }
}

/* ---------- Social proof ---------- */
.social-proof {
  max-width: 1180px;
  margin: 24px auto 90px;
  padding: 0 28px;
}
.social-proof-shell {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
  border: 1px solid rgba(239, 90, 36, 0.14);
  border-radius: 30px;
  padding: 36px 32px;
  box-shadow: 0 20px 40px rgba(22, 24, 29, 0.06);
}
.social-proof-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 28px;
}
.proof-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin: 0 0 12px;
}
.social-proof-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin: 0 0 10px;
}
.social-proof-header p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.proof-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
}
.proof-card span {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 21, 24, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: var(--shadow-2);
  animation: pop 0.22s ease;
}
@keyframes pop { from { transform: translateY(8px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-soft);
}
.modal h2 { font-family: var(--font-display); margin: 0 0 6px; font-size: 1.4rem; }
.modal-sub { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 22px; }
#demoForm { display: flex; flex-direction: column; gap: 14px; }
#demoForm label { display: flex; flex-direction: column; gap: 6px; font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
#demoForm input, #demoForm select {
  font: inherit;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}
#demoForm input:focus, #demoForm select:focus { border-color: var(--purple); }
#demoForm input.invalid { border-color: var(--orange); }
.field-error { color: var(--orange-dark); font-size: 0.78rem; font-weight: 500; min-height: 1em; }
.form-status { text-align: center; font-size: 0.88rem; font-weight: 600; min-height: 1.2em; margin: 4px 0 0; }
.form-status.ok { color: #2f8f4e; }
.form-status.err { color: var(--orange-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 640px; margin: 0 auto; }
  .hero-btn-row { justify-content: center; }
  .scroll-down { justify-content: center; width: 100%; }
  .hero-visual { min-height: 420px; margin-top: 20px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions .link-plain { display: none; }
  .burger { display: flex; }
}

@media (max-width: 600px) {
  .nav-actions .icon-btn { display: none; }
  .android-phone { width: 168px; height: 354px; }
  .android-phone:nth-child(2) { transform: translateY(-14px); }
  .phones-row { gap: 16px; }
}