:root {
  --primary: #2563eb;
  --secondary: #14b8a6;
  --ink: #182033;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --radius: 18px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
.page { overflow: hidden; }
.hero {
  min-height: auto;
  position: relative;
  padding: clamp(28px, 6vw, 76px) 0;
  background:
    radial-gradient(circle at 78% 28%, color-mix(in srgb, var(--secondary) 18%, transparent), transparent 36%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, white), color-mix(in srgb, var(--secondary) 9%, white));
}
.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 34px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 28px 90px rgba(15, 23, 42, .12);
  backdrop-filter: blur(18px);
}
.hero-copy {
  padding: clamp(8px, 2vw, 22px);
}
.hero-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .12);
}
.hero-media img { width: 100%; height: auto; display: block; }
.brand-row { display: flex; align-items: center; margin-bottom: 24px; min-height: 74px; }
.logo { width: 74px; height: 74px; object-fit: contain; display: block; flex: 0 0 auto; }
.eyebrow { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 0; font-size: .82rem; }
h1 { margin: 0; font-size: clamp(2.25rem, 6vw, 4.35rem); line-height: 1.03; letter-spacing: 0; max-width: 760px; }
.lead { font-size: clamp(1.02rem, 1.8vw, 1.28rem); color: #334155; max-width: 650px; margin: 20px 0 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 30%, transparent);
}
.button.secondary { background: var(--ink); box-shadow: none; }
main { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 64px 0; }
.section { padding: 44px 0; border-bottom: 1px solid var(--line); }
.section:last-child { border-bottom: 0; }
.section h2 { margin: 0 0 16px; font-size: clamp(1.65rem, 4vw, 2.4rem); line-height: 1.15; letter-spacing: 0; }
.section-text { max-width: 820px; color: #334155; font-size: 1.08rem; white-space: pre-line; }
.info-grid, .social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}
.info-card, .social-link {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--soft);
}
.info-label { color: var(--muted); font-size: .85rem; font-weight: 700; margin-bottom: 5px; }
.info-value { white-space: pre-line; overflow-wrap: anywhere; }
.social-link { text-decoration: none; font-weight: 700; background: white; }
.cta {
  margin: 64px 0 0;
  padding: 36px;
  border-radius: 28px;
  background: var(--ink);
  color: white;
}
.cta h2 { color: white; }
.cta p { color: #cbd5e1; margin-top: 0; }
footer {
  border-top: 1px solid var(--line);
  padding: 28px 16px;
  color: var(--muted);
}
.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: var(--muted); text-decoration: none; }
@media (min-width: 760px) {
  .hero-inner { grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr); }
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}