:root {
  --primary: #000826;
  --primary-soft: #001d56;
  --secondary: #00677c;
  --cyan: #17d5fd;
  --surface: #f7fafc;
  --surface-low: #f1f4f6;
  --surface-card: #ffffff;
  --ink: #181c1e;
  --muted: #58636b;
  --green: #327a6d;
  --coral: #ca6f5c;
  --shadow: 0 28px 60px rgba(0, 8, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.top-note {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  padding: 0.48rem 1rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 252, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 50px rgba(0, 8, 38, 0.05);
}

.nav-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-logo {
  width: 152px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: rgba(0, 29, 86, 0.74);
}

.desktop-nav a,
.nav-dropdown-trigger {
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.nav-dropdown-trigger[aria-current="page"] {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(0, 29, 86, 0.74);
  font-weight: 800;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 0.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(0, 8, 38, 0.14);
  padding: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-low);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-link-quiet {
  color: rgba(0, 29, 86, 0.74);
  font-weight: 800;
  white-space: nowrap;
}

.nav-link-quiet:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--surface-card);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  color: var(--primary);
}

.mobile-menu {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 1rem;
}

.mobile-menu > a {
  display: block;
  padding: 0.78rem 0;
  color: var(--primary-soft);
}

.mobile-menu .mobile-call-button {
  display: inline-flex;
  margin: 0.8rem 0 0.4rem;
}

.mobile-menu .mobile-sub-link {
  padding-left: 1rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  padding: 0.78rem 1.1rem;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  box-shadow: 0 18px 34px rgba(0, 29, 86, 0.18);
}

.btn-phone {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.82);
}

.btn-call-large {
  min-height: 56px;
  padding: 0.98rem 1.45rem;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 20px 38px rgba(0, 29, 86, 0.16);
}

.btn-phone[aria-disabled="true"] {
  cursor: default;
  opacity: 0.82;
}

.btn-secondary {
  color: var(--primary);
  background: white;
}

.btn-quiet {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.74);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

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

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--surface);
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(247, 250, 252, 0.96), rgba(247, 250, 252, 0.78) 48%, rgba(247, 250, 252, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.68fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 0.48rem 0.7rem;
  font-family: Manrope, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  color: var(--primary);
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 5.4vw, 5.1rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.9rem);
}

h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.lead {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-copy {
  display: grid;
  gap: 1.45rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(18px);
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.conversion-panel {
  display: grid;
  gap: 1rem;
}

.conversion-panel h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.conversion-list {
  display: grid;
  gap: 0.75rem;
  margin: 0.4rem 0;
}

.conversion-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.conversion-list strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--primary);
  background: rgba(23, 213, 253, 0.2);
  font-family: Manrope, sans-serif;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.proof-row span {
  border-radius: 8px;
  padding: 0.48rem 0.68rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

.service-strip {
  background: white;
  box-shadow: 0 18px 46px rgba(0, 8, 38, 0.04);
}

.service-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-strip-inner strong {
  color: var(--primary);
}

.service-strip-inner span {
  white-space: nowrap;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.stat {
  background: var(--surface-low);
  border-radius: 8px;
  padding: 1rem;
}

.stat strong {
  display: block;
  font-family: Manrope, sans-serif;
  color: var(--primary);
  font-size: 1.45rem;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.conversion-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.issue-grid article {
  background: white;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 18px 46px rgba(0, 8, 38, 0.06);
}

.issue-grid h3 {
  font-size: 1.15rem;
}

.issue-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.section-head.split {
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  align-items: end;
}

.card,
.product-card,
.quote-card {
  background: var(--surface-card);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.card p,
.product-card p,
.quote-card p {
  color: var(--muted);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(23, 213, 253, 0.28), rgba(50, 122, 109, 0.16));
  margin-bottom: 1rem;
}

.product-card {
  overflow: hidden;
  display: grid;
}

.product-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.product-card-body {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.blog-index-hero {
  background: linear-gradient(180deg, var(--surface), var(--surface-low));
}

.blog-card {
  overflow: hidden;
  display: grid;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card-featured {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
}

.blog-card-featured img {
  height: 100%;
  min-height: 100%;
}

.blog-card-body {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.blog-card-meta,
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-card-link {
  display: inline-flex;
  width: fit-content;
  color: var(--primary);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.catalog-hero {
  background: linear-gradient(135deg, var(--surface), var(--surface-low));
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.catalog-summary h2 {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.catalog-jump {
  position: sticky;
  top: 72px;
  z-index: 20;
  box-shadow: 0 18px 42px rgba(0, 8, 38, 0.04);
}

.catalog-jump-inner {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.85rem 0;
}

.catalog-jump a {
  flex: 0 0 auto;
  border-radius: 8px;
  background: white;
  color: var(--primary);
  font-weight: 800;
  padding: 0.72rem 0.95rem;
}

.catalog-list {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
}

.catalog-group {
  display: grid;
  gap: 1.4rem;
  scroll-margin-top: 150px;
}

.catalog-group-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 1.5rem;
  align-items: end;
}

.catalog-group-head p {
  max-width: 760px;
  color: var(--muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-card {
  display: grid;
  gap: 1rem;
  align-content: space-between;
  min-height: 100%;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.catalog-card h3 {
  margin-top: 0.85rem;
}

.catalog-card p {
  color: var(--muted);
}

.catalog-card-link {
  display: inline-flex;
  width: fit-content;
  color: var(--primary);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 0.65rem;
  color: var(--muted);
}

.list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.58rem;
  border-radius: 99px;
  background: var(--cyan);
}

.feature-band {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
}

.feature-band h2,
.feature-band h3,
.feature-band p {
  color: white;
}

.feature-band p {
  opacity: 0.78;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.media-split img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-hero {
  background: linear-gradient(135deg, rgba(0, 8, 38, 0.04), rgba(23, 213, 253, 0.08));
}

.legal-hero {
  background: linear-gradient(135deg, rgba(0, 8, 38, 0.05), rgba(23, 213, 253, 0.12));
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.legal-hero-grid img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-shell {
  display: grid;
  gap: 1.5rem;
}

.legal-section {
  display: grid;
  gap: 1.25rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.legal-section-head {
  display: grid;
  gap: 0.65rem;
}

.legal-section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.legal-card {
  display: grid;
  gap: 0.8rem;
  border-radius: 8px;
  background: var(--surface-low);
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

.legal-card h3,
.legal-disclaimer h3 {
  margin: 0;
}

.legal-bullet-group {
  display: grid;
  gap: 0.9rem;
}

.legal-bullet-item {
  display: grid;
  gap: 0.35rem;
}

.legal-bullet-item p,
.legal-card p,
.legal-section p {
  margin: 0;
}

.legal-list {
  margin-top: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 8, 38, 0.08);
}

.legal-table th {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  font-family: Manrope, sans-serif;
  font-weight: 800;
}

.legal-table td {
  color: var(--ink);
  background: white;
}

.legal-disclaimer {
  display: grid;
  gap: 0.8rem;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

.legal-disclaimer p {
  margin: 0;
  color: white;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.blog-hero-grid img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.article-shell {
  display: grid;
  gap: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.article-highlight {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(23, 213, 253, 0.12), rgba(0, 29, 86, 0.04));
  padding: 1.35rem;
}

.article-highlight h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.article-section {
  display: grid;
  gap: 1rem;
  scroll-margin-top: 110px;
}

.article-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.article-section p {
  margin: 0;
  color: var(--ink);
  font-size: 1.03rem;
}

.article-section a {
  color: var(--primary-soft);
  text-decoration: underline;
  text-decoration-color: rgba(23, 213, 253, 0.8);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-list {
  margin-top: 0;
}

.article-sidebar {
  display: grid;
  gap: 1rem;
}

.toc-card {
  position: sticky;
  top: 96px;
}

.toc-card ul {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.toc-card a {
  color: var(--primary-soft);
  font-weight: 700;
}

.toc-card a:hover {
  color: var(--primary);
}

.sidebar-cta h3 {
  font-size: 1.5rem;
}

.data-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.4rem;
  border-radius: 8px;
  padding: 0.42rem 0.65rem;
  color: var(--primary);
  background: rgba(23, 213, 253, 0.2);
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: 4.2rem;
}

.step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 1.25rem;
  left: 1.35rem;
  color: rgba(0, 29, 86, 0.18);
  font-family: Manrope, sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:nth-child(2) {
  margin-top: 3rem;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq details {
  background: white;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0, 8, 38, 0.05);
  padding: 1.1rem 1.25rem;
}

.faq summary {
  cursor: pointer;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  color: var(--primary);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(340px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.quote-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-low));
}

.quote-benefits {
  margin-bottom: 1.25rem;
}

.callout-card {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
  padding: 1.1rem 1.2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(23, 213, 253, 0.16), rgba(50, 122, 109, 0.1));
  box-shadow: var(--shadow);
}

.callout-card strong {
  color: var(--primary);
  font-family: Manrope, sans-serif;
  font-size: 1.1rem;
}

.callout-card p {
  margin: 0;
}

.callout-card .btn {
  justify-self: start;
}

.quote-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--primary);
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--surface-low);
  padding: 0.9rem 1rem;
  color: var(--ink);
  outline: 2px solid transparent;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: white;
  outline-color: rgba(23, 213, 253, 0.42);
  box-shadow: 0 0 0 5px rgba(23, 213, 253, 0.12);
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 1.4rem;
  color: var(--primary);
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #9a2d21;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.footer {
  color: white;
  background: var(--primary);
  padding: 4rem 0 2rem;
}

.footer h2,
.footer h3,
.footer p,
.footer a {
  color: white;
}

.footer p,
.footer a {
  opacity: 0.78;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 2rem;
}

.footer ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.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;
}

@media (max-width: 940px) {
  .desktop-nav,
  .nav-link-quiet,
  .nav-actions .btn-phone {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-menu[data-open="true"] {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .hero-content,
  .quote-grid,
  .media-split,
  .blog-card-featured,
  .legal-hero-grid,
  .blog-hero-grid,
  .article-layout,
  .section-head.split,
  .conversion-split,
  .catalog-hero-grid,
  .catalog-group-head {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .toc-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .top-note {
    font-size: 0.78rem;
  }

  .nav-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 126px;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  .stat-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .footer-grid,
  .gallery,
  .issue-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-jump {
    top: 68px;
  }

  .catalog-group-head .btn {
    width: 100%;
  }

  .gallery img,
  .gallery img:nth-child(2) {
    height: 260px;
    margin-top: 0;
  }

  .blog-card img,
  .blog-card-featured img,
  .blog-hero-grid img,
  .media-split img,
  .legal-hero-grid img {
    min-height: 310px;
    height: 310px;
  }

  .btn {
    width: 100%;
  }

  .nav-actions .btn {
    width: auto;
  }

  .callout-card .btn,
  .mobile-menu .mobile-call-button {
    width: 100%;
  }
}
