:root {
  --ink: #06283d;
  --ink-2: #0b344b;
  --ink-3: #14485e;
  --blue: #4169e1;
  --cyan: #11b8d7;
  --cyan-soft: #9ce7ef;
  --paper: #f3f7f7;
  --paper-warm: #f7f4ed;
  --white: #ffffff;
  --muted: #667983;
  --line: rgba(6, 40, 61, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --header-height: 84px;
  --shell: 1240px;
  --radius: 3px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.shell {
  width: min(calc(100% - 80px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(6, 40, 61, 0.08);
  background: rgba(243, 247, 247, 0.86);
  backdrop-filter: blur(18px);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 72px;
  background: rgba(250, 252, 252, 0.96);
  box-shadow: 0 8px 30px rgba(6, 40, 61, 0.07);
}

.site-header-dark {
  border-color: var(--line-light);
  background: rgba(6, 40, 61, 0.82);
}

.site-header-dark:not(.is-scrolled) .brand-name,
.site-header-dark:not(.is-scrolled) .global-nav,
.site-header-dark:not(.is-scrolled) .menu-button {
  color: var(--white);
}

.site-header-dark:not(.is-scrolled) .language-switcher {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.64);
}

.site-header-dark:not(.is-scrolled) .language-switcher a[aria-current="true"] {
  color: var(--white);
}

.site-header-dark:not(.is-scrolled) .language-switcher span {
  background: rgba(255, 255, 255, 0.22);
}

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

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

.brand-mark {
  width: 42px;
  height: 27px;
  background-image: url("assets/MARINcloud_logo_250519_fix_ol-02.png");
  background-repeat: no-repeat;
  background-position: center -10px;
  background-size: 82px auto;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.brand-name b {
  color: var(--blue);
  font-weight: 700;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 42px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.global-nav a {
  position: relative;
  padding-block: 5px;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  color: #82919a;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.language-switcher span {
  width: 1px;
  height: 11px;
  background: var(--line);
}

.language-switcher a {
  transition: color 0.2s ease;
}

.language-switcher a[aria-current="true"] {
  color: var(--ink);
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 58px;
  padding: 14px 18px 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.button i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
}

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

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

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

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

.button-ink i {
  color: var(--ink);
  background: var(--cyan-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.text-link i {
  font-style: normal;
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(5px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow > span:first-child {
  width: 34px;
  height: 1px;
  background: var(--cyan);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.64);
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: calc(var(--header-height) + 96px) 0 38px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(6, 40, 61, 0.035) 50%, transparent calc(50% + 1px)),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 184, 215, 0.14), rgba(17, 184, 215, 0) 68%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  align-items: center;
  gap: 46px;
  min-height: 630px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 25px 0 64px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 5.3vw, 78px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.24;
}

.hero h1 .hero-title-accent {
  position: relative;
  color: var(--blue);
  white-space: nowrap;
}

.hero h1 .hero-title-accent::after {
  position: absolute;
  right: 0;
  bottom: 0.06em;
  left: 0;
  z-index: -1;
  height: 0.18em;
  background: var(--cyan-soft);
  content: "";
  opacity: 0.6;
}

.hero-title-line {
  display: block;
  max-width: 100%;
  color: inherit;
  white-space: nowrap;
}

.hero h1 .hero-title-line::after {
  display: none;
}

.hero-lead {
  max-width: 600px;
  margin: 35px 0 0;
  color: #4b636e;
  font-size: 16px;
  line-height: 2;
}

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

.system-visual {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(6, 40, 61, 0.11);
  border-radius: 50% 50% 48% 52% / 52% 47% 53% 48%;
  background:
    linear-gradient(rgba(6, 40, 61, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 40, 61, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.44);
  background-size: 52px 52px;
}

.system-visual::before,
.system-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.system-visual::before {
  inset: 17%;
  background: radial-gradient(circle at 38% 36%, rgba(156, 231, 239, 0.62), rgba(65, 105, 225, 0.18) 45%, rgba(65, 105, 225, 0) 72%);
  filter: blur(2px);
}

.system-visual::after {
  inset: 2px;
  border: 1px dashed rgba(6, 40, 61, 0.13);
}

.visual-caption {
  position: absolute;
  top: 45px;
  right: 55px;
  left: 55px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #75909b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(6, 40, 61, 0.14);
  border-radius: 50%;
}

.orbit-one {
  inset: 17%;
}

.orbit-two {
  inset: 28%;
  border-style: dashed;
}

.orbit-three {
  top: 16%;
  right: 46%;
  bottom: 16%;
  left: 46%;
}

.visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  color: var(--white);
  border: 9px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(6, 40, 61, 0.24);
  text-align: center;
  transform: translate(-50%, -50%);
}

.visual-core span {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.visual-core small {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.visual-node {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 13px 1fr auto;
  align-items: center;
  gap: 8px;
  min-width: 116px;
  padding: 9px 11px;
  border: 1px solid rgba(6, 40, 61, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 26px rgba(6, 40, 61, 0.07);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.visual-node i {
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.12);
}

.visual-node small {
  color: #91a0a7;
  font-size: 8px;
}

.node-aws {
  top: 25%;
  left: 7%;
}

.node-design {
  top: 14%;
  right: 12%;
}

.node-people {
  right: 6%;
  bottom: 22%;
}

.node-operate {
  bottom: 12%;
  left: 17%;
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #6e838c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-foot p {
  margin: 0;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 15px;
}

.scroll-cue i,
.company-hero-foot a i {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.scroll-cue i::after,
.company-hero-foot a i::after {
  position: absolute;
  top: 12px;
  left: 17px;
  width: 4px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.proof-strip {
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 0.72fr)) minmax(260px, 1.2fr);
}

.proof-grid > div,
.proof-statement {
  min-height: 160px;
  margin: 0;
  padding: 29px 28px;
  border-right: 1px solid var(--line-light);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line-light);
}

.proof-grid > div > span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.proof-grid > div p {
  margin: 34px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.proof-statement {
  display: flex;
  align-items: center;
  color: var(--cyan-soft);
  background: var(--ink-2);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.section {
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(340px, 0.75fr);
  justify-content: space-between;
  gap: 80px;
  align-items: end;
  margin-bottom: 78px;
}

.section-index {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-heading h2,
.sticky-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-heading > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.58);
}

.services-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, rgba(17, 184, 215, 0.11), transparent 26%),
    var(--ink-2);
}

.services-section::after {
  position: absolute;
  right: -210px;
  bottom: -310px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.018);
  content: "";
}

.service-list {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-light);
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(340px, 0.9fr) minmax(330px, 1fr);
  gap: 45px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-number {
  padding-top: 8px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-title {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.service-title h3 {
  max-width: 330px;
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.service-symbol {
  position: relative;
  display: block;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(156, 231, 239, 0.32);
  border-radius: 50%;
}

.symbol-infra i {
  position: absolute;
  left: 17px;
  width: 22px;
  height: 6px;
  border: 1px solid var(--cyan);
}

.symbol-infra i:nth-child(1) { top: 15px; }
.symbol-infra i:nth-child(2) { top: 25px; }
.symbol-infra i:nth-child(3) { top: 35px; }

.symbol-consulting i:first-child,
.symbol-consulting i:last-child {
  position: absolute;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}

.symbol-consulting i:first-child {
  inset: 13px;
}

.symbol-consulting i:last-child {
  inset: 21px;
  background: var(--cyan);
}

.symbol-support i {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}

.symbol-support i:nth-child(1) { top: 15px; left: 22px; }
.symbol-support i:nth-child(2) { right: 13px; bottom: 13px; }
.symbol-support i:nth-child(3) { bottom: 13px; left: 13px; }

.symbol-support::after {
  position: absolute;
  inset: 20px 16px 16px;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
  content: "";
  transform: rotate(45deg);
}

.service-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.95;
}

.service-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-copy li {
  padding: 6px 11px;
  color: var(--cyan-soft);
  border: 1px solid rgba(156, 231, 239, 0.18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.mission-section {
  background: var(--paper-warm);
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 80px;
}

.mission-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coordinate-mark {
  position: relative;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.coordinate-mark::before,
.coordinate-mark::after {
  position: absolute;
  background: var(--line);
  content: "";
}

.coordinate-mark::before {
  top: 50%;
  right: -25px;
  left: -25px;
  height: 1px;
}

.coordinate-mark::after {
  top: -25px;
  bottom: -25px;
  left: 50%;
  width: 1px;
}

.coordinate-mark span {
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mission-content {
  padding-top: 3px;
}

.kicker {
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mission-content h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(40px, 5.8vw, 75px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.35;
}

.mission-content h2 .mission-title-accent {
  color: var(--blue);
}

.mission-bottom {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) auto;
  align-items: end;
  gap: 80px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.mission-bottom > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.circle-link {
  display: grid;
  width: 156px;
  height: 156px;
  place-content: center;
  gap: 15px;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.circle-link:hover {
  background: var(--blue);
  transform: rotate(4deg) scale(1.04);
}

.circle-link i {
  color: var(--cyan);
  font-size: 20px;
  font-style: normal;
}

.careers-section {
  background: var(--paper);
}

.careers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 22px;
}

.workstyle-card,
.openings-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.workstyle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 1px solid var(--line);
}

.workstyle-header p,
.card-label {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.workstyle-header span {
  color: #81939b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 23px;
  padding: 27px 30px;
  border-bottom: 1px solid var(--line);
}

.benefit-list article:last-child {
  border-bottom: 0;
}

.benefit-list article > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.benefit-list h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.openings-card {
  padding: 30px;
  color: var(--white);
  background: var(--blue);
}

.openings-card .card-label {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.68);
}

.openings-card article {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.openings-card article > div > span {
  color: var(--cyan-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.openings-card h3 {
  margin: 8px 0 9px;
  font-size: 20px;
  font-weight: 600;
}

.openings-card article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.openings-card .button {
  width: 100%;
  margin-top: 30px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: var(--white);
  background: var(--blue);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(360px, 0.74fr);
  align-items: end;
  gap: 100px;
}

.contact-section .section-index {
  color: var(--cyan-soft);
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(45px, 5.5vw, 74px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.3;
}

.contact-copy > p {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.95;
}

.contact-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: clamp(15px, 1.55vw, 20px);
  font-weight: 700;
}

.contact-mail i {
  font-size: 22px;
  font-style: normal;
  transition: transform 0.2s ease;
}

.contact-mail:hover i {
  transform: translate(4px, -4px);
}

.contact-copy small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-orbit-one {
  top: -370px;
  right: -170px;
  width: 760px;
  height: 760px;
}

.contact-orbit-two {
  right: 70px;
  bottom: -500px;
  width: 720px;
  height: 720px;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.035), 0 0 0 160px rgba(255, 255, 255, 0.024);
}

.site-footer {
  padding: 66px 0 28px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 60px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 27px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.footer-bottom > div a {
  color: rgba(255, 255, 255, 0.72);
}

/* Company */

.company-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: calc(var(--header-height) + 90px) 0 35px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 32%, rgba(17, 184, 215, 0.15), transparent 28%),
    var(--ink);
}

.company-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 50%, black);
}

.company-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: 30px;
  min-height: 520px;
}

.company-hero-copy h1 {
  margin: 0;
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.company-hero-copy > p:last-child {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
}

.company-hero-visual {
  position: relative;
  min-height: 500px;
}

.company-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(255, 255, 255, 0.025), 0 0 0 124px rgba(255, 255, 255, 0.017);
  transform: translate(-50%, -50%);
}

.company-ring::before,
.company-ring::after {
  position: absolute;
  content: "";
}

.company-ring::before {
  top: 50%;
  right: -95px;
  left: -95px;
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
}

.company-ring::after {
  top: -95px;
  bottom: -95px;
  left: 50%;
  border-left: 1px dashed rgba(255, 255, 255, 0.22);
}

.company-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  color: var(--ink);
  border: 14px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: var(--cyan);
  background-clip: padding-box;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%);
}

.company-hero-visual p {
  position: absolute;
  right: 0;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: right;
}

.hero-cross {
  position: absolute;
  z-index: 3;
  width: 13px;
  height: 13px;
}

.hero-cross::before,
.hero-cross::after {
  position: absolute;
  background: var(--cyan);
  content: "";
}

.hero-cross::before { top: 6px; width: 13px; height: 1px; }
.hero-cross::after { left: 6px; width: 1px; height: 13px; }
.cross-one { top: 18%; left: 10%; }
.cross-two { top: 30%; right: 5%; }
.cross-three { bottom: 18%; left: 18%; }

.company-hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.company-hero-foot a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.company-hero-foot a i {
  border-color: rgba(255, 255, 255, 0.24);
}

.values-section {
  background: var(--paper);
}

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

.value-card {
  position: relative;
  min-height: 400px;
  padding: 28px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.43);
}

.value-card-accent {
  color: var(--white);
  background: var(--blue);
}

.value-number {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.value-card-accent .value-number {
  color: var(--cyan-soft);
}

.value-icon {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 45px 0 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.value-card-accent .value-icon {
  border-color: rgba(255, 255, 255, 0.3);
}

.value-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.95;
}

.value-card-accent p {
  color: rgba(255, 255, 255, 0.72);
}

.value-icon-tech i {
  position: absolute;
  width: 25px;
  height: 7px;
  border: 1px solid var(--blue);
}

.value-icon-tech i:nth-child(1) { top: 19px; left: 22px; }
.value-icon-tech i:nth-child(2) { top: 30px; left: 22px; }
.value-icon-tech i:nth-child(3) { top: 41px; left: 22px; }

.value-icon-pro i {
  position: absolute;
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.value-icon-pro i:first-child { inset: 16px; }
.value-icon-pro i:last-child { inset: 27px; background: var(--blue); }

.value-icon-culture i,
.value-icon-growth i {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.value-icon-culture i:nth-child(1) { top: 17px; left: 29px; }
.value-icon-culture i:nth-child(2) { right: 15px; bottom: 17px; }
.value-icon-culture i:nth-child(3) { bottom: 17px; left: 15px; }

.value-icon-growth i {
  border-color: var(--cyan-soft);
  border-radius: 1px;
}

.value-icon-growth i:nth-child(1) { bottom: 17px; left: 15px; height: 12px; }
.value-icon-growth i:nth-child(2) { bottom: 17px; left: 29px; height: 23px; }
.value-icon-growth i:nth-child(3) { bottom: 17px; left: 43px; height: 35px; }

.vision-section {
  padding: 160px 0;
  color: var(--white);
  background: var(--ink-2);
}

.vision-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: 80px;
}

.vision-heading {
  position: relative;
  overflow: hidden;
}

.vision-heading .section-index {
  color: var(--cyan);
}

.vision-word {
  margin: 110px 0 0;
  color: transparent;
  font-size: clamp(90px, 12vw, 170px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  writing-mode: vertical-rl;
}

.vision-content h2 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.4;
}

.vision-content h2 span {
  color: var(--cyan);
}

.vision-points {
  margin-top: 75px;
  border-top: 1px solid var(--line-light);
}

.vision-points article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.vision-points article > span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
}

.vision-points h3 {
  margin: 0 0 13px;
  font-size: 19px;
  font-weight: 600;
}

.vision-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.95;
}

.ceo-section {
  background: var(--paper-warm);
}

.ceo-image {
  position: relative;
  height: 510px;
  overflow: hidden;
  margin-bottom: 85px;
  background: var(--ink);
}

.ceo-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 40, 61, 0.38), transparent 55%, rgba(6, 40, 61, 0.25));
  content: "";
}

.ceo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05);
}

.ceo-image .ceo-whiteboard-photo {
  object-position: center 58%;
}

.ceo-image > p {
  position: absolute;
  top: 35px;
  left: 38px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.ceo-image > span {
  position: absolute;
  right: 30px;
  bottom: 23px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.76);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ceo-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 0.8fr);
  align-items: stretch;
  justify-content: space-between;
  gap: 100px;
}

.ceo-title {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ceo-section-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.ceo-copy h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.42;
}

.ceo-copy {
  container-type: inline-size;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ceo-copy h2 {
  font-size: clamp(20px, 6.2cqi, 44px);
}

.ceo-heading-line {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.ceo-title-portrait {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 420px;
  flex: 1;
  margin: clamp(10px, 1.8vw, 24px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px 76px 30px 30px;
  background: var(--mist);
  box-shadow:
    0 26px 58px rgba(31, 71, 86, 0.16),
    0 0 0 1px rgba(120, 110, 242, 0.08);
}

.ceo-title-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 55%, rgba(53, 77, 143, 0.12));
  content: "";
  pointer-events: none;
}

.ceo-title-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  transition: transform 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.ceo-title-portrait:hover img {
  transform: scale(1.035);
}

.ceo-copy > p {
  margin: 0 0 24px;
  color: #526a75;
  font-size: 14px;
  line-height: 2.05;
}

.ceo-copy h2 + p {
  margin-top: clamp(32px, 4vw, 54px);
}

.signature {
  display: block;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.signature strong {
  font-size: 16px;
}

.signature span {
  color: var(--muted);
  font-size: 11px;
}

.signature small {
  grid-column: 1 / -1;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.company-details-section {
  background: var(--paper);
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(540px, 0.9fr);
  justify-content: space-between;
  gap: 100px;
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

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

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

.company-table dt {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

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

.history-section {
  color: var(--white);
  background: var(--ink);
}

.history-section .section-heading h2 {
  color: var(--white);
}

.history-section .section-heading > p {
  color: rgba(255, 255, 255, 0.54);
}

.history-section .section-index {
  color: var(--cyan);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 150px 45px 1fr;
  gap: 28px;
  min-height: 155px;
}

.timeline time {
  padding-top: 6px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.timeline li > i {
  position: relative;
  display: block;
}

.timeline li > i::before {
  position: absolute;
  top: 8px;
  left: 13px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
  content: "";
}

.timeline li > i::after {
  position: absolute;
  top: 21px;
  bottom: -1px;
  left: 17px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.timeline li:last-child > i::after {
  display: none;
}

.timeline h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 13px;
}

.timeline-future {
  padding: 30px;
  border: 1px solid rgba(156, 231, 239, 0.2);
  background: rgba(17, 184, 215, 0.05);
}

.timeline-future > div > span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.access-section {
  background: var(--paper);
}

.access-section .section-heading {
  grid-template-columns: 1fr;
}

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

.office-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(220px, 1fr);
  min-height: 360px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.office-map {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #e5edef;
  background-size: 34px 34px;
}

.office-map::before,
.office-map::after {
  position: absolute;
  border: 1px solid rgba(6, 40, 61, 0.18);
  border-radius: 50%;
  content: "";
}

.office-map::before {
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.office-map::after {
  width: 110px;
  height: 110px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.office-map i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  transform: translate(-50%, -50%);
}

.office-map span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.map-barcelona {
  background:
    linear-gradient(rgba(6, 40, 61, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 40, 61, 0.1) 1px, transparent 1px),
    #eee9dc;
  background-size: 34px 34px;
}

.office-card > div:last-child {
  padding: 33px 28px;
}

.office-card > div:last-child > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.office-card h3 {
  margin: 22px 0 17px;
  font-size: 18px;
  line-height: 1.5;
}

.office-card address {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.85;
}

.office-card p {
  margin: 20px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .shell {
    width: min(calc(100% - 56px), var(--shell));
  }

  .header-panel {
    gap: 26px;
  }

  .global-nav {
    gap: 22px;
  }

  .hero {
    min-height: 810px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(410px, 1.05fr);
    gap: 15px;
  }

  .system-visual {
    min-height: 540px;
  }

  .service-row {
    grid-template-columns: 48px minmax(330px, 0.9fr) minmax(300px, 1fr);
    gap: 32px;
  }

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

  .company-hero-grid {
    grid-template-columns: 0.75fr 1.25fr;
  }

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

  .ceo-layout,
  .details-layout {
    gap: 65px;
  }

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

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

  .shell {
    width: min(calc(100% - 38px), var(--shell));
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    height: var(--header-height);
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-lines {
    position: relative;
    width: 26px;
    height: 18px;
  }

  .menu-lines i {
    position: absolute;
    right: 0;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: top 0.2s ease, transform 0.2s ease;
  }

  .menu-lines i:first-child { top: 5px; }
  .menu-lines i:last-child { top: 13px; width: 18px; }

  .site-header.is-open .menu-lines i:first-child {
    top: 9px;
    transform: rotate(45deg);
  }

  .site-header.is-open .menu-lines i:last-child {
    top: 9px;
    width: 26px;
    transform: rotate(-45deg);
  }

  .site-header-dark.is-open .menu-button {
    color: var(--ink);
  }

  .header-panel {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: 100dvh;
    padding: 100px 32px 45px;
    color: var(--ink);
    background: rgba(247, 250, 250, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.is-open .header-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .global-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(25px, 7vw, 39px);
    font-weight: 500;
    letter-spacing: -0.03em;
  }

  .language-switcher {
    justify-self: start;
    margin-top: 35px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 70px) 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(46px, 10.5vw, 72px);
  }

  .system-visual {
    width: min(100%, 590px);
    min-height: 590px;
    margin-inline: auto;
  }

  .hero-foot {
    margin-top: 45px;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-statement {
    grid-column: 1 / -1;
  }

  .section {
    padding: 105px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 55px;
  }

  .section-heading > p {
    max-width: 630px;
  }

  .service-row {
    grid-template-columns: 40px 1fr;
    gap: 25px;
  }

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

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

  .mission-label {
    display: block;
  }

  .coordinate-mark {
    display: none;
  }

  .mission-bottom {
    grid-template-columns: 1fr auto;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .company-hero {
    min-height: auto;
  }

  .company-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .company-hero-visual {
    min-height: 480px;
  }

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

  .vision-word {
    display: none;
  }

  .ceo-image {
    height: 410px;
  }

  .ceo-layout,
  .details-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ceo-title,
  .ceo-copy {
    display: block;
  }

  .ceo-title-portrait {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .signature {
    margin-top: 48px;
  }

  .sticky-heading {
    position: static;
  }

  .timeline li {
    grid-template-columns: 100px 34px 1fr;
    gap: 18px;
  }

  .timeline-future {
    padding: 25px 18px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 35px;
    height: 24px;
    background-position: center -8px;
    background-size: 70px auto;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 50px);
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(40px, 10.6vw, 46px);
    line-height: 1.32;
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(35px, 9.6vw, 42px);
  }

  html[lang="en"] .hero h1 .hero-line {
    white-space: normal;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 14px;
  }

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

  .text-link {
    align-self: flex-start;
  }

  .system-visual {
    min-height: 400px;
    background-size: 38px 38px;
  }

  .visual-caption {
    top: 28px;
    right: 32px;
    left: 32px;
    font-size: 6px;
  }

  .visual-core {
    width: 96px;
    height: 96px;
  }

  .visual-node {
    min-width: 92px;
    padding: 7px 8px;
    font-size: 7px;
  }

  .node-aws { top: 23%; left: 1%; }
  .node-design { top: 16%; right: 2%; }
  .node-people { right: 1%; bottom: 19%; }
  .node-operate { bottom: 10%; left: 8%; }

  .hero-foot {
    align-items: center;
  }

  .hero-foot p {
    max-width: none;
    white-space: nowrap;
  }

  .scroll-cue span {
    display: none;
  }

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

  .proof-grid > div,
  .proof-statement {
    min-height: 120px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .proof-grid > div p {
    margin-top: 18px;
  }

  .proof-statement {
    grid-column: auto;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .section-heading h2,
  .sticky-heading h2 {
    font-size: 44px;
  }

  .service-row {
    grid-template-columns: 28px 1fr;
    padding: 35px 0;
  }

  .service-title {
    display: block;
  }

  .service-title h3 {
    margin-top: 18px;
  }

  .service-symbol {
    width: 48px;
    height: 48px;
    transform: scale(0.9);
    transform-origin: left top;
  }

  .service-copy ul {
    display: grid;
    justify-items: start;
  }

  .mission-layout {
    gap: 20px;
  }

  .mission-content h2 {
    font-size: 39px;
  }

  .mission-bottom {
    grid-template-columns: 1fr;
  }

  .circle-link {
    width: 135px;
    height: 135px;
  }

  .workstyle-header {
    padding: 20px;
  }

  .workstyle-header span {
    display: none;
  }

  .benefit-list article {
    grid-template-columns: 32px 1fr;
    padding: 23px 20px;
  }

  .openings-card {
    padding: 24px 20px;
  }

  .contact-section {
    padding: 90px 0;
  }

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

  .contact-mail {
    font-size: 14px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom > div {
    width: 100%;
    justify-content: space-between;
  }

  .company-hero {
    padding-top: calc(var(--header-height) + 45px);
  }

  .company-hero-copy h1 {
    font-size: 55px;
  }

  .company-hero-visual {
    min-height: 365px;
  }

  .company-ring {
    width: 260px;
    height: 260px;
  }

  .company-monogram {
    width: 110px;
    height: 110px;
    font-size: 23px;
  }

  .company-hero-visual p {
    display: none;
  }

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

  .value-card {
    min-height: 340px;
  }

  .vision-section {
    padding: 90px 0;
  }

  .vision-content h2 {
    font-size: 38px;
  }

  .vision-points article {
    grid-template-columns: 35px 1fr;
  }

  .ceo-image {
    height: 320px;
    margin-bottom: 60px;
  }

  .ceo-image > p {
    top: 22px;
    left: 22px;
    font-size: 26px;
  }

  .ceo-image > span {
    display: none;
  }

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

  .timeline li {
    grid-template-columns: 74px 25px 1fr;
    gap: 10px;
    min-height: 180px;
  }

  .timeline li > i::before {
    left: 6px;
  }

  .timeline li > i::after {
    left: 10px;
  }

  .timeline h3 {
    font-size: 17px;
  }

  .timeline-future {
    margin-inline: -4px;
  }

  .office-card {
    grid-template-columns: 1fr;
  }

  .office-map {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Art direction refresh */

:root {
  --violet: #786ef2;
  --lilac: #c7bdfa;
  --aqua: #65d8d5;
  --peach: #f3b9a6;
  --mist: #e7f4f3;
  --soft-shadow: 0 30px 80px rgba(29, 67, 83, 0.12);
}

.scroll-progress {
  position: fixed;
  z-index: 500;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--peach));
  box-shadow: 0 0 16px rgba(120, 110, 242, 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 189, 250, 0.55), transparent 30%),
    radial-gradient(circle at 63% 64%, rgba(101, 216, 213, 0.28), transparent 34%),
    radial-gradient(circle at 10% 22%, rgba(243, 185, 166, 0.2), transparent 26%),
    linear-gradient(145deg, #f8fbfa 0%, #eef8f7 48%, #f5f0fb 100%);
}

.hero::before {
  top: -120px;
  right: -70px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 68%);
  animation: art-breathe 9s ease-in-out infinite alternate;
}

.hero h1 .hero-title-accent::after {
  bottom: 0.01em;
  height: 0.23em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(101, 216, 213, 0.68), rgba(199, 189, 250, 0.66));
  transform: rotate(-1deg);
}

.button,
.circle-link,
.contact-mail,
.service-row,
.value-card,
.workstyle-card,
.openings-card,
.office-card {
  -webkit-tap-highlight-color: transparent;
}

.button {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  isolation: isolate;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, var(--violet), var(--blue) 45%, var(--cyan));
  content: "";
  transform: translateX(-102%);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(0);
}

.button i {
  transition: color 0.3s ease, background 0.3s ease, transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.button:hover i,
.button:focus-visible i {
  color: var(--violet);
  background: var(--white);
  transform: rotate(-12deg) scale(1.08);
}

.text-link {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  content: "";
  transform: translateX(-103%);
  transition: transform 0.35s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(0);
}

.art-visual {
  position: relative;
  min-height: 620px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  perspective: 900px;
  transform: rotate(-1deg);
  transition:
    filter 1.1s ease,
    transform 1.1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.art-visual:hover {
  filter: saturate(1.12) brightness(1.025);
  transform: rotate(0.5deg) scale(1.025);
}

.art-visual::before {
  position: absolute;
  inset: 13% 5% 10%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(199, 189, 250, 0.27) 0%, rgba(101, 216, 213, 0.15) 42%, transparent 72%);
  content: "";
  filter: blur(28px);
  opacity: 0.8;
  transform: rotate(-8deg) scale(0.94);
  transition: opacity 1s ease, transform 1.2s ease, filter 1.2s ease;
}

.art-visual::after {
  position: absolute;
  right: 11%;
  bottom: 16%;
  left: 13%;
  z-index: 0;
  height: 15%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(42, 65, 123, 0.2), transparent 70%);
  content: "";
  filter: blur(18px);
  opacity: 0.56;
  pointer-events: none;
  transform: rotate(-5deg) scaleX(0.82);
  transition: opacity 1s ease, transform 1.2s ease, filter 1.2s ease;
}

.art-visual:hover::before {
  opacity: 1;
  filter: blur(24px);
  transform: rotate(-2deg) scale(1.04);
}

.art-visual:hover::after {
  opacity: 0.7;
  transform: rotate(-2deg) scaleX(0.92);
}

.brand-flow {
  position: absolute;
  inset: 6% -4% 5%;
  z-index: 1;
  overflow: visible;
  transform-style: preserve-3d;
}

.brand-ribbon {
  position: absolute;
  display: block;
  width: 92%;
  height: 31%;
  pointer-events: none;
  transform-origin: center;
  will-change: transform, filter, opacity;
}

.brand-ribbon::before,
.brand-ribbon::after {
  position: absolute;
  inset: 0;
  content: "";
  clip-path: polygon(1% 48%, 16% 18%, 59% 0, 98% 34%, 82% 78%, 35% 100%, 8% 73%);
}

.brand-ribbon::before {
  background:
    linear-gradient(105deg, rgba(101, 216, 213, 0.08) 0%, rgba(101, 216, 213, 0.72) 25%, rgba(107, 137, 234, 0.55) 62%, rgba(199, 189, 250, 0.1) 100%);
  box-shadow: 0 30px 70px rgba(63, 85, 166, 0.16);
  filter: blur(0.3px);
}

.brand-ribbon::after {
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.7), transparent 30% 70%, rgba(255, 255, 255, 0.2));
  mix-blend-mode: soft-light;
  opacity: 0.7;
  transform: translateY(-4%);
}

.brand-ribbon-one {
  top: 11%;
  left: 2%;
  opacity: 0.74;
  animation: brand-ribbon-one 9s ease-in-out infinite;
}

.brand-ribbon-two {
  top: 35%;
  right: -1%;
  width: 88%;
  opacity: 0.62;
  transform: rotate(15deg) translateZ(-40px);
  animation: brand-ribbon-two 11s ease-in-out -3s infinite;
}

.brand-ribbon-two::before {
  background:
    linear-gradient(105deg, rgba(243, 185, 166, 0.1) 0%, rgba(243, 185, 166, 0.62) 25%, rgba(199, 189, 250, 0.58) 61%, rgba(101, 216, 213, 0.1) 100%);
}

.brand-ribbon-three {
  bottom: 8%;
  left: 5%;
  width: 83%;
  opacity: 0.52;
  transform: rotate(-12deg) translateZ(-70px);
  animation: brand-ribbon-three 12.5s ease-in-out -5s infinite;
}

.brand-ribbon-three::before {
  background:
    linear-gradient(105deg, rgba(199, 189, 250, 0.08) 0%, rgba(113, 137, 234, 0.52) 31%, rgba(101, 216, 213, 0.56) 67%, rgba(255, 255, 255, 0.08) 100%);
}

.art-visual:hover .brand-ribbon-one {
  animation-duration: 5.8s;
}

.art-visual:hover .brand-ribbon-two {
  animation-duration: 6.6s;
}

.art-visual:hover .brand-ribbon-three {
  animation-duration: 7.2s;
}

.art-wash,
.art-petal,
.company-wash,
.company-petal {
  position: absolute;
  pointer-events: none;
}

.art-wash {
  border-radius: 50%;
  filter: blur(6px) saturate(1.05);
  mix-blend-mode: soft-light;
  transition: filter 1.2s ease, opacity 1.2s ease, scale 1.2s ease;
}

.art-wash-one {
  top: 8%;
  right: 3%;
  width: 76%;
  height: 64%;
  background: radial-gradient(circle at 34% 36%, rgba(101, 216, 213, 0.75), rgba(120, 110, 242, 0.46) 55%, transparent 73%);
  animation: wash-drift 12s ease-in-out infinite alternate;
}

.art-wash-two {
  bottom: -7%;
  left: -8%;
  width: 75%;
  height: 62%;
  background: radial-gradient(circle at 60% 40%, rgba(243, 185, 166, 0.68), rgba(199, 189, 250, 0.44) 56%, transparent 74%);
  animation: wash-drift 14s ease-in-out -4s infinite alternate-reverse;
}

.art-petal {
  z-index: 2;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.94) 0 5%, rgba(255, 255, 255, 0.35) 10%, transparent 24%),
    conic-gradient(from 205deg, rgba(101, 216, 213, 0.24), rgba(199, 189, 250, 0.32), rgba(243, 185, 166, 0.25), rgba(255, 255, 255, 0.38), rgba(101, 216, 213, 0.24));
  box-shadow:
    inset 14px 16px 26px rgba(255, 255, 255, 0.46),
    inset -18px -20px 34px rgba(74, 92, 179, 0.12),
    0 20px 55px rgba(62, 83, 132, 0.1);
  backdrop-filter: blur(12px) saturate(1.18);
  transition:
    border-color 1.1s ease,
    box-shadow 1.1s ease,
    filter 1.1s ease,
    opacity 1.1s ease,
    scale 1.1s ease;
}

.art-petal-one {
  top: 11%;
  left: 14%;
  width: 42%;
  height: auto;
  transform: rotate(-21deg);
  animation: petal-float-one 10s ease-in-out infinite alternate;
}

.art-petal-two {
  top: 29%;
  right: 8%;
  width: 46%;
  height: auto;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.94) 0 5%, rgba(255, 255, 255, 0.35) 10%, transparent 24%),
    conic-gradient(from 155deg, rgba(199, 189, 250, 0.34), rgba(243, 185, 166, 0.25), rgba(101, 216, 213, 0.22), rgba(255, 255, 255, 0.4), rgba(199, 189, 250, 0.34));
  transform: rotate(17deg);
  animation: petal-float-two 12s ease-in-out -2s infinite alternate;
}

.art-petal-three {
  right: 38%;
  bottom: 4%;
  width: 30%;
  height: auto;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.92) 0 5%, rgba(255, 255, 255, 0.32) 10%, transparent 24%),
    conic-gradient(from 235deg, rgba(101, 216, 213, 0.31), rgba(255, 255, 255, 0.36), rgba(199, 189, 250, 0.27), rgba(101, 216, 213, 0.31));
  transform: rotate(43deg);
  animation: petal-float-three 11s ease-in-out -5s infinite alternate;
}

.art-ribbon {
  position: absolute;
  top: 12%;
  right: 7%;
  left: 7%;
  z-index: 3;
  height: 75%;
  border-radius: 50%;
  border-top: 7px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(120, 110, 242, 0.09);
  background: transparent;
  filter: blur(3px);
  opacity: 0.65;
  transform: rotate(-24deg);
  transition: opacity 1.1s ease, transform 1.2s ease;
}

.art-words {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 5px 28px rgba(30, 55, 83, 0.28), 0 0 22px rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%) rotate(-5deg);
  transition: letter-spacing 1.1s ease, text-shadow 1.1s ease, transform 1.1s ease;
}

.art-words span {
  font-size: clamp(28px, 3.7vw, 52px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.12;
}

.art-words i {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
}

.art-logo {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 3;
  width: clamp(190px, 29vw, 315px);
  transform: translate(-50%, -50%) rotate(-1.5deg) translateZ(55px);
  transform-style: preserve-3d;
  transition: filter 1.1s ease, opacity 1.1s ease, transform 1.1s ease;
}

.art-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 2px 1px rgba(255, 255, 255, 0.72))
    drop-shadow(0 12px 16px rgba(30, 55, 83, 0.2))
    drop-shadow(0 0 25px rgba(255, 255, 255, 0.42));
}

.art-visual > p {
  position: absolute;
  right: 9%;
  bottom: 8%;
  z-index: 5;
  margin: 0;
  color: rgba(6, 40, 61, 0.56);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.art-visual:hover .art-words {
  text-shadow: 0 8px 34px rgba(30, 55, 83, 0.34), 0 0 30px rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) rotate(-3deg) scale(1.025);
}

.art-visual:hover .art-logo {
  filter: saturate(1.1) brightness(1.025);
  transform: translate(-50%, -52%) rotate(0.5deg) translateZ(72px) scale(1.045);
}

.proof-strip {
  margin: 0 22px;
  overflow: hidden;
  border-radius: 46px;
  background:
    radial-gradient(circle at 90% 15%, rgba(101, 216, 213, 0.28), transparent 25%),
    linear-gradient(125deg, var(--ink) 0%, #164d68 52%, #465fc1 100%);
  box-shadow: var(--soft-shadow);
}

.proof-grid {
  gap: 7px;
  padding-block: 8px;
}

.proof-grid > div,
.proof-statement,
.proof-grid > div:first-child {
  min-height: 145px;
  border: 0;
  border-radius: 30px;
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.proof-grid > div:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.proof-statement {
  background: rgba(255, 255, 255, 0.07);
}

.services-section {
  margin-top: 54px;
  padding-bottom: 210px;
  border-radius: 74px 74px 0 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(101, 216, 213, 0.17), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(120, 110, 242, 0.16), transparent 28%),
    linear-gradient(145deg, #082d42, #123d55 60%, #182f52);
}

.services-section::after {
  display: none;
}

.service-list {
  display: grid;
  gap: 18px;
  border-top: 0;
}

.service-row {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 0;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.045);
  isolation: isolate;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-row::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(101, 216, 213, 0.24), transparent 34%),
    linear-gradient(110deg, rgba(120, 110, 242, 0.11), rgba(243, 185, 166, 0.08));
  content: "";
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.service-row > * {
  position: relative;
  z-index: 1;
}

.service-row::after {
  position: absolute;
  top: 20px;
  right: 26px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  content: "↗";
  font-size: 28px;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 70px rgba(3, 23, 36, 0.24);
  transform: translateY(-7px);
}

.service-row:hover::before,
.service-row:hover::after {
  opacity: 1;
  transform: none;
}

.service-symbol {
  overflow: hidden;
  border: 0;
  border-radius: 61% 39% 57% 43% / 42% 62% 38% 58%;
  background: linear-gradient(145deg, var(--cyan), var(--violet));
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.33);
  transition: border-radius 0.5s ease, transform 0.5s ease;
}

.service-title:hover .service-symbol,
.service-row:hover .service-symbol {
  border-radius: 42% 58% 38% 62% / 61% 39% 57% 43%;
  transform: rotate(14deg) scale(1.08);
}

.service-symbol i,
.service-symbol::after {
  display: none;
}

.service-row:nth-child(2) .service-symbol {
  background: linear-gradient(145deg, var(--lilac), var(--peach));
}

.service-row:nth-child(3) .service-symbol {
  background: linear-gradient(145deg, var(--aqua), #7da0ef);
}

.service-copy li {
  border: 0;
  background: rgba(255, 255, 255, 0.07);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-copy li:hover {
  color: var(--ink);
  background: var(--cyan-soft);
  transform: translateY(-2px);
}

.mission-section {
  position: relative;
  z-index: 2;
  margin-top: -74px;
  border-radius: 74px 74px 0 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(199, 189, 250, 0.32), transparent 25%),
    radial-gradient(circle at 15% 74%, rgba(243, 185, 166, 0.25), transparent 28%),
    var(--paper-warm);
}

.coordinate-mark {
  border: 0;
  background: linear-gradient(145deg, rgba(101, 216, 213, 0.4), rgba(199, 189, 250, 0.5));
  box-shadow: var(--soft-shadow);
}

.coordinate-mark::before,
.coordinate-mark::after {
  display: none;
}

.coordinate-mark span {
  background: linear-gradient(145deg, var(--violet), var(--blue));
  box-shadow: 0 10px 25px rgba(65, 105, 225, 0.25);
  transition: transform 0.5s ease;
}

.coordinate-mark:hover span {
  transform: rotate(12deg) scale(1.08);
}

.mission-bottom {
  border-top: 0;
}

.circle-link {
  border-radius: 53% 47% 58% 42% / 46% 60% 40% 54%;
  background: linear-gradient(145deg, var(--ink), #244f78);
  box-shadow: 0 24px 55px rgba(6, 40, 61, 0.2);
  transition: border-radius 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.circle-link:hover {
  border-radius: 39% 61% 43% 57% / 61% 42% 58% 39%;
  background: linear-gradient(145deg, var(--violet), var(--blue));
  box-shadow: 0 30px 70px rgba(120, 110, 242, 0.32);
  transform: rotate(-4deg) scale(1.05);
}

.careers-section {
  background:
    radial-gradient(circle at 13% 12%, rgba(101, 216, 213, 0.16), transparent 24%),
    linear-gradient(180deg, var(--paper) 0%, #f6f2fb 100%);
}

.careers-grid {
  gap: 26px;
}

.workstyle-card,
.openings-card {
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  box-shadow: 0 25px 70px rgba(28, 66, 82, 0.09);
}

.workstyle-card {
  background: rgba(255, 255, 255, 0.78);
}

.workstyle-header,
.benefit-list article {
  border: 0;
}

.benefit-list {
  display: grid;
  gap: 7px;
  padding: 0 12px 12px;
}

.benefit-list article {
  border-radius: 22px;
  transition: background 0.35s ease, transform 0.35s ease;
}

.benefit-list article:hover {
  background: linear-gradient(100deg, rgba(101, 216, 213, 0.13), rgba(199, 189, 250, 0.15));
  transform: translateX(7px);
}

.openings-card {
  position: relative;
  background:
    radial-gradient(circle at 90% 10%, rgba(101, 216, 213, 0.5), transparent 28%),
    linear-gradient(145deg, var(--violet), #425bd2 70%);
}

.openings-card::before {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 270px;
  height: 270px;
  border-radius: 42% 58% 61% 39% / 57% 39% 61% 43%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  transition: transform 0.8s ease, border-radius 0.8s ease;
}

.openings-card:hover::before {
  border-radius: 62% 38% 42% 58% / 38% 59% 41% 62%;
  transform: rotate(25deg) scale(1.15);
}

.openings-card article {
  position: relative;
  border-top-color: rgba(255, 255, 255, 0.18);
  transition: padding-left 0.3s ease;
}

.openings-card article:hover {
  padding-left: 10px;
}

.contact-section {
  border-radius: 74px 74px 0 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(101, 216, 213, 0.7), transparent 24%),
    radial-gradient(circle at 14% 90%, rgba(243, 185, 166, 0.35), transparent 28%),
    linear-gradient(130deg, #5b67df 0%, var(--violet) 52%, #476ed7 100%);
}

.contact-orbit {
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  filter: blur(1px);
}

.contact-orbit-one {
  border-radius: 62% 38% 54% 46% / 39% 58% 42% 61%;
  animation: slow-spin 24s linear infinite;
}

.contact-orbit-two {
  border-radius: 41% 59% 37% 63% / 61% 36% 64% 39%;
  box-shadow: none;
  animation: slow-spin 30s linear infinite reverse;
}

.contact-mail {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  isolation: isolate;
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.contact-mail::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--white);
  content: "";
  transform: translateX(-102%);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.contact-mail > * {
  position: relative;
  z-index: 1;
}

.contact-mail:hover {
  color: var(--violet);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.contact-mail:hover::before {
  transform: translateX(0);
}

.company-hero {
  background:
    radial-gradient(circle at 74% 30%, rgba(101, 216, 213, 0.34), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(243, 185, 166, 0.22), transparent 28%),
    linear-gradient(135deg, #06283d 0%, #143e5d 56%, #344a87 100%);
}

.company-hero::before {
  background: none;
}

.company-art {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 58% 42% 61% 39% / 43% 58% 42% 57%;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.11);
  isolation: isolate;
  transform: rotate(-1deg);
  transition: border-radius 0.8s ease, transform 0.8s ease;
}

.company-art:hover {
  border-radius: 42% 58% 39% 61% / 58% 43% 57% 42%;
  transform: rotate(1deg) scale(1.012);
}

.company-wash {
  border-radius: 50%;
  filter: blur(5px);
}

.company-wash-one {
  top: -8%;
  right: -5%;
  width: 80%;
  height: 76%;
  background: radial-gradient(circle, rgba(101, 216, 213, 0.78), rgba(120, 110, 242, 0.35) 60%, transparent 74%);
  animation: wash-drift 12s ease-in-out infinite alternate;
}

.company-wash-two {
  bottom: -15%;
  left: -10%;
  width: 72%;
  height: 68%;
  background: radial-gradient(circle, rgba(243, 185, 166, 0.58), rgba(199, 189, 250, 0.26) 58%, transparent 73%);
  animation: wash-drift 15s ease-in-out -5s infinite alternate-reverse;
}

.company-petal {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.company-petal-one {
  top: 9%;
  left: 14%;
  width: 44%;
  height: 60%;
  border-radius: 62% 38% 55% 45% / 42% 59% 41% 58%;
  transform: rotate(-25deg);
  animation: petal-float-one 11s ease-in-out infinite alternate;
}

.company-petal-two {
  right: 8%;
  bottom: 9%;
  width: 48%;
  height: 61%;
  border-radius: 42% 58% 39% 61% / 62% 37% 63% 38%;
  transform: rotate(22deg);
  animation: petal-float-two 13s ease-in-out -3s infinite alternate;
}

.company-petal-three {
  right: 32%;
  bottom: -4%;
  width: 29%;
  height: 40%;
  border-radius: 55% 45% 63% 37% / 38% 63% 37% 62%;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(48deg);
  animation: petal-float-three 10s ease-in-out -5s infinite alternate;
}

.company-art-word {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 4;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 15px 40px rgba(4, 24, 38, 0.2);
  transform: translate(-50%, -50%) rotate(-7deg);
}

.company-art > p {
  position: absolute;
  right: 9%;
  bottom: 8%;
  z-index: 5;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.company-art > p span {
  display: inline-block;
  color: var(--cyan-soft);
  font-size: 18px;
  transform: translateY(2px);
}

.values-section {
  background:
    radial-gradient(circle at 12% 28%, rgba(101, 216, 213, 0.13), transparent 26%),
    linear-gradient(180deg, var(--paper), #f7f4fb);
}

.values-grid {
  gap: 16px;
  border: 0;
}

.value-card {
  min-height: 410px;
  overflow: hidden;
  border: 0;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 65px rgba(31, 71, 86, 0.08);
  isolation: isolate;
  transition: color 0.45s ease, box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.value-card::before {
  position: absolute;
  right: -45%;
  bottom: -50%;
  z-index: 0;
  width: 230px;
  height: 230px;
  border-radius: 58% 42% 62% 38% / 42% 61% 39% 58%;
  background: linear-gradient(145deg, var(--cyan), var(--violet));
  content: "";
  opacity: 0.9;
  transform: scale(0.25);
  transition: border-radius 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.value-card > * {
  position: relative;
  z-index: 1;
}

.value-card:nth-child(2)::before,
.value-card:nth-child(4)::before {
  background: linear-gradient(145deg, var(--peach), var(--lilac));
}

.value-card:nth-child(3)::before {
  background: linear-gradient(145deg, var(--aqua), #7b9be9);
}

.value-card:hover {
  color: var(--white);
  box-shadow: 0 34px 80px rgba(49, 77, 129, 0.2);
  transform: translateY(-10px);
}

.value-card:hover::before {
  border-radius: 44% 56% 39% 61% / 61% 38% 62% 39%;
  transform: scale(3.2);
}

.value-card:hover p,
.value-card:hover .value-number {
  color: rgba(255, 255, 255, 0.78);
}

.value-card-accent {
  background: linear-gradient(145deg, var(--violet), #4d6dda);
}

.value-card-accent::before {
  background: linear-gradient(145deg, var(--peach), var(--cyan));
}

.value-icon {
  border: 0;
  border-radius: 57% 43% 62% 38% / 42% 59% 41% 58%;
  background: linear-gradient(145deg, rgba(101, 216, 213, 0.8), rgba(199, 189, 250, 0.85));
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.4);
  transition: border-radius 0.5s ease, transform 0.5s ease;
}

.value-card:hover .value-icon {
  border-radius: 38% 62% 42% 58% / 61% 39% 57% 43%;
  transform: rotate(16deg) scale(1.1);
}

.value-icon i {
  display: none;
}

.value-card:nth-child(2) .value-icon,
.value-card:nth-child(4) .value-icon {
  background: linear-gradient(145deg, rgba(243, 185, 166, 0.86), rgba(199, 189, 250, 0.88));
}

.value-card:nth-child(3) .value-icon {
  background: linear-gradient(145deg, rgba(101, 216, 213, 0.8), rgba(125, 160, 239, 0.88));
}

.vision-section {
  border-radius: 74px 74px 0 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(101, 216, 213, 0.2), transparent 25%),
    radial-gradient(circle at 84% 82%, rgba(120, 110, 242, 0.16), transparent 28%),
    linear-gradient(145deg, var(--ink-2), #1b355b);
}

.ceo-section {
  background:
    radial-gradient(circle at 12% 28%, rgba(101, 216, 213, 0.13), transparent 26%),
    linear-gradient(180deg, var(--paper), #f7f4fb);
}

.ceo-image {
  border-radius: 42px;
  box-shadow: var(--soft-shadow);
}

.ceo-image img {
  transition: filter 0.7s ease, transform 1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.ceo-image:hover img {
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.045);
}

.company-details-section {
  background: linear-gradient(180deg, var(--paper), #f1f7f6);
}

.company-table {
  display: grid;
  gap: 9px;
  border-top: 0;
}

.company-table > div {
  padding: 21px 24px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.company-table > div:hover {
  background: linear-gradient(100deg, rgba(101, 216, 213, 0.15), rgba(199, 189, 250, 0.14));
  box-shadow: 0 15px 45px rgba(31, 71, 86, 0.08);
  transform: translateX(7px);
}

.history-section {
  border-radius: 74px 74px 0 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(101, 216, 213, 0.16), transparent 25%),
    linear-gradient(145deg, var(--ink), #163852 68%, #293b6d);
}

.timeline-future {
  border: 0;
  border-radius: 28px;
  background: linear-gradient(110deg, rgba(101, 216, 213, 0.12), rgba(120, 110, 242, 0.16));
}

.access-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(243, 185, 166, 0.18), transparent 24%),
    var(--paper);
}

.access-grid {
  gap: 26px;
}

.office-card {
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 24px 65px rgba(31, 71, 86, 0.09);
  transition: box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.office-card:hover {
  box-shadow: 0 34px 82px rgba(55, 72, 119, 0.18);
  transform: translateY(-9px);
}

.office-map {
  border: 0;
  background:
    radial-gradient(circle at 64% 32%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(145deg, rgba(101, 216, 213, 0.74), rgba(199, 189, 250, 0.8));
}

.map-barcelona {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.68), transparent 20%),
    linear-gradient(145deg, rgba(243, 185, 166, 0.8), rgba(199, 189, 250, 0.75));
}

.office-map::before {
  top: -12%;
  left: -20%;
  width: 240px;
  height: 270px;
  border: 0;
  border-radius: 61% 39% 44% 56% / 38% 63% 37% 62%;
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(18deg);
  transition: border-radius 0.8s ease, transform 0.8s ease;
}

.office-map::after {
  right: -24%;
  bottom: -15%;
  top: auto;
  left: auto;
  width: 190px;
  height: 220px;
  border: 0;
  border-radius: 42% 58% 62% 38% / 59% 36% 64% 41%;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(-25deg);
  transition: border-radius 0.8s ease, transform 0.8s ease;
}

.office-card:hover .office-map::before {
  border-radius: 42% 58% 61% 39% / 59% 38% 62% 41%;
  transform: rotate(31deg) scale(1.08);
}

.office-card:hover .office-map::after {
  border-radius: 61% 39% 42% 58% / 38% 62% 39% 61%;
  transform: rotate(-12deg) scale(1.1);
}

.office-map i {
  width: 18px;
  height: 18px;
  border: 5px solid rgba(255, 255, 255, 0.8);
  background: var(--violet);
  box-shadow: 0 0 0 1px rgba(120, 110, 242, 0.55), 0 10px 25px rgba(58, 68, 129, 0.24);
  transition: transform 0.45s ease;
}

.office-card:hover .office-map i {
  transform: translate(-50%, -50%) scale(1.25);
}

.office-map span {
  z-index: 3;
  color: rgba(6, 40, 61, 0.68);
}

.office-card > div:last-child {
  position: relative;
  z-index: 2;
}

.office-card p {
  border-top: 0;
}

.reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(38px) scale(0.985);
  transition:
    opacity 0.85s ease var(--reveal-delay, 0ms),
    filter 0.85s ease var(--reveal-delay, 0ms),
    transform 0.9s cubic-bezier(0.16, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.art-visual.reveal.is-visible {
  animation: hero-art-float 8s ease-in-out infinite;
  transform: rotate(-1deg);
  will-change: transform, translate;
}

.art-visual.reveal.is-visible:hover {
  transform: rotate(0.5deg) scale(1.025);
}

.company-art.reveal.is-visible {
  animation: company-art-float 9s ease-in-out -1.5s infinite;
  transform: rotate(-1deg);
  will-change: transform, translate;
}

.company-art.reveal.is-visible:hover {
  animation: company-art-hover 3.9s ease-in-out infinite;
  transform: rotate(1deg) scale(1.012);
}

.art-visual:hover .art-wash-one,
.company-art:hover .company-wash-one {
  animation-duration: 5s;
}

.art-visual:hover .art-wash-two,
.company-art:hover .company-wash-two {
  animation-duration: 5.8s;
  animation-direction: alternate;
}

.art-visual:hover .art-petal-one,
.company-art:hover .company-petal-one {
  animation-duration: 4.2s;
  animation-direction: alternate-reverse;
}

.art-visual:hover .art-petal-two,
.company-art:hover .company-petal-two {
  animation-duration: 4.8s;
}

.art-visual:hover .art-petal-three,
.company-art:hover .company-petal-three {
  animation-duration: 4.4s;
  animation-direction: alternate-reverse;
}

.art-visual:hover .art-wash-one {
  animation-duration: 12s;
  animation-direction: alternate;
  filter: blur(8px) saturate(1.16);
  scale: 1.07;
}

.art-visual:hover .art-wash-two {
  animation-duration: 14s;
  animation-direction: alternate-reverse;
  filter: blur(8px) saturate(1.13);
  scale: 1.06;
}

.art-visual:hover .art-petal-one {
  animation-duration: 10s;
  animation-direction: alternate;
  filter: brightness(1.04) saturate(1.1);
  scale: 1.055;
}

.art-visual:hover .art-petal-two {
  animation-duration: 12s;
  animation-direction: alternate;
  filter: brightness(1.05) saturate(1.12);
  scale: 1.065;
}

.art-visual:hover .art-petal-three {
  animation-duration: 11s;
  animation-direction: alternate;
  filter: brightness(1.06) saturate(1.08);
  scale: 1.08;
}

.service-row.reveal.is-visible:hover,
.value-card.reveal.is-visible:hover,
.office-card.reveal.is-visible:hover {
  transform: translateY(-9px);
}

@media (hover: hover) and (pointer: fine) {
  .global-nav a {
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .global-nav a:hover {
    color: var(--violet);
    transform: translateY(-2px);
  }

  .language-switcher {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .language-switcher:hover {
    border-color: rgba(120, 110, 242, 0.45);
    box-shadow: 0 10px 30px rgba(74, 80, 137, 0.1);
  }
}

@keyframes art-breathe {
  from { transform: scale(0.96) translate(-2%, -1%); }
  to { transform: scale(1.08) translate(2%, 2%); }
}

@keyframes wash-drift {
  from { transform: translate3d(-3%, -2%, 0) scale(0.97); }
  to { transform: translate3d(5%, 4%, 0) scale(1.08); }
}

@keyframes petal-float-one {
  from { transform: translate3d(0, -8px, 0) rotate(-21deg); }
  to { transform: translate3d(18px, 17px, 0) rotate(-13deg); }
}

@keyframes petal-float-two {
  from { transform: translate3d(0, 9px, 0) rotate(17deg); }
  to { transform: translate3d(-18px, -14px, 0) rotate(25deg); }
}

@keyframes petal-float-three {
  from { transform: translate3d(-5px, 8px, 0) rotate(43deg); }
  to { transform: translate3d(13px, -15px, 0) rotate(51deg); }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes brand-ribbon-one {
  0%,
  100% {
    filter: hue-rotate(0deg);
    transform: rotate(-11deg) translate3d(-2%, 0, 18px) scaleX(0.96);
  }
  48% {
    filter: hue-rotate(8deg);
    transform: rotate(-4deg) translate3d(4%, -8%, 36px) scaleX(1.04);
  }
  74% {
    transform: rotate(-8deg) translate3d(1%, 5%, 24px) scaleX(1);
  }
}

@keyframes brand-ribbon-two {
  0%,
  100% {
    filter: hue-rotate(0deg);
    transform: rotate(15deg) translate3d(2%, 0, -40px) scaleX(1);
  }
  42% {
    filter: hue-rotate(-7deg);
    transform: rotate(8deg) translate3d(-5%, 8%, -18px) scaleX(1.06);
  }
  72% {
    transform: rotate(12deg) translate3d(2%, -4%, -30px) scaleX(0.97);
  }
}

@keyframes brand-ribbon-three {
  0%,
  100% {
    filter: hue-rotate(0deg);
    transform: rotate(-12deg) translate3d(-1%, 0, -70px) scaleX(0.98);
  }
  45% {
    filter: hue-rotate(7deg);
    transform: rotate(-18deg) translate3d(5%, -7%, -44px) scaleX(1.05);
  }
  78% {
    transform: rotate(-8deg) translate3d(-3%, 5%, -58px) scaleX(1);
  }
}

@keyframes hero-art-float {
  0%,
  100% { translate: 0 0; }
  30% { translate: 4px -9px; }
  58% { translate: -3px -15px; }
  80% { translate: 3px -7px; }
}

@keyframes hero-art-hover {
  0%,
  100% { translate: 0 -4px; }
  25% { translate: 8px -13px; }
  52% { translate: -3px -18px; }
  76% { translate: -8px -8px; }
}

@keyframes company-art-float {
  0%,
  100% { translate: 0 0; }
  28% { translate: -4px -8px; }
  55% { translate: 4px -14px; }
  78% { translate: -2px -6px; }
}

@keyframes company-art-hover {
  0%,
  100% { translate: 0 -3px; }
  24% { translate: -8px -12px; }
  50% { translate: 4px -17px; }
  76% { translate: 9px -7px; }
}

@media (max-width: 1080px) {
  .art-visual {
    min-height: 540px;
  }

  .service-row {
    padding: 36px 30px;
  }

  .company-art {
    min-height: 470px;
  }
}

@media (max-width: 820px) {
  .page-home .hero-grid {
    position: relative;
    display: block;
    min-height: 690px;
  }

  .page-home .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 640px;
    isolation: isolate;
  }

  .page-home .hero-copy::before {
    position: absolute;
    inset: -40px -100px -45px -45px;
    z-index: -1;
    border-radius: 48%;
    background: radial-gradient(ellipse at 30% 48%, rgba(248, 251, 250, 0.98) 0 42%, rgba(248, 251, 250, 0.88) 57%, rgba(248, 251, 250, 0.38) 72%, transparent 82%);
    content: "";
    pointer-events: none;
  }

  .page-home .art-visual {
    position: absolute;
    top: 20px;
    right: -180px;
    z-index: 0;
    width: 560px;
    height: 560px;
    min-height: 0;
    margin: 0;
    opacity: 0.64;
    pointer-events: none;
  }

  .page-home .art-words {
    opacity: 0.28;
  }

  .page-home .hero-foot {
    position: relative;
    z-index: 2;
  }

  .proof-strip {
    margin-inline: 14px;
    border-radius: 36px;
  }

  .services-section,
  .mission-section,
  .contact-section,
  .vision-section,
  .history-section {
    border-radius: 50px 50px 0 0;
  }

  .service-row {
    padding: 32px 25px;
  }

  .company-art {
    min-height: 480px;
  }
}

@media (max-width: 560px) {
  .page-home .hero-grid {
    min-height: 620px;
  }

  .page-home .hero-copy::before {
    inset: -30px -70px -35px -30px;
    background: radial-gradient(ellipse at 23% 44%, rgba(248, 251, 250, 0.99) 0 48%, rgba(248, 251, 250, 0.9) 61%, rgba(248, 251, 250, 0.44) 74%, transparent 84%);
  }

  .page-home .art-visual {
    top: 68px;
    right: -235px;
    width: 440px;
    height: 440px;
    min-height: 0;
    opacity: 0.56;
  }

  .page-home .art-words {
    display: none;
  }

  .art-words span {
    font-size: 27px;
  }

  .art-visual > p {
    display: none;
  }

  .proof-strip {
    margin-inline: 9px;
    border-radius: 30px;
  }

  .proof-grid {
    gap: 0;
  }

  .proof-grid > div,
  .proof-statement,
  .proof-grid > div:first-child {
    min-height: 105px;
    border: 0;
    border-radius: 22px;
  }

  .services-section {
    margin-top: 38px;
    padding-bottom: 150px;
  }

  .services-section,
  .mission-section,
  .contact-section,
  .vision-section,
  .history-section {
    border-radius: 36px 36px 0 0;
  }

  .mission-section {
    margin-top: -45px;
  }

  .service-row {
    padding: 27px 19px;
    border-radius: 26px;
  }

  .workstyle-card,
  .openings-card,
  .value-card,
  .office-card {
    border-radius: 27px;
  }

  .contact-mail {
    padding-inline: 16px;
  }

  .company-art {
    min-height: 370px;
  }

  .company-art-word {
    font-size: 52px;
  }

  .values-grid {
    gap: 12px;
  }

  .value-card {
    min-height: 340px;
  }

  .ceo-image {
    border-radius: 28px;
  }

  .company-table > div {
    border-radius: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .art-visual,
  .art-wash,
  .art-petal,
  .company-art,
  .company-wash,
  .company-petal,
  .contact-orbit,
  .hero::before {
    animation: none !important;
  }

  .reveal {
    filter: none;
  }
}

/* Content refinements and contact page */

.proof-strip {
  padding: 86px 0;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.proof-intro .section-index {
  color: var(--cyan-soft);
}

.proof-intro h2 {
  margin: 0;
  font-size: clamp(26px, 3.15vw, 50px);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.proof-intro h2 .approach-line {
  display: block;
  color: inherit;
  white-space: nowrap;
}

.proof-intro h2 .approach-line-accent {
  color: var(--cyan-soft);
}

.proof-intro > p:last-child {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.95;
}

.proof-points {
  display: grid;
  gap: 12px;
}

.proof-points article {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  overflow: hidden;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  transition: background 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.proof-points article::after {
  position: absolute;
  right: -42px;
  bottom: -72px;
  width: 150px;
  height: 150px;
  border-radius: 58% 42% 66% 34% / 42% 62% 38% 58%;
  background: linear-gradient(145deg, rgba(101, 216, 213, 0.22), rgba(199, 189, 250, 0.16));
  content: "";
  opacity: 0;
  transform: scale(0.75) rotate(-18deg);
  transition: opacity 0.45s ease, transform 0.6s ease;
}

.proof-points article:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(8px);
}

.proof-points article:hover::after {
  opacity: 1;
  transform: scale(1) rotate(5deg);
}

.proof-points article > span {
  padding-top: 3px;
  color: var(--cyan-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.proof-points h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.proof-points p {
  position: relative;
  z-index: 1;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.service-row {
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 85px);
  padding: 52px 46px;
}

.service-number {
  position: absolute;
  right: 36px;
  bottom: -0.21em;
  z-index: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(115px, 13vw, 188px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
  transition: color 0.45s ease, transform 0.55s ease;
}

.service-row:hover .service-number {
  color: rgba(156, 231, 239, 0.1);
  transform: translate(-6px, -5px);
}

.service-title {
  grid-column: 1;
}

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

.mission-layout {
  grid-template-columns: minmax(255px, 0.42fr) minmax(0, 1fr);
  gap: clamp(55px, 8vw, 112px);
}

.mission-label {
  gap: 45px;
}

.mission-image {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 55% 45% 48% 52% / 40% 54% 46% 60%;
  background: var(--mist);
  box-shadow: 0 30px 70px rgba(58, 79, 90, 0.16);
  isolation: isolate;
  transition: border-radius 0.7s ease, transform 0.7s ease;
}

.mission-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 40, 61, 0.74));
  content: "";
}

.mission-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.96);
  transform: scale(1.04);
  transition: filter 0.7s ease, transform 0.8s ease;
}

.mission-image figcaption {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  z-index: 2;
  display: grid;
  gap: 2px;
  color: var(--white);
}

.mission-image figcaption span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.mission-image figcaption small {
  color: var(--cyan-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.mission-image:hover {
  border-radius: 43% 57% 59% 41% / 58% 42% 58% 42%;
  transform: translateY(-7px) rotate(-1deg);
}

.mission-image:hover img {
  filter: saturate(0.96) contrast(1);
  transform: scale(1.1);
}

.circle-link {
  color: var(--ink);
  border: 1px solid rgba(120, 110, 242, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(199, 189, 250, 0.34));
  box-shadow: 0 20px 55px rgba(84, 77, 133, 0.12);
}

.circle-link i {
  color: var(--violet);
}

.circle-link:hover {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--lilac), var(--violet));
}

.circle-link:hover i {
  color: var(--white);
}

.careers-section .section-heading > p {
  position: relative;
  max-width: 650px;
  padding: 12px 0 15px 26px;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 29px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.65;
}

.careers-section .section-heading > p::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--aqua), var(--violet), var(--peach));
  content: "";
}

.page-contact {
  background: var(--paper-warm);
}

.contact-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  padding: calc(var(--header-height) + 110px) 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(101, 216, 213, 0.32), transparent 25%),
    radial-gradient(circle at 65% 85%, rgba(243, 185, 166, 0.2), transparent 27%),
    linear-gradient(135deg, #06283d 0%, #153f5c 55%, #4b5da9 100%);
  isolation: isolate;
}

.contact-hero::after {
  position: absolute;
  right: -180px;
  bottom: -320px;
  z-index: -1;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  content: "";
}

.contact-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 490px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
}

.contact-hero-copy {
  max-width: 960px;
}

.contact-hero-copy h1 {
  max-width: 980px;
  margin: 34px 0 30px;
  font-size: clamp(52px, 7.4vw, 92px);
  font-weight: 500;
  letter-spacing: -0.062em;
  line-height: 1.2;
}

.contact-hero-copy h1 span {
  color: var(--cyan-soft);
}

.contact-hero-copy > p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.95;
}

.contact-response-note {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(9px, 2.85vw, 11px);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.contact-response-note span {
  white-space: nowrap;
}

html[lang="en"] .contact-response-note {
  font-size: clamp(7.5px, 2.45vw, 10.5px);
  letter-spacing: 0.02em;
}

.contact-response-note i {
  display: block;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(101, 216, 213, 0.13);
}

.contact-hero-art {
  position: absolute;
  top: 15%;
  right: 4%;
  z-index: 0;
  width: min(43vw, 600px);
  height: min(43vw, 600px);
  opacity: 0.7;
}

.contact-hero-art i {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.72), transparent 12%),
    linear-gradient(145deg, rgba(101, 216, 213, 0.36), rgba(199, 189, 250, 0.18) 55%, rgba(243, 185, 166, 0.25));
  box-shadow: inset -20px -20px 45px rgba(48, 50, 120, 0.16), 0 26px 70px rgba(3, 23, 36, 0.14);
  backdrop-filter: blur(4px);
}

.contact-hero-art i:nth-child(1) {
  top: 5%;
  left: 18%;
  width: 55%;
  height: 55%;
  animation: contact-bubble 8s ease-in-out infinite alternate;
}

.contact-hero-art i:nth-child(2) {
  right: 5%;
  bottom: 7%;
  width: 42%;
  height: 42%;
  animation: contact-bubble 10s -2s ease-in-out infinite alternate-reverse;
}

.contact-hero-art i:nth-child(3) {
  bottom: 13%;
  left: 3%;
  width: 25%;
  height: 25%;
  animation: contact-bubble 7s -4s ease-in-out infinite alternate;
}

.contact-hero-art i:nth-child(4) {
  top: 9%;
  right: 4%;
  width: 15%;
  height: 15%;
  animation: contact-bubble 6s -1s ease-in-out infinite alternate-reverse;
}

@keyframes contact-bubble {
  from {
    border-radius: 50%;
    transform: translate3d(-8px, 4px, 0) rotate(-3deg) scale(0.97);
  }
  to {
    border-radius: 46% 54% 51% 49% / 53% 45% 55% 47%;
    transform: translate3d(12px, -16px, 0) rotate(5deg) scale(1.04);
  }
}

.contact-form-section {
  position: relative;
  z-index: 3;
  margin-top: -55px;
  padding: 0 0 150px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(45px, 7vw, 100px);
}

.contact-steps {
  position: sticky;
  top: 110px;
  padding: 110px 0 40px;
}

.contact-steps h2 {
  max-width: 320px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

.contact-steps ol {
  display: grid;
  gap: 20px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  transition: background 0.35s ease, transform 0.35s ease;
}

.contact-steps li:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(6px);
}

.contact-steps li > span {
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-steps h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 650;
}

.contact-steps li p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.contact-form-card {
  container-type: inline-size;
  min-height: 880px;
  padding: clamp(38px, 6vw, 78px);
  border-radius: 54px;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 189, 250, 0.22), transparent 26%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 35px 90px rgba(29, 67, 83, 0.13);
}

.contact-form-card [hidden] {
  display: none !important;
}

.contact-form-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.contact-form-heading h2,
.contact-review h2,
.contact-complete h2 {
  margin: 0;
  font-size: clamp(34px, 4.3vw, 56px);
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 1.25;
}

.contact-review h2,
.contact-complete h2 {
  max-width: 100%;
  font-size: clamp(20px, 3.4vw, 48px);
  font-size: clamp(16px, 5.6cqi, 48px);
  white-space: nowrap;
}

.contact-form-heading > p:not(.section-index) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.demo-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 17px;
  border-radius: 16px;
  color: #4b4a72;
  background: linear-gradient(100deg, rgba(199, 189, 250, 0.24), rgba(101, 216, 213, 0.16));
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}

.demo-notice i {
  display: block;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 22px;
}

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

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

.form-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.form-field label small {
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--violet);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.form-field label small.is-optional {
  color: var(--muted);
  background: var(--mist);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 18px;
  outline: 0;
  color: var(--ink);
  background: #f1f6f6;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.form-field input,
.form-field select {
  min-height: 58px;
  padding: 0 18px;
}

.form-field textarea {
  min-height: 190px;
  padding: 17px 18px;
  line-height: 1.8;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #93a3aa;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  background: #edf3f4;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(120, 110, 242, 0.58);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(120, 110, 242, 0.11);
  transform: translateY(-1px);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.select-wrap select {
  appearance: none;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy-check {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  cursor: pointer;
}

.privacy-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.privacy-check > span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(6, 40, 61, 0.22);
  border-radius: 8px;
  background: #f1f6f6;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.privacy-check > span::after {
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: "";
  opacity: 0;
  transform: rotate(45deg) scale(0.6);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.privacy-check input:checked + span {
  border-color: var(--violet);
  background: linear-gradient(145deg, var(--violet), var(--blue));
}

.privacy-check input:checked + span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.privacy-check input:focus-visible + span {
  box-shadow: 0 0 0 5px rgba(120, 110, 242, 0.13);
}

.privacy-check em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.8;
}

.privacy-check em a {
  color: var(--violet);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(120, 110, 242, 0.32);
  text-underline-offset: 4px;
}

.privacy-check em b {
  font-weight: 400;
}

.form-status {
  min-height: 0;
  color: #a13c55;
  font-size: 12px;
  font-weight: 650;
}

.form-status:empty {
  display: none;
}

.contact-submit {
  width: 100%;
  min-height: 66px;
  justify-content: space-between;
  padding: 10px 12px 10px 26px;
  border: 0;
  color: var(--white);
  background: linear-gradient(100deg, var(--violet), var(--blue));
  cursor: pointer;
}

.contact-submit::before {
  background: linear-gradient(100deg, var(--blue), var(--cyan));
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-review {
  padding-top: 8px;
}

.contact-review dl {
  display: grid;
  gap: 11px;
  margin: 40px 0;
}

.contact-review dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) 1fr;
  gap: 25px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #f1f6f6;
}

.contact-review dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.contact-review dd {
  margin: 0;
  font-size: 14px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.contact-review-actions {
  display: grid;
  grid-template-columns: auto minmax(260px, 0.7fr);
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 6px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.text-button span {
  border-bottom: 1px solid var(--line);
}

.text-button:hover {
  color: var(--violet);
}

.contact-complete {
  max-width: 690px;
  padding: 55px 0 20px;
}

.contact-complete > p:not(.section-index) {
  margin: 26px 0 35px;
  color: var(--muted);
  line-height: 1.95;
}

.complete-mark {
  position: relative;
  display: grid;
  width: 98px;
  height: 98px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 55% 45% 61% 39% / 44% 57% 43% 56%;
  background: linear-gradient(145deg, var(--aqua), var(--violet));
  box-shadow: 0 24px 55px rgba(120, 110, 242, 0.25);
}

.complete-mark i {
  width: 22px;
  height: 39px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: translateY(-5px) rotate(45deg);
}

@media (max-width: 1080px) {
  .proof-layout {
    gap: 55px;
  }

  .service-row {
    padding: 44px 34px;
  }

  .mission-layout {
    gap: 55px;
  }

  .contact-form-card {
    padding: 55px 45px;
  }
}

@media (max-width: 820px) {
  .proof-strip {
    padding: 70px 0;
  }

  .proof-layout,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .proof-intro {
    max-width: 650px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-title,
  .service-copy {
    grid-column: 1;
  }

  .service-number {
    right: 25px;
    font-size: clamp(105px, 26vw, 150px);
  }

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

  .mission-label {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 0.55fr);
    align-items: start;
    gap: 35px;
  }

  .mission-image {
    min-height: 260px;
  }

  .mission-image img {
    min-height: 260px;
  }

  .contact-hero {
    min-height: 650px;
    padding-top: calc(var(--header-height) + 85px);
  }

  .contact-hero-layout {
    min-height: 440px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 38px;
  }

  .contact-response-note {
    max-width: none;
  }

  .contact-hero-art {
    top: 18%;
    right: -13%;
    width: 500px;
    height: 500px;
    opacity: 0.42;
  }

  .contact-form-section {
    margin-top: -38px;
    padding-bottom: 110px;
  }

  .contact-steps {
    position: relative;
    top: auto;
    padding: 95px 0 0;
  }

  .contact-steps ol {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 35px;
  }

  .contact-steps li {
    grid-template-columns: 1fr;
    padding: 18px 15px;
  }
}

@media (max-width: 560px) {
  .proof-strip {
    padding: 58px 0;
  }

  .proof-layout {
    gap: 38px;
  }

  .proof-intro h2 {
    font-size: clamp(23px, 8vw, 34px);
  }

  .proof-points article {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 23px 19px;
    border-radius: 22px;
  }

  .service-row {
    padding: 30px 21px;
  }

  .service-number {
    right: 16px;
    bottom: -0.15em;
    font-size: 105px;
  }

  .mission-label {
    grid-template-columns: 1fr;
  }

  .mission-image {
    width: min(100%, 330px);
    min-height: 230px;
  }

  .mission-image img {
    min-height: 230px;
  }

  .mission-bottom {
    gap: 28px;
  }

  .careers-section .section-heading > p {
    padding-left: 20px;
    font-size: 20px;
  }

  .contact-hero {
    min-height: 610px;
    padding: calc(var(--header-height) + 65px) 0 70px;
  }

  .contact-hero-copy h1 {
    margin-top: 26px;
    font-size: 44px;
  }

  .contact-hero-copy > p:last-child {
    font-size: 14px;
  }

  .contact-hero-art {
    top: 24%;
    right: -38%;
    width: 420px;
    height: 420px;
    opacity: 0.32;
  }

  .contact-form-section {
    margin-top: -25px;
  }

  .contact-steps {
    padding-top: 72px;
  }

  .contact-steps ol {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-steps li {
    grid-template-columns: 30px 1fr;
  }

  .contact-form-card {
    min-height: 0;
    padding: 36px 20px;
    border-radius: 30px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .form-field input,
  .form-field select {
    min-height: 56px;
  }

  .contact-review dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px;
  }

  .contact-review-actions {
    grid-template-columns: 1fr;
  }

  .contact-review-actions .contact-submit {
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-art i {
    animation: none !important;
  }
}

/* Requested layout refinements */

.hero-actions .button-primary i {
  transform: none;
}

.hero-actions .button-primary:hover i,
.hero-actions .button-primary:focus-visible i {
  transform: translateY(2px) scale(1.08);
}

.service-row::after {
  display: none !important;
  content: none;
}

.service-row:hover::before {
  opacity: 1;
  transform: none;
}

.services-section .section-heading,
.values-section .section-heading {
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: end;
  gap: clamp(34px, 4.5vw, 68px);
}

.services-section .section-heading > p,
.values-section .section-heading > p {
  justify-self: start;
  max-width: none;
  padding-bottom: 6px;
  font-size: clamp(11.5px, 1.08vw, 15px);
  line-height: 1.65;
  white-space: nowrap;
}

.values-section .section-heading > p {
  white-space: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.mission-layout {
  grid-template-columns: minmax(340px, 0.5fr) minmax(0, 1fr);
  gap: clamp(52px, 6.5vw, 92px);
}

.mission-image {
  min-height: 470px;
}

.mission-image img {
  min-height: 470px;
}

.mission-image figcaption {
  right: 34px;
  bottom: 34px;
  left: 34px;
  gap: 5px;
}

.mission-image figcaption span {
  font-size: clamp(12px, 1.15vw, 16px);
  letter-spacing: 0.14em;
}

.mission-image figcaption small {
  color: var(--white);
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 750;
  letter-spacing: 0.1em;
}

.circle-link {
  width: 174px;
  height: 142px;
  color: var(--white);
  border: 0;
  border-radius: 55% 45% 58% 42% / 48% 60% 40% 52%;
  background: linear-gradient(145deg, var(--violet), var(--blue));
  box-shadow: 0 25px 60px rgba(88, 80, 198, 0.28);
}

.circle-link i {
  color: var(--cyan-soft);
}

.circle-link:hover {
  color: var(--white);
  border-radius: 43% 57% 45% 55% / 58% 43% 57% 42%;
  background: linear-gradient(145deg, #695fe8, #2fa9cc);
  box-shadow: 0 32px 72px rgba(65, 105, 225, 0.34);
}

.careers-section .section-heading {
  grid-template-columns: minmax(230px, 0.62fr) minmax(430px, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
}

.careers-section .section-heading > * {
  min-width: 0;
}

.careers-section .section-heading > .careers-message {
  width: 100%;
  max-width: none;
  min-width: 0;
  font-size: clamp(12px, 2.05vw, 25px);
  line-height: 1.65;
}

.careers-message span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.company-art-unified {
  min-height: 590px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 19%, rgba(255, 255, 255, 0.96) 0 4%, rgba(255, 255, 255, 0.5) 8%, transparent 20%),
    radial-gradient(circle at 72% 76%, rgba(101, 216, 213, 0.36), transparent 34%),
    radial-gradient(circle at 25% 75%, rgba(243, 185, 166, 0.34), transparent 33%),
    conic-gradient(from 205deg at 50% 50%, rgba(101, 216, 213, 0.28), rgba(199, 189, 250, 0.4), rgba(243, 185, 166, 0.3), rgba(255, 255, 255, 0.55), rgba(101, 216, 213, 0.28));
  box-shadow:
    inset 18px 20px 38px rgba(255, 255, 255, 0.55),
    inset -24px -28px 55px rgba(92, 119, 214, 0.14),
    0 28px 80px rgba(3, 23, 36, 0.18),
    0 0 60px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px) saturate(1.18);
}

.company-art-unified:hover {
  border-radius: 50%;
}

.company-art-words span {
  font-size: clamp(34px, 4.7vw, 64px);
}

.company-art-unified > p {
  color: rgba(255, 255, 255, 0.76);
}

.company-hero-foot.hero-foot {
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
}

.company-hero-foot.hero-foot > p {
  color: rgba(255, 255, 255, 0.58);
}

.company-hero-foot .scroll-cue {
  color: rgba(255, 255, 255, 0.78);
}

.company-hero-foot .scroll-cue i {
  border-color: rgba(255, 255, 255, 0.3);
}

.value-card {
  padding: 34px 29px;
}

.value-card::before {
  opacity: 0.34;
}

.values-section .value-number {
  position: absolute;
  right: 19px;
  bottom: -0.19em;
  z-index: 0;
  color: rgba(65, 105, 225, 0.075);
  font-size: clamp(104px, 9vw, 145px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease, transform 0.5s ease;
}

.value-card-accent .value-number {
  color: rgba(255, 255, 255, 0.1);
}

.value-card > *:not(.value-number) {
  position: relative;
  z-index: 1;
}

.value-card:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 80px rgba(49, 77, 129, 0.16);
}

.value-card:hover::before {
  opacity: 0.52;
  transform: scale(1.15);
}

.value-card:hover p {
  color: var(--muted);
}

.value-card:hover .value-number {
  color: rgba(120, 110, 242, 0.1);
  transform: translate(-4px, -4px);
}

.vision-layout {
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 68px);
}

.vision-content h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.42;
  white-space: nowrap;
}

html[lang="en"] .vision-content h2 {
  font-size: clamp(32px, 3.7vw, 50px);
}

.vision-points {
  display: grid;
  gap: 14px;
  border-top: 0;
}

.vision-points article {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 36px 34px;
  border-bottom: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 0.35s ease, transform 0.4s ease;
}

.vision-points article:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(7px);
}

.vision-points article > span {
  position: absolute;
  right: 24px;
  bottom: -0.2em;
  z-index: 0;
  color: rgba(156, 231, 239, 0.075);
  font-size: clamp(105px, 10vw, 155px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.vision-points article > div {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.vision-points h3 {
  padding-right: 80px;
}

@media (max-width: 1080px) {
  .company-art-unified {
    min-height: 520px;
  }

  .mission-layout {
    grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
    gap: 48px;
  }

  .mission-image,
  .mission-image img {
    min-height: 430px;
  }

  .vision-layout {
    grid-template-columns: minmax(120px, 0.17fr) minmax(0, 1fr);
    gap: 38px;
  }
}

@media (max-width: 900px) {
  .services-section .section-heading,
  .values-section .section-heading,
  .careers-section .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .services-section .section-heading > p,
  .values-section .section-heading > p {
    max-width: 700px;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 1.9;
    white-space: normal;
  }

  .careers-section .section-heading > .careers-message {
    justify-self: start;
    font-size: clamp(12px, 2.5vw, 23px);
  }
}

@media (max-width: 820px) {
  .mission-layout {
    grid-template-columns: 1fr;
  }

  .mission-label {
    grid-template-columns: 1fr minmax(290px, 0.68fr);
  }

  .mission-image,
  .mission-image img {
    min-height: 330px;
  }

  .circle-link {
    width: 164px;
    height: 134px;
  }

  .company-art-unified {
    width: min(100%, 580px);
    min-height: 540px;
    margin-inline: auto;
  }

  .company-hero-foot.hero-foot {
    margin-top: 35px;
  }

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

  .vision-content h2,
  html[lang="en"] .vision-content h2 {
    font-size: clamp(29px, 6vw, 42px);
  }
}

@media (max-width: 560px) {
  .mission-label {
    grid-template-columns: 1fr;
  }

  .mission-image {
    width: 100%;
  }

  .mission-image,
  .mission-image img {
    min-height: 310px;
  }

  .mission-image figcaption {
    right: 25px;
    bottom: 27px;
    left: 25px;
  }

  .mission-image figcaption span {
    font-size: 12px;
  }

  .mission-image figcaption small {
    font-size: 15px;
  }

  .careers-section .section-heading > .careers-message {
    padding-left: clamp(10px, 4.35vw, 17px);
    font-size: clamp(11px, 3.1vw, 18px);
    line-height: 1.75;
  }

  .careers-message span {
    overflow-wrap: normal;
  }

  .company-art-unified {
    width: min(100%, 410px);
    min-height: 390px;
  }

  .company-art-words span {
    font-size: clamp(29px, 9vw, 44px);
  }

  .vision-content h2,
  html[lang="en"] .vision-content h2 {
    font-size: clamp(17.5px, 4.8vw, 25px);
    letter-spacing: -0.045em;
  }

  .vision-points {
    margin-top: 48px;
  }

  .vision-points article {
    padding: 30px 23px;
  }

  .vision-points article > span {
    right: 16px;
    font-size: 102px;
  }

  .vision-points h3 {
    padding-right: 35px;
  }
}

@media (max-width: 300px) {
  .careers-message span {
    white-space: normal;
    text-wrap: balance;
  }
}

/* Follow-up refinements */

.mission-image::after {
  background: linear-gradient(180deg, transparent 58%, rgba(6, 40, 61, 0.28));
}

.mission-company-link {
  min-width: 190px;
  align-self: end;
}

.mission-company-link i {
  flex: 0 0 30px;
}

.company-art-unified {
  width: min(100%, 620px);
  min-height: 0;
  aspect-ratio: 1;
  justify-self: end;
}

.value-card {
  transform-origin: 50% 90%;
}

.value-card h3,
.value-card p {
  transition: color 0.35s ease, transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.value-card:hover {
  transform: translateY(-15px) rotate(-0.8deg) scale(1.025);
  box-shadow:
    0 42px 95px rgba(49, 77, 129, 0.2),
    0 10px 24px rgba(120, 110, 242, 0.1);
}

.value-card:nth-child(even):hover {
  transform: translateY(-15px) rotate(0.8deg) scale(1.025);
}

.value-card.reveal.is-visible:hover {
  transform: translateY(-15px) rotate(-0.8deg) scale(1.025);
}

.value-card:nth-child(even).reveal.is-visible:hover {
  transform: translateY(-15px) rotate(0.8deg) scale(1.025);
}

.value-card:hover::before {
  border-radius: 42% 58% 63% 37% / 61% 38% 62% 39%;
  opacity: 0.58;
  transform: translate(-14px, -12px) rotate(24deg) scale(1.48);
}

.value-card:hover .value-icon {
  border-radius: 37% 63% 44% 56% / 62% 37% 63% 38%;
  box-shadow:
    inset 0 0 32px rgba(255, 255, 255, 0.5),
    0 18px 38px rgba(88, 80, 198, 0.18);
  transform: translateY(-7px) rotate(24deg) scale(1.16);
}

.value-card:hover h3 {
  transform: translateX(8px);
}

.value-card:hover p {
  transform: translateY(-3px);
}

.value-card:hover .value-number {
  color: rgba(120, 110, 242, 0.13);
  transform: translate(-10px, -10px) scale(1.05);
}

.vision-points {
  display: block;
  margin-top: 75px;
  border-top: 1px solid var(--line-light);
}

.vision-points article {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 38px 24px 38px 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  background: transparent;
  transition: padding-left 0.35s ease, background 0.35s ease;
}

.vision-points article:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(101, 216, 213, 0.07), transparent 72%);
  transform: none;
}

.vision-points article > div {
  max-width: 790px;
}

.vision-points h3 {
  padding-right: 92px;
}

.history-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 18%, rgba(101, 216, 213, 0.34), transparent 27%),
    radial-gradient(circle at 16% 86%, rgba(243, 185, 166, 0.3), transparent 28%),
    linear-gradient(140deg, #eef9f7 0%, #f5f2ff 56%, #fff5ef 100%);
}

.history-section .section-heading h2 {
  color: var(--ink);
}

.history-section .section-heading > p {
  color: var(--muted);
}

.history-section .section-index {
  color: var(--violet);
}

.timeline {
  display: grid;
  gap: 8px;
}

.timeline li {
  padding: 22px 24px;
  border-radius: 24px;
  transition: background 0.35s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.timeline li:not(.timeline-future):hover {
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 55px rgba(58, 79, 90, 0.09);
  transform: translateX(8px);
}

.timeline time {
  color: var(--violet);
}

.timeline li > i::before {
  border-color: #f4f6fb;
  background: var(--aqua);
  box-shadow:
    0 0 0 1px rgba(101, 216, 213, 0.9),
    0 0 0 7px rgba(101, 216, 213, 0.12);
}

.timeline li > i::after {
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(101, 216, 213, 0.58), rgba(120, 110, 242, 0.28));
}

.timeline h3 {
  color: var(--ink);
}

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

.timeline-future {
  color: var(--ink);
  border: 1px solid rgba(120, 110, 242, 0.1);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(110deg, rgba(101, 216, 213, 0.34), rgba(199, 189, 250, 0.4), rgba(243, 185, 166, 0.34));
  box-shadow: 0 28px 70px rgba(88, 80, 198, 0.13);
}

.timeline-future:hover {
  box-shadow: 0 36px 85px rgba(88, 80, 198, 0.2);
  transform: translateY(-7px) scale(1.01);
}

.timeline-future > div > span {
  color: #5e54ca;
}

.timeline-future p {
  color: #526a76;
}

@media (max-width: 1080px) {
  .company-art-unified {
    width: min(100%, 540px);
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .mission-company-link {
    justify-self: start;
  }

  .company-art-unified {
    width: min(100%, 560px);
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .mission-company-link {
    width: min(100%, 240px);
    min-width: 0;
  }

  .company-art-unified {
    width: min(100%, 410px);
    min-height: 0;
  }

  .vision-points {
    margin-top: 48px;
  }

  .vision-points article {
    padding: 31px 10px 31px 0;
  }

  .vision-points h3 {
    padding-right: 45px;
  }

  .timeline li {
    padding: 20px 14px;
  }
}

/* Company and contact flow refinements */

.signature {
  display: block;
}

.company-hero-art {
  width: min(100%, 620px);
  min-height: 0;
  aspect-ratio: 1;
  justify-self: end;
}

.signature-text {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  align-items: baseline;
}

.signature-text small {
  grid-column: 1 / -1;
}

.vision-points article {
  padding-left: 38px;
}

.vision-points article::before,
.vision-points article::after {
  position: absolute;
  top: 25px;
  bottom: 25px;
  content: "";
  border-radius: 999px;
}

.vision-points article::before {
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--aqua), var(--violet), var(--peach));
  box-shadow: 0 0 18px rgba(101, 216, 213, 0.2);
}

.vision-points article::after {
  left: 11px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.05));
}

.vision-points article:hover {
  padding-left: 48px;
}

.company-details-section {
  background: var(--paper);
}

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

.company-table > div {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.company-table > div:hover {
  padding-left: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

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

.timeline li:not(.timeline-future):hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.timeline-future:hover {
  box-shadow: 0 28px 70px rgba(88, 80, 198, 0.13);
  transform: none;
}

.timeline-current {
  min-height: 120px;
}

.timeline-current > div {
  align-self: start;
  padding-top: 1px;
}

.timeline-current > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5e54ca;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.timeline-current p {
  margin-top: 9px;
}

.timeline-current > i::before {
  border-color: rgba(255, 255, 255, 0.92);
  background: var(--violet);
  animation: timeline-current-pulse 2.2s ease-in-out infinite;
}

@keyframes timeline-current-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(120, 110, 242, 0.8),
      0 0 0 7px rgba(120, 110, 242, 0.12),
      0 0 22px rgba(120, 110, 242, 0.28);
    transform: scale(0.92);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(120, 110, 242, 0.9),
      0 0 0 14px rgba(120, 110, 242, 0.04),
      0 0 32px rgba(101, 216, 213, 0.42);
    transform: scale(1.16);
  }
}

.contact-form-layout {
  grid-template-columns: minmax(350px, 0.48fr) minmax(0, 1fr);
  gap: clamp(55px, 6.5vw, 88px);
}

.contact-steps h2 {
  max-width: none;
  font-size: clamp(30px, 2.75vw, 36px);
  white-space: nowrap;
}

.contact-steps ol {
  position: relative;
  gap: 2px;
}

.contact-steps ol::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 21px;
  z-index: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--aqua), var(--violet) 55%, var(--peach));
  content: "";
  box-shadow: 0 0 18px rgba(120, 110, 242, 0.14);
}

.contact-steps li {
  position: relative;
  z-index: 1;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 16px 10px 16px 0;
  border-radius: 0;
  background: transparent;
  transition: none;
}

.contact-steps li:hover {
  background: transparent;
  transform: none;
}

.contact-steps li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  border: 5px solid var(--paper-warm);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--violet), var(--blue));
  box-shadow:
    0 10px 24px rgba(88, 80, 198, 0.22),
    0 0 0 1px rgba(120, 110, 242, 0.12);
  font-size: 9px;
}

.contact-steps li:nth-child(2) > span {
  background: linear-gradient(145deg, var(--aqua), #668bea);
}

.contact-steps li:nth-child(3) > span {
  background: linear-gradient(145deg, var(--peach), var(--violet));
}

@media (max-width: 1080px) {
  .contact-form-layout {
    grid-template-columns: minmax(310px, 0.44fr) minmax(0, 1fr);
    gap: 48px;
  }

  .contact-steps h2 {
    font-size: 30px;
  }
}

@media (max-width: 820px) {
  .page-company .company-hero-grid {
    position: relative;
    display: block;
    min-height: 690px;
  }

  .page-company .company-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 640px;
    isolation: isolate;
  }

  .page-company .company-hero-copy::before {
    position: absolute;
    inset: -45px -95px -50px -40px;
    z-index: -1;
    border-radius: 48%;
    background: radial-gradient(ellipse at 28% 48%, rgba(6, 40, 61, 0.98) 0 45%, rgba(6, 40, 61, 0.86) 60%, rgba(6, 40, 61, 0.38) 75%, transparent 85%);
    content: "";
    pointer-events: none;
  }

  .page-company .company-hero-art {
    position: absolute;
    top: 20px;
    right: -180px;
    z-index: 0;
    width: 560px;
    height: 560px;
    min-height: 0;
    margin: 0;
    opacity: 0.64;
    pointer-events: none;
  }

  .page-company .company-hero-art .art-words {
    opacity: 0.28;
  }

  .page-company .company-hero-art > p {
    opacity: 1;
  }

  .page-company .company-hero-foot {
    position: relative;
    z-index: 2;
  }

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

  .contact-steps h2 {
    font-size: clamp(32px, 6vw, 44px);
  }

  .contact-steps ol {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .contact-steps ol::before {
    top: 21px;
    right: 16%;
    bottom: auto;
    left: 16%;
    width: auto;
    height: 2px;
  }

  .contact-steps li {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 0 10px;
    text-align: center;
  }

  .contact-steps li > span {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .ceo-title-portrait {
    max-width: none;
    border-radius: 24px 54px 24px 24px;
  }

  .vision-points article {
    padding-left: 28px;
  }

  .vision-points article:hover {
    padding-left: 28px;
  }

  .page-company .company-hero-grid {
    min-height: 620px;
  }

  .page-company .company-hero-copy::before {
    inset: -35px -70px -40px -30px;
  }

  .page-company .company-hero-art {
    top: 68px;
    right: -235px;
    width: 440px;
    height: 440px;
    opacity: 0.56;
  }

  .page-company .company-hero-art .art-words,
  .page-company .company-hero-art > p {
    display: none;
  }

  .contact-steps h2 {
    font-size: clamp(25px, 7.5vw, 34px);
  }

  .contact-steps ol {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact-steps ol::before {
    top: 24px;
    right: auto;
    bottom: 24px;
    left: 21px;
    width: 2px;
    height: auto;
  }

  .contact-steps li {
    grid-template-columns: 44px 1fr;
    gap: 17px;
    padding: 15px 0;
    text-align: left;
  }

  .contact-steps li > span {
    margin-inline: 0;
  }
}

/* Contact heading line control */

.contact-section h2 {
  font-size: clamp(28px, 4.1vw, 58px);
}

.contact-title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 560px) {
  .contact-section h2 {
    font-size: clamp(24px, 7.3vw, 34px);
  }
}

/* Responsive editorial wrapping */

:where(
  .hero-lead,
  .proof-intro > p:last-child,
  .proof-points article p,
  .section-heading > p,
  .service-copy > p,
  .mission-bottom > p,
  .careers-message,
  .benefit-list article p,
  .openings-card article > p,
  .contact-copy > p,
  .company-hero-copy > p:last-child,
  .value-card p,
  .vision-points p,
  .ceo-copy > p,
  .company-table dd,
  .timeline p,
  .office-card address,
  .office-card p,
  .contact-hero-copy > p:last-child,
  .contact-response-note,
  .contact-steps li p,
  .contact-form-heading > p:not(.section-index),
  .demo-notice span,
  .contact-review dd,
  .contact-complete > p:not(.section-index)
) {
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

html[lang="ja"] :where(
  .hero-lead,
  .proof-intro > p:last-child,
  .proof-points article p,
  .section-heading > p,
  .service-copy > p,
  .mission-bottom > p,
  .careers-message,
  .benefit-list article p,
  .openings-card article > p,
  .contact-copy > p,
  .company-hero-copy > p:last-child,
  .value-card p,
  .vision-points p,
  .ceo-copy > p,
  .company-table dd,
  .timeline p,
  .office-card address,
  .office-card p,
  .contact-hero-copy > p:last-child,
  .contact-response-note,
  .contact-steps li p,
  .contact-form-heading > p:not(.section-index),
  .demo-notice span,
  .contact-review dd,
  .contact-complete > p:not(.section-index)
) {
  word-break: normal;
}

html[lang="en"] :where(
  .hero-lead,
  .proof-intro > p:last-child,
  .proof-points article p,
  .section-heading > p,
  .service-copy > p,
  .mission-bottom > p,
  .careers-message,
  .benefit-list article p,
  .openings-card article > p,
  .contact-copy > p,
  .company-hero-copy > p:last-child,
  .value-card p,
  .vision-points p,
  .ceo-copy > p,
  .company-table dd,
  .timeline p,
  .office-card address,
  .office-card p,
  .contact-hero-copy > p:last-child,
  .contact-response-note,
  .contact-steps li p,
  .contact-form-heading > p:not(.section-index),
  .demo-notice span,
  .contact-review dd,
  .contact-complete > p:not(.section-index)
) {
  word-break: normal;
  hyphens: auto;
}

/* Final responsive safeguards */

.page-company .ceo-title-portrait {
  overflow: hidden;
  border-radius: 30px 76px 30px 30px;
}

.page-company .signature-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 13px;
}

.page-company .signature-text strong,
.page-company .signature-text span,
.page-company .signature-text small {
  white-space: nowrap;
}

.page-company .signature-text small {
  flex-basis: 100%;
}

.history-section :where(.section-heading > p, .timeline h3, .timeline p) {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.history-phrase {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .mission-section .mission-layout,
  .mission-section .mission-label {
    grid-template-columns: minmax(0, 1fr);
  }

  .mission-section .mission-label {
    display: grid;
    width: 100%;
  }

  .mission-section .mission-image {
    width: 100%;
    max-width: none;
    min-height: clamp(260px, 55vw, 470px);
    justify-self: stretch;
  }

  .mission-section .mission-image img {
    width: 100%;
    min-height: clamp(260px, 55vw, 470px);
  }
}

@media (max-width: 560px) {
  .page-company .ceo-title-portrait {
    border-radius: 24px 54px 24px 24px;
  }
}

.hero-lead {
  font-size: clamp(14px, 1.15vw, 16px);
}

.proof-intro > p:last-child {
  font-size: clamp(13px, 1.05vw, 15px);
}

.service-copy > p {
  font-size: clamp(13px, 1vw, 14px);
}

.copy-sentence {
  display: block;
}

.copy-sentence + .copy-sentence {
  margin-top: 0.3em;
}

.copy-phrase {
  white-space: nowrap;
}

/* Directional controls, shared hero layout, and form consent feedback */

.arrow-right {
  transition: transform 0.3s ease;
  transform: none !important;
}

.button:hover .arrow-right,
.button:focus-visible .arrow-right {
  transform: translateX(3px) scale(1.08) !important;
}

.text-link:hover .arrow-right,
.text-link:focus-visible .arrow-right,
.contact-mail:hover .arrow-right,
.contact-mail:focus-visible .arrow-right {
  transform: translateX(4px) !important;
}

.contact-hero-copy h1 {
  font-size: clamp(22px, 6.6vw, 78px);
}

.contact-hero-title-line {
  display: block;
  white-space: nowrap;
}

.contact-hero-copy h1 .contact-hero-title-line:first-child {
  color: inherit;
}

html[lang="en"] .contact-hero-copy h1 {
  font-size: clamp(18px, 4.6vw, 62px);
}

.company-contact-hero .contact-hero-copy h1,
html[lang="en"] .company-contact-hero .contact-hero-copy h1 {
  font-size: clamp(44px, 7.4vw, 92px);
}

.privacy-check.is-error > span {
  border-color: #c34a65;
  background: #fff3f5;
  box-shadow: 0 0 0 5px rgba(195, 74, 101, 0.12);
}

.privacy-check.is-error em {
  color: #94364c;
}

/* Careers benefit numbers */

.benefit-list article {
  position: relative;
  display: block;
  overflow: hidden;
}

.benefit-list article > span {
  position: absolute;
  right: 18px;
  bottom: -0.18em;
  z-index: 0;
  color: rgba(65, 105, 225, 0.075);
  font-size: clamp(86px, 8vw, 118px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease, transform 0.5s ease;
}

.benefit-list article > div {
  position: relative;
  z-index: 1;
}

.benefit-list article:hover > span {
  color: rgba(120, 110, 242, 0.12);
  transform: translate(-5px, -4px);
}

/* Approach point numbers */

.proof-points article {
  position: relative;
  display: block;
  overflow: hidden;
}

.proof-points article > span {
  position: absolute;
  right: 18px;
  bottom: -0.18em;
  z-index: 0;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(92px, 9vw, 128px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease, transform 0.5s ease;
}

.proof-points article > div {
  position: relative;
  z-index: 1;
}

.proof-points article:hover > span {
  color: rgba(156, 231, 239, 0.14);
  transform: translate(-5px, -4px);
}

/* Alternating values palette and illustrated access maps */

.office-map {
  display: block;
  isolation: isolate;
  color: inherit;
  text-decoration: none;
}

.office-map img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.55s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.office-map::before {
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 45%, rgba(18, 54, 69, 0.22));
  transform: none;
}

.office-map::after {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 1;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

.office-card:hover .office-map img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.office-card:hover .office-map::before {
  border-radius: 0;
  transform: none;
}

.office-card:hover .office-map::after {
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.08);
}

.office-map span {
  z-index: 3;
  color: rgba(6, 40, 61, 0.72);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95);
}

.map-open-label {
  position: absolute;
  right: 16px;
  bottom: 15px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 22px rgba(31, 71, 86, 0.12);
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background 0.35s ease, transform 0.35s ease;
}

.map-open-label em {
  font-size: 13px;
  font-style: normal;
  transition: transform 0.35s ease;
}

.map-attribution {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 3;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(6, 40, 61, 0.72);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  backdrop-filter: blur(7px);
}

.office-map:hover .map-open-label,
.office-map:focus-visible .map-open-label {
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-2px);
}

.office-map:hover .map-open-label em,
.office-map:focus-visible .map-open-label em {
  transform: translateX(3px);
}

.office-map:focus-visible {
  outline: 3px solid rgba(120, 110, 242, 0.55);
  outline-offset: -3px;
}

/* Policy */

.page-policy {
  background: var(--paper);
}

.policy-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(340px, 48vw, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 30%, rgba(167, 148, 255, 0.24), transparent 29%),
    radial-gradient(circle at 88% 72%, rgba(105, 209, 196, 0.2), transparent 25%),
    linear-gradient(135deg, #0c2b3e 0%, #123f50 52%, #234c52 100%);
  color: #fff;
}

.policy-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(4, 23, 34, 0.18));
  content: "";
}

.policy-hero-inner {
  padding-block: clamp(150px, 19vw, 230px) clamp(70px, 9vw, 112px);
}

.policy-hero h1 {
  max-width: 12em;
  margin-top: 24px;
  font-size: clamp(2.25rem, 5.5vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.policy-hero-art i {
  position: absolute;
  z-index: -1;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(143, 115, 235, 0.08));
  box-shadow:
    inset 10px 12px 22px rgba(255, 255, 255, 0.12),
    0 24px 80px rgba(3, 25, 37, 0.18);
  backdrop-filter: blur(8px);
}

.policy-hero-art i:nth-child(1) {
  top: 18%;
  right: 12%;
  width: clamp(118px, 18vw, 260px);
  aspect-ratio: 1;
  animation: contact-bubble 8s ease-in-out infinite alternate;
}

.policy-hero-art i:nth-child(2) {
  right: 28%;
  bottom: 8%;
  width: clamp(72px, 9vw, 132px);
  aspect-ratio: 1;
  animation: contact-bubble 6s ease-in-out -2s infinite alternate-reverse;
}

.policy-hero-art i:nth-child(3) {
  top: 20%;
  right: 4%;
  width: clamp(48px, 6vw, 88px);
  aspect-ratio: 1;
  animation: contact-bubble 7s ease-in-out -4s infinite alternate;
}

.policy-content {
  background:
    radial-gradient(circle at 8% 6%, rgba(137, 116, 224, 0.08), transparent 19%),
    var(--paper);
}

.policy-section {
  padding: clamp(80px, 11vw, 150px) 0;
}

.policy-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.42);
}

.policy-document {
  position: relative;
  width: min(calc(100% - 48px), 920px);
  margin: 0 auto;
}

[data-language-content][hidden] {
  display: none;
}

.policy-document > .policy-document-title {
  position: relative;
  max-width: 18em;
  margin-bottom: clamp(56px, 8vw, 94px);
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.policy-document > .policy-document-title::after {
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--violet), var(--aqua));
  content: "";
}

.policy-document h2:not(.policy-document-title) {
  margin: clamp(46px, 6vw, 68px) 0 16px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.55;
}

.policy-hero h1,
.policy-document > .policy-document-title,
.policy-document h2:not(.policy-document-title) {
  overflow-wrap: break-word;
  text-wrap: balance;
}

.policy-document p:not(.policy-section-label),
.policy-document li {
  color: var(--muted);
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 2;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: normal;
}

html[lang="ja"] [data-language-content="ja"] .policy-document :where(p:not(.policy-section-label), li) {
  word-break: normal;
}

html[lang="en"] [data-language-content="en"] .policy-document :where(p:not(.policy-section-label), li) {
  hyphens: none;
}

.policy-document ol {
  margin: 20px 0 0;
  padding-left: 1.8em;
}

.policy-document ol ol {
  margin: 10px 0 14px;
}

.policy-document li {
  padding-left: 0.35em;
}

.policy-document li + li {
  margin-top: 8px;
}

.policy-contact {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 2px solid rgba(137, 116, 224, 0.4);
}

.policy-date {
  margin-top: clamp(52px, 7vw, 82px);
  text-align: right;
}

@media (max-width: 720px) {
  .policy-hero {
    min-height: 390px;
  }

  .policy-hero-art {
    opacity: 0.62;
  }

  .policy-hero h1 {
    max-width: 9em;
  }

  .policy-document {
    width: min(calc(100% - 32px), 920px);
  }

  .policy-document p:not(.policy-section-label),
  .policy-document li {
    line-height: 1.9;
  }

  .policy-contact {
    padding-left: 14px;
  }
}

/* Site-wide final wrapping rules */

.mission-content {
  container-type: inline-size;
}

.mission-content h2 {
  font-size: clamp(22px, 4.8vw, 58px);
  font-size: clamp(17px, 5.7cqi, 58px);
  line-height: 1.38;
}

.mission-title-line {
  display: block;
  max-width: 100%;
  color: inherit;
  white-space: nowrap;
}

html[lang="en"] .mission-content h2 {
  font-size: clamp(18px, 3.6vw, 50px);
  font-size: clamp(14px, 4.5cqi, 50px);
}

:where(main h1, main h2, main h3) {
  line-break: strict;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

html[lang="ja"] :where(
  main h1,
  main h2,
  main h3
) {
  word-break: auto-phrase;
}

:where(
  main p,
  main li,
  main dt,
  main dd,
  main address,
  .policy-document p,
  .policy-document li
) {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

html[lang="en"] :where(
  main p,
  main li,
  main dt,
  main dd,
  main address,
  .policy-document p,
  .policy-document li
) {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.contact-review dd {
  overflow-wrap: anywhere;
}

/* Fixed-line responsive hero typography */

.hero-copy,
.contact-hero-copy {
  container-type: inline-size;
}

.hero h1 {
  font-size: clamp(34px, 5.3vw, 78px);
  font-size: clamp(26px, 10.2cqi, 78px);
}

.contact-hero-copy h1 {
  font-size: clamp(28px, 6.2vw, 78px);
  font-size: clamp(20px, 7.4cqi, 78px);
}

html[lang="en"] .contact-hero-copy h1 {
  font-size: clamp(20px, 4.2vw, 62px);
  font-size: clamp(15px, 5.3cqi, 62px);
}

@media (max-width: 820px) {
  .page-home .art-logo {
    width: clamp(145px, 38vw, 220px);
    opacity: 0.32;
  }
}

@media (max-width: 560px) {
  .page-home .art-logo {
    width: clamp(130px, 45vw, 185px);
    opacity: 0.24;
  }
}

/* Readability refinement: body copy only */

.page-home .hero-lead {
  font-size: clamp(15px, calc(1.15vw + 1px), 17px);
}

.page-home .proof-intro > p:last-child {
  font-size: clamp(14px, calc(1.05vw + 1px), 16px);
}

.page-home .proof-points article p {
  font-size: 14px;
}

.page-home .services-section .section-heading > p,
.page-company .values-section .section-heading > p {
  font-size: clamp(12.5px, calc(1.08vw + 1px), 16px);
}

.page-home .service-copy > p {
  font-size: clamp(14px, calc(1vw + 1px), 15px);
}

.page-home .service-copy li {
  font-size: 11px;
}

.page-home .mission-bottom > p {
  font-size: 16px;
}

.page-home .careers-section .section-heading > .careers-message {
  font-size: clamp(13px, calc(2.05vw + 1px), 26px);
}

.page-home .benefit-list article p {
  font-size: 13px;
}

.page-home .openings-card article > p {
  font-size: 12px;
}

.page-home .contact-copy > p,
.page-company .contact-copy > p {
  font-size: 15px;
}

.page-home .contact-copy small,
.page-company .contact-copy small {
  font-size: 10px;
}

.page-company .value-card p {
  font-size: 13px;
}

.page-company .vision-points p,
.page-company .timeline p {
  font-size: 14px;
}

.page-company .ceo-copy > p,
.page-company .company-table dd {
  font-size: 15px;
}

.page-company .history-section .section-heading > p {
  font-size: 16px;
}

.page-company .office-card address {
  font-size: 13px;
}

.page-company .office-card p {
  font-size: 11px;
}

.page-company .contact-hero-copy > p:last-child,
.page-contact .contact-hero-copy > p:last-child {
  font-size: 17px;
}

.page-company .contact-response-note,
.page-contact .contact-response-note {
  font-size: clamp(10px, calc(2.85vw + 1px), 12px);
}

html[lang="en"] .page-company .contact-response-note,
html[lang="en"] .page-contact .contact-response-note {
  font-size: clamp(8.5px, calc(2.45vw + 1px), 11.5px);
}

.page-contact .contact-steps li p {
  font-size: 13px;
}

.page-contact .contact-form-heading > p:not(.section-index),
.page-contact .contact-review dd {
  font-size: 15px;
}

.page-contact .demo-notice {
  font-size: 12px;
}

.page-contact .contact-complete > p:not(.section-index) {
  font-size: 17px;
}

@media (max-width: 900px) {
  .page-home .services-section .section-heading > p,
  .page-company .values-section .section-heading > p {
    font-size: 15px;
  }

  .page-home .careers-section .section-heading > .careers-message {
    font-size: clamp(13px, calc(2.5vw + 1px), 24px);
  }
}

@media (max-width: 820px) {
  .site-header-dark.is-open {
    background: rgba(250, 252, 252, 0.98);
  }

  .site-header-dark.is-open .brand-name,
  .site-header-dark.is-open .menu-button,
  .site-header-dark.is-open .header-panel,
  .site-header-dark.is-open .global-nav {
    color: var(--ink);
  }

  .site-header-dark.is-open .header-panel {
    background: rgba(247, 250, 250, 0.98);
  }

  .site-header-dark.is-open .language-switcher {
    color: #82919a;
    border-color: var(--line);
  }

  .site-header-dark.is-open .language-switcher a {
    color: var(--muted);
  }

  .site-header-dark.is-open .language-switcher a[aria-current="true"] {
    color: var(--ink);
  }

  .site-header-dark.is-open .language-switcher span {
    background: var(--line);
  }
}

@media (max-width: 560px) {
  .page-home .careers-section .section-heading > .careers-message {
    font-size: clamp(12px, calc(3.1vw + 1px), 19px);
  }
}

/* English layout refinements */

html[lang="en"] .page-company .ceo-title {
  container-type: inline-size;
}

html[lang="en"] .page-company .ceo-section-title {
  max-width: 100%;
  font-size: clamp(22px, 8cqi, 58px);
  white-space: nowrap;
}

.page-company .company-table dt {
  font-size: 11px;
}

html[lang="en"] .page-contact .contact-form-heading h2 {
  max-width: 100%;
  font-size: clamp(20px, 6.4cqi, 48px);
  white-space: nowrap;
}

@media (min-width: 821px), (max-width: 560px) {
  .page-contact .contact-steps ol::before {
    display: none;
  }

  .page-contact .contact-steps li:not(:last-child)::after {
    position: absolute;
    top: 22px;
    bottom: -18px;
    left: 21px;
    z-index: -1;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--aqua), var(--violet) 62%, var(--peach));
    content: "";
    box-shadow: 0 0 18px rgba(120, 110, 242, 0.14);
  }
}

/* Company page: targeted mobile text refinements */

@media (max-width: 900px) {
  .page-company .values-section .section-heading > p {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    text-wrap: wrap;
  }
}

@media (max-width: 560px) {
  html[lang="ja"] .page-company .company-contact-hero .contact-hero-copy {
    width: 100%;
    max-width: none;
  }

  html[lang="ja"] .page-company .company-contact-hero .contact-hero-copy > p:last-child {
    width: 100%;
    max-width: none;
    font-size: clamp(12px, 4.2cqi, 17px);
    line-height: 1.7;
    white-space: nowrap;
  }

  html[lang="ja"] .page-company .ceo-copy > p[data-i18n="company.message.body1"] {
    overflow-wrap: break-word;
    word-break: normal;
  }
}

/* LP hero: align the secondary mobile action with the primary button */

@media (max-width: 560px) {
  .page-home .hero-actions .text-link {
    align-self: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 14px 18px 14px 22px;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    transition:
      color 0.25s ease,
      background 0.25s ease,
      transform 0.25s ease;
  }

  .page-home .hero-actions .text-link::after {
    display: block;
  }

  .page-home .hero-actions .text-link i {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
  }

  .page-home .hero-actions .text-link:hover,
  .page-home .hero-actions .text-link:focus-visible {
    transform: none;
  }

  .page-home .hero-actions .text-link:hover .arrow-right,
  .page-home .hero-actions .text-link:focus-visible .arrow-right {
    transform: translateX(4px) !important;
  }
}

/* Mobile copy width and natural wrapping refinements */

@media (max-width: 560px) {
  .page-home .hero-copy,
  .page-home .proof-intro,
  .page-home .services-section .section-heading > p,
  .page-home .service-copy,
  .page-home .contact-copy,
  .page-contact .contact-hero-copy {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-inline: 0;
    justify-self: stretch;
  }

  .page-home .hero-lead,
  .page-home .proof-intro > p:last-child,
  .page-home .services-section .section-heading > p,
  .page-home .service-copy > p,
  .page-home .contact-copy > p,
  .page-contact .contact-hero-copy > p:last-child {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
    white-space: normal;
  }

  .page-home .service-row {
    padding-right: clamp(16px, 4vw, 21px);
    padding-left: clamp(16px, 4vw, 21px);
  }

  html[lang="ja"] .page-company .vision-points article:first-child h3 {
    width: 100%;
    max-width: none;
    padding-right: 0;
  }

  .page-company .company-table {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: clamp(5px, 1.8vw, 8px);
  }

  .page-company .company-table > div {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
  }

  .page-company .company-table dt,
  .page-company .company-table dd {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  html[lang="ja"] .page-contact .demo-notice {
    gap: 7px;
    padding-right: 10px;
    padding-left: 10px;
  }

  html[lang="ja"] .page-contact .demo-notice span {
    min-width: 0;
    font-size: clamp(8.5px, 2.55vw, 11px);
    letter-spacing: -0.035em;
    line-height: 1.4;
    white-space: nowrap;
  }
}

/* Policy page: fluid hero title and natural body wrapping */

.page-policy .policy-hero-inner {
  container-type: inline-size;
}

.page-policy .policy-hero h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(1.375rem, 7.8cqi, 5.25rem);
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: nowrap;
  white-space: nowrap;
}

.page-policy .policy-document :where(p:not(.policy-section-label), li) {
  line-break: auto;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: wrap;
  hyphens: manual;
}

/* Final body-copy flow: use the available width and break only at natural units */

:where(
  .page-home .hero-lead,
  .page-home .proof-intro > p:last-child,
  .page-home .proof-points article p,
  .page-home .services-section .section-heading > p,
  .page-home .service-copy > p,
  .page-home .mission-bottom > p,
  .page-home .benefit-list article p,
  .page-home .openings-card article > p,
  .page-home .contact-copy > p,
  .page-company .values-section .section-heading > p,
  .page-company .value-card p,
  .page-company .vision-points p,
  .page-company .ceo-copy > p,
  .page-company .company-table dd,
  .page-company .timeline p,
  .page-company .office-card address,
  .page-company .office-card p,
  .page-company .contact-copy > p,
  .page-company .contact-hero-copy > p:last-child,
  .page-contact .contact-hero-copy > p:last-child,
  .page-contact .contact-steps li p,
  .page-contact .contact-form-heading > p:not(.section-index),
  .page-contact .contact-review dd,
  .page-contact .contact-complete > p:not(.section-index),
  .page-policy .policy-document p:not(.policy-section-label),
  .page-policy .policy-document li
) {
  min-width: 0;
  line-break: auto;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: wrap;
  hyphens: none;
}

html[lang="ja"].has-ja-word-breaks :where(
  .page-home .hero-lead,
  .page-home .proof-intro > p:last-child,
  .page-home .proof-points article p,
  .page-home .services-section .section-heading > p,
  .page-home .service-copy > p,
  .page-home .mission-bottom > p,
  .page-home .benefit-list article p,
  .page-home .openings-card article > p,
  .page-home .contact-copy > p,
  .page-company .values-section .section-heading > p,
  .page-company .value-card p,
  .page-company .vision-points p,
  .page-company .ceo-copy > p,
  .page-company .company-table dd,
  .page-company .timeline p,
  .page-company .office-card address,
  .page-company .office-card p,
  .page-company .contact-copy > p,
  .page-company .contact-hero-copy > p:last-child,
  .page-contact .contact-hero-copy > p:last-child,
  .page-contact .contact-steps li p,
  .page-contact .contact-form-heading > p:not(.section-index),
  .page-contact .contact-review dd,
  .page-contact .contact-complete > p:not(.section-index),
  .page-policy .policy-document p:not(.policy-section-label),
  .page-policy .policy-document li
) {
  word-break: keep-all;
}

.page-policy .policy-document {
  container-type: inline-size;
}

.page-policy #social-media-policy .policy-document-title,
.page-policy #social-media-policy-en .policy-document-title {
  width: 100%;
  max-width: none;
  font-size: clamp(1.15rem, 6.6cqi, 3.6rem);
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: nowrap;
  white-space: nowrap;
}

@media (max-width: 560px) {
  :where(
    .page-home .hero-lead,
    .page-home .proof-intro > p:last-child,
    .page-home .proof-points article p,
    .page-home .services-section .section-heading > p,
    .page-home .service-copy > p,
    .page-home .mission-bottom > p,
    .page-home .benefit-list article p,
    .page-home .openings-card article > p,
    .page-home .contact-copy > p,
    .page-company .values-section .section-heading > p,
    .page-company .value-card p,
    .page-company .vision-points p,
    .page-company .ceo-copy > p,
    .page-company .company-table dd,
    .page-company .timeline p,
    .page-company .office-card address,
    .page-company .office-card p,
    .page-company .contact-copy > p,
    .page-company .contact-hero-copy > p:last-child,
    .page-contact .contact-hero-copy > p:last-child,
    .page-contact .contact-steps li p,
    .page-contact .contact-form-heading > p:not(.section-index),
    .page-contact .contact-review dd,
    .page-contact .contact-complete > p:not(.section-index),
    .page-policy .policy-document p:not(.policy-section-label),
    .page-policy .policy-document li
  ) {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .page-home .service-copy {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
  }

  .page-home .benefit-list article > div,
  .page-company .value-card {
    min-width: 0;
  }

  .page-policy .policy-document {
    width: min(calc(100% - 30px), 920px);
  }
}

/* Targeted follow-up wrapping refinements */

html[lang="ja"] .page-company .vision-points article:first-child h3 {
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: wrap;
}

html[lang="ja"].has-ja-word-breaks
  .page-policy
  .policy-document
  :where(p:not(.policy-section-label), li) {
  line-break: auto;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: wrap;
}

/* Company vision and history refinements */

.page-contact .contact-hero-copy > p:last-child {
  max-width: none;
}

.timeline-current > div > span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 560px) {
  .timeline-current > div > span {
    font-size: 17px;
  }

  html[lang="ja"] .page-company .vision-mobile-line,
  html[lang="ja"] .page-company .history-horizon-mobile-line {
    display: block;
    white-space: nowrap;
  }

  html[lang="ja"] .page-contact .contact-hero-lead-mobile-line {
    display: block;
    white-space: nowrap;
  }
}
