:root {
  --bg: #f4fbff;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --text: #102b47;
  --muted: #5e748a;
  --line: rgba(25, 103, 188, 0.1);
  --primary: #1a6fd1;
  --primary-deep: #1454a6;
  --accent: #0fa1e3;
  --accent-soft: #d7effd;
  --shadow: 0 20px 50px rgba(16, 70, 129, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(26, 111, 209, 0.12), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(15, 161, 227, 0.16), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #f1f8ff 46%, #edf6ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 78%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(18, 77, 145, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name,
.brand-tag,
.site-nav a,
.eyebrow,
.button,
.hero-metrics strong {
  letter-spacing: 0.02em;
}

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 2.73rem;
  font-weight: 600;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.86;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 64px 0 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1,
.section-heading h2,
.cta-panel h2,
.hero-card h2 {
  font-family: "Fraunces", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.3rem, 7vw, 6rem);
}

.hero-text,
.info-card p,
.benefit-list p,
.cta-panel p,
.hero-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.cta-panel .cta-actions {
  max-width: 320px;
  justify-content: flex-end;
}

.cta-panel .button {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #135db8 0%, #1a6fd1 45%, #0fa1e3 100%);
  box-shadow: 0 16px 34px rgba(17, 103, 192, 0.22);
}

.button-secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 84, 166, 0.14);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li,
.info-card,
.benefit-list article,
.cta-panel,
.hero-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-metrics li {
  padding: 18px 18px 20px;
  border-radius: 24px;
}

.hero-metrics strong,
.info-card h3,
.benefit-list h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-metrics span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 20px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(232, 245, 255, 0.6)),
    linear-gradient(180deg, rgba(26, 111, 209, 0.08), rgba(15, 161, 227, 0.06));
}

.hero-card-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.75;
}

.hero-card-orbit-one {
  top: 42px;
  right: -18px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(20, 84, 166, 0.12);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}

.hero-card-orbit-two {
  right: 34px;
  bottom: 28px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 161, 227, 0.24), transparent 68%);
}

.hero-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(235, 246, 255, 0.82)),
    linear-gradient(135deg, rgba(26, 111, 209, 0.06), rgba(15, 161, 227, 0.08));
}

.hero-logo {
  width: min(220px, 54%);
  margin-bottom: auto;
  opacity: 0.94;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.trusted-strip {
  overflow: hidden;
  margin: 8px 0 44px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.trusted-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: center;
}

.trusted-strip span {
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: 48px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-panel h2,
.hero-card h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.grid.three-up,
.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.info-card,
.benefit-list article {
  padding: 28px;
  border-radius: 28px;
}

.split {
  align-items: start;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(17, 78, 148, 0.98), rgba(26, 111, 209, 0.96) 58%, rgba(15, 161, 227, 0.9)),
    #0d69c7;
  color: #fff;
}

.cta-panel .eyebrow,
.cta-panel p,
.cta-panel .button-secondary {
  color: rgba(255, 255, 255, 0.88);
}

.cta-panel .button-primary {
  background: #fff;
  color: var(--primary-deep);
}

.cta-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 960px) {
  .hero,
  .grid.three-up,
  .benefit-list,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-card {
    min-height: 380px;
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 60px;
  }

  .hero-card,
  .info-card,
  .benefit-list article,
  .cta-panel,
  .hero-metrics li {
    border-radius: 22px;
  }
}
