:root {
  --bg: #fbfbfd;
  --surface: #ffffff;
  --surface-2: #f3f4f6;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.1);

  --brand: #0b1f35;
  --brand-2: #144a70;

  --accent: #e11d48;
  --accent-2: #be123c;
  --accent-soft: rgba(225, 29, 72, 0.12);

  --shadow: 0 14px 40px rgba(2, 6, 23, 0.1);
  --radius: 18px;

  --container: 1180px;
  --gutter: 20px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(225, 29, 72, 0.10), transparent 60%),
    radial-gradient(900px 420px at 85% 0%, rgba(20, 74, 112, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--bg));
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sp-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(190, 18, 60, 0.25);
}

.btn-primary:hover { filter: brightness(1.03); text-decoration: none; }

.btn-outline {
  background: rgba(255, 255, 255, 0.70);
  border-color: rgba(15, 23, 42, 0.18);
  color: var(--brand);
}

.btn-outline:hover { background: #ffffff; text-decoration: none; }

.sp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.sp-header::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #fb7185, var(--brand-2));
}

.sp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.sp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.sp-brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
}

.sp-brand-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.sp-brand-name {
  font-weight: 1000;
  letter-spacing: -0.03em;
  color: var(--brand);
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
}

.sp-brand-sub {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
  font-weight: 750;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-menu {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.04);
  font-weight: 950;
  color: var(--brand);
  cursor: pointer;
}

.sp-menu:focus-visible {
  outline: 3px solid rgba(225, 29, 72, 0.35);
  outline-offset: 2px;
}

.sp-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sp-nav a:not(.btn) {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.78);
  padding: 10px 10px;
  border-radius: 14px;
  text-decoration: none;
}

.sp-nav a[data-active="true"] {
  background: rgba(2, 6, 23, 0.06);
  color: var(--brand);
}

.sp-nav .sp-nav-call { margin-left: 6px; }

.sp-hero { padding: 52px 0 22px; }

.sp-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.62);
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 999px;
}

.sp-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--brand);
}

.sp-lead {
  margin: 14px 0 0;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.78);
  max-width: 60ch;
}

.sp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.sp-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.74);
}

.sp-hero-media { position: relative; }

.sp-hero-media img {
  width: 100%;
  aspect-ratio: 16/12;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.sp-hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 18px;
  padding: 12px 12px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sp-hero-badge-title { font-weight: 1000; letter-spacing: -0.02em; color: var(--brand); }

.sp-hero-badge a { font-weight: 950; color: var(--brand-2); text-decoration: none; }
.sp-hero-badge a:hover { text-decoration: underline; }

.sp-section { padding: 52px 0; }

.sp-section--tint {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sp-section-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }

.sp-section-head h2 { margin: 0; font-size: 32px; letter-spacing: -0.03em; color: var(--brand); }

.sp-subhead { margin: 0; color: rgba(15, 23, 42, 0.70); max-width: 70ch; }

.sp-grid { display: grid; gap: 16px; }
.sp-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sp-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.sp-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
  overflow: hidden;
}

.sp-card-media {
  background: rgba(2, 6, 23, 0.04);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.sp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(20, 74, 112, 0.9));
}

.sp-card-body { padding: 16px; }

.sp-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-card-title { margin: 12px 0 0; font-size: 18px; letter-spacing: -0.02em; }
.sp-card-title a { color: var(--brand); text-decoration: none; }
.sp-card-title a:hover { text-decoration: underline; }
.sp-card-text { margin: 10px 0 0; color: rgba(15, 23, 42, 0.76); }

.content { max-width: 72ch; }
.content h2 { margin: 0 0 12px; font-size: 32px; letter-spacing: -0.03em; color: var(--brand); }
.content h3 { margin-top: 22px; margin-bottom: 10px; letter-spacing: -0.02em; color: var(--brand); }
.content p { color: rgba(15, 23, 42, 0.82); }
.content ul, .content ol { padding-left: 18px; }
.content li { margin: 6px 0; color: rgba(15, 23, 42, 0.82); }

.sp-post-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 14px; }
.sp-post-date { color: rgba(15, 23, 42, 0.7); font-weight: 750; font-size: 13px; }

.sp-prose { max-width: 76ch; }
.sp-prose h2 { margin: 26px 0 10px; font-size: 26px; letter-spacing: -0.02em; color: var(--brand); }
.sp-prose h3 { margin: 22px 0 8px; font-size: 20px; letter-spacing: -0.02em; color: var(--brand); }
.sp-prose h4 { margin: 18px 0 6px; font-size: 17px; letter-spacing: -0.01em; color: var(--brand); }
.sp-prose h5 { margin: 16px 0 6px; font-size: 15px; letter-spacing: -0.01em; color: var(--brand); }
.sp-prose p { color: rgba(15, 23, 42, 0.82); margin: 0 0 14px; }
.sp-prose ul, .sp-prose ol { padding-left: 18px; margin: 0 0 14px; }
.sp-prose li { margin: 6px 0; color: rgba(15, 23, 42, 0.82); }
.sp-prose li p { margin: 0; }
.sp-prose a { color: var(--brand-2); }
.sp-prose blockquote {
  margin: 18px 0;
  padding: 14px 14px;
  border-left: 4px solid var(--accent);
  background: rgba(225, 29, 72, 0.06);
  border-radius: 14px;
}

.sp-post-figure { margin: 18px 0 20px; }
.sp-post-figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
}
.sp-post-figure figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.72);
}

.sp-quote-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; }

.sp-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.sp-panel h3 { margin: 0; font-size: 20px; letter-spacing: -0.02em; color: var(--brand); }

.sp-form { display: grid; gap: 12px; margin-top: 14px; }

label { display: grid; gap: 6px; font-weight: 850; color: rgba(15, 23, 42, 0.85); font-size: 14px; }

input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #ffffff;
  font: inherit;
}

textarea { min-height: 120px; resize: vertical; }

.form-success { color: rgba(11, 31, 53, 0.95); font-weight: 950; }

.sp-contact-list { display: grid; gap: 10px; color: rgba(15, 23, 42, 0.82); }

.sp-footer {
  background: #0a1220;
  color: rgba(255, 255, 255, 0.86);
  padding: 44px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-footer a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.sp-footer-grid { display: grid; gap: 18px; grid-template-columns: 1.6fr 1fr 1fr 1fr; }

.sp-footer h3 { margin: 0 0 10px; font-size: 16px; letter-spacing: -0.01em; }
.sp-footer ul { margin: 0; padding-left: 18px; color: rgba(255, 255, 255, 0.82); }
.sp-footer small { display: block; margin-top: 12px; color: rgba(255, 255, 255, 0.65); }

@media (max-width: 980px) {
  .sp-hero-inner { grid-template-columns: 1fr; }
  .sp-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sp-quote-grid { grid-template-columns: 1fr; }
  .sp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .sp-menu { display: inline-flex; }
  .sp-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }
  .sp-nav[data-open="true"] { display: flex; }
  .sp-nav a:not(.btn) { padding: 12px 12px; }
  .sp-grid-2, .sp-grid-3 { grid-template-columns: 1fr; }
  .sp-brand-sub { display: none; }
}