:root { --primary: #1e66f5; --primary-hover: #164bd6; --text: #111827; --muted: #6b7280; --bg: #ffffff; --bg-alt: #f7f9fc; --border: #e5e7eb; }

* { box-sizing: border-box; }
section { padding: 3.5rem 0; }
body { color: var(--text); background: var(--bg); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1rem; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.75rem 0; color: var(--text); }
.lead { font-size: 1.1rem; color: var(--muted); margin: 0.5rem 0 1.25rem; }
.muted { color: var(--muted); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem 1.25rem; border-radius: 10px; text-decoration: none; font-weight: 600; transition: background-color .2s ease, box-shadow .2s ease; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 16px rgba(30,102,245,.18); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 8px 22px rgba(22,75,214,.22); }

/* Hero */
.hero { padding-top: 4.5rem; background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 2rem; }
.hero-media img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 10px 30px rgba(2,12,27,.08); }
.hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.small-note { font-size: 0.9rem; }

/* Features */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.feature { padding: 1.25rem; border: 1px solid var(--border); border-radius: 12px; background: #fff; box-shadow: 0 6px 16px rgba(2,12,27,.03); }
.feature p { color: var(--muted); margin: 0; }

/* CTA band */
.cta-band { background: var(--bg-alt); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cta-inner h2 { margin-bottom: 0; }

/* Form section */
.form-section { background: #fff; }
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.form-copy p { color: var(--muted); }
.form-wrap { width: 100%; }

.signup-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; padding: 1rem; border: 1px solid var(--border); border-radius: 12px; background: #ffffff; box-shadow: 0 6px 18px rgba(2,12,27,.04); }
.signup-form input { width: 100%; padding: 0.85rem 0.9rem; border: 1px solid var(--border); border-radius: 10px; font-size: 1rem; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.signup-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,102,245,.12); }
.signup-form button { grid-column: span 2; padding: 0.95rem 1.2rem; background: var(--primary); border: none; color: #fff; border-radius: 10px; font-weight: 700; cursor: pointer; transition: background-color .2s ease, box-shadow .2s ease; position: relative; color: transparent; }
.signup-form button:hover { background: var(--primary-hover); box-shadow: 0 8px 22px rgba(22,75,214,.22); }
/* Visually adapt label for product without changing HTML */
.signup-form button::after { content: 'Get alerts'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; }

.privacy-note { margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted); text-align: center; }

/* Footer */
.mini-footer { padding: 1.5rem 0 2.25rem; border-top: 1px solid var(--border); background: #fff; }
.brandline { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; }
.brand-text { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; color: var(--muted); }
.brand-email { color: var(--primary); text-decoration: none; font-weight: 600; }
.brand-email:hover { text-decoration: underline; }

/* Exact required styles for form-status */
.form-status { margin-top: 1rem; padding: 0.75rem; border-radius: 6px; font-weight: 500; text-align: center; }
.form-status.success { background-color: #e6ffed; color: #1e7e34; border: 1px solid #28a745; }
.form-status.error { background-color: #ffe6e6; color: #a80000; border: 1px solid #dc3545; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .form-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 2.5rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .signup-form { grid-template-columns: 1fr; }
  .signup-form button { grid-column: span 1; }
}