:root {
  --navy: #061b3f;
  --navy-2: #0b1f44;
  --blue: #147cff;
  --cyan: #42d6d6;
  --pale: #f5f8fc;
  --text: #0d1b2f;
  --muted: #5d6b7d;
  --line: #dbe7f4;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(6, 27, 63, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 231, 244, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 170px;
  height: auto;
  border-radius: 6px;
}

.footer-logo {
  display: block;
  width: min(300px, 100%);
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(20, 124, 255, 0.32);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  color: var(--navy);
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  gap: 26px;
  color: #34445b;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0aa7ff);
  box-shadow: 0 16px 34px rgba(20, 124, 255, 0.34);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(6, 27, 63, 0.08);
}

.button-ghost-dark {
  color: var(--navy);
  border: 1px solid #bed4ea;
  background: transparent;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 64px);
}

.pale {
  background: var(--pale);
}

.section-dark {
  color: var(--white);
  background: radial-gradient(circle at 70% 20%, rgba(66, 214, 214, 0.34), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2) 56%, #093669);
  background-attachment: fixed;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 64px) 34px;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}

.hero::before {
  top: 12%;
  right: 5%;
  width: 210px;
  height: 210px;
  background: rgba(66, 214, 214, 0.16);
}

.hero::after {
  left: 42%;
  bottom: 7%;
  width: 280px;
  height: 280px;
  background: rgba(20, 124, 255, 0.18);
}

.digital-wave {
  position: absolute;
  inset: auto -10% -18% 24%;
  height: 58%;
  opacity: 0.46;
  background:
    repeating-linear-gradient(105deg, transparent 0 22px, rgba(66, 214, 214, 0.22) 23px 24px),
    radial-gradient(ellipse at center, rgba(20, 124, 255, 0.6), transparent 64%);
  transform: rotate(-7deg) translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.analytics-copy h2,
.split-heading h2,
.price-card h2 {
  margin: 0;
  color: inherit;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
}

.hero h1 span {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(120deg, #ffffff, #b7fbff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.trust-points span,
.pill-list span,
.support-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
}

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

.hero-image-frame {
  position: absolute;
  inset: 38px 0 auto auto;
  width: min(100%, 680px);
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  transform: translate3d(0, calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0);
  will-change: transform;
}

.hero-image-frame img,
.analytics-dashboard img,
.section-shot,
.wide-visual img,
.case-shot,
.price-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.dashboard-card,
.feature-card,
.reduction-panel,
.hub-card,
.process-card,
.workflow article,
.case-card,
.price-card {
  border-radius: 8px;
}

.main-dashboard {
  position: absolute;
  inset: 38px 0 auto auto;
  width: min(100%, 620px);
  padding: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d5e2ef;
}

.window-bar strong {
  margin-left: 8px;
  color: #2e3c50;
  font-size: 13px;
}

.kpi-grid,
.mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kpi-grid div,
.mini-kpis div {
  padding: 16px;
  background: #f3f8ff;
  border: 1px solid #e1edf9;
  border-radius: 8px;
}

.kpi-grid small,
.mini-kpis small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.kpi-grid b,
.mini-kpis b {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.kpi-grid em {
  color: #0d9a93;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.chart-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
  margin-top: 18px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 180px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #edf5ff);
}

.bar-chart i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.donut,
.big-donut,
.small-donut {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 331deg, #e5eef8 331deg 360deg);
}

.donut {
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.donut span,
.big-donut span {
  display: grid;
  place-items: center;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.table-mock {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.7fr;
  gap: 10px;
  margin-top: 18px;
}

.table-mock span,
.data-table span {
  height: 12px;
  border-radius: 99px;
  background: #d8e7f6;
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 14px 18px;
  color: var(--white);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(6, 27, 63, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.card-left {
  left: 0;
  top: 58%;
}

.card-right {
  right: 16px;
  top: 12px;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.js-reveal {
  --reveal-y: 24px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.section-heading h2,
.analytics-copy h2,
.split-heading h2,
.price-card h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.benefit-cards {
  display: grid;
  gap: 18px;
}

.feature-card,
.reduction-panel,
.process-card,
.workflow article,
.case-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(6, 27, 63, 0.06);
}

.feature-card .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  font-weight: 900;
  border-radius: 8px;
  background: #eaf4ff;
}

.feature-card h3,
.reduction-panel h3,
.hub-card h3,
.process-card h3,
.workflow h3,
.case-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.4;
}

.feature-card p,
.reduction-panel p,
.hub-card p,
.process-card p,
.workflow p,
.case-card dd,
.price-card p {
  color: var(--muted);
}

.reduction-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #eef7ff);
  transform: translate3d(0, calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0);
  will-change: transform;
}

.big-donut {
  width: 230px;
  height: 230px;
  margin: 0 auto 20px;
}

.big-donut span {
  font-size: 54px;
}

.big-donut small {
  font-size: 28px;
}

.note {
  display: block;
  color: #718096;
  font-size: 12px;
}

.section-shot {
  margin-top: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(6, 27, 63, 0.1);
}

.hub {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 0;
}

.hub::before,
.hub::after {
  position: absolute;
  inset: 50% 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(20, 124, 255, 0.42), transparent);
}

.hub::after {
  transform: rotate(90deg);
}

.hub-center {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.hub-center strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hub-center span {
  display: block;
  margin-top: 8px;
  color: #b9f7ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hub-card {
  position: relative;
  z-index: 1;
  min-height: 180px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(6, 27, 63, 0.08);
}

.analytics {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  max-width: 1260px;
  margin: 0 auto;
}

.analytics-copy h3 {
  margin: 18px 0 10px;
  color: var(--blue);
  font-size: 26px;
}

.pill-list,
.support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.pill-list span,
.support-list span {
  color: var(--navy);
  background: #eaf6ff;
  border-color: #cfe5fb;
}

.statement {
  padding-left: 18px;
  border-left: 4px solid var(--cyan);
  color: var(--navy);
  font-weight: 800;
}

.analytics-dashboard {
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
  transform: translate3d(0, calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0);
  will-change: transform;
}

.analytics-dashboard img {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.line-chart {
  height: 240px;
  margin: 18px 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 49%, rgba(66, 214, 214, 0.8) 50%, transparent 52%),
    linear-gradient(170deg, transparent 44%, rgba(20, 124, 255, 0.75) 45%, transparent 47%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 62px),
    linear-gradient(180deg, #0c2a5a, #071f49);
}

.status-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
}

.small-donut {
  width: 160px;
  height: 160px;
  background: conic-gradient(var(--cyan) 0 238deg, #1f3b68 238deg 360deg);
}

.small-donut span {
  display: grid;
  place-items: center;
  width: 62%;
  height: 62%;
  color: var(--white);
  font-weight: 900;
  border-radius: 50%;
  background: var(--navy);
}

.data-table {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.two-column,
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.before-after {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.before-after div {
  padding: 16px;
  border-radius: 8px;
  background: #f4f8fc;
}

.before-after b,
.before-after span {
  display: block;
}

.before-after b {
  color: var(--blue);
}

.edi-flow {
  display: grid;
  grid-template-columns: 70px 1fr 1fr 70px;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
}

.edi-flow span,
.edi-flow i {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 8px;
  font-style: normal;
  font-weight: 800;
}

.edi-flow span {
  color: var(--white);
  background: var(--navy);
}

.edi-flow i {
  color: var(--navy);
  background: #eaf6ff;
  border: 1px solid #cfe5fb;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.wide-visual {
  max-width: 980px;
  margin: 34px auto 0;
  transform: translate3d(0, calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0);
  will-change: transform;
}

.wide-visual img {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.workflow article {
  position: relative;
}

.workflow article:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: -15px;
  z-index: 2;
  width: 28px;
  height: 28px;
  content: "→";
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.workflow span {
  color: var(--blue);
  font-weight: 900;
}

.ui-lines {
  height: 86px;
  margin-top: 20px;
  border-radius: 8px;
  background:
    linear-gradient(#dceafa 0 0) 18px 18px / 62% 8px no-repeat,
    linear-gradient(#c8ddf4 0 0) 18px 38px / 82% 8px no-repeat,
    linear-gradient(#e5effa 0 0) 18px 58px / 50% 8px no-repeat,
    #f6faff;
  border: 1px solid #e1edf9;
}

.case-label {
  display: inline-flex;
  margin: 0;
  padding: 5px 10px;
  color: var(--blue);
  border-radius: 999px;
  background: #eaf4ff;
  font-size: 13px;
  font-weight: 900;
}

.case-card dl {
  margin: 18px 0 0;
}

.case-card dt {
  margin-top: 16px;
  color: var(--navy);
  font-weight: 900;
}

.case-card dd {
  margin: 4px 0 0;
}

.case-shot,
.price-shot {
  margin-top: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(6, 27, 63, 0.1);
}

.price-section {
  background: linear-gradient(135deg, var(--navy), #0b356b);
  background-attachment: fixed;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-text {
  margin: 22px 0 12px;
  font-size: 20px;
}

.price-text strong {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
}

.price-actions {
  align-content: start;
}

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

.price-actions p {
  margin: 6px 0 0;
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 64px);
  color: #d7e7f9;
  background: #04152f;
}

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

.company-logo {
  max-width: min(340px, 100%);
  height: auto;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
}

.footer-info p {
  margin: 0 0 4px;
}

.footer-info a {
  color: #b9f7ff;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: none;
  padding: 13px 18px;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 38px rgba(20, 124, 255, 0.32);
  font-size: 14px;
  font-weight: 900;
}

.floating-cta.is-visible {
  display: inline-flex;
}

@media (max-width: 980px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .hero-inner,
  .benefit-layout,
  .analytics,
  .price-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 8px;
  }

  .main-dashboard {
    inset: 24px auto auto 0;
  }

  .hero-image-frame {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hub {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hub::before,
  .hub::after,
  .hub-center {
    display: none;
  }

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

  .workflow article::after {
    display: none;
  }

  .split-heading,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .two-column,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .section-dark,
  .price-section {
    background-attachment: scroll;
  }

  .hero {
    min-height: auto;
  }

  .analytics-dashboard,
  .reduction-panel,
  .wide-visual {
    transform: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    width: 142px;
  }

  .footer-logo {
    width: min(260px, 100%);
  }

  .brand strong,
  .footer-brand strong {
    font-size: 16px;
  }

  .section {
    padding: 56px 16px;
  }

  .hero {
    padding: 46px 16px 26px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    margin: 20px 0;
    font-size: 16px;
  }

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

  .trust-points,
  .kpi-grid,
  .mini-kpis,
  .chart-row,
  .status-grid,
  .workflow,
  .edi-flow {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 26px;
  }

  .main-dashboard,
  .hero-image-frame,
  .floating-card {
    position: static;
  }

  .hero-image-frame {
    padding: 6px;
  }

  .hero-image-frame img,
  .wide-visual img,
  .case-shot,
  .section-shot {
    border-radius: 6px;
  }

  .floating-card {
    display: none;
    margin-top: 12px;
  }

  .donut {
    width: 150px;
    height: 150px;
  }

  .big-donut {
    width: 190px;
    height: 190px;
  }

  .workflow {
    gap: 14px;
  }

  .feature-card,
  .reduction-panel,
  .process-card,
  .workflow article,
  .case-card {
    padding: 20px;
  }

  .analytics-dashboard {
    padding: 10px;
  }

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

  .floating-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}

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

  .button,
  .header-cta,
  .js-reveal {
    transition: none;
  }

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

  .js-parallax,
  .digital-wave,
  .hero-image-frame,
  .floating-card,
  .reduction-panel,
  .analytics-dashboard,
  .wide-visual {
    transform: none;
  }
}
