:root {
  --bg: #fbfefe;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-soft: #f4fbfa;
  --surface-tint: #f7fbfb;
  --ink: #36565b;
  --ink-soft: #6b8488;
  --line: rgba(28, 104, 103, 0.12);
  --line-strong: rgba(28, 104, 103, 0.22);
  --navy: #184b52;
  --navy-deep: #0f373b;
  --teal: #22b8b1;
  --teal-deep: #119f9b;
  --mint: #6cd8c8;
  --aqua: #ccefeb;
  --card-shadow: 0 18px 40px rgba(18, 83, 84, 0.08);
  --card-shadow-hover: 0 24px 54px rgba(18, 83, 84, 0.12);
  --shadow: 0 28px 72px rgba(18, 83, 84, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
  --font-heading: "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-number: "Sora", "Noto Sans JP", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(34, 184, 177, 0.08), transparent 24%),
    radial-gradient(circle at 86% 9%, rgba(108, 216, 200, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(17, 159, 155, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fcfc 42%, #f0f7f6 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.75;
}

img {
  max-width: 100%;
}

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

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

ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}

button,
.button,
summary {
  cursor: pointer;
}

.site-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 254, 254, 0.95));
  border-bottom: 1px solid rgba(28, 104, 103, 0.08);
  box-shadow: 0 10px 28px rgba(18, 83, 84, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 184, 177, 0.4), transparent);
}

.header-inner {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 0;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  font-family: var(--font-number);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(34, 184, 177, 0.24);
}

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

.brand-text strong {
  color: var(--teal);
  font-family: var(--font-number);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-panel,
.global-nav,
.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-panel {
  gap: 18px;
}

.global-nav {
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.global-nav a {
  position: relative;
  transition: color 180ms ease;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--navy);
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
.global-nav a:focus-visible,
.map-card-link:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(17, 159, 155, 0.24);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(180deg, var(--teal), var(--teal-deep));
  color: #fff;
  border-color: rgba(18, 126, 123, 0.08);
  box-shadow:
    0 18px 36px rgba(34, 184, 177, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.button-ghost {
  border-color: rgba(95, 150, 149, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 249, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 20px rgba(18, 83, 84, 0.06);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(34, 184, 177, 0.3);
  color: var(--teal-deep);
}

.button-ghost-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 251, 0.96));
  color: var(--teal-deep);
  border-color: rgba(34, 184, 177, 0.22);
}

.button-wide {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(24, 75, 82, 0.08);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy);
}

.hero,
.section,
.hero-metrics,
.cta-section {
  position: relative;
  isolation: isolate;
}

.hero {
  padding: 92px 0 60px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.94), transparent 24%),
    radial-gradient(circle at 78% 14%, rgba(181, 229, 223, 0.38), transparent 20%),
    radial-gradient(circle at 92% 30%, rgba(105, 191, 196, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(240, 249, 248, 0.99), rgba(226, 241, 241, 0.9));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: start;
}

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

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #758d90;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  box-shadow: 0 1px 4px rgba(34, 184, 177, 0.2);
}

.hero-title,
.section-heading h2,
.workflow-copy h2,
.cta-panel h2 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

.hero-title span {
  display: block;
}

.hero-title-primary {
  color: #5d7074;
  font-size: clamp(1.54rem, 2.7vw, 2.3rem);
  letter-spacing: -0.04em;
}

.hero-title-secondary {
  margin-top: 8px;
  color: var(--teal);
  font-size: clamp(1.92rem, 3.8vw, 3.05rem);
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 42rem;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.hero-lead strong {
  color: var(--navy);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 430px;
  justify-self: end;
}

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

.hero-visual::before {
  width: 128px;
  height: 128px;
  top: 18px;
  right: -34px;
  background: radial-gradient(circle, rgba(34, 184, 177, 0.16), rgba(34, 184, 177, 0.04) 58%, transparent 72%);
}

.hero-visual::after {
  width: 88px;
  height: 88px;
  right: 18px;
  bottom: 54px;
  background: radial-gradient(circle, rgba(108, 216, 200, 0.18), rgba(108, 216, 200, 0.03) 58%, transparent 72%);
}

.hero-flow-shell,
.hero-product-card,
.metrics-card,
.feature-card,
.issue-card,
.benefit-card,
.board-card,
.faq-list details,
.cta-panel,
.map-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-tint) 100%);
  border: 1px solid rgba(28, 104, 103, 0.1);
  box-shadow: var(--card-shadow);
}

.hero-flow-shell {
  position: relative;
  z-index: 1;
  padding: 12px 14px 14px;
  border-radius: calc(var(--radius-xl) + 4px);
  overflow: hidden;
}

.hero-flow-shell::before,
.hero-flow-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero-flow-shell::before {
  top: 12px;
  right: 14px;
  width: 102px;
  height: 102px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(34, 184, 177, 0.03), rgba(34, 184, 177, 0.01)),
    repeating-linear-gradient(
      180deg,
      rgba(34, 184, 177, 0.04) 0 1px,
      transparent 1px 12px
    );
  opacity: 0.58;
}

.hero-flow-shell::after {
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 184, 177, 0.16), transparent);
}

.hero-mini-illustration {
  margin-top: 12px;
  padding: 12px 12px 14px;
  background:
    radial-gradient(circle at 80% 16%, rgba(34, 184, 177, 0.06), transparent 18%),
    radial-gradient(circle at 18% 76%, rgba(117, 170, 232, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 252, 0.97));
  border-color: rgba(167, 208, 206, 0.32);
  box-shadow:
    0 22px 40px rgba(24, 78, 89, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-mini-canvas {
  position: relative;
  display: grid;
  grid-template-columns: minmax(152px, 1fr) 28px minmax(152px, 1fr);
  grid-template-rows: auto 18px auto;
  gap: 0 10px;
  align-items: center;
  padding-bottom: 2px;
}

.hero-mini-canvas::before {
  content: none;
}

.hero-mini-canvas::after {
  content: "";
  position: absolute;
  left: 104px;
  top: 64px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 203, 211, 0.08), rgba(110, 203, 211, 0.02) 62%, transparent 74%);
  filter: blur(5px);
  z-index: 0;
}

.hero-mini-card {
  position: relative;
  z-index: 1;
  min-height: 110px;
  padding: 11px 12px 11px;
  border-radius: 20px;
  border: 1px solid rgba(174, 211, 218, 0.64);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 252, 253, 0.98));
  box-shadow:
    0 12px 22px rgba(97, 141, 173, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-mini-sites {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 176px);
  height: 110px;
  justify-self: center;
  background: linear-gradient(180deg, #eefbfa 0%, #e7f7f6 100%);
}

.hero-mini-core {
  grid-column: 3;
  grid-row: 1;
  width: min(100%, 176px);
  height: 110px;
  padding-top: 6px;
  padding-bottom: 20px;
  justify-content: flex-start;
  justify-self: center;
  background: linear-gradient(180deg, #31bcc0 0%, #1e93a8 100%);
  border-color: rgba(21, 126, 150, 0.22);
  box-shadow:
    0 16px 28px rgba(22, 132, 154, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-mini-sales {
  grid-column: 3;
  grid-row: 3;
  width: min(100%, 176px);
  height: 110px;
  justify-self: center;
  justify-content: flex-start;
  padding-top: 6px;
  padding-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fcfb 100%);
  border-color: rgba(200, 225, 228, 0.88);
  box-shadow:
    0 14px 26px rgba(97, 141, 173, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.hero-mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 44%);
  pointer-events: none;
}

.hero-mini-label,
.hero-mini-sub,
.hero-mini-note {
  margin: 0;
}

.hero-mini-label {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.hero-mini-product {
  margin: 0;
  color: var(--teal-deep);
  font-family: var(--font-number);
  font-size: clamp(1.32rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
}

.hero-mini-sub {
  margin-top: 2px;
  color: #6a7c81;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.hero-mini-note {
  margin-top: 8px;
  color: #5f7781;
  font-family: var(--font-number);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.hero-mini-core .hero-mini-product,
.hero-mini-core .hero-mini-sub {
  color: #ffffff;
}

.hero-mini-sales .hero-mini-product,
.hero-mini-sales .hero-mini-sub {
  color: var(--teal-deep);
}

.hero-mini-sales .hero-mini-icon {
  margin-top: 0;
}

.hero-mini-icon {
  position: relative;
  margin-top: 8px;
}

.hero-mini-core .hero-mini-icon {
  margin-top: 2px;
}

.hero-mini-icon-sites {
  width: 52px;
  height: 36px;
  margin-inline: auto;
}

.hero-mini-icon-sites span {
  position: absolute;
  inset: 0;
  border-radius: 7px;
  background: #ffffff;
  border: 2.5px solid #a8bec8;
}

.hero-mini-icon-sites span:nth-child(1) {
  transform: translate(12px, -8px);
  opacity: 0.68;
}

.hero-mini-icon-sites span:nth-child(2) {
  transform: translate(6px, -3px);
  opacity: 0.84;
}

.hero-mini-icon-sites span:nth-child(3)::before,
.hero-mini-icon-sites span:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  border-radius: 999px;
  background: #d6e5ea;
}

.hero-mini-icon-sites span:nth-child(3)::before {
  top: 10px;
  height: 8px;
}

.hero-mini-icon-sites span:nth-child(3)::after {
  top: 24px;
  height: 5px;
}

.hero-mini-icon-browser {
  width: 58px;
  height: 40px;
  margin-inline: auto;
  border-radius: 10px;
  background: #ffffff;
  border: 2.5px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 14px rgba(16, 97, 116, 0.12);
}

.hero-mini-icon-browser span {
  position: absolute;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6bc8cb;
}

.hero-mini-icon-browser span:nth-child(1) {
  left: 9px;
}

.hero-mini-icon-browser span:nth-child(2) {
  left: 19px;
}

.hero-mini-icon-browser span:nth-child(3) {
  left: 31px;
}

.hero-mini-icon-browser i {
  position: absolute;
  left: 12px;
  right: 12px;
  display: block;
  border-radius: 999px;
  background: #d8eeee;
}

.hero-mini-icon-browser i:nth-of-type(1) {
  top: 17px;
  height: 8px;
}

.hero-mini-icon-browser i:nth-of-type(2) {
  top: 28px;
  height: 5px;
}

.hero-mini-icon-sales {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
}

.hero-mini-db {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50% / 22%;
}

.hero-mini-db::before,
.hero-mini-db::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  height: 10px;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.hero-mini-db::before {
  top: -7px;
}

.hero-mini-db::after {
  bottom: -7px;
}

.hero-mini-user {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.hero-mini-user::before,
.hero-mini-user::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
}

.hero-mini-user::before {
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.hero-mini-user::after {
  top: 13px;
  width: 11px;
  height: 6px;
  border-radius: 10px 10px 6px 6px;
}

.hero-mini-sales .hero-mini-db {
  border-color: rgba(17, 159, 155, 0.92);
}

.hero-mini-sales .hero-mini-db::before,
.hero-mini-sales .hero-mini-db::after {
  border-color: rgba(17, 159, 155, 0.9);
}

.hero-mini-sales .hero-mini-user {
  border-color: rgba(17, 159, 155, 0.9);
}

.hero-mini-sales .hero-mini-user::before,
.hero-mini-sales .hero-mini-user::after {
  background: rgba(17, 159, 155, 0.92);
}

.hero-mini-connector {
  position: relative;
  z-index: 1;
  justify-self: center;
  align-self: center;
  width: 24px;
  height: 18px;
  opacity: 0.82;
}

.hero-mini-connector::before,
.hero-mini-connector::after {
  content: "";
  position: absolute;
  left: 50%;
}

.hero-mini-connector::before {
  top: 0;
  bottom: 8px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #65d0cd 0%, #20b8bb 100%);
  transform: translateX(-50%);
}

.hero-mini-connector::after {
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #20b8bb;
  transform: translateX(-50%);
}

.hero-mini-connector-a {
  grid-column: 2;
  grid-row: 1;
  width: 24px;
  height: 16px;
}

.hero-mini-connector-b {
  grid-column: 3;
  grid-row: 2;
}

.hero-mini-connector-a::before {
  top: 50%;
  bottom: auto;
  left: 2px;
  right: 8px;
  width: auto;
  height: 2px;
  transform: translateY(-50%);
}

.hero-mini-connector-a::after {
  top: 50%;
  left: auto;
  right: 0;
  bottom: auto;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #20b8bb;
  border-right: 0;
  transform: translateY(-50%);
}

.product-card-label,
.metrics-label,
.map-card-name {
  margin-bottom: 3px;
  color: #688184;
  font-family: var(--font-number);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metrics-label {
  color: #96ba44;
}

.hero-system-illustration {
  display: grid;
  grid-template-columns: minmax(180px, 0.66fr) minmax(0, 1.28fr) minmax(180px, 0.6fr);
  gap: 16px;
  align-items: start;
  margin-top: 14px;
}

.hero-arch-box-label {
  margin-bottom: 10px;
  color: #3b4b53;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.hero-arch-sites,
.hero-arch-fanclub,
.hero-arch-resfa {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(28, 104, 103, 0.12);
  box-shadow: 0 10px 24px rgba(18, 83, 84, 0.05);
}

.hero-arch-sites {
  padding: 14px;
  border-radius: 22px;
}

.hero-arch-site-list {
  display: grid;
  gap: 10px;
}

.hero-arch-site-card,
.hero-arch-mini-links span,
.hero-arch-card-list span,
.hero-arch-stack span {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(28, 104, 103, 0.14);
  box-shadow: 0 8px 18px rgba(18, 83, 84, 0.08);
}

.hero-arch-site-card {
  padding: 12px 14px;
  border-radius: 14px;
}

.hero-arch-site-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.hero-arch-site-card span {
  color: #60757a;
  font-size: 0.82rem;
}

.hero-arch-core {
  position: relative;
  min-height: 440px;
  padding: 18px 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #dff4f4 0%, #d8eff0 100%);
  border: 1px solid rgba(34, 184, 177, 0.14);
  overflow: hidden;
}

.hero-arch-core::before,
.hero-arch-core::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-arch-core::before {
  left: 112px;
  top: 164px;
  width: 58px;
  height: 2px;
  background: #101418;
}

.hero-arch-core::after {
  right: 118px;
  top: 164px;
  width: 2px;
  height: 162px;
  background: var(--teal);
}

.hero-arch-title {
  margin-bottom: 18px;
  color: var(--teal-deep);
  font-family: var(--font-number);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-arch-summary,
.hero-arch-forms,
.hero-arch-fixed {
  position: absolute;
  border: 1px solid rgba(19, 170, 177, 0.72);
  background: rgba(255, 255, 255, 0.18);
}

.hero-arch-summary {
  left: 18px;
  bottom: 18px;
  width: 34%;
  min-height: 150px;
  padding: 14px 16px;
}

.hero-arch-forms {
  left: 38%;
  top: 72px;
  width: 33%;
  min-height: 242px;
  padding: 14px 16px;
}

.hero-arch-fixed {
  right: 18px;
  top: 72px;
  width: 28%;
  min-height: 320px;
  padding: 14px 16px;
}

.hero-arch-stack {
  position: relative;
  height: 92px;
  margin-top: 10px;
}

.hero-arch-stack span {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 0;
}

.hero-arch-stack span:nth-child(1) {
  top: 0;
  left: 18px;
}

.hero-arch-stack span:nth-child(2) {
  top: 18px;
  left: 34px;
}

.hero-arch-stack span:nth-child(3) {
  top: 36px;
  left: 50px;
}

.hero-arch-card-list {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.hero-arch-card-list span {
  min-height: 64px;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-arch-db {
  position: absolute;
  left: 50%;
  bottom: 108px;
  width: 110px;
  height: 82px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(19, 170, 177, 0.9);
  border-radius: 50% / 18%;
  background:
    linear-gradient(180deg, #ffffff 0 78%, #eef7f8 78% 100%);
  color: var(--teal-deep);
  font-family: var(--font-number);
  font-size: 1.12rem;
  font-weight: 800;
}

.hero-arch-db::before,
.hero-arch-db::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  height: 18px;
  border: 1px solid rgba(19, 170, 177, 0.9);
  border-radius: 50%;
  background: #ffffff;
}

.hero-arch-db::before {
  top: -10px;
}

.hero-arch-db::after {
  bottom: -10px;
  background: #e3f4f5;
}

.hero-arch-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #18b1b7 0%, #169fa5 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(22, 168, 176, 0.18);
}

.hero-arch-pill-summary {
  left: 14px;
  bottom: 118px;
}

.hero-arch-pill-forms {
  left: 50%;
  top: 314px;
  transform: translateX(-50%);
}

.hero-arch-pill-link {
  right: 20px;
  bottom: 118px;
}

.hero-arch-side {
  display: grid;
  gap: 18px;
}

.hero-arch-fanclub {
  padding: 12px;
  border-radius: 18px;
}

.hero-arch-mini-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-arch-mini-links span {
  min-height: 72px;
  padding: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
}

.hero-arch-resfa {
  min-height: 136px;
  padding: 18px 16px;
  border-radius: 20px;
  display: grid;
  align-content: center;
  justify-items: center;
}

.hero-arch-resfa p {
  margin-bottom: 10px;
  color: #59626b;
  text-align: center;
}

.hero-arch-resfa strong {
  color: #5a5e63;
  font-family: var(--font-number);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
}

.hero-flow-note {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 700;
}

.hero-product-card {
  position: relative;
  z-index: 1;
  padding: 26px 24px 24px;
  border-radius: 30px;
  background: #ffffff;
}

.hero-product-card h2 {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.hero-product-card h2 span {
  margin-left: 10px;
  color: #8f9ba2;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-product-card p:last-of-type {
  margin-bottom: 18px;
  color: #587175;
}

.hero-metrics {
  padding: 36px 0 30px;
  background: linear-gradient(180deg, rgba(252, 254, 254, 0.92), rgba(255, 255, 255, 0.99));
}

.section {
  padding: 80px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.7), transparent 26%),
    linear-gradient(180deg, rgba(246, 250, 250, 0.98), rgba(239, 245, 245, 0.99));
}

.section-muted,
#issues,
.system-map-section,
.faq {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.54), transparent 22%),
    linear-gradient(180deg, rgba(242, 248, 247, 0.92), rgba(235, 242, 242, 0.99));
}

.hero-metrics::before,
.section::before,
.faq::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: var(--container);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(84, 180, 173, 0.08) 10%, rgba(34, 184, 177, 0.18) 50%, rgba(84, 180, 173, 0.08) 90%, transparent 100%);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.section-heading h2,
.workflow-copy h2,
.cta-panel h2 {
  margin-bottom: 12px;
  color: #4f5965;
  font-size: clamp(1.62rem, 3vw, 2.55rem);
  letter-spacing: -0.04em;
}

.section-heading p,
.workflow-copy p,
.feature-card p,
.issue-card p,
.benefit-card p,
.board-card span,
.faq-list p,
.map-card-copy {
  color: var(--ink-soft);
  line-height: 1.82;
}

.metrics-grid,
.feature-grid,
.issue-grid,
.benefit-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

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

.feature-grid,
.issue-grid,
.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

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

.metrics-card,
.feature-card,
.issue-card,
.benefit-card,
.board-card,
.faq-list details {
  position: relative;
  height: 100%;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.metrics-card:hover,
.feature-card:hover,
.issue-card:hover,
.benefit-card:hover,
.board-card:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 184, 177, 0.16);
  box-shadow: var(--card-shadow-hover);
}

.metrics-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border-color: rgba(126, 176, 189, 0.32);
}

.metrics-card::before,
.feature-card::before,
.issue-card::before,
.benefit-card::before,
.board-card::before,
.faq-list details::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 184, 177, 0.22), rgba(108, 216, 200, 0.08));
  opacity: 0.9;
}

.metrics-card:hover {
  border-color: rgba(107, 162, 176, 0.4);
}

.metrics-card h3,
.feature-card h3,
.issue-card h3,
.benefit-card h3,
.faq-list summary,
.map-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--font-heading);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.metrics-card h3 {
  color: #4f5965;
}

.feature-card,
.issue-card,
.benefit-card {
  padding: 22px 22px 20px;
  border-radius: 28px;
}

.feature-card {
  padding: 18px 20px 16px;
  border-color: rgba(104, 160, 150, 0.26);
}

.feature-card:hover {
  border-color: rgba(89, 149, 138, 0.34);
}

.feature-card h3 {
  margin-bottom: 8px;
  color: var(--teal-deep);
}

.issue-card {
  padding: 12px 18px 12px;
}

.issue-card h3 {
  margin-bottom: 6px;
}

.issue-index {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--teal);
  font-family: var(--font-number);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card ul,
.issue-card ul {
  padding-left: 1rem;
}

.feature-card ul {
  padding-left: 1.75rem;
}

.issue-card ul {
  padding-left: 1.8rem;
}

.feature-card li,
.issue-card li {
  margin-bottom: 6px;
}

.feature-card p {
  margin-bottom: 10px;
  line-height: 1.55;
}

.issue-card p {
  line-height: 1.56;
  margin-bottom: 0;
}

.feature-card li {
  margin-bottom: 4px;
  line-height: 1.5;
}

.issue-card li {
  line-height: 1.44;
  margin-bottom: 4px;
}

.workflow-panel {
  margin-top: 28px;
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 250, 249, 0.9));
  border: 1px solid rgba(28, 104, 103, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 32px rgba(18, 83, 84, 0.06);
}

.workflow-sequence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.workflow-step {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 249, 0.96));
  border: 1px solid rgba(28, 104, 103, 0.12);
  color: #547075;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 18px rgba(18, 83, 84, 0.05);
}

.workflow-step.is-active {
  position: relative;
  padding-inline: 22px;
  background: linear-gradient(180deg, #32c5bd, #17a9a2);
  border-color: rgba(17, 159, 155, 0.4);
  color: #ffffff;
  box-shadow:
    0 14px 28px rgba(34, 184, 177, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-1px) scale(1.04);
}

.workflow-step.is-active::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.workflow-arrow {
  width: 20px;
  height: 2px;
  background: rgba(34, 184, 177, 0.42);
  position: relative;
}

.workflow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(34, 184, 177, 0.68);
  border-right: 2px solid rgba(34, 184, 177, 0.68);
  transform: translateY(-50%) rotate(45deg);
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.board-card {
  padding: 22px;
  border-radius: 26px;
}

.board-card p {
  margin-bottom: 8px;
  color: var(--teal-deep);
  font-family: var(--font-number);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
}

.board-card-accent {
  border-color: rgba(34, 184, 177, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 248, 0.98));
}

.system-map-shell {
  margin-top: 24px;
  width: min(100%, 960px);
  margin-inline: auto;
  padding: 18px 16px 14px;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 249, 0.98));
  border: 1px solid rgba(17, 43, 69, 0.08);
  box-shadow: 0 18px 40px rgba(17, 43, 69, 0.06);
}

.system-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}

.map-column {
  display: grid;
  gap: 6px;
}

.map-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.map-card {
  position: relative;
  min-height: 84px;
  padding: 12px 12px 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  border: 3px solid rgba(17, 43, 69, 0.12);
  box-shadow: 0 12px 28px rgba(17, 43, 69, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.map-card-link .map-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid rgba(34, 184, 177, 0.42);
  border-right: 1.5px solid rgba(34, 184, 177, 0.42);
  opacity: 0.72;
  transform: rotate(45deg);
  transition: opacity 180ms ease, border-color 180ms ease;
}

.map-card-light {
  border-color: #c9dddc;
  background: #ffffff;
}

.map-card-link:hover .map-card,
.map-card-link:focus-visible .map-card {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(17, 43, 69, 0.1);
  border-color: rgba(45, 143, 227, 0.22);
}

.map-card-link:hover .map-card::after,
.map-card-link:focus-visible .map-card::after {
  opacity: 1;
  border-color: rgba(45, 143, 227, 0.72);
}

.map-card-link:focus-visible {
  outline: none;
}

.map-card h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.map-card-copy {
  margin-top: 6px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.map-card-muted {
  border-color: #a8b8ca;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.map-card-indigo {
  border-color: #3c6dd6;
}

.map-card-reweb {
  border-color: var(--teal);
  background: #ffffff;
  box-shadow:
    0 22px 42px rgba(34, 184, 177, 0.14),
    inset 0 0 0 1px rgba(34, 184, 177, 0.08);
  transform: translateY(-6px) scale(1.02);
}

.map-card-reweb .map-card-name,
.map-card-reweb h3 {
  color: var(--teal-deep);
}

.map-card-reweb .map-card-copy {
  color: #4d7773;
  font-weight: 700;
}

.map-card-sky {
  border-color: #65b6e5;
}

.map-focus-badge {
  position: absolute;
  top: -9px;
  right: 10px;
  display: inline-flex;
  min-height: 22px;
  padding: 0 9px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), #38c9c2);
  box-shadow: 0 12px 20px rgba(34, 184, 177, 0.2);
}

.map-card-cyan {
  border-color: #2aa4f0;
}

.map-card-purple {
  border-color: #8766e8;
}

.map-card-dashed {
  border-style: dashed;
  border-color: rgba(17, 43, 69, 0.28);
  background: linear-gradient(180deg, rgba(250, 251, 253, 0.96), rgba(255, 255, 255, 0.98));
}

.map-card-brown {
  border-color: #b8824f;
}

.map-status,
.map-focus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.map-status {
  margin-top: 8px;
  color: #6d8095;
  background: #dfe8f2;
}

.map-link-label {
  position: relative;
  margin: 0;
  min-height: 24px;
  padding-top: 8px;
  color: #7e90a4;
  font-size: 0.7rem;
  text-align: center;
}

.map-link-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 8px;
  background: rgba(126, 144, 164, 0.64);
  transform: translateX(-50%);
}

.map-spacer {
  min-height: 24px;
}

.map-card-wide {
  width: min(38%, 420px);
  margin-top: 6px;
}

.map-focus-note {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.98));
  border: 1px solid rgba(34, 184, 177, 0.14);
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.map-focus-note strong {
  color: var(--teal-deep);
}

.faq {
  padding-bottom: 60px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-list details {
  padding: 18px 22px;
  border-radius: var(--radius-lg);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding-right: 40px;
  margin-bottom: 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--teal);
  font-family: var(--font-number);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 10px;
  margin-bottom: 0;
}

.cta-section {
  padding: 0 0 80px;
}

.cta-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 18%, rgba(108, 216, 200, 0.1), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(108, 169, 232, 0.1), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  color: var(--navy);
  border: 1px solid rgba(34, 184, 177, 0.12);
  box-shadow: 0 18px 38px rgba(18, 83, 84, 0.08);
}

.cta-panel h2 {
  margin-bottom: 0;
  color: var(--navy);
  text-align: center;
}

.reci-products-site-footer {
  margin-top: 12px;
  background: #353a40;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(20, 26, 36, 0.16);
}

.reci-products-footer-nav-band {
  background: linear-gradient(135deg, #2d62a8 0%, #234d85 100%);
}

.reci-products-footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reci-products-footer-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 12px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease;
}

.reci-products-footer-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.reci-products-footer-nav a + a {
  position: relative;
}

.reci-products-footer-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-50%);
}

.reci-products-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.reci-products-footer-company {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.9rem;
}

.reci-products-footer-company:hover {
  color: #fff;
}

.reci-products-footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .hero-visual {
    max-width: 400px;
  }

  .hero-mini-card {
    min-height: 138px;
  }

  .hero-mini-core {
    min-height: 158px;
  }

  .hero-system-illustration {
    grid-template-columns: 1fr;
  }

  .hero-arch-core {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-arch-core::before,
  .hero-arch-core::after {
    display: none;
  }

  .hero-arch-summary,
  .hero-arch-forms,
  .hero-arch-fixed,
  .hero-arch-db,
  .hero-arch-pill {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
  }

  .hero-arch-summary,
  .hero-arch-forms,
  .hero-arch-fixed {
    min-height: auto;
  }

  .hero-arch-stack {
    height: 126px;
  }

  .hero-arch-db {
    margin-inline: auto;
  }

  .hero-arch-side {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .menu-button {
    display: inline-block;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(28, 104, 103, 0.08);
    box-shadow: 0 20px 40px rgba(18, 83, 84, 0.12);
  }

  .header-panel.is-open {
    display: flex;
  }

  .global-nav,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .global-nav a {
    padding: 6px 0;
  }

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

  .system-map-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: center;
  }

  .hero-arch-side {
    grid-template-columns: 1fr;
  }

  .hero-visual::before {
    width: 108px;
    height: 108px;
    top: 8px;
    right: -18px;
  }

  .hero-visual::after {
    width: 72px;
    height: 72px;
    right: 10px;
    bottom: 42px;
  }

  .hero {
    padding-top: 72px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .map-card-wide {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-mini-canvas {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .hero-mini-canvas::before {
    left: 0;
    right: 0;
    width: auto;
    height: 176px;
  }

  .hero-mini-canvas::after {
    left: 50%;
    top: 118px;
    width: 160px;
    height: 160px;
    transform: translateX(-50%);
  }

  .hero-mini-sites,
  .hero-mini-sales,
  .hero-mini-core {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-mini-core {
    grid-column: 1 / -1;
    min-height: 152px;
  }

  .hero-mini-card {
    min-height: 126px;
    padding: 16px;
  }

  .hero-mini-product {
    font-size: 1.9rem;
  }

  .hero-mini-connector {
    display: none;
  }

  .workflow-arrow {
    display: none;
  }

  .workflow-step {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-flow-shell,
  .system-map-shell,
  .cta-panel {
    padding-inline: 18px;
  }

  .hero-visual::before,
  .hero-visual::after {
    opacity: 0.7;
  }

  .footer-nav,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

/* LP footer override */
.reci-products-site-footer {
  margin-top: 12px;
  background: #353a40;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(20, 26, 36, 0.16);
}

.reci-products-site-footer .reci-products-footer-nav-band {
  display: none;
}

.reci-products-site-footer .reci-products-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.reci-products-site-footer .reci-products-footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 16px;
}

.reci-products-site-footer .reci-products-footer-meta a {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
  font-size: 0.78rem;
  font-weight: 700;
  transition: opacity 180ms ease;
}

.reci-products-site-footer .reci-products-footer-meta a:hover,
.reci-products-site-footer .reci-products-footer-meta a:focus-visible {
  opacity: 0.74;
}

.reci-products-site-footer .reci-products-footer-company {
  margin: 0;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.84rem;
}

.reci-products-site-footer .reci-products-footer-copy {
  margin: 0;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  text-align: right;
}

@media (max-width: 860px) {
  .reci-products-site-footer .reci-products-footer-grid {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 10px;
    gap: 6px;
  }

  .reci-products-site-footer .reci-products-footer-meta {
    gap: 6px 14px;
  }

  .reci-products-site-footer .reci-products-footer-copy {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .reci-products-site-footer .reci-products-footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}