@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/InterVariable.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #05080d;
  --surface: #0b1420;
  --surface-2: #111c29;
  --surface-3: #172230;
  --text: #f3f8fb;
  --muted: #b7c7d1;
  --muted-2: #89a0ad;
  --line: rgba(210, 232, 242, 0.14);
  --line-strong: rgba(210, 232, 242, 0.24);
  --cyan: #54dcff;
  --cyan-soft: #a7efff;
  --blue: #1778ca;
  --mint: #79e4bd;
  --amber: #f5c86a;
  --plum: #c9a8ff;
  --max-width: 1180px;
  --radius: 8px;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(12, 28, 44, 0.76), rgba(5, 8, 13, 0.95) 46%, #05080d),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(84, 220, 255, 0.08), transparent 30%, rgba(245, 200, 106, 0.06) 72%, transparent);
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: 5.25rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.1rem;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.container {
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #06111f;
  background: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.shrunk {
  border-color: rgba(210, 232, 242, 0.2);
  background: rgba(5, 8, 13, 0.9);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: min-height 180ms ease, padding 180ms ease;
}

.site-header.shrunk .nav-shell {
  min-height: 82px;
}

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

.brand img {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(84, 220, 255, 0.22));
  transition: width 180ms ease, height 180ms ease, filter 180ms ease;
}

.site-header.shrunk .brand img {
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 8px 18px rgba(84, 220, 255, 0.18));
}

.brand span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand strong {
  white-space: nowrap;
  font-size: 1.56rem;
  line-height: 1.1;
  transition: font-size 180ms ease;
}

.site-header.shrunk .brand strong {
  font-size: 1.34rem;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(210, 232, 242, 0.22);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 rgba(84, 220, 255, 0);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(167, 239, 255, 0.62);
  background: rgba(84, 220, 255, 0.12);
  box-shadow: 0 0 22px rgba(84, 220, 255, 0.24);
  transform: translateY(-1px);
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-bars {
  position: relative;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.menu-toggle-bars::before {
  transform: translateY(-7px);
}

.menu-toggle-bars::after {
  transform: translateY(7px);
}

.site-header.menu-open .menu-toggle-bars {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle-bars::before {
  opacity: 0;
}

.site-header.menu-open .menu-toggle-bars::after {
  transform: rotate(90deg);
}

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

.site-nav a {
  position: relative;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-soft), var(--cyan));
  box-shadow: 0 0 14px rgba(84, 220, 255, 0.42);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 24px;
  padding: 54px 0 62px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-logo {
  width: 560px;
  max-width: 46vw;
  height: auto;
  justify-self: end;
  opacity: 0.96;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.55));
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 1.28rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--cyan-soft);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.03rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transform: translateY(0) scale(1);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    background 190ms ease,
    border-color 190ms ease,
    color 190ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -40% -70%;
  z-index: -1;
  background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.58) 48%, transparent 64%);
  opacity: 0;
  transform: translateX(-42%) rotate(8deg);
  transition: opacity 190ms ease, transform 580ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -2;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(84, 220, 255, 0.32), transparent 68%);
  opacity: 0;
  filter: blur(8px);
  transform: scale(0.94);
  transition: opacity 190ms ease, transform 190ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-4px) scale(1.025);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 0.8;
  transform: translateX(42%) rotate(8deg);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: scale(1.12);
  animation: button-aura 1400ms ease-in-out infinite;
}

.button:active {
  transform: translateY(-1px) scale(0.99);
}

.button-primary {
  color: #04101b;
  background: linear-gradient(135deg, var(--text), var(--cyan-soft) 42%, var(--cyan));
  box-shadow: 0 14px 32px rgba(84, 220, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 22px 54px rgba(84, 220, 255, 0.58),
    0 0 26px rgba(167, 239, 255, 0.52),
    0 0 0 6px rgba(84, 220, 255, 0.18);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(167, 239, 255, 0.82);
  background: rgba(84, 220, 255, 0.13);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(84, 220, 255, 0.36),
    0 0 0 6px rgba(84, 220, 255, 0.14);
}

@keyframes button-aura {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(1.06);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

.trust-strip {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 18, 28, 0.72);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-grid div {
  min-height: 132px;
  padding: 24px;
  background: rgba(13, 24, 36, 0.95);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.18rem;
}

.trust-grid div:nth-child(1) strong {
  color: var(--cyan-soft);
}

.trust-grid div:nth-child(2) strong {
  color: var(--mint);
}

.trust-grid div:nth-child(3) strong {
  color: var(--amber);
}

.trust-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  position: relative;
  padding: 82px 0;
}

.anchor-alias {
  position: absolute;
  top: 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(100% - 32px);
  max-width: var(--max-width);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(210, 232, 242, 0.22), transparent);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(17, 28, 41, 0.68);
}

.section-layout,
.split,
.principles-layout {
  display: grid;
  gap: 34px;
}

.section-layout {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
}

.split {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

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

.section-heading p {
  font-size: 1.05rem;
}

.section-heading-left {
  max-width: 620px;
}

.product-grid,
.service-list,
.principle-grid {
  display: grid;
  gap: 16px;
}

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

.product-card,
.service-list article,
.principle-grid article,
.relationship-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 34, 48, 0.9), rgba(10, 20, 32, 0.92));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.product-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.product-card-feature {
  min-height: 350px;
  border-color: rgba(84, 220, 255, 0.28);
}

.product-card h3,
.service-list h3,
.principle-grid h3 {
  color: var(--text);
}

.product-card p:last-child,
.service-list p:last-child,
.principle-grid p:last-child {
  margin-bottom: 0;
}

.product-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.product-icon {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.24));
}

.product-icon-wide {
  width: 118px;
}

.product-header h3 {
  margin-bottom: 0;
}

.status {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(84, 220, 255, 0.18);
  border-radius: 999px;
  color: var(--cyan-soft);
  background: rgba(84, 220, 255, 0.075);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.inline-action {
  display: inline-flex;
  color: var(--cyan-soft);
  font-weight: 800;
  text-decoration-color: rgba(84, 220, 255, 0.42);
  text-underline-offset: 0.18em;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: auto;
  padding-top: 20px;
}

.inline-action.is-disabled {
  color: var(--muted-2);
  cursor: not-allowed;
  text-decoration-color: rgba(137, 160, 173, 0.28);
}

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

.service-list article,
.principle-grid article {
  padding: 22px;
}

.principles-layout {
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
}

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

.principle-grid article {
  min-height: 220px;
}

.principle-grid article:nth-child(1) {
  border-top: 3px solid var(--cyan);
}

.principle-grid article:nth-child(2) {
  border-top: 3px solid var(--mint);
}

.principle-grid article:nth-child(3) {
  border-top: 3px solid var(--amber);
}

.principle-grid article:nth-child(4) {
  border-top: 3px solid var(--plum);
}

.section-relationship {
  background: rgba(7, 13, 21, 0.7);
}

.relationship-panel,
.sibling-panel,
.contact-panel {
  padding: 34px;
  display: grid;
  align-items: center;
  gap: 28px;
}

.relationship-panel,
.sibling-panel {
  grid-template-columns: 240px minmax(0, 1fr) max-content;
  min-height: 230px;
}

.relationship-panel h2,
.sibling-panel h2,
.contact-panel h2 {
  max-width: 820px;
  font-size: 2.45rem;
}

.relationship-panel p,
.sibling-panel p,
.contact-panel p {
  max-width: 760px;
  margin-bottom: 0;
}

.relationship-logo {
  width: 168px;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.relationship-logo-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: transform 160ms ease, filter 160ms ease;
}

.relationship-logo-link:hover,
.relationship-logo-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.sibling-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(84, 220, 255, 0.08), rgba(245, 200, 106, 0.055)),
    linear-gradient(180deg, rgba(23, 34, 48, 0.88), rgba(10, 20, 32, 0.9));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.sibling-logo {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.relationship-panel .button,
.sibling-panel .button {
  min-width: 214px;
  justify-self: end;
  white-space: nowrap;
}

.contact-section {
  padding-bottom: 50px;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: start;
  border-color: rgba(84, 220, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(84, 220, 255, 0.1), rgba(121, 228, 189, 0.04)),
    linear-gradient(180deg, rgba(23, 34, 48, 0.94), rgba(10, 20, 32, 0.96));
}

.contact-email {
  margin-top: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.botcheck {
  display: none;
}

.field-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--text);
  font-weight: 800;
}

.required {
  color: var(--cyan);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(210, 232, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 12, 22, 0.62);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

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

input::placeholder,
textarea::placeholder {
  color: rgba(183, 199, 209, 0.68);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(84, 220, 255, 0.45);
  outline-offset: 1px;
}

.error-message,
.form-status {
  display: none;
  margin: 0;
  font-size: 0.92rem;
}

.error-message.visible,
.form-status.visible {
  display: block;
}

.error-message {
  color: #ff9f9f;
}

.form-status {
  color: var(--cyan-soft);
}

.form-status.error {
  color: #ff9f9f;
}

.form-submit {
  justify-self: start;
  min-width: 190px;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.94rem;
  text-decoration: none;
}

.footer-inner a,
.inline-link {
  color: var(--cyan-soft);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24em;
}

.footer-inner a:hover,
.footer-inner a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--text);
  text-decoration-color: var(--cyan);
}

.policy-shell {
  max-width: 900px;
}

.policy-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 34, 48, 0.9), rgba(10, 20, 32, 0.92));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.policy-card h1 {
  font-size: 3rem;
}

.policy-card h2 {
  margin: 30px 0 10px;
  font-size: 1.45rem;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.inline-link {
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 18px;
  }

  .hero-logo {
    width: clamp(360px, 44vw, 430px);
    max-width: 100%;
  }

  .section-layout,
  .split,
  .principles-layout {
    grid-template-columns: 1fr;
  }

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

  .relationship-panel,
  .sibling-panel {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .relationship-panel .button,
  .sibling-panel .button {
    grid-column: 2;
    justify-self: start;
  }

  .relationship-logo {
    width: 152px;
  }

  .sibling-logo {
    width: 188px;
  }
}

@media (max-width: 900px) {
  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 54px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-logo {
    width: clamp(360px, 52vw, 430px);
    max-width: 88%;
    justify-self: center;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-actions .button {
    min-width: clamp(230px, 30vw, 270px);
  }
}

@media (max-width: 980px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-inner p {
    max-width: 46ch;
  }
}

@media (max-width: 890px) {
  .nav-shell {
    min-height: auto;
    padding: 12px 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .site-header.shrunk .nav-shell {
    min-height: auto;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 6px 0 2px;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
    font-size: 1rem;
  }
}

@media (max-width: 800px) {
  .brand img {
    width: 56px;
    height: 56px;
  }

  .site-header.shrunk .brand img {
    width: 48px;
    height: 48px;
  }

  body {
    background:
      linear-gradient(180deg, rgba(12, 28, 44, 0.82), rgba(5, 8, 13, 0.96) 44%, #05080d),
      var(--bg);
  }

  h1 {
    font-size: clamp(3rem, 8vw, 4rem);
  }

  h2,
  .relationship-panel h2,
  .sibling-panel h2,
  .contact-panel h2 {
    max-width: 15ch;
    font-size: 2.1rem;
  }

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

  .hero-inner {
    gap: 18px;
    padding: 36px 0 46px;
  }

  .hero-logo {
    width: clamp(320px, 52vw, 430px);
    max-width: 88%;
    order: 0;
  }

  .hero-lede {
    font-size: 1.1rem;
  }

  .hero-actions {
    align-content: flex-start;
    gap: 10px;
  }

  .hero-actions .button {
    min-width: clamp(230px, 30vw, 270px);
  }

  .trust-grid,
  .product-grid,
  .service-list,
  .principle-grid,
  .relationship-panel,
  .sibling-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    min-height: 0;
    padding: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .product-card,
  .product-card-feature {
    min-height: 0;
  }

  .relationship-panel,
  .sibling-panel,
  .contact-panel {
    padding: 24px;
  }

  .relationship-panel .button,
  .sibling-panel .button,
  .contact-form,
  .contact-form .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .sibling-logo {
    width: 240px;
    max-width: 100%;
  }

  .relationship-logo {
    width: 150px;
  }

  .form-submit {
    justify-self: stretch;
  }

  .footer-inner p {
    max-width: 32ch;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
  }

  .hero-actions .button {
    width: min(320px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 430px) {
  .container {
    max-width: 358px;
  }

  h1 {
    max-width: 8ch;
    font-size: 2.55rem;
  }

  h2,
  .relationship-panel h2,
  .sibling-panel h2,
  .contact-panel h2 {
    max-width: 13ch;
    font-size: 1.85rem;
  }

  .hero-lede {
    max-width: 31ch;
  }

  .hero-logo {
    width: min(320px, 82vw);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
