:root {
  --coral: #e57373;
  --coral-deep: #d45a5a;
  --coral-soft: #f8d4d4;
  --coral-wash: #fdecec;
  --ink: #2c2c2c;
  --muted: #6d6762;
  --line: #ece6e1;
  --paper: #f7f3f0;
  --card: #ffffff;
  --teal: #2f6b6a;
  --orange: #e8a05a;
  --purple: #8f7bb8;
  --green: #6aaa72;
  --shadow: 0 10px 30px rgba(44, 44, 44, 0.06);
  --shadow-lg: 0 24px 60px rgba(44, 44, 44, 0.1);
  --radius: 22px;
  --radius-sm: 14px;
  --wrap: 1120px;
  --header-h: 72px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -18%, #f6cfcf 0%, transparent 58%),
    radial-gradient(ellipse 40% 28% at 100% 8%, #fde8e8 0%, transparent 50%);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--coral-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(247, 243, 240, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(236, 230, 225, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 4px 12px rgba(229, 115, 115, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary,
.nav .btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 18px rgba(229, 115, 115, 0.32);
}

.btn-primary:hover,
.nav .btn-primary:hover {
  background: var(--coral-deep);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--coral-wash);
  color: var(--ink);
}

.hero {
  padding: 56px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral-deep);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.55rem);
  font-weight: 500;
  margin-bottom: 16px;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.tiny {
  font-size: 0.88rem;
  color: var(--muted);
}

.phone-stage {
  display: flex;
  justify-content: center;
  perspective: 900px;
}

.phone {
  width: 300px;
  background: #fff;
  border-radius: 36px;
  padding: 12px 12px 18px;
  box-shadow: var(--shadow-lg), 0 0 0 10px rgba(255, 255, 255, 0.55);
  transform: rotate(-4deg);
}

.phone-screen {
  background: linear-gradient(#fdecec 0%, #f7f3f0 28%);
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
  padding: 16px 14px 10px;
  position: relative;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  padding: 0 6px;
}

.phone-hello {
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.phone-date {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 4px 0 16px;
}

.p-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
}

.p-house {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.p-icon.coral {
  background: var(--coral-wash);
  color: var(--coral-deep);
}

.p-house strong {
  display: block;
  font-size: 0.95rem;
}

.p-house span,
.p-stat label {
  color: var(--muted);
  font-size: 0.75rem;
}

.p-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.p-stat {
  min-height: 92px;
  position: relative;
}

.p-stat b {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.p-mini {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #fff;
}

.bg-orange { background: var(--orange); }
.bg-purple { background: var(--purple); }
.bg-green { background: var(--green); }
.bg-coral { background: var(--coral); }

.phone-caught {
  text-align: center;
  margin: 22px 0 18px;
}

.phone-caught strong {
  display: block;
  font-size: 0.95rem;
}

.phone-caught span {
  color: var(--muted);
  font-size: 0.78rem;
}

.phone-tabbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: #fff;
  border-radius: 18px;
  padding: 8px 4px;
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 9px;
  color: var(--muted);
  font-weight: 600;
}

.phone-tabbar .on {
  color: var(--coral-deep);
}

.phone-tabbar .on span {
  background: var(--coral-wash);
  border-radius: 999px;
  display: inline-block;
  padding: 4px 8px;
}

.trust {
  padding: 8px 0 48px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.section {
  padding: 28px 0 56px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 28px;
}

.kicker {
  color: var(--coral-deep);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 16px;
}

.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-tile {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--coral-wash);
  color: var(--coral-deep);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-band {
  margin: 12px 0 64px;
  background: #fff;
  border-radius: 32px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-image: linear-gradient(135deg, #fff 0%, var(--coral-wash) 140%);
}

.cta-band h2 {
  margin-bottom: 6px;
}

.page-hero {
  padding: 40px 0 12px;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 500;
}

.form-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding-bottom: 64px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 6px;
}

.field {
  margin-bottom: 16px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--coral-soft);
  border-color: var(--coral);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

.req {
  color: var(--coral-deep);
}

.banner {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 18px;
  background: #eaf6ec;
  color: #2b5c33;
  font-weight: 600;
}

.banner.error {
  background: var(--coral-wash);
  color: #8a3030;
}

.note {
  background: var(--coral-wash);
  border-radius: var(--radius);
  padding: 20px;
}

.legal {
  max-width: 760px;
  padding-bottom: 72px;
}

.legal h2 {
  font-size: 1.25rem;
  margin-top: 1.8em;
}

.legal h3 {
  font-size: 1.05rem;
  margin-top: 1.2em;
}

.legal ul {
  padding-left: 1.2em;
  color: var(--ink);
}

.legal li {
  margin-bottom: 0.4em;
}

.meta-row {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq details {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  color: var(--muted);
  margin: 10px 0 0;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.site-footer h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.site-footer a {
  display: block;
  color: var(--ink);
  padding: 4px 0;
  font-weight: 500;
}

.motto {
  font-style: italic;
  color: var(--muted);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px 8px 10px;
  text-decoration: none;
}

.play-badge:hover {
  color: #fff;
  text-decoration: none;
}

.play-badge small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.play-badge b {
  font-size: 15px;
  line-height: 1.1;
}

@media (max-width: 960px) {
  .hero-grid,
  .form-layout,
  .footer-grid,
  .grid-3,
  .grid-4,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band,
  .footer-grid {
    display: block;
  }

  .cta-band .btn {
    margin-top: 16px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .hero-grid,
  .form-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .steps {
    grid-template-columns: 1fr;
  }

  .phone {
    transform: none;
    width: min(100%, 300px);
  }

  .hero {
    padding-top: 32px;
  }
}
