:root {
  --pearl: #f7f6f1;
  --paper: #fffefa;
  --paper-warm: #fbf4ea;
  --paper-cool: #f1f4f7;
  --ink: #111824;
  --ink-blue: #111b35;
  --ink-soft: #526071;
  --line: rgba(17, 24, 36, 0.13);
  --line-strong: rgba(17, 24, 36, 0.22);
  --blue: #214ee9;
  --blue-deep: #1739b5;
  --cyan: #23d6e6;
  --coral: #f47f6b;
  --apricot: #f5a36c;
  --white: #ffffff;
  --radius-lg: 42px;
  --radius-md: 26px;
  --shadow: 0 26px 80px rgba(26, 45, 106, 0.13);
  --shadow-soft: 0 18px 48px rgba(25, 39, 58, 0.08);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
.button,
.nav-links,
.eyebrow,
.section-kicker {
  font-family: var(--font);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(33, 78, 233, 0.42);
  outline-offset: 4px;
}

.container {
  width: min(1360px, calc(100% - 72px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 500;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 246, 241, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header[data-scrolled] {
  border-bottom-color: var(--line);
  background: rgba(255, 254, 250, 0.95);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.75vw, 29px);
}

.nav-links a {
  position: relative;
  color: #424b5a;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-links a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

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

.nav-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink) !important;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(33, 78, 233, 0.35);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin-block: 5px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 70px;
  background:
    radial-gradient(circle at 88% 8%, rgba(35, 214, 230, 0.12), transparent 24rem),
    radial-gradient(circle at 4% 58%, rgba(244, 127, 107, 0.08), transparent 26rem),
    var(--pearl);
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(46px, 6vw, 96px);
}

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

.eyebrow,
.section-kicker {
  margin-bottom: 22px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.eyebrow::before {
  width: 31px;
  height: 12px;
  border: 2px solid var(--blue);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 18px 0 0;
  content: "";
  transform: translateY(4px);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.75rem, 5.35vw, 5.45rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.064em;
}

.hero h1 span {
  position: relative;
  display: inline;
  color: var(--blue);
}

.hero h1 span::after {
  position: absolute;
  right: -0.03em;
  bottom: -0.11em;
  left: 0.05em;
  height: 0.12em;
  border-radius: 100%;
  background: var(--coral);
  content: "";
  opacity: 0.82;
  transform: rotate(-1.4deg);
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #586176;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.7;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 31px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 740;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(33, 78, 233, 0.23);
}

.button-primary::after {
  content: "\2192";
  font-size: 1.1rem;
  transition: transform 0.25s var(--ease);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-3px);
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  transform: translateX(4px);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(33, 78, 233, 0.25);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 27, 53, 0.08);
}

.hero-slogan {
  display: inline-flex;
  margin: 25px 0 0;
  padding: 11px 16px;
  border: 1px solid rgba(33, 78, 233, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-blue);
  font-size: 0.9rem;
  font-weight: 740;
  line-height: 1.45;
  letter-spacing: 0.005em;
}

.hero-visual {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
}

.room-halo {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 214, 230, 0.25), rgba(35, 214, 230, 0.04) 48%, transparent 69%);
  filter: blur(8px);
  animation: halo-breathe 5s ease-in-out infinite;
}

.room-window {
  position: relative;
  isolation: isolate;
  width: min(82%, 560px);
  aspect-ratio: 360 / 449;
  overflow: hidden;
  margin: 0;
  border: 9px solid rgba(255, 255, 255, 0.9);
  border-radius: 46% 46% 32px 32px;
  background: #0a1932;
  box-shadow: var(--shadow), 0 0 0 1px rgba(17, 27, 53, 0.08);
  transform: rotate(0.35deg);
}

.room-window::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(110deg, rgba(255, 183, 119, 0.1), transparent 38%),
    linear-gradient(180deg, transparent 62%, rgba(9, 16, 32, 0.27));
  content: "";
  pointer-events: none;
}

.room-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
  transition: transform 1.2s var(--ease), filter 0.7s ease;
}

.room-window:hover img {
  filter: none;
  transform: scale(1.015);
}

.room-window figcaption {
  position: absolute;
  top: 22px;
  left: 23px;
  z-index: 5;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(9, 17, 36, 0.66);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.room-window figcaption::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  box-shadow: 0 0 0 4px rgba(244, 127, 107, 0.2);
}

.hero-signals {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  background: rgba(10, 23, 40, 0.68);
  color: var(--white);
  list-style: none;
  backdrop-filter: blur(18px);
}

.hero-signals li {
  min-width: 0;
  padding: 13px 10px;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.hero-signals li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.gaze-orbit {
  position: absolute;
  top: 42px;
  right: -14px;
  z-index: 7;
  width: 76px;
  height: 116px;
  border: 1px solid rgba(33, 78, 233, 0.3);
  border-left-color: transparent;
  border-radius: 0 100% 100% 0;
  transform: rotate(-14deg);
}

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

.gaze-orbit::before {
  top: -4px;
  left: 26px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(33, 78, 233, 0.1);
  animation: orbit-dot 4.8s var(--ease) infinite;
}

.gaze-orbit::after {
  right: -4px;
  bottom: 27px;
  width: 8px;
  height: 8px;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(244, 127, 107, 0.1);
}

.visual-shelf {
  position: absolute;
  right: -1%;
  bottom: 3px;
  left: 4%;
  z-index: 0;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(244, 127, 107, 0.34), rgba(245, 200, 150, 0.6), rgba(35, 214, 230, 0.24));
  filter: blur(11px);
  opacity: 0.7;
}

.section-light,
.section-warm,
.section-company,
.section-blue,
.section-ink,
.contact {
  position: relative;
}

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

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

.beyond {
  padding: clamp(110px, 12vw, 170px) 0;
  background: linear-gradient(180deg, var(--pearl) 0, var(--paper) 150px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.46fr) minmax(0, 1.54fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.split-heading h2,
.section-heading h2,
.connection h2,
.growth h2,
.touch h2,
.privacy h2,
.company h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.055em;
}

.split-heading > div > p,
.section-heading > p:last-child,
.connection-copy > p,
.growth-copy > p,
.touch-copy > p,
.privacy-copy > p,
.company-intro > p {
  color: var(--ink-soft);
  line-height: 1.78;
}

.split-heading > div > p:first-of-type {
  margin-top: 29px;
}

.split-heading > div > p:last-child {
  margin-bottom: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(58px, 7vw, 88px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.capability-grid article {
  min-height: 305px;
  padding: 31px 28px 34px;
}

.capability-grid article + article {
  border-left: 1px solid var(--line);
}

.capability-grid span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-grid h3 {
  margin: 72px 0 15px;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 720;
  letter-spacing: -0.025em;
}

.capability-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.72;
}

.bobo-support {
  margin: 34px 0 0;
  color: var(--ink-blue);
  font-size: clamp(1.1rem, 1.8vw, 1.36rem);
  font-weight: 720;
  text-align: right;
}

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

.approach-grid article {
  min-height: 320px;
}

.approach-grid h3 {
  max-width: 250px;
}

.everyday,
.connection,
.growth,
.touch,
.privacy,
.company {
  padding: clamp(95px, 10vw, 145px) 0;
}

.everyday {
  background: linear-gradient(180deg, var(--paper) 0, var(--paper-warm) 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.46fr) minmax(0, 1.54fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}

.section-heading .section-kicker {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.section-heading h2,
.section-heading > p:last-child {
  grid-column: 2;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
}

.day-rhythm {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.day-rhythm span {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #3d4959;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.day-rhythm span + span {
  border-left: 1px solid var(--line);
}

.day-rhythm span::before {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  box-shadow: 0 0 0 5px rgba(33, 78, 233, 0.09);
}

.day-rhythm span:nth-child(2)::before,
.day-rhythm span:nth-child(5)::before {
  background: var(--coral);
}

.day-rhythm span:nth-child(3)::before {
  background: var(--cyan);
}

.supporting-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 50px;
  align-items: center;
  margin-top: 38px;
}

.supporting-statement p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
}

.supporting-statement strong,
.supporting-line {
  color: var(--ink-blue);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.35;
}

.connection {
  background: linear-gradient(180deg, var(--paper-warm) 0, var(--paper) 150px);
}

.connection-grid,
.growth-grid,
.touch-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.connection-copy .section-kicker,
.growth-copy .section-kicker,
.touch-copy .section-kicker,
.privacy-copy .section-kicker,
.company-intro .section-kicker {
  margin-bottom: 20px;
}

.connection-copy > p:first-of-type,
.growth-copy > p:first-of-type,
.touch-copy > p:first-of-type,
.privacy-copy > p:first-of-type,
.company-intro > p:first-of-type {
  margin-top: 28px;
}

.supporting-line {
  display: block;
  margin-top: 27px;
}

.care-flow {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(247, 246, 241, 0.8);
  box-shadow: var(--shadow-soft);
}

.care-source,
.care-bobo {
  padding: 21px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.care-source span,
.care-bobo span {
  display: block;
  color: #748091;
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.care-source strong,
.care-bobo strong {
  display: block;
  margin-top: 7px;
  color: var(--ink-blue);
  font-size: 0.94rem;
}

.care-path {
  position: relative;
  height: 70px;
}

.care-path::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 46px;
  background: linear-gradient(180deg, var(--coral), var(--blue), var(--cyan));
  content: "";
  transform: translate(-50%, -50%);
}

.care-path i {
  position: absolute;
  top: 7px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border: 3px solid var(--pearl);
  border-radius: 50%;
  background: var(--coral);
  animation: care-travel 3.8s var(--ease) infinite;
}

.care-flow > p {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.65;
}

.care-flow > p strong {
  color: var(--ink);
}

.section-blue {
  padding: clamp(180px, 15vw, 220px) 0 clamp(100px, 10vw, 150px);
  background: linear-gradient(180deg, var(--paper) 0, var(--blue) 135px, var(--blue-deep) 100%);
  color: var(--white);
}

.inverse .section-kicker {
  color: #a9c7ff;
}

.inverse h2 {
  color: var(--white);
}

.inverse > p:last-child {
  color: #d4e0ff;
}

.activity-orbit {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin: 10px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 28px;
  list-style: none;
}

.activity-orbit li {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #edf3ff;
  font-size: 0.84rem;
  font-weight: 720;
  text-align: center;
}

.activity-orbit li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-note {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 25px 70px;
  align-items: start;
  margin-top: 35px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(8, 25, 92, 0.34);
}

.experience-note > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 780;
  text-transform: uppercase;
}

.experience-note > div i {
  flex: 1 1 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.experience-note p {
  margin: 0;
  color: #d5e1ff;
  line-height: 1.75;
}

.experience-note small {
  grid-column: 2;
  color: #aebfe8;
  font-size: 0.72rem;
}

.growth {
  padding-top: clamp(185px, 15vw, 225px);
  background: linear-gradient(180deg, var(--blue-deep) 0, var(--paper) 145px);
}

.growth-grid {
  align-items: start;
}

.memory-path {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.memory-path::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, var(--coral), var(--blue), var(--cyan));
  content: "";
}

.memory-path li {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 22px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.memory-path span {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 800;
}

.memory-path strong {
  font-size: 1rem;
}

.touch {
  background: linear-gradient(180deg, var(--paper) 0, var(--paper-warm) 150px);
}

.touch-grid {
  grid-template-columns: minmax(400px, 0.8fr) minmax(0, 1fr);
}

.touch-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.touch-visual::before,
.touch-visual::after,
.touch-visual i {
  position: absolute;
  border: 1px solid rgba(33, 78, 233, 0.2);
  border-radius: 50%;
  content: "";
}

.touch-visual::before {
  width: 410px;
  height: 410px;
}

.touch-visual::after {
  width: 310px;
  height: 310px;
  border-color: rgba(244, 127, 107, 0.28);
}

.touch-visual i:first-of-type {
  width: 215px;
  height: 215px;
  border-color: rgba(35, 214, 230, 0.42);
}

.touch-visual i:nth-of-type(2) {
  top: 14%;
  right: 16%;
  width: 18px;
  height: 18px;
  border: 0;
  background: var(--coral);
  box-shadow: 0 0 0 10px rgba(244, 127, 107, 0.1);
  animation: touch-orbit 6s var(--ease) infinite;
}

.touch-visual i:nth-of-type(3) {
  bottom: 18%;
  left: 16%;
  width: 14px;
  height: 14px;
  border: 0;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(35, 214, 230, 0.12);
}

.touch-core {
  position: relative;
  z-index: 3;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  border-radius: 44% 44% 38% 38%;
  background: var(--ink-blue);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(17, 27, 53, 0.2);
  font-size: 1.2rem;
  font-weight: 760;
}

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

.expression-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: #3c4858;
  font-size: 0.84rem;
  font-weight: 700;
}

.expression-list li:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.section-ink {
  padding: clamp(110px, 11vw, 155px) 0 clamp(105px, 10vw, 145px);
  background:
    radial-gradient(circle at 88% 24%, rgba(35, 214, 230, 0.18), transparent 28rem),
    radial-gradient(circle at 6% 72%, rgba(244, 127, 107, 0.09), transparent 24rem),
    linear-gradient(180deg, var(--paper) 0, #edf3ff 42%, var(--paper-cool) 100%);
  color: var(--ink);
}

.section-ink .section-kicker {
  color: var(--blue-deep);
}

.section-ink .inverse h2 {
  color: var(--ink);
}

.section-ink .inverse > p:last-child {
  color: var(--ink-soft);
}

.character-system {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid rgba(33, 78, 233, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.character-system span,
.character-system strong {
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 16px;
  font-size: 0.72rem;
  text-align: center;
}

.character-system span {
  color: #526071;
  font-size: 0.78rem;
  font-weight: 720;
}

.character-system strong {
  min-height: 155px;
  border-right: 1px solid rgba(33, 78, 233, 0.16);
  border-left: 1px solid rgba(33, 78, 233, 0.16);
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  color: var(--white);
  font-size: 1.05rem;
}

.system-statement {
  max-width: 900px;
  margin: 45px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.9vw, 1.42rem);
  line-height: 1.65;
  text-align: center;
}

.privacy {
  padding-top: clamp(185px, 15vw, 225px);
  background: linear-gradient(180deg, var(--ink) 0, var(--paper) 145px);
}

.privacy-grid {
  align-items: start;
}

.privacy-copy small {
  display: block;
  margin-top: 27px;
  color: #748091;
  font-size: 0.76rem;
  line-height: 1.65;
}

.privacy-controls {
  border-top: 1px solid var(--line-strong);
}

.privacy-controls > div {
  position: relative;
  padding: 24px 62px 24px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-controls span {
  display: block;
  color: #748091;
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-controls strong {
  display: block;
  margin-top: 7px;
  font-size: 1.1rem;
}

.privacy-controls i {
  position: absolute;
  top: 50%;
  right: 0;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink-blue);
  transform: translateY(-50%);
}

.privacy-controls i::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.privacy-controls > p {
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.section-company {
  padding: clamp(95px, 10vw, 145px) 0;
  background:
    radial-gradient(circle at 90% 18%, rgba(33, 78, 233, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--paper) 0, var(--paper-cool) 170px);
}

.company-overview {
  background:
    radial-gradient(circle at 88% 14%, rgba(35, 214, 230, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--pearl) 0, var(--paper) 145px, var(--paper) 100%);
}

.company-focused {
  padding-top: clamp(105px, 10vw, 145px);
  background:
    radial-gradient(circle at 90% 25%, rgba(33, 78, 233, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--paper-cool) 0, #f7f8f8 36%, var(--paper) 100%);
}

.company-intro {
  max-width: 950px;
}

.company-intro > p:not(.section-kicker) {
  max-width: 760px;
}

.company-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 65px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.company-stories article {
  min-height: 280px;
  padding: 35px 50px 38px 0;
}

.company-stories article + article {
  padding-right: 0;
  padding-left: 50px;
  border-left: 1px solid var(--line);
}

.company-stories span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.company-stories h3 {
  margin: 38px 0 14px;
  font-size: 1.45rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.company-stories p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.team-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
  align-items: start;
  gap: 18px clamp(36px, 6vw, 90px);
  margin-top: clamp(76px, 8vw, 110px);
  padding-top: 38px;
  border-top: 1px solid var(--line-strong);
}

.team-intro .section-kicker {
  grid-row: auto;
  margin: 0;
}

.team-intro > p:last-child {
  grid-column: 2;
}

.team-intro > p:last-child {
  max-width: 710px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

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

.team-grid article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 40px rgba(25, 39, 58, 0.05);
}

.team-grid h3 {
  margin: 0 0 5px;
  font-size: 1.65rem;
  font-weight: 740;
  letter-spacing: -0.025em;
}

.team-grid p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.team-grid .team-role {
  margin-bottom: 25px;
  color: var(--ink);
  font-weight: 720;
}

.team-grid .team-credential {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #3d4a5d;
  font-weight: 650;
}

.team-grid article > p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.team-support {
  max-width: 880px;
  margin: 30px 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: right;
}

.prototype {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(105px, 11vw, 155px) 0 clamp(132px, 13vw, 190px);
  background: linear-gradient(180deg, var(--paper-cool) 0, var(--paper) 190px, var(--paper) 100%);
}

.prototype-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.68fr);
  align-items: end;
  gap: clamp(60px, 9vw, 140px);
  margin-bottom: clamp(58px, 7vw, 92px);
}

.prototype h2 {
  max-width: 750px;
  margin-bottom: 0;
  font-size: clamp(4.2rem, 7.4vw, 7.35rem);
  font-weight: 740;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.prototype h2 span {
  color: var(--blue);
}

.prototype-copy {
  max-width: 640px;
  padding-bottom: 3px;
}

.prototype-copy p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  line-height: 1.76;
}

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

.prototype-copy .prototype-lead {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.65vw, 1.5rem);
  font-weight: 690;
  line-height: 1.45;
  letter-spacing: -0.022em;
}

.prototype-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.88fr);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 36, 0.1);
  border-radius: clamp(30px, 3.2vw, 46px);
  background: #e8e9e6;
  box-shadow: 0 34px 90px rgba(17, 27, 53, 0.18);
}

.prototype-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 360 / 449;
  overflow: hidden;
  margin: 0;
  background: #e8e9e6;
}

.prototype-visual::after {
  content: none;
}

.prototype-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease);
}

.prototype-stage:hover .prototype-visual img {
  transform: scale(1.025);
}

.prototype-visual figcaption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prototype-system {
  display: flex;
  flex-direction: column;
  padding: 30px clamp(27px, 3vw, 42px) 34px;
  background: var(--paper);
}

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

.prototype-capabilities li {
  position: relative;
  min-height: 91px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.prototype-capabilities li:hover {
  background: rgba(33, 78, 233, 0.045);
}

.prototype-capabilities li > span {
  position: relative;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.prototype-capabilities li > span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  box-shadow: 0 0 0 5px rgba(33, 78, 233, 0.08);
  transform: translateY(-50%);
}

.prototype-capabilities div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.prototype-capabilities strong {
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.prototype-statement {
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--ink-blue);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
  font-weight: 720;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.prototype-foot {
  padding: 30px 6px 0;
}

.prototype-foot > small {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.65;
}

.contact {
  position: relative;
  z-index: 2;
  margin-top: clamp(-64px, -4.2vw, -48px);
  padding: clamp(102px, 9vw, 132px) 0 clamp(92px, 8vw, 118px);
  overflow: visible;
  border-radius: clamp(38px, 4.5vw, 68px) clamp(38px, 4.5vw, 68px) 0 0;
  background: #10245f;
  color: var(--white);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.76fr);
  align-items: start;
  gap: clamp(64px, 9vw, 145px);
}

.contact .section-kicker {
  color: #8ee9f0;
}

.contact h2 {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3.5rem, 5.8vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.062em;
}

.contact h2 span {
  color: #8eb8ff;
}

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

.contact-copy > p:first-child {
  max-width: 520px;
  margin-bottom: 28px;
  color: #c4d2ee;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-primary {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 24px 22px 27px;
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(4, 12, 34, 0.2);
  text-decoration: none;
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease, background 0.28s ease;
}

.contact-primary:hover,
.contact-primary:focus-visible {
  transform: translateY(-4px);
  background: #f8fbff;
  box-shadow: 0 24px 58px rgba(4, 12, 34, 0.3);
}

.contact-primary > span:first-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-primary small {
  color: #6b7789;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.contact-primary strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  letter-spacing: -0.02em;
}

.contact-arrow {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.25rem;
  transition: transform 0.28s var(--ease);
}

.contact-primary:hover .contact-arrow,
.contact-primary:focus-visible .contact-arrow {
  transform: translate(2px, -2px);
}

.contact-copy.is-visible .contact-primary {
  animation: contact-receive 0.62s var(--ease) 0.62s;
}

.contact a:focus-visible {
  outline-color: var(--white);
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c1b49;
  color: #b8c9f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr auto;
  align-items: start;
  gap: 42px;
  font-size: 0.75rem;
}

.footer-grid strong {
  color: var(--white);
  font-size: 0.88rem;
}

.footer-grid p {
  margin: 5px 0 0;
}

.footer-grid.footer-compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.footer-grid.footer-compact > p:last-child {
  grid-column: auto;
  margin: 0;
  text-align: right;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

.prototype-intro > :last-child,
.prototype-system,
.contact-copy {
  transition-delay: 0.1s;
}

.prototype-system.is-visible .prototype-capabilities li {
  animation: capability-arrive 0.52s var(--ease) both;
  animation-delay: 0.22s;
}

.prototype-system.is-visible .prototype-capabilities li:nth-child(2) {
  animation-delay: 0.305s;
}

.prototype-system.is-visible .prototype-capabilities li:nth-child(3) {
  animation-delay: 0.39s;
}

.prototype-system.is-visible .prototype-capabilities li:nth-child(4) {
  animation-delay: 0.475s;
}

@keyframes capability-arrive {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes contact-receive {
  0%, 100% {
    box-shadow: 0 18px 48px rgba(4, 12, 34, 0.2);
  }
  48% {
    box-shadow: 0 20px 60px rgba(35, 214, 230, 0.35);
  }
}

@keyframes halo-breathe {
  0%, 100% {
    opacity: 0.75;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes orbit-dot {
  0%, 100% {
    transform: translate(0, 0);
  }
  45% {
    transform: translate(29px, 17px);
  }
  65% {
    transform: translate(36px, 50px);
  }
}

@keyframes care-travel {
  0% {
    top: 7px;
    background: var(--coral);
  }
  50% {
    background: var(--blue);
  }
  100% {
    top: 49px;
    background: var(--cyan);
  }
}

@keyframes touch-orbit {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-35px, 42px);
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 48px, 1040px);
  }

  .hero-grid {
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.8vw, 4.5rem);
  }

  .hero-visual {
    min-height: 530px;
  }

  .nav-links {
    gap: 16px;
  }

  .company-stories article {
    padding-right: 34px;
  }

  .company-stories article + article {
    padding-left: 34px;
  }

}

@media (max-width: 980px) {
  .hero {
    padding-top: 28px;
  }

  .hero-grid,
  .connection-grid,
  .growth-grid,
  .touch-grid,
  .privacy-grid,
  .prototype-intro,
  .prototype-stage,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .prototype-intro {
    align-items: start;
    gap: 30px;
    margin-bottom: 54px;
  }

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

  .prototype-stage {
    min-height: 0;
  }

  .prototype-visual {
    width: min(100%, 620px);
    min-height: 0;
    aspect-ratio: 360 / 449;
    margin-inline: auto;
  }

  .prototype-system {
    min-height: 560px;
  }

  .contact-grid {
    gap: 54px;
  }

  .contact-copy {
    width: min(100%, 660px);
    padding-top: 0;
  }

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

  .hero-visual {
    width: min(100%, 760px);
    min-height: 610px;
    margin-inline: auto;
  }

  .split-heading,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .approach-grid article:last-child {
    grid-column: 1 / -1;
  }

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

  .team-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .capability-grid article:nth-child(3) {
    border-left: 0;
  }

  .capability-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading .section-kicker,
  .section-heading h2,
  .section-heading > p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

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

  .day-rhythm span:nth-child(4) {
    border-left: 0;
  }

  .day-rhythm span:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .care-flow,
  .memory-path,
  .privacy-controls {
    max-width: 720px;
  }

  .touch-visual {
    order: 2;
  }

  .touch-copy {
    order: 1;
  }

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

  .activity-orbit li:nth-child(4) {
    border-left: 0;
  }

  .activity-orbit li:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .character-system strong {
    grid-column: span 1;
    border-right: 1px solid rgba(33, 78, 233, 0.16);
    border-left: 0;
  }

  .character-system > :nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .footer-grid > p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    right: 18px;
    left: 18px;
    display: none;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 254, 250, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-contact {
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 680px);
  }

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

  .hero-visual {
    min-height: auto;
    padding-block: 20px 36px;
  }

  .room-window {
    width: min(100%, 520px);
    aspect-ratio: 360 / 449;
    border-width: 6px;
    border-radius: 42% 42% 25px 25px;
  }

  .room-window img {
    object-position: center;
  }

  .gaze-orbit {
    right: 2px;
  }

  .hero-signals {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .prototype-visual {
    aspect-ratio: 360 / 449;
  }

  .supporting-statement,
  .experience-note {
    grid-template-columns: 1fr;
  }

  .experience-note small {
    grid-column: 1;
  }

  .activity-orbit,
  .day-rhythm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .day-rhythm span:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .activity-orbit li:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .day-rhythm span:nth-child(odd),
  .activity-orbit li:nth-child(odd) {
    border-left: 0;
  }

  .day-rhythm span:nth-child(n + 3),
  .activity-orbit li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .activity-orbit li:nth-child(n + 3) {
    border-top-color: rgba(255, 255, 255, 0.18);
  }

  .touch-visual {
    min-height: 430px;
  }

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

  .character-system > * {
    border-top: 1px solid var(--line);
  }

  .company-stories {
    grid-template-columns: 1fr;
  }

  .team-intro {
    grid-template-columns: 1fr;
  }

  .team-intro .section-kicker,
  .team-intro > p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

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

  .team-grid article,
  .team-grid article:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .team-support {
    margin-left: 0;
    text-align: left;
  }

  .company-stories article,
  .company-stories article + article {
    min-height: auto;
    padding: 32px 0;
  }

  .company-stories article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .footer-grid > p:last-child {
    grid-column: auto;
  }

  .footer-grid.footer-compact > p:last-child {
    text-align: left;
  }

}

@media (max-width: 560px) {
  .brand img {
    height: 24px;
  }

  .hero {
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13.5vw, 4rem);
  }

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

  .hero-signals li {
    padding: 10px 4px;
    font-size: 0.49rem;
  }

  .room-window figcaption {
    top: 14px;
    left: 14px;
  }

  .gaze-orbit {
    display: none;
  }

  .split-heading h2,
  .section-heading h2,
  .connection h2,
  .growth h2,
  .touch h2,
  .privacy h2,
  .company h2 {
    font-size: clamp(2.3rem, 11.5vw, 3.35rem);
  }

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

  .approach-grid article:last-child {
    grid-column: auto;
  }

  .capability-grid article,
  .capability-grid article + article {
    min-height: auto;
    padding: 28px 0 31px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .capability-grid article:first-child {
    border-top: 0;
  }

  .capability-grid h3 {
    margin-top: 38px;
  }

  .bobo-support {
    text-align: left;
  }

  .beyond,
  .everyday,
  .connection,
  .growth,
  .touch,
  .privacy,
  .company,
  .prototype {
    padding-block: 76px;
  }

  .prototype {
    padding: 76px 0 116px;
  }

  .prototype h2 {
    font-size: clamp(3.25rem, 15vw, 4.45rem);
  }

  .prototype-intro {
    gap: 26px;
    margin-bottom: 40px;
  }

  .prototype-copy .prototype-lead {
    font-size: 1.08rem;
  }

  .prototype-stage {
    border-radius: 25px;
  }

  .prototype-visual {
    aspect-ratio: 360 / 449;
  }

  .prototype-visual figcaption {
    right: 20px;
    bottom: 19px;
    left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .prototype-system {
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .prototype-capabilities li {
    min-height: auto;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }

  .prototype-capabilities div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .prototype-statement {
    margin-top: 25px;
    padding-top: 0;
  }

  .prototype-foot {
    padding-top: 24px;
  }

  .company-focused {
    padding-top: 76px;
  }

  .section-blue,
  .section-ink {
    padding: 105px 0 82px;
  }

  .contact {
    margin-top: -28px;
    padding: 74px 0 66px;
    border-radius: 30px 30px 0 0;
  }

  .contact-grid {
    gap: 38px;
  }

  .contact .section-kicker {
    margin-bottom: 17px;
  }

  .contact h2 {
    max-width: 520px;
    font-size: clamp(2.75rem, 12vw, 3.8rem);
    line-height: 0.97;
  }

  .contact-copy > p:first-child {
    margin-bottom: 23px;
    font-size: 0.94rem;
  }

  .contact-primary {
    min-height: 92px;
    width: 100%;
    padding: 18px;
    border-radius: 20px;
  }

  .contact-arrow {
    width: 44px;
    height: 44px;
  }

  .growth,
  .privacy {
    padding-top: 155px;
  }

  .experience-note > div {
    flex-wrap: wrap;
  }

  .touch-visual {
    min-height: 350px;
  }

  .touch-visual::before {
    width: 300px;
    height: 300px;
  }

  .touch-visual::after {
    width: 230px;
    height: 230px;
  }

  .touch-visual i:first-of-type {
    width: 165px;
    height: 165px;
  }

  .touch-core {
    width: 115px;
    height: 115px;
  }

}

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

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

  [data-reveal].is-reveal-ready,
  [data-reveal].is-reveal-ready.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .prototype-system.is-visible .prototype-capabilities li,
  .contact-copy.is-visible .contact-primary {
    animation: none;
  }

  .prototype-stage:hover .prototype-visual img,
  .contact-primary:hover,
  .contact-primary:focus-visible,
  .contact-primary:hover .contact-arrow,
  .contact-primary:focus-visible .contact-arrow {
    transform: none;
  }
}
