:root {
  --navy-950: #050b12;
  --navy-900: #08121f;
  --navy-850: #0b1929;
  --navy-800: #10243a;
  --blue-500: #1597e5;
  --blue-400: #38bdf8;
  --blue-300: #7dd3fc;
  --silver-500: #8f9bab;
  --silver-300: #c5ced8;
  --ink: #142031;
  --muted: #5f6c7b;
  --line: #d9dfe6;
  --surface: #f3f5f7;
  --white: #ffffff;
  --content: 1180px;
  --header-height: 76px;
  --shadow: 0 24px 70px rgb(3 12 22 / 18%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue-500);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.on-dark {
  color: var(--blue-300);
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.section-title.small {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

.section-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

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

.section.dark {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.section.dark::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  content: "";
  pointer-events: none;
}

.section.dark > * {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(5 11 18 / 92%);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgb(125 211 252 / 35%);
  border-radius: 6px;
  background: #101820;
}

.brand-mark img {
  position: absolute;
  top: -20px;
  left: -47px;
  width: 140px;
  max-width: none;
  height: auto;
}

.brand-name {
  display: grid;
  line-height: 1.1;
}

.brand-name strong {
  font-size: 1.12rem;
  letter-spacing: 0.06em;
}

.brand-name span {
  margin-top: 4px;
  color: var(--silver-300);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav a {
  position: relative;
  color: #dce4ed;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.global-nav ul a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--blue-400);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.global-nav ul a:hover::after,
.global-nav ul a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid var(--blue-400);
  border-radius: 3px;
  background: var(--blue-500);
  color: #03101b !important;
  font-weight: 800 !important;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: transparent;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 42%, rgb(21 151 229 / 22%), transparent 33%), linear-gradient(115deg, transparent 45%, rgb(255 255 255 / 4%) 45.2%, transparent 45.5%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: -240px;
  width: 680px;
  height: 680px;
  border: 1px solid rgb(56 189 248 / 17%);
  border-radius: 50%;
  box-shadow: 0 0 0 120px rgb(56 189 248 / 3%), 0 0 0 240px rgb(56 189 248 / 2%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 24px;
  padding-block: 72px 84px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  margin: 0 0 24px;
  color: var(--blue-300);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6.2vw, 5.4rem);
  font-weight: 680;
  letter-spacing: -0.07em;
  line-height: 1.03;
  word-break: keep-all;
}

.hero-lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: #c4cfdb;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 2;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1.4;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button::after {
  font-size: 1.2em;
  content: "→";
}

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

.button.primary {
  border-color: var(--blue-400);
  background: var(--blue-500);
  color: #03101b;
}

.button.primary:hover {
  background: var(--blue-400);
}

.button.secondary {
  border-color: rgb(255 255 255 / 38%);
  background: rgb(255 255 255 / 4%);
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--blue-400);
}

.button.dark-button {
  background: var(--navy-900);
  color: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin-left: -54px;
}

.hero-visual::before {
  position: absolute;
  inset: 10% 0 8% 16%;
  border: 1px solid rgb(125 211 252 / 28%);
  content: "";
  transform: rotate(4deg);
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border: 1px solid rgb(255 255 255 / 10%);
  box-shadow: var(--shadow);
  object-fit: cover;
  opacity: 0.9;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgb(255 255 255 / 14%);
  background: rgb(5 11 18 / 80%);
  backdrop-filter: blur(12px);
}

.hero-proof span {
  min-width: 112px;
  padding: 13px 16px;
  border-right: 1px solid rgb(255 255 255 / 12%);
  color: #d6e1eb;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.hero-proof span:last-child {
  border-right: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(54px, 9vw, 130px);
}

.intro-statement {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.5;
}

.intro-statement strong {
  color: var(--blue-500);
}

.intro-copy p {
  margin: 0 0 1.3em;
  color: var(--muted);
}

.pillar-line {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
}

.pillar-line span {
  padding: 14px 12px;
  border-top: 2px solid var(--blue-500);
  border-right: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 750;
  text-align: center;
}

.pillar-line span:last-child {
  border-right: 0;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  color: var(--blue-500);
  font-size: 0.86rem;
  font-weight: 750;
}

.text-link::after {
  content: "↗";
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 440px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  z-index: 1;
  background: #f8fbfd;
  transform: translateY(-4px);
}

.service-number {
  display: block;
  margin-bottom: 80px;
  color: var(--blue-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 24px 0 0;
  color: var(--muted);
}

.category-wrap {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(50px, 8vw, 110px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgb(255 255 255 / 18%);
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.category-item {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-right: 1px solid rgb(255 255 255 / 18%);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.category-item::before {
  width: 8px;
  height: 8px;
  border: 1px solid var(--blue-400);
  content: "";
  transform: rotate(45deg);
}

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

.audience-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  background: var(--white);
}

.audience-card.dark-card {
  border-color: #152b42;
  background: var(--navy-900);
  color: var(--white);
}

.audience-card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgb(21 151 229 / 24%);
  content: "";
  transform: rotate(45deg);
}

.audience-card .label {
  display: block;
  margin-bottom: 74px;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.audience-card h3 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.audience-card p {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--muted);
}

.audience-card.dark-card p {
  color: #b9c7d4;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 7vw, 90px);
}

.support-panel {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.support-index {
  color: var(--blue-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.support-panel h3 {
  margin: 32px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
}

.support-panel p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: #526170;
  font-size: 0.78rem;
}

.company-band {
  display: grid;
  align-items: center;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 9vw, 130px);
}

.company-facts {
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.company-facts div {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  grid-template-columns: 130px 1fr;
  gap: 20px;
}

.company-facts dt {
  color: var(--silver-500);
  font-size: 0.78rem;
}

.company-facts dd {
  margin: 0;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 11vw, 142px);
  background: var(--blue-500);
  color: #03101b;
}

.cta-section::after {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 500px;
  height: 500px;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.cta-inner h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.2rem, 5.4vw, 5rem);
  letter-spacing: -0.065em;
  line-height: 1.1;
}

.cta-actions {
  display: grid;
  gap: 10px;
}

.cta-actions .button {
  border-color: rgb(3 16 27 / 32%);
  background: var(--navy-950);
  color: var(--white);
}

.cta-actions .button:hover {
  background: var(--white);
  color: var(--navy-950);
}

.site-footer {
  padding-block: 64px 24px;
  background: var(--navy-950);
  color: #d9e1e9;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 26px;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: var(--silver-500);
  font-size: 0.88rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

.footer-nav a {
  padding-bottom: 8px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: #d9e1e9;
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: var(--silver-500);
  font-size: 0.72rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(92px, 13vw, 170px) clamp(76px, 10vw, 130px);
  background: var(--navy-950);
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 52%, rgb(21 151 229 / 14%)), linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent);
}

.page-hero .container {
  position: relative;
}

.breadcrumb {
  margin: 0 0 52px;
  padding: 0;
  color: var(--silver-500);
  font-size: 0.75rem;
  list-style: none;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li + li::before {
  margin: 0 10px;
  content: "/";
}

.page-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.5rem);
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.page-hero p {
  max-width: 720px;
  margin: 30px 0 0;
  color: #c3cfdb;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(44px, 8vw, 112px);
}

.content-grid + .content-grid {
  margin-top: clamp(70px, 10vw, 120px);
}

.sticky-title {
  align-self: start;
}

.content-body h2,
.content-body h3 {
  letter-spacing: -0.035em;
}

.content-body h2 {
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.content-body h3 {
  margin: 42px 0 14px;
  font-size: 1.3rem;
}

.content-body p,
.content-body li {
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.check-list li {
  position: relative;
  padding: 12px 12px 12px 30px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 4px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--blue-500);
  border-left: 2px solid var(--blue-500);
  content: "";
  transform: rotate(-45deg);
}

.process {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process li {
  min-height: 200px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.process span {
  display: block;
  margin-bottom: 52px;
  color: var(--blue-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process strong {
  font-size: 1rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--blue-500);
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

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

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 180px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(46px, 8vw, 104px);
}

.contact-aside {
  align-self: start;
  padding: 30px;
  border-top: 3px solid var(--blue-500);
  background: var(--navy-900);
  color: var(--white);
}

.contact-aside h2 {
  margin: 0 0 20px;
  font-size: 1.45rem;
}

.contact-aside p {
  margin: 0 0 18px;
  color: #b9c6d4;
  font-size: 0.9rem;
}

.contact-aside a {
  color: var(--blue-300);
  font-weight: 750;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label,
.form-legend {
  font-size: 0.86rem;
  font-weight: 750;
}

.required {
  margin-left: 8px;
  color: #c43737;
  font-size: 0.7rem;
}

.optional {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #b8c1cb;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgb(21 151 229 / 14%);
  outline: 0;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-note,
.form-status {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status.error {
  padding: 12px 14px;
  border-left: 3px solid #c43737;
  background: #fff1f1;
  color: #7d2020;
}

.turnstile-slot {
  min-height: 0;
}

.legal-content h2 {
  margin: 56px 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.thanks-box {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(34px, 7vw, 72px);
  border-top: 3px solid var(--blue-500);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-box h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.045em;
}

.thanks-box p {
  color: var(--muted);
}

@media (max-width: 1020px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: block;
    height: calc(100svh - var(--header-height));
    padding: 30px 20px;
    background: var(--navy-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav ul {
    display: grid;
    gap: 0;
  }

  .global-nav ul a {
    display: block;
    padding: 15px 4px;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-size: 1rem;
  }

  .header-cta {
    width: 100%;
    margin-top: 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 74px;
  }

  .hero-visual {
    width: min(86%, 600px);
    margin: -42px 0 0 auto;
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: max-content;
    margin: -30px 0 0 auto;
  }

  .intro-grid,
  .category-wrap,
  .company-band,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 44px;
  }

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

  .sticky-title {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand-name strong {
    font-size: 0.98rem;
  }

  .brand-name span {
    font-size: 0.54rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 66px 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
    letter-spacing: -0.075em;
  }

  .hero-lead {
    line-height: 1.85;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .hero-visual {
    width: 108%;
    margin: 0 -8% 0 0;
  }

  .hero-proof {
    width: 100%;
    margin-top: -10px;
  }

  .hero-proof span {
    min-width: 0;
    padding: 11px 6px;
    font-size: 0.64rem;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row .text-link {
    margin-top: 24px;
  }

  .pillar-line,
  .audience-grid,
  .support-grid,
  .cta-inner,
  .footer-main,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .pillar-line span {
    border-right: 0;
  }

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

  .audience-card {
    min-height: 430px;
  }

  .company-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .check-list,
  .process {
    grid-template-columns: 1fr;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .company-table td {
    padding-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
