:root {
  --ink: #081a27;
  --ink-soft: #102a3a;
  --ivory: #f3f8f7;
  --paper: #f7faf9;
  --charcoal: #17252c;
  --muted: #647278;
  --brand-blue: #008fc4;
  --brand-aqua: #00afeb;
  --brand-green: #8ec668;
  --copper: var(--brand-blue);
  --copper-light: #56c2df;
  --line: #d6e0e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN",
    sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  border-bottom: 1px solid rgba(23, 27, 32, 0.16);
  display: flex;
  height: 88px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  line-height: 0;
}

.wordmark img {
  display: block;
  height: auto;
  width: clamp(132px, 11vw, 166px);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.5vw, 46px);
}

.desktop-nav > a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
}

.desktop-nav > a:not(.nav-contact)::after {
  background: var(--copper);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  width: 100%;
}

.desktop-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  align-items: center;
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  gap: 30px;
  margin-left: 8px;
  padding: 16px 20px !important;
  transition: background 0.25s ease;
}

.nav-contact:hover {
  background: var(--brand-blue);
}

.mobile-menu {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 70% 16%, rgba(0, 175, 235, 0.08), transparent 24%),
    linear-gradient(rgba(8, 26, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 26, 39, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 9.8vw 100%, 100% 9.8vw, auto;
  min-height: 900px;
  overflow: hidden;
  padding: 178px clamp(24px, 4vw, 64px) 110px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, transparent 0%, rgba(247, 250, 249, 0.25) 60%, var(--paper) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-copy {
  max-width: 860px;
  position: relative;
  z-index: 3;
}

.eyebrow,
.kicker {
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.eyebrow {
  align-items: center;
  display: flex;
  gap: 14px;
  margin: 0 0 34px;
}

.eyebrow span {
  background: var(--copper);
  height: 2px;
  width: 38px;
}

.hero h1 {
  font-size: clamp(48px, 5.6vw, 82px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.28;
  margin: 0;
}

.hero-lead {
  color: #555a5d;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9;
  margin: 34px 0 0;
}

.hero-lead strong {
  color: var(--ink);
  display: block;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.hero-lead span {
  display: block;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 42px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 650;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-height: 62px;
  padding: 0 25px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  width: 240px;
}

.button span {
  font-size: 19px;
  transition: transform 0.3s ease;
}

.button:hover span {
  transform: translateX(7px);
}

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

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

.button-ghost {
  border: 1px solid rgba(23, 27, 32, 0.45);
}

.button-ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.hero-art {
  height: 670px;
  opacity: 0.95;
  position: absolute;
  right: -2vw;
  top: 118px;
  width: min(52vw, 760px);
  z-index: 2;
}

.hero-art::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(0, 175, 235, 0.22), transparent 34%),
    linear-gradient(145deg, var(--ink), #12384d);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 83%);
  content: "";
  inset: 0;
  opacity: 0.98;
  position: absolute;
}

.hero-art::after {
  border: 1px solid var(--copper);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 83%);
  content: "";
  inset: 18px 0 -8px 18px;
  position: absolute;
}

.hero-stage {
  bottom: 88px;
  color: rgba(244, 240, 232, 0.92);
  position: absolute;
  right: 9%;
  text-align: right;
  z-index: 3;
}

.hero-stage span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 9vw, 136px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.hero-stage small {
  color: var(--copper-light);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.6em;
}

.orbit {
  border: 1px solid rgba(244, 240, 232, 0.26);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}

.orbit-one {
  height: 480px;
  left: 15%;
  top: 80px;
  transform: rotate(-24deg);
  width: 260px;
}

.orbit-two {
  height: 300px;
  left: 25%;
  top: 90px;
  transform: rotate(63deg);
  width: 560px;
}

.orbit-three {
  height: 530px;
  left: 34%;
  top: 40px;
  width: 330px;
}

.axis {
  background: rgba(244, 240, 232, 0.19);
  position: absolute;
  z-index: 2;
}

.axis-x {
  height: 1px;
  left: 13%;
  top: 42%;
  width: 76%;
}

.axis-y {
  height: 74%;
  left: 54%;
  top: 10%;
  width: 1px;
}

.node {
  background: var(--copper);
  box-shadow: 0 0 0 6px rgba(0, 143, 196, 0.15);
  height: 9px;
  position: absolute;
  width: 9px;
  z-index: 4;
}

.node-one {
  left: 53.4%;
  top: 41.4%;
}

.node-two {
  background: var(--ivory);
  left: 30%;
  top: 24%;
}

.node-three {
  background: var(--brand-green);
  box-shadow: 0 0 0 6px rgba(142, 198, 104, 0.15);
  bottom: 22%;
  right: 12%;
}

.hero-services {
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  left: clamp(24px, 4vw, 64px);
  position: absolute;
  width: min(61vw, 850px);
  z-index: 3;
}

.hero-services span {
  border-left: 1px solid rgba(23, 27, 32, 0.25);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  padding: 18px 24px;
}

.hero-services span:first-child {
  border-left: 0;
  padding-left: 0;
}

.scroll-cue {
  align-items: center;
  bottom: 30px;
  display: flex;
  gap: 14px;
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  z-index: 3;
}

.scroll-cue span {
  font-size: 9px;
  letter-spacing: 0.24em;
}

.scroll-cue i {
  background: var(--copper);
  height: 1px;
  width: 54px;
}

.section {
  padding: 140px clamp(24px, 6.8vw, 104px);
}

.section-index {
  align-items: center;
  display: flex;
  gap: 12px;
}

.section-index span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}

.section-index p {
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.23em;
  margin: 0;
}

.section-index p::before {
  background: var(--line);
  content: "";
  display: inline-block;
  height: 1px;
  margin: 0 12px 3px 0;
  width: 34px;
}

.section-index.light {
  color: var(--ivory);
}

.section-index.light p::before {
  background: rgba(244, 240, 232, 0.3);
}

.kicker {
  color: #696c6e;
  margin: 0 0 24px;
}

.kicker.copper,
.copper {
  color: var(--copper-light);
}

.about {
  display: grid;
  gap: 60px;
  grid-template-columns: 0.6fr 1.4fr 1fr;
}

.about h2,
.strength h2,
.profile h2,
.company h2,
.news h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.45;
  margin: 0;
}

.about-copy {
  align-self: end;
  border-left: 1px solid var(--line);
  padding-left: 42px;
}

.about-copy p {
  color: #505457;
  font-size: 15px;
  line-height: 2.1;
  margin: 0 0 26px;
}

.services {
  background:
    radial-gradient(circle at 80% 15%, rgba(0, 175, 235, 0.11), transparent 24%),
    var(--ink);
  color: var(--ivory);
}

.section-heading {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: 0.6fr 2.4fr;
}

.section-heading h2 {
  font-size: clamp(36px, 4.3vw, 64px);
  font-weight: 500;
  letter-spacing: -0.05em;
  margin: 0;
}

.service-list {
  border-top: 1px solid rgba(244, 240, 232, 0.24);
  margin-top: 86px;
}

.service-card {
  border-bottom: 1px solid rgba(244, 240, 232, 0.24);
  display: grid;
  gap: 40px;
  grid-template-columns: 0.65fr 1.5fr 1fr 40px;
  min-height: 260px;
  padding: 48px 0;
  position: relative;
  transition: background 0.35s ease;
}

.service-card:hover {
  background: rgba(244, 240, 232, 0.035);
}

.service-topline > span {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-style: italic;
}

.service-topline p {
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.21em;
  margin: 16px 0 0;
}

.service-content h3 {
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.service-content > p {
  color: rgba(244, 240, 232, 0.68);
  font-size: 14px;
  line-height: 2;
  margin: 0;
  max-width: 570px;
}

.service-tags {
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  border: 1px solid rgba(244, 240, 232, 0.25);
  border-radius: 999px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 11px;
  padding: 8px 13px;
}

.service-arrow {
  align-self: center;
  color: var(--copper-light);
  font-size: 26px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
  transform: translate(6px, -6px);
}

.strength {
  background:
    radial-gradient(circle at 90% 4%, rgba(0, 175, 235, 0.08), transparent 24%),
    var(--paper);
  display: grid;
  gap: 70px;
  grid-template-columns: 0.55fr 2.25fr;
}

.strength-copy > p:last-child {
  color: #55595b;
  font-size: 14px;
  line-height: 2.1;
  margin: 32px 0 0;
  max-width: 540px;
}

.reason-list {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.reason-list li {
  align-content: end;
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.reason-list li:first-child {
  grid-column: span 2;
}

.reason-list li:first-child,
.reason-list li:nth-child(2) {
  min-height: 390px;
}

.reason-list li::after {
  background:
    linear-gradient(180deg, rgba(8, 26, 39, 0.03) 20%, rgba(8, 26, 39, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 26, 39, 0.22), transparent 60%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.reason-list img {
  filter: saturate(0.78) contrast(1.04);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition:
    filter 0.45s ease,
    transform 0.7s ease;
  width: 100%;
}

.reason-list li:hover img {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.035);
}

.reason-list span {
  align-self: end;
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.reason-list p {
  align-self: end;
  color: var(--ivory);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.65;
  margin: 0;
  position: relative;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.partners {
  background: #edf4f3;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 45px clamp(24px, 6.8vw, 104px);
}

.partners > p {
  color: var(--copper);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin: 0 0 24px;
}

.partners > div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px clamp(28px, 4vw, 62px);
}

.partners span {
  color: #696b6b;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(15px, 1.6vw, 23px);
  font-weight: 650;
  letter-spacing: 0.04em;
}

.partners small {
  color: #96928c;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.ndc {
  background:
    linear-gradient(rgba(8, 26, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 26, 39, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 120px, 120px 100%, auto;
  display: grid;
  gap: clamp(60px, 8vw, 130px);
  grid-template-columns: minmax(320px, 0.78fr) 1.22fr;
  overflow: hidden;
  position: relative;
}

.ndc::before {
  border: 1px solid rgba(0, 143, 196, 0.2);
  border-radius: 50%;
  content: "";
  height: 520px;
  left: -270px;
  position: absolute;
  top: 20%;
  transform: rotate(-18deg);
  width: 850px;
}

.ndc-intro,
.ndc-content {
  position: relative;
  z-index: 1;
}

.ndc-intro > .section-index {
  margin-bottom: 74px;
}

.ndc-mark {
  align-items: end;
  display: flex;
  gap: 22px;
  margin: 55px 0 65px;
}

.ndc-mark strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(96px, 11vw, 170px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.ndc-mark span {
  border-left: 1px solid var(--copper);
  color: var(--copper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.7;
  padding-left: 17px;
}

.ndc-theme {
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 2.2vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.75;
  margin: 0;
}

.ndc-content {
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 175, 235, 0.17), transparent 25%),
    var(--ink);
  color: var(--ivory);
  padding: clamp(55px, 6vw, 90px);
}

.ndc-content::after {
  border: 1px solid rgba(244, 240, 232, 0.09);
  border-radius: 50%;
  content: "";
  height: 380px;
  position: absolute;
  right: -240px;
  top: -110px;
  transform: rotate(52deg);
  width: 620px;
}

.ndc-content > * {
  position: relative;
  z-index: 1;
}

.ndc-label {
  color: var(--copper-light);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  margin: 0 0 28px;
}

.ndc-content h2 {
  font-size: clamp(35px, 3.8vw, 57px);
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 1.5;
  margin: 0;
}

.ndc-summary {
  color: rgba(244, 240, 232, 0.67);
  font-size: 14px;
  line-height: 2.15;
  margin: 34px 0 52px;
  max-width: 760px;
}

.ndc-points {
  border-bottom: 1px solid rgba(244, 240, 232, 0.18);
  border-top: 1px solid rgba(244, 240, 232, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ndc-points article {
  border-left: 1px solid rgba(244, 240, 232, 0.18);
  min-height: 210px;
  padding: 27px 22px;
}

.ndc-points article:first-child {
  border-left: 0;
  padding-left: 0;
}

.ndc-points article > span {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
}

.ndc-points strong {
  display: block;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  margin: 38px 0 17px;
}

.ndc-points p {
  color: rgba(244, 240, 232, 0.58);
  font-size: 11px;
  line-height: 1.8;
  margin: 0;
}

.ndc-status {
  display: grid;
  gap: 34px;
  grid-template-columns: 0.72fr 1.28fr;
  margin-top: 48px;
}

.ndc-status > div:first-child {
  align-items: baseline;
  border-right: 1px solid rgba(244, 240, 232, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  padding-right: 30px;
}

.ndc-status > div:first-child strong {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.ndc-status > div:first-child span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding-left: 10px;
}

.ndc-status p {
  color: rgba(244, 240, 232, 0.48);
  font-size: 10px;
  grid-column: 1 / -1;
  line-height: 1.7;
  margin: 0;
}

.ndc-history {
  color: rgba(244, 240, 232, 0.52);
  display: block;
  font-size: 9px;
  letter-spacing: 0.1em;
  margin: 8px 0 13px;
}

.ndc-next {
  display: block;
  font-size: 23px;
  font-weight: 550;
  margin-bottom: 15px;
}

.ndc-contact {
  align-items: center;
  border: 1px solid rgba(244, 240, 232, 0.35);
  display: flex;
  font-size: 13px;
  font-weight: 650;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-top: 45px;
  min-height: 66px;
  padding: 0 23px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
  width: min(330px, 100%);
}

.ndc-contact span {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.ndc-contact:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.ndc-contact:hover span {
  transform: translate(5px, -5px);
}

.profile {
  background: var(--ink-soft);
  color: var(--ivory);
  display: grid;
  gap: clamp(60px, 8vw, 130px);
  grid-template-columns: minmax(340px, 0.85fr) 1.15fr;
}

.profile-image {
  align-self: start;
  max-width: 580px;
  position: relative;
}

.profile-image::before {
  border: 1px solid var(--brand-aqua);
  content: "";
  inset: 18px -18px -18px 18px;
  position: absolute;
}

.profile-image::after {
  background: linear-gradient(180deg, transparent 60%, rgba(11, 20, 32, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.profile-image img {
  display: block;
  filter: grayscale(1) contrast(1.06);
  height: auto;
  position: relative;
  width: 100%;
  z-index: 0;
}

.profile-image > span {
  bottom: 24px;
  color: var(--copper-light);
  font-size: 9px;
  font-weight: 700;
  left: 26px;
  letter-spacing: 0.24em;
  position: absolute;
  z-index: 2;
}

.profile-content > .section-index {
  margin-bottom: 70px;
}

.profile-message {
  color: rgba(244, 240, 232, 0.68);
  font-size: 14px;
  line-height: 2.15;
  margin: 30px 0 40px;
  max-width: 660px;
}

.profile-name {
  align-items: baseline;
  border-bottom: 1px solid rgba(244, 240, 232, 0.2);
  border-top: 1px solid rgba(244, 240, 232, 0.2);
  display: flex;
  gap: 20px;
  padding: 22px 0;
}

.profile-name p,
.profile-name span {
  color: rgba(244, 240, 232, 0.55);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.profile-name strong {
  font-size: 22px;
  font-weight: 550;
}

.profile-name span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.career {
  margin: 20px 0 0;
}

.career > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 13px 0;
}

.career dt {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.career dd {
  color: rgba(244, 240, 232, 0.65);
  font-size: 11px;
  line-height: 1.8;
  margin: 0;
}

.company,
.news {
  display: grid;
  gap: clamp(60px, 10vw, 170px);
  grid-template-columns: 0.75fr 1.25fr;
}

.company .section-index,
.news .section-index {
  margin-bottom: 70px;
}

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

.company-table > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 23px 0;
}

.company-table dt {
  color: #777974;
  font-size: 11px;
  font-weight: 600;
}

.company-table dd {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.company-table a {
  border-bottom: 1px solid var(--copper);
}

.news {
  border-top: 1px solid var(--line);
  padding-top: 110px;
}

.news-link {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--charcoal);
  display: grid;
  gap: 34px;
  grid-template-columns: 100px 1fr 30px;
  padding: 34px 0;
}

.news-link span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.news-link p {
  font-size: 13px;
  margin: 0;
}

.news-link i {
  font-size: 20px;
  font-style: normal;
  transition: transform 0.3s ease;
}

.news-link:hover i {
  transform: translate(5px, -5px);
}

.contact {
  align-items: center;
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  min-height: 680px;
  overflow: hidden;
  padding: 110px 24px;
  position: relative;
  text-align: center;
}

.contact > *:not(.contact-orbit) {
  position: relative;
  z-index: 2;
}

.contact > p:first-of-type {
  color: var(--copper-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.contact h2 {
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.45;
  margin: 30px 0 20px;
}

.contact-copy {
  color: rgba(244, 240, 232, 0.65);
  font-size: 13px;
  line-height: 2;
}

.contact-button {
  align-items: center;
  background: var(--brand-blue);
  display: flex;
  font-size: 14px;
  font-weight: 650;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-top: 26px;
  min-height: 70px;
  padding: 0 28px;
  transition: background 0.3s ease;
  width: min(360px, 90vw);
}

.contact-button:hover {
  background: #0076a4;
}

.contact-mail {
  border-bottom: 1px solid rgba(244, 240, 232, 0.35);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: 22px;
}

.contact-orbit {
  border: 1px solid rgba(244, 240, 232, 0.08);
  border-radius: 50%;
  height: 900px;
  position: absolute;
  transform: rotate(21deg);
  width: 380px;
}

.contact-orbit::after,
.contact-orbit::before {
  border: 1px solid rgba(0, 175, 235, 0.14);
  border-radius: 50%;
  content: "";
  inset: 80px -240px;
  position: absolute;
}

.contact-orbit::after {
  inset: 190px -430px;
  transform: rotate(68deg);
}

footer {
  align-items: start;
  background: #070e16;
  color: var(--ivory);
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr 1fr;
  padding: 70px clamp(24px, 6.8vw, 104px) 40px;
}

.footer-logo {
  background: var(--paper);
  border-radius: 2px;
  padding: 12px 16px;
  width: fit-content;
}

.footer-logo img {
  width: 148px;
}

footer > p {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
  margin: 0;
  text-align: right;
}

footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

footer > div a {
  color: rgba(244, 240, 232, 0.6);
  font-size: 11px;
}

footer small {
  color: rgba(244, 240, 232, 0.35);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: right;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav > a {
    font-size: 11px;
  }

  .nav-contact {
    gap: 15px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-art {
    opacity: 0.35;
    right: -20vw;
    width: 75vw;
  }

  .hero-copy {
    max-width: 760px;
  }

  .about,
  .strength {
    grid-template-columns: 0.45fr 1fr;
  }

  .about-copy {
    grid-column: 2;
  }

  .reason-list {
    grid-column: 1 / -1;
  }

  .service-card {
    grid-template-columns: 0.5fr 1.5fr 0.9fr 30px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .wordmark {
    font-size: 23px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    align-content: center;
    cursor: pointer;
    display: grid;
    gap: 6px;
    height: 42px;
    list-style: none;
    width: 42px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    background: var(--charcoal);
    display: block;
    height: 1px;
    margin-left: auto;
    transition: transform 0.3s ease;
    width: 26px;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu nav {
    background: var(--ink);
    color: var(--ivory);
    display: flex;
    flex-direction: column;
    padding: 28px;
    position: fixed;
    right: 0;
    top: 70px;
    width: min(86vw, 360px);
  }

  .mobile-menu nav a {
    border-bottom: 1px solid rgba(244, 240, 232, 0.14);
    font-size: 14px;
    padding: 18px 0;
  }

  .hero {
    background-size: 25vw 100%, 100% 25vw, auto;
    min-height: 810px;
    padding: 125px 20px 130px;
  }

  .hero::after {
    background: rgba(247, 244, 238, 0.35);
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 53px);
    line-height: 1.38;
  }

  .hero-lead {
    font-size: 13px;
    line-height: 1.9;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
  }

  .button {
    min-height: 58px;
    width: min(100%, 310px);
  }

  .hero-art {
    bottom: -50px;
    height: 420px;
    opacity: 0.12;
    right: -170px;
    top: auto;
    width: 540px;
  }

  .hero-services {
    bottom: 35px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero-services span {
    font-size: 7px;
    letter-spacing: 0.12em;
    padding: 12px 9px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 20px;
  }

  .about,
  .strength,
  .section-heading,
  .company,
  .news,
  .profile {
    display: grid;
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .about-copy {
    grid-column: auto;
  }

  .about-main {
    margin-top: 12px;
  }

  .about h2,
  .strength h2,
  .profile h2,
  .company h2,
  .news h2 {
    font-size: 36px;
  }

  .about-copy {
    padding-left: 24px;
  }

  .service-list {
    margin-top: 58px;
  }

  .service-card {
    gap: 24px;
    grid-template-columns: 1fr 30px;
    padding: 36px 0;
  }

  .service-topline,
  .service-content,
  .service-tags {
    grid-column: 1;
  }

  .service-arrow {
    grid-column: 2;
    grid-row: 1;
  }

  .service-content h3 {
    font-size: 28px;
  }

  .reason-list {
    gap: 10px;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .reason-list li,
  .reason-list li:first-child,
  .reason-list li:nth-child(2) {
    grid-column: auto;
    gap: 15px;
    grid-template-columns: 38px 1fr;
    min-height: 240px;
    padding: 23px 20px;
  }

  .partners {
    padding: 36px 20px;
  }

  .partners > div {
    gap: 25px 32px;
  }

  .ndc {
    background-size: 100% 90px, 90px 100%, auto;
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .ndc-intro > .section-index {
    margin-bottom: 45px;
  }

  .ndc-mark {
    margin: 42px 0 48px;
  }

  .ndc-mark strong {
    font-size: 104px;
  }

  .ndc-content {
    margin: 0 -20px -88px;
    padding: 68px 20px 80px;
  }

  .ndc-content h2 {
    font-size: 35px;
  }

  .ndc-points {
    grid-template-columns: 1fr;
  }

  .ndc-points article {
    border-left: 0;
    border-top: 1px solid rgba(244, 240, 232, 0.18);
    min-height: 0;
    padding: 25px 0;
  }

  .ndc-points article:first-child {
    border-top: 0;
  }

  .ndc-points strong {
    margin: 12px 0 8px;
  }

  .ndc-status {
    grid-template-columns: 1fr;
  }

  .ndc-status > div:first-child {
    border-bottom: 1px solid rgba(244, 240, 232, 0.18);
    border-right: 0;
    padding: 0 0 28px;
  }

  .profile {
    gap: 70px;
  }

  .profile-image {
    margin-right: 18px;
    order: 2;
  }

  .profile-content {
    order: 1;
  }

  .profile-content > .section-index,
  .company .section-index,
  .news .section-index {
    margin-bottom: 45px;
  }

  .profile-name {
    align-items: start;
    flex-wrap: wrap;
  }

  .career > div {
    gap: 15px;
    grid-template-columns: 85px 1fr;
  }

  .company-table > div {
    gap: 18px;
    grid-template-columns: 90px 1fr;
  }

  .news {
    border-top: 0;
    padding-top: 88px;
  }

  .news-link {
    gap: 18px;
    grid-template-columns: 1fr 25px;
  }

  .news-link span,
  .news-link p {
    grid-column: 1;
  }

  .news-link i {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .contact {
    min-height: 620px;
    padding: 90px 20px;
  }

  .contact h2 {
    font-size: 43px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 55px 20px 32px;
  }

  footer > p,
  footer small {
    text-align: left;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: reveal 0.8s both;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: 0.08s;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: 0.16s;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: 0.24s;
  }

  .hero-art {
    animation: artReveal 1.2s 0.15s both;
  }

  .node-one {
    animation: nodeFloat 5s ease-in-out infinite;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes artReveal {
    from {
      opacity: 0;
      transform: translateX(35px);
    }
    to {
      transform: translateX(0);
    }
  }

  @keyframes nodeFloat {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(26px, -12px);
    }
  }
}
