:root {
  color-scheme: light;
  --ink: #132033;
  --muted: #5b6678;
  --soft: #eef4f7;
  --paper: #ffffff;
  --line: #d8e2e7;
  --blue: #0b6fb3;
  --blue-dark: #084f81;
  --green: #1f8a70;
  --yellow: #f0b429;
  --rose: #be4b61;
  --shadow: 0 18px 50px rgba(19, 32, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(19, 32, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 32, 51, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 226, 231, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 238px;
  height: auto;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
}

.nav-cta:hover {
  color: #fff;
  background: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 515px;
  color: #fff;
  background: #102237;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(0.95);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 28, 45, 0.98), rgba(12, 28, 45, 0.72) 52%, rgba(12, 28, 45, 0.4)),
    linear-gradient(0deg, rgba(12, 28, 45, 0.35), transparent 52%);
}

.hero .container {
  position: relative;
  z-index: 1;
  min-height: 515px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 56px;
  align-items: center;
  padding: 42px 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #cfe9f7;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: 4.75rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1;
}

.button.primary {
  color: var(--ink);
  background: #fff;
}

.button.primary:hover {
  background: #eef8fc;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel-title {
  margin-bottom: 2px;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
}

.hero-panel-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel-row i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.hero-panel-row strong {
  display: block;
  color: #fff;
  line-height: 1.2;
}

.hero-panel-row span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.product-jump {
  position: relative;
  z-index: 3;
  margin-top: 24px;
  padding-bottom: 44px;
}

.product-jump-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(216, 226, 231, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.product-jump-grid a {
  display: grid;
  gap: 4px;
  min-height: 90px;
  padding: 14px;
  border-radius: 8px;
  background: #f7fafc;
}

.product-jump-grid a:hover {
  background: #e8f4fb;
}

.product-jump-grid strong {
  color: var(--ink);
  line-height: 1.15;
}

.product-jump-grid span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: #fff;
  background: #102237;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.trust-item {
  padding: 24px;
  background: #102237;
}

.trust-item strong {
  display: block;
  color: var(--yellow);
  font-size: 1.7rem;
  line-height: 1;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: 3.4rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.tool-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(19, 32, 51, 0.06);
}

.tool-card.primary-tool {
  grid-column: span 2;
}

.tool-card.extra-tool {
  grid-column: span 6;
  min-height: 310px;
}

.tool-card:hover {
  border-color: rgba(11, 111, 179, 0.48);
  transform: translateY(-2px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.tool-icon,
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
}

.tool-card:nth-child(2) .tool-icon,
.feature-card:nth-child(2n) .feature-icon {
  background: var(--green);
}

.tool-card:nth-child(3) .tool-icon,
.feature-card:nth-child(3n) .feature-icon {
  background: var(--rose);
}

.tool-card:nth-child(4) .tool-icon {
  background: #6741d9;
}

.tool-card:nth-child(5) .tool-icon {
  background: #d9480f;
}

.tool-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.tool-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 22px;
}

.tag-list span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #e8f4fb;
  font-size: 0.78rem;
  font-weight: 800;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-card,
.text-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-card h3,
.text-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.feature-card p,
.text-card p,
.rich-text p,
.rich-text li {
  color: var(--muted);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quote-band {
  padding: 58px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 111, 179, 0.92), rgba(31, 138, 112, 0.92)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80") center / cover;
}

.quote-band h2 {
  max-width: 900px;
  color: #fff;
}

.quote-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta {
  padding: 70px 0;
  color: #fff;
  background: #102237;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-logo {
  width: 250px;
  max-width: 100%;
  margin-bottom: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 34px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 12px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.page-hero {
  padding: 90px 0 56px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 34, 55, 0.95), rgba(16, 34, 55, 0.74)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?w=1800&q=80") center / cover;
}

.page-hero h1 {
  max-width: 920px;
  font-size: 5rem;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.tool-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 42px;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 98px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19, 32, 51, 0.08);
}

.side-panel ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.side-panel li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.rich-text h2 {
  margin-top: 42px;
  font-size: 2.35rem;
}

.rich-text ul {
  padding-left: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mobile-toggle {
  display: none;
}

@media (max-width: 1080px) {
  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-card.primary-tool,
  .tool-card.extra-tool {
    grid-column: auto;
  }

  .hero .container,
  .split,
  .tool-page-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 66px;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .brand-logo {
    width: 174px;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero,
  .hero .container {
    min-height: auto;
  }

  .hero .container {
    padding: 44px 0 28px;
  }

  h1 {
    font-size: 2.62rem;
    line-height: 1;
  }

  .hero-lede {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .hero-pills {
    margin-bottom: 20px;
  }

  .hero-panel {
    display: none;
  }

  h2 {
    font-size: 2.25rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .rich-text h2 {
    font-size: 1.9rem;
  }

  .section {
    padding: 64px 0;
  }

  .trust-grid,
  .product-jump-grid,
  .tool-grid,
  .feature-grid,
  .workflow,
  .audience-grid,
  .faq,
  .footer-grid,
  .content-grid,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .quote-band {
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
