/* Clockubeat — standalone stylesheet, no imports or build step. */
*, *::before, *::after { box-sizing: border-box; }
h1, h2, h3, p, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; border: 0; cursor: pointer; }
img, svg { display: block; vertical-align: middle; }
img { max-width: 100%; }
[hidden] { display: none !important; }
summary { cursor: pointer; }
summary::-webkit-details-marker { display: none; }
:root {
  --ink: #13213b;
  --ink-soft: #526078;
  --blue: #1766f2;
  --blue-dark: #0f3f9c;
  --blue-soft: #e6efff;
  --mint: #8cdfc4;
  --mint-soft: #e5f8f1;
  --coral: #ff705d;
  --coral-soft: #ffe9e4;
  --ivory: #f7f7f2;
  --paper: #ffffff;
  --night: #101d35;
  --shadow-soft: 0 24px 70px rgb(19 33 59 / 9%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

html[lang='ja'] body {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN',
    sans-serif;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(23 102 242 / 28%);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 0.65rem;
  background: var(--night);
  color: white;
  padding: 0.75rem 1rem;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.section-shell,
.nav-shell {
  width: min(100% - 3rem, 1280px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(19 33 59 / 8%);
  background: rgb(247 247 242 / 90%);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}

.brand-word {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand-pulse {
  width: 2.75rem;
  color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.5rem);
  font-size: 0.94rem;
  font-weight: 580;
}

.desktop-nav a,
.text-link,
.site-footer nav a {
  position: relative;
  transition: color 160ms ease;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: '';
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.text-link:hover,
.site-footer nav a:hover {
  color: var(--blue);
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.text-link {
  font-size: 0.92rem;
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  background: var(--blue);
  color: white;
  padding: 0.75rem 1.25rem;
  font-size: 0.96rem;
  font-weight: 680;
  line-height: 1.2;
  box-shadow: 0 12px 28px rgb(23 102 242 / 20%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #0e5be1;
  box-shadow: 0 16px 34px rgb(23 102 242 / 28%);
}

.button-small {
  min-height: 42px;
  padding-inline: 1.15rem;
  font-size: 0.9rem;
}

.button-large {
  min-height: 56px;
  border-radius: 0.95rem;
  padding-inline: 1.55rem;
  font-size: 1rem;
}

.button svg {
  width: 1.08rem;
  height: 1.08rem;
}

.button-outline {
  border-color: var(--blue);
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}

.button-outline:hover {
  background: var(--blue-soft);
  box-shadow: none;
}

.language-trigger {
  min-width: 9.5rem;
  height: 42px;
  border-color: rgb(19 33 59 / 14%);
  border-radius: 0.8rem;
  background: rgb(255 255 255 / 70%);
  color: var(--ink);
  padding-inline: 0.75rem;
  font-weight: 620;
  box-shadow: none;
}

.language-trigger:hover {
  border-color: rgb(23 102 242 / 35%);
  background: white;
}

.language-select.compact {
  min-width: 5rem;
  width: auto;
}

.language-flag {
  display: block;
  width: 1.45rem;
  height: 1.05rem;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgb(19 33 59 / 14%);
  border-radius: 0.22rem;
  box-shadow: 0 1px 2px rgb(19 33 59 / 12%);
}

.language-content {
  border: 1px solid rgb(19 33 59 / 9%);
  border-radius: 0.85rem;
  padding: 0.35rem;
  box-shadow: 0 18px 50px rgb(19 33 59 / 14%);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  min-height: min(830px, calc(100vh - 82px));
  gap: 2rem;
  padding-block: clamp(5.5rem, 9vw, 8.5rem) clamp(4.5rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11.8ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 5.35vw, 5.8rem);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 560px;
  margin: 1.75rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.15rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  margin: 0 -7vw 0 -1rem;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 7% 5% 4% 2%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 56% 46%, rgb(140 223 196 / 24%), transparent 41%),
    radial-gradient(circle at 73% 58%, rgb(23 102 242 / 20%), transparent 47%),
    radial-gradient(circle at 42% 72%, rgb(255 112 93 / 16%), transparent 40%);
  content: '';
  filter: blur(15px);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(120%, 860px);
  height: auto;
  filter: drop-shadow(0 30px 40px rgb(19 33 59 / 14%));
  animation: hero-float 7s ease-in-out infinite;
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(23 102 242 / 16%);
  border-radius: 999px;
}

.orbit-one {
  width: 72%;
  aspect-ratio: 1;
  transform: rotate(-12deg) scaleY(0.48);
}

.orbit-two {
  width: 48%;
  aspect-ratio: 1;
  border-color: rgb(255 112 93 / 19%);
  transform: rotate(26deg) scaleY(0.48);
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.4deg);
  }
}

.audience-strip {
  border-block: 1px solid rgb(19 33 59 / 8%);
  background: rgb(255 255 255 / 72%);
}

.audience-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 104px;
}

.audience-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 680;
}

.audience-inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-inner li {
  border: 1px solid rgb(19 33 59 / 9%);
  border-radius: 999px;
  background: white;
  padding: 0.55rem 0.85rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
  box-shadow: 0 6px 20px rgb(19 33 59 / 4%);
}

.benefits,
.workflow,
.data-section {
  padding-block: clamp(6.5rem, 10vw, 9rem);
}

.section-heading {
  max-width: 750px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-intro {
  max-width: 650px;
  margin: 1.3rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.centered .section-intro {
  margin-inline: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 4rem;
}

.benefit-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgb(19 33 59 / 8%);
  border-radius: 1.6rem;
  background: white;
  padding: 2rem;
  box-shadow: 0 18px 52px rgb(19 33 59 / 6%);
}

.benefit-card::after {
  position: absolute;
  right: -5.5rem;
  bottom: -7rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: var(--blue-soft);
  content: '';
  opacity: 0.78;
}

.benefit-2::after {
  background: var(--mint-soft);
}

.benefit-3::after {
  background: var(--coral-soft);
}

.icon-disc {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  border-radius: 1.15rem;
  background: var(--blue-soft);
  color: var(--blue);
}

.benefit-2 .icon-disc {
  background: var(--mint-soft);
  color: #188267;
}

.benefit-3 .icon-disc {
  background: var(--coral-soft);
  color: #db4a38;
}

.icon-disc svg {
  width: 1.65rem;
  height: 1.65rem;
}

.card-index {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgb(19 33 59 / 30%);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.benefit-card h3 {
  max-width: 12ch;
  margin: 3.8rem 0 0.9rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.benefit-card p,
.feature-card p,
.workflow-step p,
.team-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.feature-section {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: white;
  padding-block: clamp(6.5rem, 10vw, 9rem);
}

.feature-section::before {
  position: absolute;
  top: -16rem;
  right: -12rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(23 102 242 / 34%), transparent 68%);
  content: '';
}

.feature-section .section-heading {
  position: relative;
  z-index: 1;
}

.feature-section .section-heading h2 {
  color: white;
}

.feature-section .section-intro {
  color: #acb8cc;
}

.feature-section .eyebrow {
  color: #72a6ff;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 1.5rem;
  background: rgb(255 255 255 / 10%);
  margin-top: 4rem;
}

.feature-card {
  min-height: 260px;
  background: rgb(255 255 255 / 5%);
  padding: 2rem;
  transition: background 180ms ease;
}

.feature-card:hover {
  background: rgb(255 255 255 / 9%);
}

.feature-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgb(114 166 255 / 25%);
  border-radius: 0.9rem;
  background: rgb(23 102 242 / 16%);
  color: #77a9ff;
}

.feature-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.feature-card h3 {
  margin: 2.4rem 0 0.7rem;
  font-size: 1.22rem;
  font-weight: 660;
  letter-spacing: -0.025em;
}

.feature-card p {
  color: #aeb9ca;
  font-size: 0.95rem;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 4.2rem;
}

.workflow-grid::before {
  position: absolute;
  top: 2.1rem;
  right: 15%;
  left: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral));
  content: '';
}

.workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border: 9px solid var(--ivory);
  border-radius: 50%;
  background: var(--blue);
  color: white;
  margin: 0 auto 1.7rem;
  font-size: 1.05rem;
  font-weight: 780;
  box-shadow: 0 10px 24px rgb(23 102 242 / 22%);
}

.workflow-step:nth-child(2) .step-number {
  background: #37a887;
  box-shadow: 0 10px 24px rgb(55 168 135 / 22%);
}

.workflow-step:nth-child(3) .step-number {
  background: var(--coral);
  box-shadow: 0 10px 24px rgb(255 112 93 / 22%);
}

.workflow-step h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.workflow-step p {
  max-width: 330px;
  margin-inline: auto;
}

.teams-section {
  background: #edf5f1;
  padding-block: clamp(6.5rem, 10vw, 9rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.team-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgb(19 33 59 / 8%);
  border-radius: 1.4rem;
  background: white;
  padding: 1.65rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.team-card > svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--blue);
}

.team-2 > svg {
  color: #188267;
}

.team-3 > svg {
  color: #dc4d3a;
}

.team-4 > svg {
  color: #765ad5;
}

.team-card h3 {
  margin: 3.8rem 0 0.7rem;
  font-size: 1.25rem;
  font-weight: 680;
  letter-spacing: -0.03em;
}

.team-card p {
  font-size: 0.94rem;
}

.data-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.data-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.data-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgb(19 33 59 / 10%);
  border-radius: 999px;
  background: white;
  padding: 0.6rem 0.8rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.data-tags svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #188267;
}

.data-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1.1fr auto 1fr;
  align-items: center;
  min-height: 370px;
  border: 1px solid rgb(19 33 59 / 8%);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 50% 48%, rgb(140 223 196 / 28%), transparent 33%),
    linear-gradient(145deg, #ffffff, #f0f4fb);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.data-node {
  display: grid;
  min-height: 130px;
  place-items: center;
  align-content: center;
  gap: 0.6rem;
  border: 1px solid rgb(19 33 59 / 10%);
  border-radius: 1.2rem;
  background: rgb(255 255 255 / 90%);
  padding: 1rem;
  color: var(--ink);
  box-shadow: 0 14px 34px rgb(19 33 59 / 8%);
}

.data-node svg {
  width: 2rem;
  height: 2rem;
}

.node-excel svg {
  color: #1d8e68;
}

.node-word svg {
  color: var(--blue);
}

.node-core {
  min-height: 165px;
  border-color: rgb(23 102 242 / 22%);
}

.node-core strong {
  letter-spacing: -0.04em;
}

.mini-pulse {
  position: relative;
  width: 3.5rem;
  height: 1.6rem;
}

.mini-pulse::before {
  position: absolute;
  inset: 0;
  background: var(--blue);
  clip-path: polygon(0 47%, 28% 47%, 36% 0, 48% 100%, 59% 27%, 68% 66%, 76% 47%, 100% 47%, 100% 57%, 80% 57%, 67% 86%, 60% 55%, 47% 100%, 36% 30%, 31% 57%, 0 57%);
  content: '';
}

.data-connector {
  display: flex;
  align-items: center;
  color: var(--blue);
}

.data-connector span {
  width: 1.5rem;
  height: 1px;
  background: rgb(23 102 242 / 25%);
}

.data-connector svg {
  width: 1.1rem;
  height: 1.1rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--blue);
  color: white;
  margin-bottom: clamp(5rem, 8vw, 8rem);
  padding: clamp(3rem, 7vw, 6rem);
  text-align: center;
  isolation: isolate;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-inline: auto;
}

.final-cta .eyebrow {
  color: #dbe8ff;
}

.final-cta h2 {
  color: white;
}

.final-cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 1.4rem auto 0;
  color: #dbe8ff;
  font-size: 1.08rem;
}

.cta-actions {
  justify-content: center;
}

.button-light {
  background: white;
  color: var(--blue-dark);
  box-shadow: 0 16px 34px rgb(7 40 110 / 24%);
}

.button-light:hover {
  background: #f6f8ff;
  color: var(--blue-dark);
}

.button-dark-outline {
  border-color: rgb(255 255 255 / 42%);
  background: transparent;
  color: white;
  box-shadow: none;
}

.button-dark-outline:hover {
  background: rgb(255 255 255 / 10%);
  box-shadow: none;
}

.cta-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(5px);
}

.cta-glow-one {
  top: -45%;
  left: -8%;
  width: 29rem;
  height: 29rem;
  background: rgb(140 223 196 / 25%);
}

.cta-glow-two {
  right: -10%;
  bottom: -55%;
  width: 30rem;
  height: 30rem;
  background: rgb(255 112 93 / 30%);
}

.site-footer {
  border-top: 1px solid rgb(19 33 59 / 9%);
  background: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: start;
  gap: 3rem;
  padding-block: 3.75rem;
}

.footer-top > div:first-child > p {
  max-width: 350px;
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 1rem 2.4rem;
  padding-top: 0.35rem;
  font-size: 0.92rem;
  font-weight: 620;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgb(19 33 59 / 7%);
  padding-block: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.legal-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
}

html[lang='ja'] .hero h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 1.14;
}

html[lang='ja'] .section-heading h2,
html[lang='ja'] .final-cta h2 {
  letter-spacing: -0.04em;
  line-height: 1.2;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .desktop-action {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgb(19 33 59 / 13%);
    border-radius: 0.8rem;
    background: white;
    color: var(--ink);
  }

  .menu-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .mobile-menu {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    width: min(100% - 3rem, 1280px);
    border-top: 1px solid rgb(19 33 59 / 8%);
    margin-inline: auto;
    padding-block: 1.5rem;
  }

  .mobile-menu nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.5rem;
    font-weight: 650;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

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

  .team-card {
    min-height: 285px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 5rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: 430px;
    margin: -1rem -12vw -2rem;
  }

  .audience-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 1.6rem;
  }

  .audience-inner ul {
    justify-content: flex-start;
  }

  .benefit-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 290px;
  }

  .feature-card {
    min-height: 230px;
  }

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

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

  .footer-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .nav-shell,
  .mobile-menu {
    width: min(100% - 2rem, 1280px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-pulse {
    width: 2.2rem;
  }

  .language-select.compact {
    display: none;
  }

  .mobile-menu {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .mobile-menu nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-actions .language-trigger {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
    line-height: 1;
  }

  .hero-intro {
    font-size: 1.03rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-visual {
    min-height: 335px;
    margin-inline: -12vw;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .benefit-grid,
  .feature-grid,
  .workflow-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    gap: 2.3rem;
  }

  .workflow-grid::before {
    top: 2rem;
    right: auto;
    bottom: 2rem;
    left: 2.1rem;
    width: 2px;
    height: auto;
    background: linear-gradient(var(--blue), var(--mint), var(--coral));
  }

  .workflow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1rem;
    text-align: left;
  }

  .step-number {
    border-width: 7px;
    margin: 0;
  }

  .workflow-step p {
    margin: 0;
  }

  .team-card {
    min-height: 260px;
  }

  .data-flow {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    min-height: auto;
    padding: 1.3rem;
  }

  .data-connector {
    flex-direction: column;
    margin-inline: auto;
  }

  .data-connector span {
    width: 1px;
    height: 1rem;
  }

  .data-connector svg {
    transform: rotate(90deg);
  }

  .data-node {
    width: 100%;
    min-height: 110px;
  }

  .node-core {
    min-height: 130px;
  }

  .final-cta {
    width: min(100% - 2rem, 1280px);
    border-radius: 1.5rem;
    padding: 3rem 1.25rem;
  }

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

  .footer-top {
    display: grid;
  }

  .footer-bottom {
    display: grid;
  }

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

  .legal-labels {
    justify-content: flex-start;
  }
}

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

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


/* Native language controls remain usable without JavaScript. */
.language-select { position: relative; flex-shrink: 0; }
.language-trigger { display: flex; align-items: center; gap: 0.55rem; min-height: 42px; border: 1px solid rgb(19 33 59 / 14%); font-size: 0.9rem; line-height: 1.2; list-style: none; }
.language-select.compact .language-trigger { min-width: 6.25rem; }
.language-trigger .language-chevron { width: 0.9rem; height: 0.9rem; margin-left: auto; transition: transform 160ms ease; }
.language-select[open] .language-chevron { transform: rotate(180deg); }
.language-content { position: absolute; top: calc(100% + 0.55rem); right: 0; z-index: 70; min-width: 11rem; background: white; }
.language-content a { display: flex; align-items: center; gap: 0.6rem; min-height: 42px; padding: 0.6rem; border-radius: 0.55rem; font-size: 0.9rem; }
.language-content a:hover, .language-content a:focus-visible, .language-content a[aria-current='page'] { background: var(--blue-soft); color: var(--blue-dark); }
.language-check { width: 1rem; height: 1rem; margin-left: auto; }
.language-flag { width: 1.45rem; height: 1.05rem; }
.footer-actions .language-content { top: auto; bottom: calc(100% + 0.55rem); }
.menu-button[aria-expanded='false'] .menu-close-icon, .menu-button[aria-expanded='true'] .menu-open-icon { display: none; }
.mobile-actions .language-select { min-width: 0; }
@media (max-width: 720px) {
  .mobile-actions .language-select { grid-column: 1 / -1; width: 100%; }
  .mobile-actions .language-content { left: 0; right: 0; }
  .nav-shell { gap: 0.75rem; }
}
