/* Highlight for hero statement (matches 'your Business' style) */
.hero__highlight {
  color: #8888ff;
  font-weight: 800;
  letter-spacing: -0.01em;
}
/* Coming soon — mirrors aiAssist portal (Inter, slate-800, indigo) */
:root {
  --nav-bg: #1e293b;
  --page-bg: #f8fafc;
  --text: #1f2937;
  --muted: #64748b;
  --accent: #818cf8;
  --accent-strong: #4f46e5;
  --card: #ffffff;
  --ring: rgba(79, 70, 229, 0.35);
}

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

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  background: var(--nav-bg);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  text-decoration: none;
}

.logo span.accent {
  color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 8vw, 5rem) 1rem 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(129, 140, 248, 0.18), transparent 55%),
    linear-gradient(180deg, #f1f5f9 0%, var(--page-bg) 45%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.15;
}

.hero h2.hero__statement {
  margin: 0 auto 1.5rem;
  max-width: 40.625rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.hero .hero__copy {
  margin: 0 auto 2.5rem;
  max-width: 40.625rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
}

.hero .lede {
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

.hero .lede + .lede {
  margin-bottom: 2rem;
}

.hero--tall .hero__inner {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .signoff {
  margin: 0 auto 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  font-style: normal;
}

.hero .meta-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent-strong);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.hero .meta-link:hover {
  color: #4338ca;
  border-bottom-color: rgba(67, 56, 202, 0.35);
}

.card {
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -2px rgba(0, 0, 0, 0.04);
  padding: 1.75rem;
  text-align: left;
  border: 1px solid #e2e8f0;
}

.card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.card .hint {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font: inherit;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px var(--ring);
}

.field textarea {
  min-height: 5rem;
  resize: vertical;
}

.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: #4f46e5;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover:not(:disabled) {
  background: #4338ca;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.06);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  display: none;
}

.feedback.is-visible {
  display: block;
}

.feedback--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.feedback--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.site-footer {
  margin-top: auto;
  background: var(--nav-bg);
  padding: 2rem 1rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout main {
  flex: 1;
}

@media (min-width: 640px) {
  .site-header__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .card {
    padding: 2rem;
  }
}
