:root {
  --sgr-navy: #071f46;
  --sgr-blue: #3B4FEA;
  --sgr-blue-2: #2746a8;
  --sgr-soft-blue: #7C8CF8;
  --sgr-cyan: #14a6b8;
  --sgr-green: #258a50;
  --sgr-gold: #d99c12;
  --sgr-slate: #334155;
  --sgr-muted: #64748b;
  --sgr-line: #dbe3ef;
  --sgr-bg: #f6f8fc;
  --sgr-white: #ffffff;
  --sgr-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  --sgr-radius: 18px;
  --sgr-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #102033;
  background: var(--sgr-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: var(--sgr-blue-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.sgr-container {
  width: min(var(--sgr-max), calc(100% - 40px));
  margin: 0 auto;
}

.sgr-skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: var(--sgr-white);
  padding: 10px 14px;
  border: 2px solid var(--sgr-blue);
}
.sgr-skip-link:focus { left: 10px; }

.sgr-topbar {
  background: var(--sgr-navy);
  color: #d7e4ff;
  font-size: 0.9rem;
}
.sgr-topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.sgr-topbar strong { color: #fff; }

.sgr-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 227, 239, 0.9);
}
.sgr-header-inner {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}
.sgr-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sgr-navy);
}
.sgr-brand:hover { text-decoration: none; }
.sgr-brand-logo {
  width: auto;
  height: 54px;
  max-width: min(100%, 420px);
}
.sgr-logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, var(--sgr-blue), var(--sgr-navy));
  box-shadow: 0 12px 24px rgba(59, 79, 234, 0.25);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.sgr-brand-title {
  display: block;
  font-size: 1.2rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.sgr-brand-subtitle {
  display: block;
  color: var(--sgr-muted);
  font-size: 0.82rem;
  margin-top: 3px;
}

.sgr-menu {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sgr-menu a {
  color: var(--sgr-slate);
  font-weight: 650;
  font-size: 0.95rem;
}
.sgr-menu a:hover { color: var(--sgr-blue); text-decoration: none; }
.sgr-menu-toggle {
  display: none;
  border: 1px solid var(--sgr-line);
  border-radius: 12px;
  background: white;
  padding: 10px 12px;
  font-weight: 700;
}

.sgr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.sgr-button:hover { text-decoration: none; transform: translateY(-1px); }
.sgr-button-primary {
  background: linear-gradient(135deg, var(--sgr-blue), var(--sgr-blue-2));
  color: white;
  box-shadow: 0 14px 30px rgba(59, 79, 234, 0.25);
}
.sgr-button-secondary {
  background: white;
  color: var(--sgr-navy);
  border-color: var(--sgr-line);
}
.sgr-button-secondary:hover { box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08); }

.sgr-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(124, 140, 248, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fd 100%);
  border-bottom: 1px solid var(--sgr-line);
}
.sgr-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 76px 0 64px;
}
.sgr-eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 79, 234, 0.08);
  color: var(--sgr-blue-2);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.sgr-hero h1 {
  margin: 0 0 18px;
  color: var(--sgr-navy);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.sgr-hero-lede {
  font-size: 1.17rem;
  color: var(--sgr-slate);
  max-width: 650px;
  margin: 0 0 28px;
}
.sgr-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.sgr-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sgr-proof-row li {
  border: 1px solid var(--sgr-line);
  background: rgba(255,255,255,0.72);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--sgr-slate);
  font-weight: 700;
  font-size: 0.88rem;
}
.sgr-hero-card {
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 24px;
  padding: 12px;
  background: rgba(255,255,255,0.8);
  box-shadow: var(--sgr-shadow);
}
.sgr-hero-card img {
  border-radius: 18px;
  border: 1px solid rgba(219, 227, 239, 0.9);
}
.sgr-hero-caption {
  margin: 12px 6px 2px;
  color: var(--sgr-muted);
  font-size: 0.92rem;
}

.sgr-section { padding: 78px 0; }
.sgr-section-tight { padding: 54px 0; }
.sgr-section-white { background: #fff; }
.sgr-section-navy {
  background: linear-gradient(140deg, #071f46, #0b3470 62%, #102a5e);
  color: white;
}
.sgr-section-header {
  max-width: 780px;
  margin-bottom: 34px;
}
.sgr-section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.sgr-section-kicker {
  color: var(--sgr-blue-2);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 9px;
}
.sgr-section-navy .sgr-section-kicker { color: #b7c3ff; }
.sgr-section h2 {
  color: var(--sgr-navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 14px;
}
.sgr-section-navy h2 { color: white; }
.sgr-section-header p {
  margin: 0;
  color: var(--sgr-muted);
  font-size: 1.05rem;
}
.sgr-section-navy .sgr-section-header p { color: #d9e5ff; }

.sgr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sgr-card {
  background: white;
  border: 1px solid var(--sgr-line);
  border-radius: var(--sgr-radius);
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.sgr-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(59, 79, 234, 0.09);
  color: var(--sgr-blue);
  font-weight: 900;
  margin-bottom: 16px;
}
.sgr-card h3 {
  margin: 0 0 8px;
  color: var(--sgr-navy);
  letter-spacing: -0.02em;
  font-size: 1.12rem;
}
.sgr-card p { margin: 0; color: var(--sgr-muted); }

.sgr-lifecycle {
  background: white;
  border: 1px solid var(--sgr-line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}
.sgr-lifecycle-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sgr-lifecycle-steps li {
  position: relative;
  border: 1px solid var(--sgr-line);
  border-radius: 16px;
  padding: 18px 12px;
  min-height: 150px;
  background: #fbfdff;
}
.sgr-step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--sgr-blue);
  color: white;
  font-weight: 900;
  margin-bottom: 12px;
}
.sgr-lifecycle-steps h3 {
  font-size: 0.95rem;
  margin: 0 0 6px;
  color: var(--sgr-navy);
}
.sgr-lifecycle-steps p { margin: 0; color: var(--sgr-muted); font-size: 0.88rem; }

.sgr-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: center;
}
.sgr-check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.sgr-check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--sgr-slate);
}
.sgr-check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(37, 138, 80, 0.1);
  color: var(--sgr-green);
  font-weight: 900;
}
.sgr-panel {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  padding: 28px;
}
.sgr-panel h3 { margin-top: 0; font-size: 1.35rem; }
.sgr-section-navy .sgr-check-list li { color: #dce7ff; }

.sgr-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.sgr-fit-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--sgr-line);
  border-radius: var(--sgr-radius);
}
.sgr-fit-card strong { color: var(--sgr-navy); display: block; margin-bottom: 4px; }
.sgr-fit-card span { color: var(--sgr-muted); }
.sgr-fit-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--sgr-blue);
  flex: 0 0 auto;
  margin-top: 6px;
}

.sgr-cta {
  border-radius: 28px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #0b2b5a, #3B4FEA);
  color: white;
  box-shadow: var(--sgr-shadow);
}
.sgr-cta h2 { color: white; margin: 0 0 8px; }
.sgr-cta p { color: #e6edff; margin: 0; max-width: 760px; }
.sgr-cta .sgr-button { background: white; color: var(--sgr-navy); }

.sgr-footer {
  background: #061936;
  color: #cbd8f0;
  padding: 42px 0;
}
.sgr-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
}
.sgr-footer h2, .sgr-footer h3 { color: white; margin-top: 0; }
.sgr-footer-logo {
  width: auto;
  height: 62px;
  max-width: min(100%, 360px);
  margin-bottom: 12px;
}
.sgr-footer a { color: #dbe7ff; }
.sgr-small { font-size: 0.88rem; color: #a9b7cf; }

.sgr-page-main {
  background: white;
  padding: 70px 0;
}
.sgr-content {
  max-width: 850px;
  margin: 0 auto;
  background: white;
}
.sgr-content h1, .sgr-content h2, .sgr-content h3 { color: var(--sgr-navy); letter-spacing: -0.02em; }
.sgr-content h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }
.sgr-content p, .sgr-content li { color: var(--sgr-slate); }

@media (max-width: 980px) {
  .sgr-hero-grid, .sgr-two-col, .sgr-cta { grid-template-columns: 1fr; }
  .sgr-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sgr-lifecycle-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sgr-header-inner { min-height: 72px; }
  .sgr-menu-toggle { display: inline-flex; }
  .sgr-nav { position: relative; }
  .sgr-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 52px;
    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--sgr-line);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }
  .sgr-menu.is-open { display: flex; }
  .sgr-menu li { width: 100%; }
  .sgr-menu a { display: block; padding: 12px; }
}

@media (max-width: 720px) {
  .sgr-brand-logo { height: 42px; max-width: 260px; }
  .sgr-footer-logo { height: 48px; max-width: 260px; }
  .sgr-container { width: min(100% - 28px, var(--sgr-max)); }
  .sgr-topbar-inner { flex-direction: column; align-items: flex-start; padding: 8px 0; gap: 4px; }
  .sgr-hero-grid { padding: 52px 0 46px; }
  .sgr-card-grid, .sgr-fit-grid, .sgr-footer-grid { grid-template-columns: 1fr; }
  .sgr-lifecycle-steps { grid-template-columns: 1fr; }
  .sgr-cta { padding: 28px; }
  .sgr-section { padding: 58px 0; }
}
