/* Ring Ring Please — marketing landing (light brand design).
   Self-contained: brand tokens + landing layout. The A2P legal pages keep their
   own plain style.css and are intentionally NOT restyled. */
:root {
  --rrp-red: #e8323c;
  --rrp-red-dark: #c42a33;
  --rrp-red-tint: #fdecee;
  --rrp-ink: #383c42;
  --rrp-ink-soft: #5b6168;
  --rrp-muted: #8a9099;
  --rrp-rule: #ececf0;
  --rrp-bg: #f7f8fa;
  --rrp-surface: #ffffff;
  --rrp-font:
    'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
  --rrp-maxw: 54rem;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--rrp-ink);
  font-family: var(--rrp-font);
  line-height: 1.6;
  background:
    radial-gradient(120% 55% at 50% -10%, var(--rrp-red-tint), transparent 55%),
    var(--rrp-bg);
}

.wrap {
  max-width: var(--rrp-maxw);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0 0;
}

.site-header img {
  display: block;
  height: 38px;
  width: auto;
}

.site-header a.help {
  color: var(--rrp-ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-header a.help:hover {
  color: var(--rrp-ink);
}

.hero {
  text-align: center;
  padding: 2.75rem 0 1.5rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hero .lede {
  max-width: 40rem;
  margin: 0 auto 1.7rem;
  font-size: 1.15rem;
  color: var(--rrp-ink-soft);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.7rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: var(--rrp-red);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(232, 50, 60, 0.28);
  transition:
    background 0.15s ease,
    transform 0.06s ease;
}

.btn:hover {
  background: var(--rrp-red-dark);
}

.btn:active {
  transform: translateY(1px);
}

section {
  margin-top: 2.75rem;
}

h2 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

.step {
  padding: 1.25rem 1.25rem 1.35rem;
  background: var(--rrp-surface);
  border: 1px solid var(--rrp-rule);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(56, 60, 66, 0.05);
}

.step .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  background: var(--rrp-red-tint);
  color: var(--rrp-red);
  font-weight: 800;
}

.step p {
  margin: 0;
  color: var(--rrp-ink-soft);
}

.step a {
  color: var(--rrp-red);
}

.note {
  margin-top: 2.75rem;
  padding: 1.25rem 1.4rem;
  background: var(--rrp-surface);
  border: 1px solid var(--rrp-rule);
  border-radius: 16px;
}

.note h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.note p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--rrp-ink-soft);
}

.note a {
  color: var(--rrp-red);
}

.legal {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.legal a {
  margin: 0 0.3rem;
  color: var(--rrp-muted);
  text-decoration: none;
}

.legal a:hover {
  color: var(--rrp-ink);
}

.site-footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rrp-rule);
  text-align: center;
  color: var(--rrp-muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--rrp-muted);
}
