:root {
  --bg: #e8f6ff;
  --surface: #ffffff;
  --surface-2: #f1f6f4;
  --text: #0f1b17;
  --muted: #4a5f58;
  --border: rgba(15, 27, 23, 0.12);
  --shadow: 0 18px 45px rgba(15, 27, 23, 0.14);
  --radius: 18px;
  --radius-sm: 12px;

  --primary: #0284c7;
  --primary-2: #0369a1;
  --accent: #38bdf8;
  --green: #16a34a;

  --container: 1100px;
  --gutter: 20px;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    /* water dots */
    radial-gradient(rgba(255, 255, 255, 0.28) 1.2px, transparent 1.3px),
    /* soft clouds */
    radial-gradient(closest-side at 16% 12%, rgba(255, 255, 255, 0.32), transparent 72%),
    radial-gradient(closest-side at 82% 18%, rgba(255, 255, 255, 0.26), transparent 74%),
    radial-gradient(closest-side at 28% 78%, rgba(255, 255, 255, 0.22), transparent 74%),
    /* existing sky gradients */
    radial-gradient(1200px 700px at 18% -10%, rgba(56, 189, 248, 0.22), transparent 55%),
    radial-gradient(900px 600px at 85% 10%, rgba(14, 165, 233, 0.16), transparent 55%);
  background-size: 34px 34px, 980px 440px, 900px 400px, 1100px 520px, auto, auto;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
  line-height: 1.75;
  font-size: 18px;
  text-rendering: optimizeLegibility;
}

body.is-bottom-cta-visible {
  padding-bottom: 104px;
}

@media (max-width: 520px) {
  body {
    font-size: 17px;
  }
}

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

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

p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Layout */
.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section {
  padding: clamp(56px, 6vw, 92px) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
  border-top: 1px solid rgba(15, 27, 23, 0.06);
  border-bottom: 1px solid rgba(15, 27, 23, 0.06);
}

.section-cta {
  padding: clamp(70px, 7vw, 110px) 0;
}

.section#access .section-title {
  color: var(--green);
}

.section-head {
  max-width: 760px;
}

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

.section-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 27, 23, 0.1);
  border-radius: 0;
  padding: clamp(16px, 2.2vw, 24px);
  box-shadow: 0 18px 45px rgba(15, 27, 23, 0.1);
}

.section-lead-blue {
  color: #0ea5e9;
}

.section-box .jobs-table-wrap {
  border-radius: 0;
}

.section-box > * + * {
  margin-top: 18px;
}

.overview-box a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.overview-dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.overview-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(15, 27, 23, 0.14);
}

.overview-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.overview-row dt {
  font-weight: 900;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.overview-row dd {
  margin: 0;
  font-weight: 800;
  color: var(--text);
  line-height: 1.6;
}

@media (max-width: 520px) {
  .overview-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.overview-access {
  margin-top: 16px;
}

.overview-subtitle {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.overview-subtitle-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.overview-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 700;
}

.section-title {
  font-size: clamp(28px, 1.6vw + 20px, 39px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  text-wrap: balance;
  line-break: loose;
  color: var(--green);
}

.strengths-title {
  font-size: clamp(30px, 1.8vw + 21px, 39px);
  text-wrap: balance;
  line-break: loose;
}

.brand-green {
  color: var(--green);
}

.section-lead {
  color: var(--muted);
  font-size: clamp(18px, 1vw + 14px, 23.4px);
  line-height: 1.7;
  text-wrap: balance;
  line-break: loose;
}

.section-footnote {
  color: var(--muted);
  margin-top: 18px;
}

.section-footnote-strong {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(15px, 0.7vw + 12px, 18px);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
}

/* Strengths box */
.strengths-box {
  margin-top: 18px;
  padding: clamp(14px, 2vw, 18px);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.95);
  outline: 1px solid rgba(2, 132, 199, 0.16);
  box-shadow: 0 18px 45px rgba(15, 27, 23, 0.1);
}

.section#strengths {
  position: relative;
  overflow: clip;
  isolation: isolate;
  --strengths-skew: 24%;
}

.section#strengths::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/mobilehero.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) contrast(1.05) brightness(0.88);
  transform: none;
  opacity: 1;
  clip-path: polygon(
    0 var(--strengths-skew),
    100% 0,
    100% calc(100% - var(--strengths-skew)),
    0 100%
  );
  z-index: -2;
}

.section#strengths::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.26) 40%,
    rgba(255, 255, 255, 0.20) 100%
  );
  clip-path: polygon(
    0 var(--strengths-skew),
    100% 0,
    100% calc(100% - var(--strengths-skew)),
    0 100%
  );
  z-index: -1;
}

@media (max-width: 520px) {
  .section#strengths::before {
    background-position: 50% 35%;
  }
}

.section#strengths > .container {
  position: relative;
  z-index: 0;
}

.section#strengths .strengths-title {
  display: inline;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.18em 0.46em;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section#strengths .section-lead {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
  margin-top: 10px;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.72),
    0 22px 52px rgba(0, 0, 0, 0.48);
}

.strengths-block + .strengths-block {
  margin-top: 14px;
}

.strengths-divider {
  height: 1px;
  margin: 14px 0;
  background: rgba(15, 27, 23, 0.12);
}

.strengths-box-title {
  margin: 0 0 10px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  color: var(--text);
  font-size: clamp(20px, 0.9vw + 16px, 26px);
  line-height: 1.35;
  text-wrap: balance;
  line-break: loose;
}

.strengths-desc {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(17px, 0.6vw + 14px, 20px);
  line-height: 1.8;
  text-wrap: pretty;
  line-break: loose;
  max-width: 70ch;
}

.strengths-desc-strong {
  font-weight: 900;
  color: var(--text);
}

.strengths-list {
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: clamp(17px, 0.6vw + 14px, 20px);
  line-height: 1.8;
  max-width: 70ch;
}

.strengths-list li {
  text-wrap: pretty;
  line-break: loose;
}

.strengths-list li + li {
  margin-top: 2px;
}

.strengths-list-accent li {
  color: #075985;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
}

.skill-marquee {
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: skill-marquee 32s linear infinite;
}

.skill-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.skill-marquee-list {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-marquee-list li {
  white-space: nowrap;
  padding: 6px 2px;
  color: #075985;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 0.5vw + 13px, 18px);
  letter-spacing: 0.01em;
}

@keyframes skill-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .skill-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
  }

  .marquee-track {
    animation: none;
  }
}

.strengths-label {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  color: #075985;
}

.u-highlight-yellow {
  display: inline;
  padding: 0.05em 0.22em;
  background-image: linear-gradient(transparent 62%, rgba(250, 204, 21, 0.78) 0);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.strengths-em {
  margin: 12px 0 0;
  font-weight: 900;
  color: var(--primary-2);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 0.7vw + 14px, 21px);
  line-height: 1.6;
  text-wrap: balance;
  line-break: loose;
}

.split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

@media (max-width: 920px) {
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }
}

/* Header */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(232, 246, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 27, 23, 0.06);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(15, 27, 23, 0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}

.brand-logo {
  width: auto;
  height: 38px;
  max-width: 240px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-2);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(2, 132, 199, 0.18);
  box-shadow: 0 14px 40px rgba(15, 27, 23, 0.12);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: #0369a1;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 200ms ease, background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(2, 132, 199, 0.10);
  color: #075985;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 27, 23, 0.08);
  outline: none;
}

@media (max-width: 860px) {
  .site-nav {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 27, 23, 0.12);
    box-shadow: 0 18px 44px rgba(15, 27, 23, 0.18);
    justify-content: stretch;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(2, 132, 199, 0.22);
    font-size: 13px;
  }
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(2, 132, 199, 0.22);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 2px;
}

.nav-toggle-lines {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #0369a1;
  border-radius: 999px;
  transition: transform 200ms ease, background 200ms ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #0369a1;
  border-radius: 999px;
  transition: transform 200ms ease, top 200ms ease, bottom 200ms ease;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  bottom: -6px;
}

.nav-layer {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
}

@media (max-width: 860px) {
  .header-inner {
    padding: 8px 0;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-logo {
    height: 32px;
    max-width: 200px;
  }

  .header-cta {
    margin-left: auto;
  }

  .site-header .btn-cta {
    font-size: 13px;
    padding: 10px 12px;
    border-width: 2px;
  }

  .site-header .btn-cta.btn-xl {
    padding: 10px 12px;
    font-size: 13px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .nav-layer {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: start end;
    padding: 64px 12px 12px;
    background: rgba(15, 27, 23, 0.42);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
    z-index: 60;
  }

  .nav-layer .site-nav {
    width: min(92vw, 420px);
    padding: 22px 18px;
    gap: 12px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 255, 0.78));
    border: 1px solid rgba(2, 132, 199, 0.18);
    box-shadow: 0 22px 70px rgba(15, 27, 23, 0.28);
    outline: 1px solid rgba(56, 189, 248, 0.22);
    transform: translateY(-8px) translateX(14px) scale(0.98);
    opacity: 0;
    transition: transform 240ms ease, opacity 200ms ease;
  }

  .nav-layer .site-nav a {
    padding: 14px 14px;
    border-radius: 16px;
    font-size: 16px;
    border-color: rgba(2, 132, 199, 0.18);
    background: rgba(255, 255, 255, 0.92);
  }

  .nav-layer .site-nav a:hover,
  .nav-layer .site-nav a:focus-visible {
    transform: none;
    box-shadow: 0 16px 36px rgba(15, 27, 23, 0.14);
  }

  body.is-nav-open .nav-layer {
    opacity: 1;
    pointer-events: auto;
  }

  body.is-nav-open .nav-layer .site-nav {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 1;
  }

  body.is-nav-open .nav-toggle-lines {
    background: transparent;
  }

  body.is-nav-open .nav-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  body.is-nav-open .nav-toggle-lines::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
}

@media (max-width: 420px) {
  .brand-logo {
    height: 30px;
    max-width: 150px;
  }

  .site-header .btn-cta {
    font-size: 12px;
    padding: 9px 10px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 200ms ease, background 160ms ease, border-color 160ms ease;
  will-change: transform;
}

.btn:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 122, 99, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(15, 27, 23, 0.12);
}

.btn-lg {
  padding: 14px 18px;
}

.btn-xl {
  padding: 16px 22px;
  font-size: 16px;
}

.btn-cta {
  border-radius: 0;
  width: min(80%, 560px);
  position: relative;
  overflow: hidden;
  font-size: clamp(18px, 1.2vw + 14px, 22px);
  padding: 18px 26px;
  border: 5px solid rgba(14, 165, 233, 0.28);
}

.btn-primary.btn-cta {
  background: linear-gradient(135deg, #c7f7a3, #2f7d32);
  box-shadow: 0 12px 28px rgba(47, 125, 50, 0.26);
}

.btn-cta-round {
  border-radius: 999px;
  width: auto;
}

.site-header .btn-cta {
  width: auto;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.8) 50%, transparent 65%);
  transform: translateX(-110%);
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
}

.btn-cta:hover::after,
.btn-cta:focus-visible::after {
  opacity: 1;
  animation: cta-shine 900ms ease;
}

@keyframes cta-shine {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(110%);
  }
}

.btn-block {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 38px rgba(15, 27, 23, 0.18);
}

.btn:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 10px 26px rgba(15, 27, 23, 0.14);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  --hero-skew: 12%;
  padding: clamp(70px, 9vw, 120px) 0 clamp(56px, 6vw, 86px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(0 var(--hero-skew), 100% 0, 100% calc(100% - var(--hero-skew)), 0 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.25) contrast(1.12) brightness(0.98);
}

@media (max-width: 768px) {
  .hero-bg img {
    object-position: 70% 50%;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(232, 246, 255, 0.55) 0%,
    rgba(232, 246, 255, 0.26) 55%,
    rgba(232, 246, 255, 0.16) 100%
  );
  clip-path: polygon(0 var(--hero-skew), 100% 0, 100% calc(100% - var(--hero-skew)), 0 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-rotator {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  min-height: clamp(128px, 12vw, 176px);
}

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

.rotator-layer {
  margin: 0;
  color: #000;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: clamp(22px, 2.8vw + 10px, 46px);
  position: absolute;
  inset: clamp(16px, 2.2vw, 22px);
  display: flex;
  align-items: center;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 520ms ease-in, clip-path 700ms ease-in;
  will-change: opacity, clip-path;
}

.rotator-inline {
  display: inline;
  background: rgba(255, 255, 255, 0.82);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.14em 0.34em;
}

.rotator-layer.is-active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.rotator-layer.is-glint {
  color: transparent;
  background: linear-gradient(110deg, #000 40%, rgba(255, 255, 255, 0.98) 50%, #000 60%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: text-glint 900ms ease;
}

@keyframes text-glint {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 27, 23, 0.1);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
}

.hero-title {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3vw + 14px, 48px);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 12px;
}

.hero-note {
  color: var(--muted);
  max-width: 52ch;
}

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

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(2, 132, 199, 0.22);
  box-shadow: 0 18px 48px rgba(15, 27, 23, 0.18);
  z-index: 3;
  transition: transform 160ms ease, background 160ms ease, box-shadow 200ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(15, 27, 23, 0.22);
  outline: none;
}

.scroll-cue-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #0369a1;
  border-bottom: 2px solid #0369a1;
  transform: rotate(45deg) translateY(-1px);
  animation: scroll-cue-bounce 1200ms ease-in-out infinite;
}

@keyframes scroll-cue-bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(-1px);
  }
  55% {
    transform: rotate(45deg) translateY(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue-arrow {
    animation: none;
  }
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 10px 10px;
  margin-top: 0;
}

.hero-badges li {
  padding: 6px 10px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.01em;
}

@media (max-width: 920px) {
  .hero-badges {
    grid-template-columns: repeat(3, max-content);
  }
}

@media (max-width: 520px) {
  .hero-badges {
    grid-template-columns: repeat(2, max-content);
  }
}

@media (max-width: 520px) {
  .btn-xl {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-rotator {
    order: 1;
  }
  .hero-badges {
    order: 2;
  }
  .hero-actions {
    order: 3;
  }
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

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

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

.cards-accordion {
  grid-template-columns: 1fr;
}

@media (max-width: 920px) {
  .cards,
  .cards-2,
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 27, 23, 0.1);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 10px 26px rgba(15, 27, 23, 0.06);
}

.card-media {
  margin: 0 0 10px;
}

.card-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 27, 23, 0.1);
}

.card-accordion {
  padding: 0;
  overflow: hidden;
}

.card-accordion-summary {
  margin: 0;
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  background: #fff;
}

.card-accordion-summary::-webkit-details-marker {
  display: none;
}

.card-accordion-summary::marker {
  content: "";
}

.card-accordion-summary::after {
  content: "＋";
  flex: 0 0 auto;
  line-height: 1;
  color: var(--green);
  font-size: 20px;
}

.card-accordion[open] > .card-accordion-summary {
  border-bottom: 1px solid rgba(15, 27, 23, 0.1);
}

.card-accordion[open] > .card-accordion-summary::after {
  content: "−";
}

.card-accordion-body {
  padding: 18px;
  background: rgba(232, 246, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-accordion-body .card-text {
  margin: 0;
  font-weight: 500;
  width: 100%;
}

.card-accordion-summary:focus-visible {
  outline: 3px solid rgba(2, 132, 199, 0.35);
  outline-offset: 2px;
}

.card-accordion-summary:hover {
  filter: brightness(0.98);
}

.card-title {
  margin: 0 0 6px;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.card-accordion-summary.card-title {
  margin: 0;
}

.card-text {
  color: var(--muted);
  font-size: 15px;
}

.section#strengths .card-title {
  color: var(--green);
}

.section#strengths .card-text {
  color: var(--text);
  font-weight: 700;
  text-wrap: pretty;
  line-break: loose;
}

.section#strengths .card-accordion-body .card-text {
  font-weight: 500;
}

.u-underline-yellow {
  display: inline;
  padding: 0.05em 0.12em;
  background-image: linear-gradient(transparent 68%, rgba(250, 204, 21, 0.78) 0);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Prose + checklist */
.prose p {
  margin-top: 12px;
}

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

.checklist {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text);
}

.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  margin-top: 2px;
  background: linear-gradient(135deg, rgba(20, 122, 99, 0.18), rgba(14, 165, 233, 0.16));
  border: 1px solid rgba(15, 27, 23, 0.1);
}

.subheading {
  margin: 18px 0 8px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

/* Quote */
.quote {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.55));
  border: 1px solid rgba(15, 27, 23, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 27, 23, 0.07);
}

.quote-text {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.quote-by {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

/* Philosophy */
.section#philosophy .split {
  margin-top: 18px;
  grid-template-columns: 1fr;
}

.philosophy-grid {
  display: grid;
  gap: 12px;
}

.philosophy-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 27, 23, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(15, 27, 23, 0.06);
}

.philosophy-card img {
  width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(15, 27, 23, 0.12);
}

.philosophy-card-copy {
  display: grid;
  gap: 4px;
}

.philosophy-card-title {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  color: var(--green);
}

.philosophy-card-text {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.7;
}

.philosophy-note {
  margin-top: 12px;
}

@media (max-width: 520px) {
  .philosophy-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .philosophy-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

/* Media */
.media {
  margin: 0;
}

.media img {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 27, 23, 0.1);
  box-shadow: 0 16px 40px rgba(15, 27, 23, 0.12);
}

.media-frame img {
  border-radius: 0;
  border: 1px solid rgba(15, 27, 23, 0.16);
  box-shadow: none;
  padding: 0;
  max-width: min(620px, 92%);
  margin-inline: auto;
}

.media-frame {
  border-radius: 0;
  border: 2px solid rgba(15, 27, 23, 0.12);
  background: rgba(0, 0, 0, 0.04);
  padding: 18px;
}

.media figcaption {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
  font-weight: 800;
  color: var(--text);
}

.media-caption-accent {
  text-align: center;
  font-size: clamp(18px, 1.2vw + 14px, 24px);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #38bdf8;
  text-wrap: balance;
  line-break: loose;
}

.media-caption-accent > span {
  display: inline;
  padding: 0.12em 0.22em;
  background-image: linear-gradient(transparent 62%, rgba(250, 204, 21, 0.78) 0);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Jobs table */
.jobs-block {
  margin-top: 18px;
}

.jobs-title {
  margin: 0 0 6px;
  text-align: center;
  font-weight: 800;
  color: var(--text);
  font-size: clamp(18px, 1.1vw + 14px, 22px);
}

.jobs-sub {
  font-weight: 600;
  color: var(--muted);
  font-size: 11px;
}

.jobs-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(15, 27, 23, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

.jobs-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.jobs-table th,
.jobs-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(15, 27, 23, 0.08);
  text-align: left;
}

.jobs-table th {
  background: rgba(232, 246, 255, 0.95);
  color: #075985;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.jobs-table td {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  word-break: break-word;
}

.jobs-table td:first-child {
  color: #0369a1;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  width: 8.5em;
}

.learning-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 920px) {
  .learning-grid {
    grid-template-columns: 1fr;
  }
}

.learning-card {
  border: 1px solid rgba(15, 27, 23, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(15, 27, 23, 0.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.learning-card-media {
  margin: 0;
  border-radius: 0;
  border: 2px solid rgba(15, 27, 23, 0.12);
  background: rgba(0, 0, 0, 0.04);
  padding: 10px;
}

.learning-card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 27, 23, 0.12);
}

.learning-card-title {
  margin: 0;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.35;
  color: var(--green);
}

.learning-card-text {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .jobs-table-wrap {
    scroll-behavior: auto;
  }
}

/* Steps */
.steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 27, 23, 0.1);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 26px rgba(15, 27, 23, 0.06);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(20, 122, 99, 0.18), rgba(14, 165, 233, 0.16));
  border: 1px solid rgba(15, 27, 23, 0.1);
}

.step-title {
  margin: 0 0 4px;
  font-size: 16px;
}

.step-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* FAQ */
.faq {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

/* CTA / form */
.cta-box {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  padding: clamp(18px, 2.2vw, 24px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(15, 27, 23, 0.1);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  .cta-box {
    grid-template-columns: 1fr;
  }
}

.cta-points {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.cta-points li {
  padding-left: 20px;
  position: relative;
}

.cta-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.65em;
  transform: translateY(-50%);
  opacity: 0.85;
}

.form {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 27, 23, 0.1);
  border-radius: var(--radius);
  padding: 16px;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-lead {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-alt {
  padding-top: 8px;
  border-top: 1px dashed rgba(15, 27, 23, 0.14);
}

.contact-alt-title {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Map */
.access-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: clamp(14px, 2.4vw, 22px);
  align-items: start;
}

@media (max-width: 920px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}

.map {
  margin-top: 18px;
}

.access-grid .map {
  margin-top: 0;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 27, 23, 0.1);
  box-shadow: 0 18px 42px rgba(15, 27, 23, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.map-access {
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(15, 27, 23, 0.1);
  background: #fff;
}

.map-access .overview-list {
  padding-left: 18px;
  font-weight: 500;
  color: var(--text);
}

.map-access .overview-subtitle {
  color: var(--green);
  font-weight: 600;
}

.related {
  border: 1px solid rgba(15, 27, 23, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(15, 27, 23, 0.08);
  padding: 16px;
}

.related-title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--primary-2);
}

.related-group + .related-group {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(15, 27, 23, 0.14);
}

.related-group-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
}

.related-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  display: grid;
  gap: 6px;
}

/* Icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.icon-card {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(15, 27, 23, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(15, 27, 23, 0.06);
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.icon-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

@media (max-width: 920px) {
  .icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Gallery */
.gallery {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 27, 23, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(15, 27, 23, 0.06);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 12px 12px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 27, 23, 0.14);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(14, 165, 233, 0.55);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
}

.form-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(15, 27, 23, 0.06);
}

.bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  transform: translateY(110%);
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
  pointer-events: none;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(15, 27, 23, 0.08);
}

body.is-bottom-cta-visible .bottom-cta {
  transform: translateY(0);
  pointer-events: auto;
}

.bottom-cta-inner {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bottom-cta-copy {
  display: grid;
  gap: 4px;
}

.bottom-cta-text {
  margin: 0;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.01em;
}

.bottom-cta-tel {
  margin: 0;
  font-weight: 900;
  color: var(--text);
  font-size: 14px;
}

.bottom-cta-tel a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 520px) {
  body.is-bottom-cta-visible {
    padding-bottom: 132px;
  }

  .bottom-cta-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .bottom-cta-copy {
    text-align: center;
  }

  .bottom-cta-inner .btn {
    width: 100%;
  }
}

.footer-inner {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  color: var(--text);
  font-weight: 800;
  margin: 0;
}

.footer-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  margin: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(1px);
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-stagger > *.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .reveal,
  .reveal-stagger > * {
    transition: none !important;
    animation: none !important;
  }

  .rotator-layer {
    transition: none !important;
  }

  .btn:hover {
    transform: none;
    box-shadow: 0 10px 24px rgba(15, 27, 23, 0.12);
  }
}

.btn-cta-pulse {
  animation: cta-pulse 1400ms ease-in-out infinite;
}

@keyframes cta-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta-pulse {
    animation: none !important;
  }
}
