:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --text: #1d1d1f;
  --muted: #5f6368;
  --subtle: #86868b;
  --line: #d8dce2;
  --line-soft: #eceef2;
  --accent: #0066cc;
  --accent-dark: #004f9f;
  --accent-soft: #eaf4ff;
  --accent-tint: #dff4ff;
  --teal: #0a9a9a;
  --teal-dark: #087a7a;
  --teal-soft: #e4f7f5;
  --green: #2d8f5b;
  --shadow: 0 18px 50px rgba(29, 29, 31, 0.08);
  --shadow-soft: 0 8px 26px rgba(29, 29, 31, 0.06);
  --radius: 8px;
  --header-height: 66px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 102, 204, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  font-weight: 650;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: blur(22px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(216, 220, 226, 0.78);
  background: rgba(245, 245, 247, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 0;
  white-space: nowrap;
}

.brand-wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  color: var(--text);
  font-family: inherit;
  font-size: 17px;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1;
}

.brand-wordmark span:last-child {
  color: var(--accent);
  font-family: inherit;
  font-weight: 760;
}

.brand-name {
  position: relative;
  color: #3f4348;
  font-size: 15px;
  font-weight: 650;
}

.brand-name::before {
  color: var(--subtle);
  content: "·";
  margin-right: 10px;
  font-weight: 560;
}

.nav-links {
  gap: 26px;
  color: #3f4348;
  font-size: 14px;
  font-weight: 560;
}

.nav-cta {
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 244, 255, 0.82));
  color: var(--accent);
  padding: 8px 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(640px, 82svh, 860px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(10, 154, 154, 0.09) 46%, rgba(245, 245, 247, 0) 74%),
    #f4f6f8;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.99) 0%, rgba(245, 247, 250, 0.9) 35%, rgba(236, 248, 252, 0.5) 66%, rgba(245, 245, 247, 0.2) 100%),
    linear-gradient(0deg, rgba(245, 245, 247, 0.94) 0%, rgba(245, 245, 247, 0) 22%);
  pointer-events: none;
}

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

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero .eyebrow {
  text-transform: none;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: #42464d;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.42;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 34px 0 0;
}

.hero-facts div {
  min-width: 170px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 249, 255, 0.68));
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.08);
  padding: 14px 16px;
  backdrop-filter: blur(18px);
}

.hero-facts dt {
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 690;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #0786d8);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 102, 204, 0.24);
}

.button-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(0, 102, 204, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
}

.button-secondary:hover {
  background: #fff;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.intro-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
  gap: clamp(34px, 4vw, 52px);
  align-items: center;
  width: min(1280px, calc(100% - 40px));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 3.5vw, 46px);
  align-items: start;
}

.intro-grid > * {
  min-width: 0;
}

.intro-grid h2 {
  max-width: 500px;
  font-size: clamp(32px, 3.4vw, 48px);
}

.intro-copy p {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.6;
}

.profile-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.profile-portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.profile-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(6%) saturate(96%) contrast(96%) brightness(102%);
}

.profile-portrait figcaption {
  position: relative;
  z-index: 1;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  line-height: 1.35;
  padding: 16px;
}

.profile-portrait blockquote {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 15px;
  font-style: italic;
  font-weight: 650;
  line-height: 1.35;
}

.profile-portrait span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.intro-copy p:last-child,
.section-heading p:last-child,
.support-main p:last-of-type,
.kmu-card p:last-child,
.ai-grid p,
.process-steps p,
.detail-columns p,
.principles p,
.card p {
  margin-bottom: 0;
}

.soft-band {
  background:
    linear-gradient(180deg, rgba(245, 245, 247, 0.96) 0%, #ffffff 100%),
    linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(10, 154, 154, 0.06));
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading.narrow {
  max-width: 700px;
}

.section-heading p {
  font-size: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.support-panel,
.stat-card,
.principles article {
  border: 1px solid rgba(216, 220, 226, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  content: "";
  opacity: 0.82;
}

.card:hover {
  border-color: rgba(0, 102, 204, 0.18);
  box-shadow: 0 24px 58px rgba(29, 29, 31, 0.11);
  transform: translateY(-3px);
}

.support-section {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(244, 250, 252, 0.84) 100%);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.support-main p {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: 20px;
}

.support-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 253, 255, 0.9));
}

.support-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  content: "";
  opacity: 0.82;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #3f4348;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(10, 154, 154, 0.12);
  color: var(--teal-dark);
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.kmu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(36px, 5vw, 58px);
}

.kmu-card {
  border: 1px solid rgba(216, 220, 226, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}

.kmu-card:not(.kmu-card-wide) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.94));
}

.kmu-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1.3fr);
  column-gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.kmu-card-wide .eyebrow {
  grid-column: 1 / -1;
}

.focus-card {
  border-color: rgba(10, 154, 154, 0.24);
  background:
    linear-gradient(135deg, rgba(232, 248, 247, 0.82), rgba(255, 255, 255, 0.94));
}

.focus-card p:last-child {
  max-width: 760px;
  font-size: 18px;
}

.kmu-card h3 {
  max-width: 520px;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 22px;
  color: #3f4348;
}

.plain-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  content: "";
}

.process-section {
  background:
    linear-gradient(180deg, var(--surface-soft), #ffffff);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-steps article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--teal-soft));
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 780;
}

.ai-section {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(241, 250, 252, 0.9) 100%),
    linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(10, 154, 154, 0.12));
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(470px, 1fr) minmax(420px, 0.95fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

.ai-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  max-width: 640px;
  margin-bottom: 0;
}

.ai-layout .button {
  margin-top: 10px;
}

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

.ai-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(195, 226, 232, 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 253, 255, 0.92));
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.ai-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  content: "";
}

.ai-grid h3 {
  font-size: 19px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.principles article {
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.principles h3 {
  font-size: 18px;
}

.experience-layout {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 26px;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
}

.stat-card span {
  color: var(--muted);
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  padding-top: 6px;
}

.detail-columns h3 {
  font-size: 19px;
}

.contact-section {
  background:
    linear-gradient(180deg, #101418 0%, #0c1116 100%);
  color: #fff;
}

.contact-section .eyebrow,
.contact-section a {
  color: #7dc0ff;
}

.contact-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.section .eyebrow {
  font-size: 20px;
  line-height: 1.2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 520px);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-form,
.contact-card {
  display: grid;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.contact-form {
  gap: 12px;
}

.contact-form p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.form-trap {
  display: none;
}

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

.contact-form label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 680;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 520;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(125, 192, 255, 0.28);
  border-color: rgba(125, 192, 255, 0.64);
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #ffb4a8;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.contact-form .privacy-note {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.contact-form .form-status {
  min-height: 1.5em;
  margin: 0;
  color: #b9ddff;
  font-size: 14px;
}

.contact-card {
  gap: 8px;
  font-style: normal;
}

.contact-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 740;
  text-transform: uppercase;
}

.contact-card span:first-child {
  margin-top: 0;
}

.contact-card a,
.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.24;
}

.site-footer {
  background: #101418;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 32px;
}

.footer-inner p {
  margin: 0;
  color: inherit;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-main {
  min-height: 70svh;
  background: var(--surface);
}

.legal-content {
  max-width: 780px;
  overflow-wrap: anywhere;
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1.12;
}

.legal-content h2 {
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.2;
}

.legal-content p {
  font-size: 17px;
  line-height: 1.62;
}

.legal-note {
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 102, 204, 0.06);
  padding: 18px 20px;
  color: #2f5f92;
}

@media (max-width: 1024px) {
  .intro-profile {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    width: min(320px, 100%);
  }

  .service-grid,
  .principles,
  .kmu-grid,
  .ai-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-layout {
    grid-template-columns: 1fr;
  }

  .ai-layout .section-heading {
    position: static;
  }

  .qualification-grid,
  .detail-columns {
    grid-template-columns: 1fr;
  }

  .kmu-card-wide {
    grid-column: auto;
    display: block;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 62px;
  }

  body {
    font-size: 16px;
  }

  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    max-width: calc(100% - 54px);
    font-size: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 50px rgba(29, 29, 31, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .hero {
    align-items: end;
    min-height: 78svh;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(245, 245, 247, 0.1) 0%, rgba(245, 245, 247, 0.78) 36%, rgba(245, 245, 247, 0.99) 82%),
      linear-gradient(90deg, rgba(245, 245, 247, 0.72) 0%, rgba(245, 245, 247, 0.06) 100%);
  }

  .hero-visual img {
    height: 58%;
    object-position: 67% top;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 188px 0 44px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .hero-copy,
  .intro-copy p,
  .section-heading p,
  .support-main p,
  .contact-section p {
    font-size: 18px;
  }

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

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .hero-facts div {
    min-width: 0;
    padding: 10px 8px;
  }

  .hero-facts dt {
    font-size: 12px;
  }

  .hero-facts dd {
    font-size: 11px;
  }

  .section {
    padding: 70px 0;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .intro-grid,
  .support-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    width: min(280px, 72vw);
  }

  .service-grid,
  .principles,
  .kmu-grid,
  .ai-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .legal-nav a {
    display: none;
  }

  .legal-nav .nav-cta {
    display: inline-flex;
    border: 1px solid rgba(0, 102, 204, 0.18);
    border-radius: 999px;
    background: #fff;
    padding: 8px 14px;
  }
}

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