/* ══════════════════════════════════════════
   AG WX ALERTS SUBSCRIBE — Standalone Stylesheet
   Mirrors the ag_wx_pro.css design system
   Scoped under .alerts-page
   ══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════ */
.alerts-page {
  --pro-bg: #FAFAF8;
  --pro-surface: #FFFFFF;
  --pro-ink: #1A1A1A;
  --pro-ink-secondary: #5A5A52;
  --pro-ink-tertiary: #8A8A80;
  --pro-rule: #E8E7E3;
  --pro-brand: #0f766e;
  --pro-brand-subtle: #f0fdfa;
  --pro-cta: #D97706;
  --pro-cta-hover: #B45309;
  --pro-cta-glow: rgba(217, 119, 6, 0.15);
  --pro-serif: 'DM Serif Display', Georgia, serif;
  --pro-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --alerts-danger: #dc2626;
}

/* ══════════════════════════════════════════
   BASE
   ══════════════════════════════════════════ */
.alerts-page {
  font-family: var(--pro-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pro-ink);
  background: var(--pro-bg);
  -webkit-font-smoothing: antialiased;
}

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

/* ══════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════ */
.alerts-page .alerts-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.alerts-page section {
  padding: 72px 0;
}

.alerts-page section:first-child {
  padding-top: 0;
}

.alerts-page section + section {
  border-top: 1px solid var(--pro-rule);
}

/* ══════════════════════════════════════════
   HERO — Split: Text Left, iPhone Right
   ══════════════════════════════════════════ */
.alerts-page .alerts-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

.alerts-page .alerts-hero__text {
  max-width: 520px;
}

.alerts-page .alerts-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pro-brand);
  margin-bottom: 20px;
}

.alerts-page .alerts-hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pro-brand);
}

.alerts-page .alerts-hero__title {
  font-family: var(--pro-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pro-ink);
  margin: 0 0 16px;
}

.alerts-page .alerts-hero__subtitle-lead {
  font-family: var(--pro-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--pro-ink);
  line-height: 1.3;
  margin: 0 0 20px;
}

.alerts-page .alerts-hero__subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--pro-ink-secondary);
  line-height: 1.7;
  margin: 0 0 32px;
}

/* ══════════════════════════════════════════
   PRICING — inline row (matches pro pattern)
   ══════════════════════════════════════════ */
.alerts-page .alerts-pricing {
  margin-bottom: 24px;
}

.alerts-page .alerts-pricing__row {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}

.alerts-page .alerts-pricing__option {
  position: relative;
  cursor: pointer;
  padding: 8px 0;
  text-align: center;
}

.alerts-page .alerts-pricing__save {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--pro-brand);
  background: var(--pro-brand-subtle);
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 2px;
}

.alerts-page .alerts-pricing__amount {
  font-family: var(--pro-sans);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--pro-ink);
  line-height: 1;
}

.alerts-page .alerts-pricing__amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--pro-ink-tertiary);
}

.alerts-page .alerts-pricing__label {
  font-size: 0.75rem;
  color: var(--pro-ink-tertiary);
  margin-top: 3px;
}

.alerts-page .alerts-pricing__divider {
  width: 1px;
  height: 48px;
  background: var(--pro-rule);
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════
   CTA BUTTON — warm amber (matches pro)
   ══════════════════════════════════════════ */
.alerts-page .alerts-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--pro-cta);
  color: #fff;
  font-family: var(--pro-sans);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px var(--pro-cta-glow);
}

.alerts-page .alerts-cta:hover {
  background: var(--pro-cta-hover);
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.25);
  color: #fff;
  text-decoration: none;
}

.alerts-page .alerts-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.alerts-page .alerts-cta i {
  font-size: 0.85rem;
}

.alerts-page .alerts-hero__reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.alerts-page .alerts-hero__reassurance span {
  font-size: 0.78rem;
  color: var(--pro-ink-tertiary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.alerts-page .alerts-hero__reassurance i {
  color: var(--pro-brand);
  font-size: 0.65rem;
}

.alerts-page .alerts-hero__login-hint {
  font-size: 0.82rem;
  color: var(--pro-ink-tertiary);
  margin-top: 16px;
}

.alerts-page .alerts-hero__login-hint a {
  color: var(--pro-brand);
  text-decoration: underline;
}

.alerts-page .alerts-hero__login-hint--split {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.alerts-page .alerts-hero__included {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--pro-brand);
  padding-left: 4px;
  border-left: 1px solid var(--pro-ink-tertiary, rgba(0,0,0,0.15));
  padding-left: 12px;
}

.alerts-page .alerts-hero__included i {
  font-size: 0.85rem;
}

.alerts-page .alerts-hero__sample-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--pro-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pro-brand);
  text-decoration: none;
  transition: color 0.2s;
}

.alerts-page .alerts-hero__sample-link:hover {
  color: var(--pro-cta);
  text-decoration: underline;
}

.alerts-page .alerts-hero__sample-link i {
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════
   iPHONE MOCKUP — realistic iPhone 15 style
   ══════════════════════════════════════════ */
.alerts-page .iphone-mockup {
  flex-shrink: 0;
}

.alerts-page .iphone-frame {
  width: 280px;
  height: 580px;
  background: #1a1a1a;
  border-radius: 48px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #2a2a2a,
    0 0 0 4px #1a1a1a,
    0 24px 48px rgba(0,0,0,0.22),
    0 8px 16px rgba(0,0,0,0.12);
  position: relative;
}

/* Side button accents */
.alerts-page .iphone-frame::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 140px;
  width: 3px;
  height: 56px;
  background: #2a2a2a;
  border-radius: 0 2px 2px 0;
}

.alerts-page .iphone-frame::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 120px;
  width: 3px;
  height: 32px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 44px 0 #2a2a2a, 0 76px 0 #2a2a2a;
}

.alerts-page .iphone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dynamic Island */
.alerts-page .iphone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Status bar */
.alerts-page .iphone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 0;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  flex-shrink: 0;
}

.alerts-page .iphone-status-bar__right {
  display: flex;
  align-items: center;
  gap: 5px;
}

.alerts-page .iphone-signal {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.alerts-page .iphone-signal__bar {
  width: 3px;
  background: white;
  border-radius: 1px;
}

.alerts-page .iphone-signal__bar:nth-child(1) { height: 5px; }
.alerts-page .iphone-signal__bar:nth-child(2) { height: 7px; }
.alerts-page .iphone-signal__bar:nth-child(3) { height: 9px; }
.alerts-page .iphone-signal__bar:nth-child(4) { height: 11px; }

/* iMessage header bar */
.alerts-page .imessage-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 8px;
  flex-shrink: 0;
  position: relative;
}

.alerts-page .imessage-header__back {
  position: absolute;
  left: 12px;
  color: #007aff;
  font-size: 18px;
}

.alerts-page .imessage-header__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.alerts-page .imessage-header__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

.alerts-page .imessage-header__name {
  color: white;
  font-size: 11px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

/* SMS conversation area */
.alerts-page .sms-conversation {
  padding: 8px 12px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alerts-page .sms-msg {
  display: flex;
}

.alerts-page .sms-msg--recv { justify-content: flex-start; }
.alerts-page .sms-msg--sent { justify-content: flex-end; }

.alerts-page .sms-bubble {
  max-width: 82%;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.35;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
}

.alerts-page .sms-msg--recv .sms-bubble {
  background: #3a3a3c;
  color: white;
  border-bottom-left-radius: 4px;
}

.alerts-page .sms-msg--sent .sms-bubble {
  background: #007aff;
  color: white;
  border-bottom-right-radius: 4px;
}

.alerts-page .sms-bubble--alert {
  background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
  color: white !important;
  font-weight: 600;
  border-bottom-left-radius: 4px;
}

.alerts-page .sms-forwarded-label {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* iMessage text input bar */
.alerts-page .imessage-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 28px;
  flex-shrink: 0;
}

.alerts-page .imessage-input__plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3a3a3c;
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.alerts-page .imessage-input__field {
  flex: 1;
  height: 32px;
  border-radius: 18px;
  border: 1px solid #3a3a3c;
  background: transparent;
  padding: 0 12px;
  font-size: 13px;
  color: #8e8e93;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  display: flex;
  align-items: center;
  position: relative;
}

.alerts-page .imessage-input__field span {
  color: #8e8e93;
  font-size: 13px;
}

.alerts-page .imessage-input__send {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #007aff;
  display: grid;
  place-items: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}

/* Home indicator */
.alerts-page .iphone-home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #666;
  border-radius: 4px;
}

/* Staggered message animation */
.alerts-page .sms-msg {
  opacity: 0;
  transform: translateY(12px);
  animation: smsSlideIn 0.5s ease forwards;
}

.alerts-page .sms-msg:nth-child(1) { animation-delay: 0.3s; }
.alerts-page .sms-msg:nth-child(2) { animation-delay: 0.8s; }
.alerts-page .sms-msg:nth-child(3) { animation-delay: 1.4s; }
.alerts-page .sms-msg:nth-child(4) { animation-delay: 2.2s; }
.alerts-page .sms-msg:nth-child(5) { animation-delay: 2.8s; }

@keyframes smsSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════
   FEATURE STRIP — inline with dots (matches pro)
   ══════════════════════════════════════════ */
.alerts-page .alerts-hero__feat-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 0;
  max-width: 1080px;
  margin: 0 auto;
  padding: 88px 24px 16px;
}

.alerts-page .alerts-hero__feat-strip span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pro-ink-secondary);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.alerts-page .alerts-hero__feat-strip span i {
  color: var(--pro-brand);
  font-size: 0.85rem;
}

.alerts-page .alerts-hero__feat-strip span + span::before {
  content: '\00b7';
  margin: 0 10px;
  color: var(--pro-ink-tertiary);
  font-weight: 700;
  font-size: 1.1rem;
}

.alerts-page .feat-reveal {
  opacity: 0;
  animation: featFadeIn 0.3s ease forwards;
  animation-delay: var(--feat-delay, 0ms);
}

@keyframes featFadeIn {
  to { opacity: 1; }
}

/* ══════════════════════════════════════════
   SECTION HEADINGS
   ══════════════════════════════════════════ */
.alerts-page .alerts-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.alerts-page .alerts-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pro-brand);
  margin-bottom: 12px;
}

.alerts-page .alerts-section__title {
  font-family: var(--pro-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--pro-ink);
}

.alerts-page .alerts-section__subtitle {
  font-size: 0.95rem;
  color: var(--pro-ink-secondary);
  margin-top: 10px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   FEATURE GRID — matches pro feature cards
   ══════════════════════════════════════════ */
.alerts-page .alerts-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.alerts-page .alerts-feature-card {
  background: var(--pro-surface);
  border: 1px solid var(--pro-rule);
  border-radius: 12px;
  padding: 24px;
}

.alerts-page .alerts-feature-card__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--pro-brand-subtle);
  color: var(--pro-brand);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.alerts-page .alerts-feature-card__title {
  font-family: var(--pro-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--pro-ink);
}

.alerts-page .alerts-feature-card__desc {
  font-size: 0.82rem;
  color: var(--pro-ink-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ══════════════════════════════════════════
   ALERT TYPES GRID
   ══════════════════════════════════════════ */
.alerts-page .alert-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.alerts-page .alert-type-card {
  background: var(--pro-surface);
  border: 1px solid var(--pro-rule);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.alerts-page .alert-type-card:hover {
  border-color: var(--pro-brand);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.alerts-page .alert-type-card__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.alerts-page .alert-type-card__name {
  font-family: var(--pro-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pro-ink);
  margin-bottom: 4px;
}

.alerts-page .alert-type-card__desc {
  font-size: 0.75rem;
  color: var(--pro-ink-tertiary);
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   SAMPLE SMS MESSAGE
   ══════════════════════════════════════════ */
.alerts-page .sample-sms {
  background: var(--pro-surface);
  border: 1px solid var(--pro-rule);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.alerts-page .sample-sms__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--pro-rule);
  background: var(--pro-bg);
}

.alerts-page .sample-sms__sender-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.alerts-page .sample-sms__sender {
  font-family: var(--pro-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pro-ink);
}

.alerts-page .sample-sms__meta {
  font-size: 0.75rem;
  color: var(--pro-ink-tertiary);
}

.alerts-page .sample-sms__body {
  padding: 20px;
  font-family: var(--pro-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--pro-ink);
}

.alerts-page .sample-sms__body p {
  margin: 0 0 12px;
}

.alerts-page .sample-sms__body p:first-child {
  font-weight: 700;
  font-size: 0.95rem;
}

.alerts-page .sample-sms__footer {
  color: var(--pro-ink-tertiary);
  font-size: 0.82rem;
  margin-bottom: 8px !important;
}

.alerts-page .sample-sms__unsub {
  color: var(--pro-ink-tertiary);
  font-size: 0.75rem;
  font-style: italic;
  border-top: 1px solid var(--pro-rule);
  padding-top: 12px;
  margin-bottom: 0 !important;
}

/* ── Severity-coded sample SMS variant (Tornado Warning preview) ── */
.alerts-page .sample-sms__sender-icon--severe {
  background: #dc2626;
  font-size: 0.95rem;
}

.alerts-page .sample-sms__sender-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alerts-page .sample-sms__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 999px;
  align-self: flex-start;
}

.alerts-page .sample-sms__pill--severe {
  background: rgba(220, 38, 38, 0.10);
  color: #b91c1c;
}

.alerts-page .sample-sms__pill--severe i {
  font-size: 0.65rem;
}

.alerts-page .sample-sms__time {
  font-size: 0.72rem;
  color: var(--pro-ink-tertiary);
  margin-left: auto;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.alerts-page .sample-sms__bubble {
  background: #e9eaed;
  border-radius: 18px;
  border-top-left-radius: 4px;
  padding: 12px 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1f2937;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 92%;
}

.alerts-page .sample-sms__delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--pro-ink-tertiary);
  margin-top: 10px;
  padding-left: 4px;
  letter-spacing: 0.02em;
}

.alerts-page .sample-sms__delivery i {
  color: #047857;
  font-size: 0.7rem;
}

/* ══════════════════════════════════════════
   PHONE COLLECTION STEP
   ══════════════════════════════════════════ */
.alerts-page .phone-step {
  background: var(--pro-surface);
  border: 1px solid var(--pro-rule);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.alerts-page .phone-step__title {
  font-family: var(--pro-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--pro-ink);
  margin: 0;
}

.alerts-page .phone-step__desc {
  font-size: 0.92rem;
  color: var(--pro-ink-secondary);
  margin: 6px 0 0;
  line-height: 1.5;
}

.alerts-page .phone-step__header {
  margin-bottom: 28px;
}

.alerts-page .phone-step__field-group {
  margin-bottom: 24px;
}

.alerts-page .phone-step__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pro-ink);
  margin-bottom: 6px;
}

.alerts-page .phone-step__input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--pro-rule);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.alerts-page .phone-step__input-wrap:focus-within {
  border-color: var(--pro-brand);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.alerts-page .phone-step__prefix {
  padding: 12px 14px;
  background: var(--pro-bg);
  color: var(--pro-ink-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  border-right: 1px solid var(--pro-rule);
  flex-shrink: 0;
}

.alerts-page .phone-step__input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--pro-sans);
  color: var(--pro-ink);
  background: transparent;
}

.alerts-page .phone-step__input::placeholder {
  color: var(--pro-ink-tertiary);
}

.alerts-page .phone-step__hint {
  font-size: 0.75rem;
  color: var(--pro-ink-tertiary);
  margin-top: 6px;
}

.alerts-page .phone-step__consent {
  margin-bottom: 4px;
}

.alerts-page .phone-step__consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.alerts-page .phone-step__consent-row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--pro-brand);
  cursor: pointer;
}

.alerts-page .phone-step__consent-text {
  margin: 0;
  font-size: 0.78rem;
  color: var(--pro-ink-secondary);
  line-height: 1.55;
}

.alerts-page .phone-step__consent-text a {
  color: var(--pro-brand);
  text-decoration: underline;
}

.alerts-page .phone-step__optional-sms {
  margin-top: 8px;
  margin-bottom: 24px;
  padding: 18px 18px 14px;
  border: 1px solid var(--pro-rule);
  border-radius: 12px;
  background: var(--pro-bg, #fafbfc);
}

.alerts-page .phone-step__optional-sms-header {
  margin-bottom: 14px;
}

.alerts-page .phone-step__optional-sms-title {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pro-ink);
}

.alerts-page .phone-step__optional-sms-desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--pro-ink-secondary);
  line-height: 1.5;
}

.alerts-page .phone-step__label-meta {
  font-weight: 500;
  color: var(--pro-ink-tertiary);
}

.alerts-page .phone-step__submit {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════════
   COMING SOON
   ══════════════════════════════════════════ */
.alerts-page .alerts-coming-soon {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  border: 1.5px dashed var(--pro-rule);
  border-radius: 12px;
}

.alerts-page .alerts-coming-soon__title {
  font-family: var(--pro-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pro-ink-secondary);
  margin-bottom: 12px;
}

.alerts-page .alerts-coming-soon__items {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.alerts-page .alerts-coming-soon__items span {
  font-size: 0.85rem;
  color: var(--pro-ink-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══════════════════════════════════════════
   FINAL CTA — matches pro
   ══════════════════════════════════════════ */
.alerts-page .alerts-final-cta {
  text-align: center;
  padding: 80px 0;
}

.alerts-page .alerts-final-cta__title {
  font-family: var(--pro-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--pro-ink);
}

.alerts-page .alerts-final-cta__desc {
  font-size: 0.95rem;
  color: var(--pro-ink-secondary);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.alerts-page .alerts-final-cta__checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.alerts-page .alerts-final-cta__check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--pro-ink-tertiary);
}

.alerts-page .alerts-final-cta__check i {
  color: var(--pro-brand);
  font-size: 0.7rem;
}

/* ══════════════════════════════════════════
   CHECKOUT CONTAINER
   ══════════════════════════════════════════ */
.alerts-page .checkout-container {
  max-width: 640px;
  margin: 0 auto;
}

.alerts-page .checkout-container__header {
  margin-bottom: 16px;
}

.alerts-page .checkout-container__header h2 {
  font-family: var(--pro-sans);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}

.alerts-page .checkout-back-btn {
  background: none;
  border: none;
  color: var(--pro-brand);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════ */
.alerts-page .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

.alerts-page .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .alerts-page section { padding: 56px 0; }

  .alerts-page .alerts-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 40px;
  }

  .alerts-page .alerts-hero__text {
    max-width: 100%;
  }

  .alerts-page .alerts-pricing__row {
    justify-content: center;
  }

  .alerts-page .alerts-hero__reassurance {
    justify-content: center;
  }

  .alerts-page .iphone-mockup {
    justify-self: center;
  }

  .alerts-page .iphone-frame {
    width: 240px;
    height: 500px;
  }

  .alerts-page .alerts-hero__feat-strip span {
    font-size: 0.82rem;
  }

  .alerts-page .alert-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alerts-page .alerts-final-cta__checks {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .alerts-page .alerts-pricing__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .alerts-page .alerts-pricing__divider {
    width: 56px;
    height: 1px;
  }

  .alerts-page .alert-types-grid {
    grid-template-columns: 1fr;
  }
}
