:root {
  --bg: #050505;
  --surface: #0b0b0b;
  --surface-2: #090909;
  --line: rgba(255, 255, 255, 0.075);
  --line-soft: rgba(255, 255, 255, 0.038);
  --card-line: rgba(255, 255, 255, 0.07);
  --text: #f4f4f4;
  --muted: #8f8f8f;
  --dim: #5f5f5f;
  --navy: #07101a;
  --violet: #6d5cff;
  --cyan: #75f4ff;
  --font-sans: Inter, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 8%, rgba(117, 244, 255, 0.035), transparent 18rem),
    radial-gradient(circle at 12% 36%, rgba(109, 92, 255, 0.03), transparent 20rem),
    linear-gradient(180deg, rgba(7, 16, 26, 0.32), transparent 520px),
    var(--bg);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.006) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 72%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  height: 42px;
  filter: invert(1);
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
}

.section-block {
  position: relative;
  scroll-margin-top: 86px;
  padding: 92px clamp(20px, 6vw, 80px);
  border-bottom: 1px solid var(--line-soft);
}

.section-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.008), transparent);
  opacity: 0.18;
}

.hero {
  display: grid;
  min-height: 100svh;
  align-items: center;
  gap: 42px;
  padding-top: 104px;
  padding-bottom: 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(117, 244, 255, 0.065), transparent 18rem),
    radial-gradient(circle at 86% 54%, rgba(109, 92, 255, 0.05), transparent 20rem);
}

.hero::after {
  content: "";
  position: absolute;
  right: -20vw;
  bottom: 6vh;
  width: 58vw;
  height: 58vw;
  max-width: 760px;
  max-height: 760px;
  pointer-events: none;
  border: 1px solid rgba(117, 244, 255, 0.045);
  border-radius: 50%;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 14vw, 8.4rem);
  font-weight: 500;
  line-height: 0.82;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 6.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 4.8vw, 2.7rem);
  font-weight: 500;
  line-height: 1.02;
}

.hero-statement {
  display: grid;
  gap: 2px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: clamp(1.95rem, 8.6vw, 4.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.hero-copy,
.body-copy,
.quiet-statement p,
.contact-action p {
  color: var(--muted);
  font-size: clamp(0.98rem, 3.7vw, 1.18rem);
}

.hero-words {
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(1rem, 4.6vw, 1.7rem);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-copy p {
  margin-bottom: 16px;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.outline-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.outline-button:hover,
.outline-button:focus-visible {
  background: var(--text);
  color: var(--bg);
  outline: none;
}

.outline-button.muted {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--muted);
}

.signal-panel {
  position: relative;
  z-index: 0;
  width: min(100%, 520px);
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(rgba(255, 255, 255, 0.009) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.009) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(117, 244, 255, 0.04), transparent 50%),
    rgba(255, 255, 255, 0.012);
  background-size: 34px 34px;
}

.signal-line {
  position: relative;
  height: 1px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, transparent, #d8d8d8, transparent);
  opacity: 0.42;
}

.signal-line::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 64%;
  width: 7px;
  height: 7px;
  background: var(--text);
}

.radar-graphic {
  position: relative;
  display: grid;
  height: 300px;
  place-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.radar-graphic::before,
.radar-graphic::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 86%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform-origin: left center;
}

.radar-graphic::before {
  transform: rotate(0deg) translateX(-50%);
}

.radar-graphic::after {
  transform: rotate(90deg) translateX(-50%);
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(117, 244, 255, 0.025);
}

.ring-a {
  width: 72%;
  height: 72%;
}

.ring-b {
  width: 48%;
  height: 48%;
}

.ring-c {
  width: 24%;
  height: 24%;
}

.radar-sweep {
  position: absolute;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, rgba(117, 244, 255, 0.34), transparent);
  transform-origin: left center;
  animation: radarSweep 14s linear infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(109, 92, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-a {
  width: 82%;
  height: 28%;
}

.orbit-b {
  width: 64%;
  height: 20%;
  transform: rotate(28deg);
}

.radar-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(244, 244, 244, 0.8);
  background: var(--surface);
}

.node-a {
  top: 25%;
  left: 34%;
}

.node-b {
  top: 34%;
  right: 24%;
}

.node-c {
  right: 34%;
  bottom: 24%;
}

.node-d {
  left: 24%;
  bottom: 32%;
}

.signal-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  color: var(--dim);
  font-size: 0.64rem;
  font-weight: 600;
}

.section-grid {
  display: grid;
  gap: 42px;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.body-copy {
  max-width: 650px;
}

.section-body {
  max-width: 780px;
}

.section-body > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(0.98rem, 3.7vw, 1.18rem);
}

.word-row {
  color: var(--text);
}

.body-copy p:last-child,
.quiet-statement p:last-child,
.contact-action p:last-child {
  margin-bottom: 0;
}

.section-head {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto 44px;
}

.service-grid,
.area-grid {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.service-card,
.area-card {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--card-line);
  background: rgba(255, 255, 255, 0.012);
}

.service-index {
  display: block;
  margin-bottom: 36px;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 600;
}

.service-card h3,
.area-card h3 {
  margin-bottom: 24px;
  font-size: clamp(1.45rem, 5vw, 2.9rem);
  text-transform: uppercase;
}

.area-card h3 {
  font-size: clamp(1.25rem, 4vw, 2.1rem);
  text-transform: none;
}

.service-card ul,
.area-card p {
  margin: 0;
}

.service-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.service-card li,
.area-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card::after,
.area-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.maintain-grid {
  display: grid;
  gap: 10px;
}

.maintain-grid article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--card-line);
  background: rgba(255, 255, 255, 0.01);
}

.maintain-grid i {
  width: 26px;
  height: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 50%;
}

.maintain-grid i::before,
.maintain-grid i::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
}

.maintain-grid i::before {
  top: 30px;
  left: 31px;
  width: 24px;
  height: 1px;
}

.maintain-grid i::after {
  top: 25px;
  left: 42px;
  width: 1px;
  height: 22px;
}

.areas h2 {
  font-size: clamp(1.4rem, 3.6vw, 2.4rem);
}

.company h2 {
  font-size: clamp(1.25rem, 3.2vw, 1.9rem);
}

.maintain-grid span {
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.maintain-grid p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
  word-break: keep-all;
}

.quiet-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.quiet-list li {
  padding: 16px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.flow-list {
  display: grid;
  gap: 0;
  max-width: 1220px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.flow-list article {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list article::after {
  content: "↓";
  position: absolute;
  right: 0;
  bottom: -18px;
  z-index: 2;
  color: var(--dim);
  font-size: 0.9rem;
}

.flow-list article:last-child::after {
  display: none;
}

.flow-list span {
  color: var(--text);
  font-size: clamp(2.1rem, 10vw, 3.4rem);
  font-weight: 500;
  line-height: 0.9;
}

.flow-list h3 {
  margin: 0;
  font-size: clamp(1.08rem, 4.8vw, 1.55rem);
}

.flow-list p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
  color: var(--text);
  font-size: 0.98rem;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--dim);
}

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

.faq-list p {
  max-width: 620px;
  margin: 0;
  padding: 0 0 22px 36px;
  color: var(--muted);
  font-size: 0.96rem;
}

.faq-list summary span {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 600;
}

.company-table {
  max-width: 760px;
}

.company-table dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-table dl > div {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--dim);
  font-size: 0.74rem;
  font-weight: 600;
}

.company-table dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.company-table a {
  color: var(--text);
  text-decoration: none;
}

.company-table a:hover {
  color: var(--muted);
}

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

.quiet-statement {
  max-width: 1050px;
  margin: 0 auto;
}

.quiet-statement h2 {
  margin-bottom: 28px;
}

.quiet-statement p:last-child {
  max-width: 650px;
}

.contact-grid {
  align-items: end;
}

.contact {
  background:
    radial-gradient(circle at 78% 20%, rgba(109, 92, 255, 0.09), transparent 18rem),
    radial-gradient(circle at 10% 80%, rgba(117, 244, 255, 0.035), transparent 16rem);
}

.contact-action {
  max-width: 560px;
}

.contact-action p {
  margin-bottom: 28px;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 32px clamp(20px, 6vw, 80px);
  color: var(--dim);
  font-size: 0.72rem;
  border-top: 1px solid var(--line-soft);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-links {
  align-content: start;
}

[data-fade] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body::before {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), transparent 64%);
  }

  .site-header {
    gap: 12px;
    padding: 14px 22px;
  }

  .brand-mark {
    height: 42px;
  }

  .site-nav {
    display: none;
  }

  .section-block {
    scroll-margin-top: 74px;
    padding: 84px 22px;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding-top: 112px;
    padding-bottom: 84px;
    grid-template-columns: 1fr;
  }

  .hero::after {
    right: -42vw;
    bottom: 14vh;
    width: 92vw;
    height: 92vw;
    opacity: 0.28;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.9rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(1.85rem, 8.4vw, 3.2rem);
    line-height: 1.08;
  }

  h3 {
    font-size: clamp(1.28rem, 6vw, 2rem);
    line-height: 1.08;
  }

  .hero-statement {
    font-size: clamp(2rem, 10.5vw, 3.3rem);
    line-height: 0.98;
  }

  .hero-copy,
  .body-copy,
  .quiet-statement p,
  .contact-action p,
  .section-body > p {
    font-size: 0.98rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .outline-button {
    width: 100%;
    min-height: 50px;
    padding: 13px 16px;
    white-space: normal;
  }

  .signal-panel {
    width: 100%;
    margin-left: 0;
    padding: 18px;
  }

  .radar-graphic {
    height: 220px;
  }

  .signal-readout {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-grid,
  .service-grid,
  .area-grid,
  .maintain-grid,
  .flow-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-grid {
    gap: 32px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .service-card,
  .area-card {
    min-height: auto;
    padding: 22px;
  }

  .service-card h3,
  .area-card h3,
  .areas h2,
  .company h2 {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .company-table {
    max-width: 100%;
  }

  .company-table dl > div {
    display: block;
    padding: 20px 0;
  }

  .company-table dt,
  .company-table dd {
    width: 100%;
  }

  .company-table dd {
    margin-top: 8px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .company-table li {
    overflow-wrap: anywhere;
  }

  .flow-list article {
    padding: 26px 0;
  }

  .flow-list span {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
  }

  .faq-list summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .faq-list p {
    padding-left: 0;
  }
}

@media (min-width: 769px) {
  .site-nav {
    display: flex;
  }

  .section-block {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-panel {
    position: absolute;
    top: 220px;
    right: clamp(20px, 5vw, 64px);
    width: min(38vw, 340px);
    opacity: 0.52;
  }

  .hero-panel .radar-graphic {
    height: 230px;
  }

  .section-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    align-items: start;
  }

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

  .service-grid,
  .area-grid {
    gap: 16px;
  }

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

  .company-table dl > div {
    grid-template-columns: 130px 1fr;
    gap: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr 1.5fr auto;
    align-items: start;
  }
}

@media (min-width: 769px) and (max-width: 1079px) {
  h1 {
    font-size: clamp(5.2rem, 12vw, 7rem);
  }

  .hero-statement {
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 6.8vw, 4rem);
  }

  .hero-words {
    margin-bottom: 18px;
  }
}

@media (min-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    align-items: center;
    padding-bottom: 78px;
  }

  .hero-panel {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 520px);
    opacity: 1;
  }

  .hero-panel .radar-graphic {
    height: 300px;
  }

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

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

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

  .flow-list article {
    min-height: 280px;
    padding: 28px 22px 30px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .flow-list article:first-child {
    border-left: 1px solid var(--line);
  }

  .flow-list article::after {
    content: "→";
    top: 28px;
    right: -9px;
    bottom: auto;
    color: rgba(255, 255, 255, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #050505;
    color: #fff;
  }

  * {
    box-sizing: border-box;
    min-width: 0;
  }

  body {
    margin: 0;
  }

  body::before {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.0025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.0025) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.4;
  }

  section,
  .section-block,
  .concept,
  .services,
  .areas,
  .maintain,
  .who,
  .flow,
  .faq,
  .statement,
  .company,
  .contact,
  .privacy {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 72px 22px;
    overflow: hidden;
    background: #050505;
    color: #fff;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
    gap: 12px;
    padding: 14px 22px;
    background: rgba(5, 5, 5, 0.94);
  }

  .site-nav {
    display: none;
  }

  .brand,
  .brand img,
  .brand-mark,
  .logo,
  .site-logo,
  .header-logo img {
    max-width: 110px;
  }

  .brand-mark {
    width: auto;
    height: auto;
    max-height: 54px;
    filter: invert(1);
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 96px 22px 72px;
    background:
      radial-gradient(circle at 70% 18%, rgba(60, 90, 160, 0.28), transparent 42%),
      #050505;
  }

  .hero::after {
    display: none;
  }

  .hero-inner,
  .section-grid,
  .section-head,
  .section-body,
  .body-copy,
  .quiet-statement,
  .contact-action,
  .company-table {
    width: 100%;
    max-width: 100%;
  }

  .hero-panel,
  .signal-panel {
    display: none;
  }

  h1,
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  h2,
  .section-title,
  .large-title,
  .mega-title,
  .company-title,
  .areas-title,
  .services-title,
  .areas-headline,
  .section-block h2,
  .services h2,
  .areas h2,
  .company h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  h3,
  .service-card h3,
  .area-card h3,
  .flow-list h3 {
    font-size: clamp(1.35rem, 7vw, 2.1rem);
    line-height: 1.1;
  }

  .hero-statement {
    font-size: clamp(2rem, 10vw, 3.4rem);
    line-height: 1;
  }

  .hero .lead,
  .hero p,
  .hero-copy,
  .body-copy,
  .section-body > p,
  .quiet-statement p,
  .contact-action p,
  p,
  li,
  dd {
    max-width: 100%;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
    overflow-wrap: anywhere;
  }

  .hero-words,
  .word-row {
    color: #fff;
  }

  .button-row,
  .cta,
  .cta-group,
  .buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
  }

  .button-row .outline-button,
  .cta a,
  .button,
  .btn,
  .outline-button {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
  }

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

  .grid,
  .cards,
  .service-grid,
  .area-grid,
  .maintain-grid,
  .company-grid,
  .flow-grid,
  .flow-list,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    max-width: 100%;
  }

  .card,
  .service-card,
  .area-card,
  .maintain-grid article {
    width: 100%;
    min-height: auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.015);
  }

  .company-table dl > div,
  .company-row {
    display: block;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .company-table dt,
  .company-table dd,
  .company-row dt,
  .company-row dd {
    width: 100%;
    margin: 0;
  }

  .company-table dd,
  .company-row dd {
    margin-top: 8px;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.8;
  }

  .faq-list summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .faq-list p {
    padding-left: 0;
  }

  .site-footer {
    padding: 36px 22px;
    background: #050505;
  }
}
