:root {
  --navy-950: #07182d;
  --navy-900: #0b2341;
  --navy-800: #12375f;
  --navy-700: #18528a;
  --sky-500: #56b5e8;
  --sky-300: #a9dcf5;
  --sky-100: #eaf6fc;
  --slate-50: #f6f9fc;
  --slate-100: #eef3f7;
  --slate-200: #dce5ec;
  --slate-300: #ccd9e4;
  --slate-500: #5f7184;
  --text: #273646;
  --white: #fff;
  --orange: #c4510b;
  --orange-dark: #a94307;
  --green: #1d7a55;
  /* Existing member pages use these legacy variable names. */
  --ink: var(--navy-950);
  --blue: var(--navy-700);
  --sky: var(--sky-100);
  --line: var(--slate-200);
  --muted: var(--slate-500);
  --gold: #d09a2f;
  --shadow-sm: 0 8px 24px rgba(9, 35, 65, .08);
  --shadow-md: 0 14px 38px rgba(9, 35, 65, .12);
  --shadow-lg: 0 24px 65px rgba(9, 35, 65, .16);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Yu Gothic UI", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 800px; }
.skip {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 0 0 8px 8px;
}
.skip:focus { top: 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--navy-700);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--sky-300); }
.section {
  padding: 96px 0;
  position: relative;
}
.section--tint { background: var(--slate-50); }
.section--sky { background: var(--sky-100); }
.section--navy { color: var(--white); background: var(--navy-900); }
.section-heading { max-width: 920px; margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2,
.intro h2,
.company h2,
.contact-panel h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 1.35;
  letter-spacing: .015em;
  text-wrap: balance;
}
.hero h1,
.home-product-copy h2,
.client-intro h2,
.login-guide-title,
.value-card h3,
.showcase-copy h3,
.support-card h3 {
  text-wrap: balance;
}
.heading-line { display: inline-block; }
.section-heading p:last-child,
.lead { color: var(--slate-500); }
.section-heading p:last-child { margin: 14px 0 0; font-size: 1.02rem; }
.section--navy .section-heading h2,
.section--navy .section-heading p:last-child { color: var(--white); }
.section--navy .section-heading p:last-child { opacity: .76; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  color: var(--navy-700);
  font-size: 0.95rem;
  font-weight: 800;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--sky-500);
}
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 21px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: .92rem;
  line-height: 1.4;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.site-nav a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(86, 181, 232, .42);
  outline-offset: 3px;
}
.button--cta {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 9px 24px rgba(196, 81, 11, .24);
}
.button--cta:hover { background: var(--orange-dark); }
.button--navy { color: var(--white); background: var(--navy-800); }
.button--navy:hover { background: var(--navy-950); }
.button--ghost { color: var(--navy-900); border-color: #a7b9c9; background: var(--white); }
.button--light { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-700);
  font-weight: 800;
  text-decoration: none;
}
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(220,229,236,.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: .02em;
  text-decoration: none;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 9px;
  font-size: .78rem;
  letter-spacing: .06em;
}
.logo small {
  display: block;
  margin-top: 4px;
  color: var(--slate-500);
  font-size: .55rem;
  letter-spacing: .1em;
}
.site-nav { display: flex; align-items: center; gap: 21px; }
.site-nav a {
  color: var(--navy-900);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:not(.nav-cta):hover { color: var(--navy-700); }
.site-nav .nav-cta {
  padding: 9px 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: 7px;
}
.site-nav .member-link {
  padding-left: 17px;
  border-left: 1px solid var(--slate-200);
}
.menu-button {
  display: none;
  min-width: 44px;
  min-height: 42px;
  padding: 7px 10px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 7px;
}

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-home {
  background:
    radial-gradient(circle at 82% 15%, rgba(86,181,232,.2), transparent 28%),
    linear-gradient(128deg, #f9fcff 0%, #eef7fc 57%, #e4f3fb 100%);
}
.hero-home::before,
.hero-product::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -270px;
  bottom: -360px;
  border: 1px solid rgba(24,82,138,.12);
  border-radius: 50%;
}
.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 54px;
  padding: 64px 0;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.45rem, 5vw, 3.8rem);
  line-height: 1.22;
  letter-spacing: .01em;
}
.hero h1 em { color: var(--navy-700); font-style: normal; }
.hero-copy > p:not(.eyebrow):not(.kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--slate-500);
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.trial-scope {
  margin-top: 18px;
  padding: 15px 17px;
  color: var(--navy-900);
  background: rgba(255,255,255,.82);
  border: 1px solid #cbdce8;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.trial-scope strong { display: block; font-size: .9rem; }
.trial-scope p { margin: 4px 0 0; color: var(--slate-500); font-size: .8rem; line-height: 1.65; }
.trial-scope small { display: block; margin-top: 3px; color: var(--navy-700); font-size: .72rem; line-height: 1.6; }
.hero-product .trial-scope {
  color: var(--white);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
  box-shadow: none;
}
.hero-product .trial-scope p { color: #d4e1ec; }
.hero-product .trial-scope small { color: var(--sky-300); }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0 0;
  border-top: 1px solid #cbdce8;
  border-bottom: 1px solid #cbdce8;
}
.hero-metrics div { padding: 15px 14px 15px 0; }
.hero-metrics div + div { padding-left: 14px; border-left: 1px solid #cbdce8; }
.hero-metrics dt { color: var(--slate-500); font-size: .72rem; }
.hero-metrics dd {
  margin: 2px 0 0;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 850;
}
.hero-stage { position: relative; min-height: 455px; }
.hero-stage--illustration { overflow: hidden; }
.hero-illustration {
  position: absolute;
  width: 108%;
  max-width: none;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
.screen-frame {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #cadbe8;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.screen-frame::before {
  content: "";
  display: block;
  height: 28px;
  background:
    radial-gradient(circle at 18px 14px, #ff756d 0 4px, transparent 4.5px),
    radial-gradient(circle at 34px 14px, #f4c45e 0 4px, transparent 4.5px),
    radial-gradient(circle at 50px 14px, #55bc84 0 4px, transparent 4.5px),
    #edf3f7;
}
.screen-frame img { width: 100%; height: auto; }
.hero-screen-main { position: absolute; inset: 25px 0 auto 38px; transform: rotate(1.2deg); }
.hero-screen-sub {
  position: absolute;
  width: 70%;
  right: -15px;
  bottom: 6px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 48px rgba(7,24,45,.22);
}
.screen-note {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 58px;
  max-width: 215px;
  padding: 13px 15px;
  color: var(--navy-900);
  background: var(--white);
  border-left: 4px solid var(--sky-500);
  border-radius: 0 9px 9px 0;
  box-shadow: var(--shadow-sm);
  font-size: .78rem;
  font-weight: 800;
}
.trust-strip { padding: 20px 0; color: var(--white); background: var(--navy-900); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; }
.trust-strip span { font-size: .88rem; font-weight: 700; }
.trust-strip span::before { content: "✓"; margin-right: 8px; color: var(--sky-300); }

/* Cards and summaries */
.value-grid,
.challenge-grid,
.feature-grid,
.reason-grid,
.support-grid,
.flow-grid,
.home-summary-grid {
  display: grid;
  gap: 20px;
}
.value-grid { grid-template-columns: repeat(3, 1fr); }
.value-card,
.challenge-card,
.feature-card,
.reason-card,
.support-card,
.flow-card,
.summary-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
}
.value-card { padding: 28px; }
.value-card .num,
.flow-card .num {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--white);
  background: var(--navy-700);
  border-radius: 50%;
  font-size: .77rem;
  font-weight: 850;
}
.value-card h3 { margin: 17px 0 7px; color: var(--navy-950); font-size: 1.08rem; }
.value-card p { margin: 0; color: var(--slate-500); font-size: .91rem; }
.home-product {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 58px;
}
.home-product-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.34;
}
.home-product-copy p { color: var(--slate-500); }
.mini-checks { display: grid; gap: 8px; padding: 0; margin: 23px 0 27px; list-style: none; }
.mini-checks li { color: var(--navy-800); font-weight: 700; }
.mini-checks li::before { content: "✓"; margin-right: 9px; color: var(--green); }
.home-screen-stack { position: relative; padding: 30px 0 35px 30px; }
.home-screen-stack::before {
  content: "";
  position: absolute;
  inset: 0 42px 0 0;
  background: var(--sky-100);
  border-radius: var(--radius-lg);
}
.home-screen-stack .screen-frame { position: relative; z-index: 1; }
.home-screen-stack .screen-frame + .screen-frame {
  width: 68%;
  margin: -26px -12px 0 auto;
}
.home-summary-grid { grid-template-columns: 1.2fr .8fr .8fr; }
.summary-card { padding: 26px; }
.summary-card--navy { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.summary-card h3 { margin: 0 0 7px; color: var(--navy-950); }
.summary-card--navy h3 { color: var(--white); }
.summary-card p { margin: 0; color: var(--slate-500); font-size: .9rem; }
.summary-card--navy p { color: #c5d6e6; }
.price-inline { margin: 12px 0 5px; color: var(--navy-950); font-size: 1.7rem; font-weight: 900; }
.price-inline span { font-size: .85rem; font-weight: 600; }
.summary-card--navy .price-inline { color: var(--white); }
.client-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 46px;
  align-items: start;
}
.client-intro h2 { margin: 0; color: var(--navy-950); font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.35; }
.client-intro p { color: var(--slate-500); }
.client-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--slate-200);
}
.client-list li {
  padding: 15px 3px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--slate-200);
  font-weight: 700;
}
.client-list small { color: var(--slate-500); font-size: .76rem; font-weight: 500; }
.fineprint { color: var(--slate-500); font-size: .75rem; line-height: 1.65; }
.flow-grid { grid-template-columns: repeat(4, 1fr); }
.flow-card { position: relative; padding: 25px 23px; }
.flow-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -17px;
  top: 31px;
  z-index: 2;
  color: var(--sky-500);
  font-weight: 900;
}
.flow-card h3 { margin: 14px 0 5px; color: var(--navy-950); font-size: 1rem; }
.flow-card p { margin: 0; color: var(--slate-500); font-size: .86rem; }
.company-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 38px;
  background: var(--sky-100);
  border-radius: var(--radius);
}
.company-teaser h2 { margin: 0; color: var(--navy-950); font-size: 1.45rem; }
.company-teaser p { max-width: 720px; margin: 8px 0 0; color: var(--slate-500); font-size: .91rem; }
.company-teaser + .section-heading { margin-top: 52px; }
.news-list { border-top: 1px solid var(--slate-200); }
.news-list article {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 18px 3px;
  border-bottom: 1px solid var(--slate-200);
}
.news-list time { color: var(--navy-700); font-weight: 800; }
.news-list p { margin: 0; }

/* Site architecture pages */
.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(86,181,232,.24), transparent 34%),
    linear-gradient(126deg, var(--navy-950), var(--navy-800));
}
.page-hero-inner { padding: 72px 0 76px; }
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.25;
}
.page-hero p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  color: #d3dfeb;
  font-size: 1.02rem;
}
.product-card-grid,
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card,
.portal-card {
  position: relative;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.product-card--primary {
  border-color: #a8d7ef;
  box-shadow: 0 20px 50px rgba(24,82,138,.13);
}
.product-card-label {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--navy-700);
  background: var(--sky-100);
  border-radius: 999px;
  font-size: .73rem;
  font-weight: 850;
}
.product-card h2 {
  margin: 19px 0 0;
  color: var(--navy-950);
  font-size: 2.65rem;
  line-height: 1;
}
.product-name {
  margin: 8px 0 20px;
  color: var(--navy-700);
  font-weight: 800;
}
.product-card > p:not(.product-name),
.portal-card p { color: var(--slate-500); }
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}
.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
}
.product-comparison {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
}
.product-comparison th,
.product-comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: top;
}
.product-comparison thead th {
  color: var(--white);
  background: var(--navy-900);
}
.product-comparison tbody th {
  width: 22%;
  color: var(--navy-900);
  background: var(--slate-50);
}
.product-comparison tr:last-child th,
.product-comparison tr:last-child td { border-bottom: 0; }
.portal-number {
  color: var(--sky-500);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.portal-card h3 {
  margin: 12px 0 8px;
  color: var(--navy-950);
  font-size: 1.35rem;
}
.news-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
}
.news-heading-row .section-heading { margin-bottom: 20px; }
.cta-band {
  padding: 68px 0;
  color: var(--white);
  background: var(--navy-900);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.cta-band p:last-child { margin: 8px 0 0; color: #c4d3e1; }
.product-detail-hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 64px;
  padding: 72px 0;
}
.product-subtitle {
  margin: 6px 0 0 !important;
  color: var(--sky-300) !important;
  font-size: 1.15rem !important;
  font-weight: 800;
}
.position-card,
.notice-card {
  padding: 30px;
  border-radius: var(--radius);
}
.position-card {
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
}
.position-card span {
  display: block;
  color: var(--sky-300);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
}
.position-card strong { display: block; margin-top: 12px; font-size: 1.35rem; }
.position-card p { margin: 10px 0 0; color: #d3dfeb; }
.detail-columns {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 64px;
}
.detail-columns h2 { margin: 0 0 24px; color: var(--navy-950); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.spec-list { margin: 0; border-top: 1px solid var(--slate-200); }
.spec-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--slate-200);
}
.spec-list dt { color: var(--navy-900); font-weight: 800; }
.spec-list dd { margin: 0; color: var(--slate-500); }
.notice-card { background: var(--sky-100); }
.notice-card h3 { margin: 0; color: var(--navy-950); }
.notice-card p { margin: 10px 0 0; color: var(--slate-500); }
.pricing-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.center-actions { margin-top: 36px; text-align: center; }
.news-list--full article { grid-template-columns: 130px 1fr; padding: 25px 3px; }
.news-list--full h2 { margin: 0; color: var(--navy-950); font-size: 1.08rem; }
.news-list--full p { margin-top: 5px; color: var(--slate-500); }
.contact-panel--page { padding-top: 80px; }

/* Product page */
.hero-product {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(86,181,232,.26), transparent 31%),
    linear-gradient(126deg, var(--navy-950), var(--navy-800));
}
.hero-product .hero-grid { min-height: 585px; }
.hero-product h1,
.hero-product .hero-copy > p:not(.eyebrow):not(.kicker) { color: var(--white); }
.hero-product h1 { font-size: clamp(2.45rem, 4vw, 3.05rem); }
.hero-product h1 em { color: var(--sky-300); }
.hero-product .hero-copy > p:not(.eyebrow):not(.kicker) { opacity: .79; }
.hero-product .hero-metrics { border-color: rgba(255,255,255,.22); }
.hero-product .hero-metrics div + div { border-left-color: rgba(255,255,255,.22); }
.hero-product .hero-metrics dt { color: #b9cde0; }
.hero-product .hero-metrics dd { color: var(--white); }
.hero-product .screen-frame { border-color: rgba(255,255,255,.3); }
.challenge-grid { grid-template-columns: repeat(2, 1fr); }
.challenge-card { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 25px; }
.challenge-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy-700);
  background: var(--sky-100);
  border-radius: 12px;
  font-weight: 900;
}
.challenge-card h3 { margin: 0; color: var(--navy-950); font-size: 1.02rem; }
.challenge-card p { margin: 7px 0 0; color: var(--slate-500); font-size: .9rem; }
.solution-line {
  display: inline-block;
  margin-top: 13px;
  padding-top: 11px;
  color: var(--green);
  border-top: 1px solid var(--slate-200);
  font-size: .84rem;
  font-weight: 800;
}
.showcase-list { display: grid; gap: 74px; }
.showcase-item {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 58px;
}
.showcase-item:nth-child(even) { grid-template-columns: .9fr 1.1fr; }
.showcase-item:nth-child(even) .showcase-visual { order: 2; }
.showcase-copy .step {
  color: var(--sky-500);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.showcase-copy h3 { margin: 8px 0 13px; color: var(--white); font-size: clamp(1.45rem, 2.5vw, 2.1rem); line-height: 1.4; }
.showcase-copy p { color: #bfd1e2; }
.showcase-points { padding: 0; margin: 20px 0 0; list-style: none; }
.showcase-points li { margin: 8px 0; color: var(--white); font-size: .9rem; }
.showcase-points li::before { content: "✓"; margin-right: 9px; color: var(--sky-300); }
.showcase-visual { position: relative; padding: 16px; }
.showcase-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(169,220,245,.25);
  border-radius: 22px;
  transform: rotate(-2deg);
}
.showcase-visual .screen-frame { position: relative; z-index: 1; }
.showcase-visual button.screen-frame {
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}
.callout {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 190px;
  padding: 9px 11px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-size: .73rem;
  font-weight: 800;
  line-height: 1.45;
}
.callout::before {
  content: attr(data-num);
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
}
.callout--top { right: -10px; top: -2px; }
.callout--bottom { left: -10px; bottom: 0; }
.output-carousel {
  margin-top: 42px;
}
.output-carousel-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.output-carousel-viewport::-webkit-scrollbar { display: none; }
.output-carousel-viewport:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 5px;
}
.output-carousel-track {
  display: flex;
  gap: 0;
}
.report-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
}
.report-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.report-slide.is-active {
  box-shadow: var(--shadow-md);
}
.report-card-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  color: inherit;
  background: var(--slate-100);
  border: 0;
  border-radius: 0;
  text-align: left;
}
.report-card-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.zoom-trigger:focus-visible {
  outline: 4px solid var(--sky-500);
  outline-offset: -4px;
}
.zoom-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(7,24,45,.84);
  border-radius: 7px;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(6px);
}
.zoom-label::before {
  content: "＋";
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
}
.report-card figcaption { padding: 19px; }
.report-card h3 { margin: 0 0 4px; color: var(--navy-950); font-size: 1rem; }
.report-card p { margin: 0; color: var(--slate-500); font-size: .84rem; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.carousel-arrow:hover { color: var(--white); background: var(--navy-800); border-color: var(--navy-800); }
.carousel-arrow:focus-visible,
.carousel-dot:focus-visible { outline: 3px solid var(--sky-500); outline-offset: 3px; }
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: var(--slate-300);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.carousel-dot.is-active {
  width: 25px;
  background: var(--navy-800);
  border-radius: 99px;
}
.carousel-position {
  margin: 8px 0 0;
  color: var(--slate-500);
  font-size: .76rem;
  font-weight: 700;
  text-align: center;
}
.reason-grid { grid-template-columns: repeat(3, 1fr); }
.reason-card { padding: 28px; box-shadow: var(--shadow-sm); }
.reason-card strong { color: var(--navy-700); font-size: .78rem; letter-spacing: .1em; }
.reason-card h3 { margin: 8px 0; color: var(--navy-950); font-size: 1.08rem; }
.reason-card p { margin: 0; color: var(--slate-500); font-size: .9rem; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card { padding: 25px; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(24, 82, 138, .34);
  border-radius: 12px;
  background: var(--sky-100);
}
.feature-icon::before {
  width: 24px;
  height: 24px;
  content: "";
  background: var(--navy-700);
  -webkit-mask: var(--feature-icon) center / contain no-repeat;
  mask: var(--feature-icon) center / contain no-repeat;
}
.feature-icon--calculator { --feature-icon: url("icons/calculator.svg"); }
.feature-icon--table { --feature-icon: url("icons/table-2.svg"); }
.feature-icon--compare { --feature-icon: url("icons/columns-3.svg"); }
.feature-icon--home { --feature-icon: url("icons/house.svg"); }
.feature-icon--customer { --feature-icon: url("icons/contact-round.svg"); }
.feature-icon--devices { --feature-icon: url("icons/monitor-smartphone.svg"); }
.feature-card h3 { margin: 16px 0 7px; color: var(--navy-950); font-size: 1rem; }
.feature-card p { margin: 0; color: var(--slate-500); font-size: .87rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.plan {
  position: relative;
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
}
.plan--featured { border: 2px solid var(--navy-700); box-shadow: var(--shadow-lg); }
.plan-badge {
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  padding: 4px 14px;
  color: var(--white);
  background: var(--navy-700);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 850;
}
.plan h3 { margin: 0; color: var(--navy-950); font-size: 1.2rem; }
.plan .plan-for { margin: 2px 0 18px; color: var(--slate-500); font-size: .84rem; }
.plan-price { color: var(--navy-950); font-size: 2rem; font-weight: 900; line-height: 1.3; }
.plan-price small { color: var(--slate-500); font-size: .82rem; font-weight: 600; }
.per-user {
  margin: 12px 0 18px;
  padding: 10px 12px;
  color: var(--navy-800);
  background: var(--sky-100);
  border-radius: 7px;
  font-size: .86rem;
  font-weight: 800;
}
.plan ul { padding: 0; margin: 0 0 22px; list-style: none; }
.plan li { padding: 8px 0; border-bottom: 1px solid var(--slate-200); font-size: .86rem; }
.plan li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }
.plan .button { width: 100%; }
.clarity-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: #ccd9e4;
  border: 1px solid #ccd9e4;
  border-radius: 12px;
}
.clarity-box div { padding: 19px; background: var(--slate-50); }
.clarity-box strong { display: block; color: var(--navy-900); }
.clarity-box span { display: block; margin-top: 4px; color: var(--slate-500); font-size: .82rem; }
.support-grid { grid-template-columns: repeat(2, 1fr); }
.support-card { padding: 27px; }
.support-card h3 { margin: 0 0 14px; color: var(--navy-950); font-size: 1.06rem; }
.support-card ul { padding-left: 1.2em; margin: 0; color: var(--slate-500); font-size: .9rem; }
.support-table { margin-top: 24px; border: 1px solid var(--slate-200); border-radius: 12px; overflow: hidden; }
.support-row {
  display: grid;
  grid-template-columns: 135px 1fr;
  border-bottom: 1px solid var(--slate-200);
}
.support-row:last-child { border-bottom: 0; }
.support-row strong { padding: 15px 18px; color: var(--navy-900); background: var(--sky-100); }
.support-row span { padding: 15px 18px; color: var(--slate-500); font-size: .88rem; }
.faq-list { max-width: 860px; margin: 38px auto 0; }
.faq-list details {
  margin: 10px 0;
  padding: 0 20px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: var(--white);
}
.faq-list summary {
  position: relative;
  padding: 18px 34px 18px 0;
  color: var(--navy-950);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "＋"; position: absolute; right: 0; color: var(--navy-700); font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 0 19px; color: var(--slate-500); font-size: .9rem; }

/* Contact */
.contact-panel {
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 0, rgba(86,181,232,.22), transparent 40%),
    var(--navy-950);
}
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 58px; }
.contact-panel h2 { color: var(--white); }
.contact-panel .lead { color: #bfd0e0; }
.contact-points { padding: 0; margin: 27px 0 0; list-style: none; }
.contact-points li { margin: 9px 0; color: #dbe7f1; font-size: .9rem; }
.contact-points li::before { content: "✓"; margin-right: 9px; color: var(--sky-300); }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  padding: 30px;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-field { display: grid; gap: 6px; }
.form-field--wide { grid-column: 1 / -1; }
.form-fieldset { padding: 0; margin: 0; border: 0; }
.form-field label,
.form-label { color: var(--navy-900); font-size: .84rem; font-weight: 800; }
.required { margin-left: 5px; color: #b94425; font-size: .72rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #b9c8d5;
  border-radius: 7px;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.choice {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid var(--slate-200);
  border-radius: 7px;
  font-size: .84rem;
}
.choice input { width: auto; accent-color: var(--navy-700); }
.form-note { margin: 0; color: var(--slate-500); font-size: .74rem; }
.contact-form .button { justify-self: start; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status {
  padding: 90px 0;
  text-align: center;
}
.form-status-card {
  max-width: 660px;
  margin: auto;
  padding: 42px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-status-card h1 { margin: 0 0 14px; color: var(--navy-950); font-size: 2rem; }
.form-status-card p { color: var(--slate-500); }

/* Full-resolution screenshot viewer */
.image-lightbox {
  width: min(96vw, 1680px);
  max-width: none;
  height: min(94vh, 1100px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  background: var(--slate-100);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}
.image-lightbox::backdrop { background: rgba(4,13,24,.78); backdrop-filter: blur(3px); }
.lightbox-toolbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 13px 10px 20px;
  color: var(--white);
  background: var(--navy-950);
}
.lightbox-toolbar p {
  margin: 0;
  overflow: hidden;
  font-size: .95rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lightbox-actions { display: flex; align-items: center; gap: 8px; }
.lightbox-actions button,
.lightbox-original {
  min-height: 38px;
  padding: 8px 11px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
}
.lightbox-actions button:hover,
.lightbox-original:hover { background: rgba(255,255,255,.1); }
.lightbox-close { background: var(--navy-800) !important; }
.lightbox-canvas {
  height: calc(100% - 62px);
  overflow: auto;
  padding: 22px;
  background:
    linear-gradient(45deg, #e8edf1 25%, transparent 25%),
    linear-gradient(-45deg, #e8edf1 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e8edf1 75%),
    linear-gradient(-45deg, transparent 75%, #e8edf1 75%),
    #f5f7f9;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
}
.lightbox-canvas img {
  width: auto;
  max-width: none;
  height: auto;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(7,24,45,.16);
}
.image-lightbox.is-fit .lightbox-canvas img { width: 100%; max-width: 100%; }

/* Member login guide */
.login-guide-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
  gap: 64px;
}
.login-guide-title {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  line-height: 1.4;
}
.login-button { margin: 25px 0 13px; }
.login-help {
  padding: 30px;
  background: var(--sky-100);
  border-top: 4px solid var(--navy-700);
  border-radius: 0 0 12px 12px;
}
.login-help h2 { margin: 0 0 13px; color: var(--navy-950); font-size: 1.25rem; }
.login-help ul { padding-left: 1.2em; margin: 0 0 20px; color: var(--slate-500); font-size: .9rem; }
.login-help li + li { margin-top: 9px; }

/* Company and member compatibility */
.page-title {
  padding: 76px 0;
  background: linear-gradient(120deg, var(--slate-50), var(--sky-100));
}
.page-title h1,
.member-hero h1 { margin: 0; color: var(--navy-950); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.3; }
.page-title p:not(.eyebrow) { color: var(--slate-500); }
.company-grid,
.member-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 64px; }
.signature { margin-top: 26px; color: var(--navy-900); font-weight: 800; }
.company-profile,
.member-side {
  padding: 30px;
  background: var(--sky-100);
  border-top: 4px solid var(--navy-700);
}
.company-profile h2,
.company-profile h3,
.member-side h2 { margin: 0 0 15px; color: var(--navy-950); }
.company-profile dl { margin: 0; }
.company-profile dl > div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid #c6ddea;
}
.company-profile dt { color: var(--navy-900); font-size: .84rem; font-weight: 800; }
.company-profile dd { margin: 0; color: var(--slate-500); font-size: .9rem; }
.member-hero { padding: 80px 0; color: var(--white); background: linear-gradient(120deg, var(--navy-950), var(--navy-700)); }
.member-hero h1 { color: var(--white); }
.member-hero p:not(.eyebrow) { color: #d4e1ec; }
.member-side a {
  display: block;
  padding: 13px 0;
  color: var(--navy-900);
  border-top: 1px solid #c6ddea;
  text-decoration: none;
}
.member-side strong,
.member-side span { display: block; }
.member-side span { color: var(--slate-500); font-size: .8rem; }
.compact { padding: 65px 0; }
.notice-box,
.support-info,
.download-card { padding: 27px; border-radius: 10px; }
.notice-box { background: #fff8e8; border-left: 4px solid #d09a2f; }
.support-info { margin-top: 26px; border: 1px solid var(--slate-200); }
.download-card { margin-top: 25px; color: var(--white); background: var(--navy-900); }
.download-card h2 { margin: 5px 0 17px; }
.download-card dl { margin: 0 0 23px; }
.download-card dl > div { display: grid; grid-template-columns: 105px 1fr; padding: 8px 0; border-top: 1px solid rgba(255,255,255,.18); }
.download-card dt { color: var(--sky-300); }
.download-card dd { margin: 0; }
.dark { margin-left: 16px; }
.back-link a { color: var(--navy-700); }

/* Footer */
footer { padding: 30px 0; color: #c5d4e3; background: var(--navy-950); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; }
.footer-inner .logo { color: var(--white); }
.footer-inner .logo small { color: #9eb1c3; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; }
.footer-links a { color: #dbe6f0; font-size: .82rem; text-decoration: none; }
.footer-copy { display: block; width: 100%; color: #8299ad; font-size: .72rem; text-align: right; }

@media (max-width: 980px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: .78rem; }
  .hero-grid { gap: 34px; }
  .hero-stage { min-height: 390px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .plan--featured { order: -1; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(100% - 34px, 1160px); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 68px; }
  .menu-button { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 19px 22px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 11px 4px; font-size: .9rem; border-bottom: 1px solid var(--slate-100); }
  .site-nav .nav-cta { margin-top: 10px; padding: 11px 13px; text-align: center; }
  .site-nav .member-link { padding-left: 4px; border-left: 0; }
  .site-nav.always {
    display: flex;
    position: static;
    padding: 0;
    flex-flow: row wrap;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-nav.always a { padding: 4px 0; border: 0; font-size: .75rem; }
  .header-inner:has(.always) { padding: 12px 0; align-items: flex-start; }
  .hero-grid,
  .home-product,
  .client-panel,
  .product-detail-hero,
  .detail-columns,
  .showcase-item,
  .showcase-item:nth-child(even),
  .contact-grid,
  .company-grid,
  .member-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 58px 0 64px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-stage { min-height: 450px; max-width: 620px; width: 100%; margin: 8px auto 0; }
  .home-product { gap: 38px; }
  .home-screen-stack { padding-left: 16px; }
  .home-summary-grid,
  .reason-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .product-card-grid,
  .portal-grid,
  .pricing-summary { grid-template-columns: 1fr; }
  .product-detail-hero { min-height: auto; gap: 32px; padding: 58px 0 64px; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; gap: 24px; }
  .news-heading-row { align-items: flex-start; flex-direction: column; gap: 0; }
  .client-panel { gap: 28px; }
  .challenge-grid { grid-template-columns: 1fr; }
  .showcase-item:nth-child(even) .showcase-visual { order: 0; }
  .showcase-item { gap: 28px; }
  .showcase-list { gap: 58px; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-card:nth-child(2)::after { display: none; }
  .clarity-box { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .company-teaser { align-items: flex-start; flex-direction: column; gap: 20px; }
  .contact-grid { gap: 35px; }
  .login-guide-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-inner { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .footer-copy { text-align: left; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 58px 0; }
  .section-heading h2,
  .intro h2,
  .company h2,
  .home-product-copy h2,
  .client-intro h2,
  .contact-panel h2 { font-size: 1.7rem; }
  .logo { font-size: .88rem; }
  .logo-mark { width: 39px; height: 39px; flex-basis: 39px; }
  .hero-grid { padding-top: 46px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-product h1 { font-size: 1.8rem; line-height: 1.3; }
  .hero-copy > p:not(.eyebrow):not(.kicker) { font-size: .96rem; }
  .hero-actions .button { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics div { padding: 10px 0; }
  .hero-metrics div + div { padding-left: 0; border-left: 0; border-top: 1px solid #cbdce8; }
  .hero-product .hero-metrics div + div { border-top-color: rgba(255,255,255,.22); }
  .hero-stage { min-height: 350px; }
  .hero-screen-main { inset: 16px 0 auto 6px; }
  .hero-screen-sub { width: 76%; right: -5px; bottom: 20px; }
  .screen-note { left: -5px; bottom: 35px; max-width: 180px; }
  .trust-strip .container { justify-content: flex-start; gap: 7px; }
  .trust-strip span { width: 100%; }
  .home-screen-stack .screen-frame + .screen-frame { width: 80%; }
  .page-hero-inner { padding: 54px 0 58px; }
  .product-card,
  .portal-card { padding: 25px 21px; }
  .product-card h2 { font-size: 2.2rem; }
  .spec-list > div { grid-template-columns: 1fr; gap: 2px; }
  .cta-band .button { width: 100%; }
  .client-list,
  .feature-grid,
  .flow-grid { grid-template-columns: 1fr; }
  .carousel-controls { gap: 13px; }
  .carousel-arrow { width: 40px; height: 40px; }
  .carousel-dots { gap: 7px; }
  .carousel-dot { width: 9px; height: 9px; }
  .carousel-dot.is-active { width: 21px; }
  .flow-card::after { display: none; }
  .challenge-card { grid-template-columns: 40px 1fr; padding: 20px; }
  .challenge-mark { width: 40px; height: 40px; }
  .showcase-visual { padding: 8px; }
  .callout { position: relative; inset: auto; max-width: none; margin-top: 9px; }
  .pricing-grid { margin-top: 34px; }
  .plan { padding: 26px 22px; }
  .support-row { grid-template-columns: 1fr; }
  .support-row strong { padding-bottom: 5px; }
  .support-row span { padding-top: 5px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px 18px; }
  .form-field--wide { grid-column: auto; }
  .choice-grid { grid-template-columns: 1fr; }
  .contact-form .button { width: 100%; }
  .image-lightbox {
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
  }
  .lightbox-toolbar {
    min-height: 108px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
  }
  .lightbox-actions { width: 100%; }
  .lightbox-actions button,
  .lightbox-original { flex: 1; text-align: center; }
  .lightbox-canvas { height: calc(100% - 108px); padding: 12px; }
  .image-lightbox.is-fit .lightbox-canvas img { width: auto; max-width: 100%; }
  .company-profile dl > div,
  .download-card dl > div { grid-template-columns: 1fr; gap: 2px; }
  .news-list article { grid-template-columns: 1fr; gap: 2px; }
  .dark { display: block; margin: 14px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .output-carousel-viewport { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
