:root {
  --ink: #071735;
  --ink-2: #1b2d4e;
  --muted: #65738a;
  --blue: #075fda;
  --blue-dark: #0647aa;
  --navy: #06183b;
  --paper: #ffffff;
  --soft: #f7faff;
  --line: #e5edf7;
  --line-strong: #c6d6ea;
  --shadow-sm: 0 10px 26px rgba(16, 40, 84, 0.06);
  --shadow-md: 0 22px 60px rgba(16, 40, 84, 0.12);
  --radius: 8px;
  --font-sans: "Noto Sans JP", "Inter", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-latin: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Zen Old Mincho", "Noto Sans JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-tech: "Space Grotesk", "Inter", "Noto Sans JP", system-ui, sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

main {
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.container.narrow {
  width: min(840px, calc(100% - 48px));
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 237, 247, 0.92);
  backdrop-filter: saturate(160%) blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(13, 35, 74, 0.08);
}

.nav-shell {
  width: min(1220px, calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 160px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  color: #172846;
  font-size: 0.88rem;
  font-weight: var(--weight-semibold);
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary,
.button-accent {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(7, 95, 218, 0.18);
}

.button-primary:hover,
.button-accent:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-outline,
.button-ghost {
  color: var(--blue);
  background: #fff;
  border-color: #b9ccec;
}

.button-outline:hover,
.button-ghost:hover {
  border-color: var(--blue);
  background: #f7faff;
}

.button-light {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
}

.button-ghost-dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.nav-contact {
  min-height: 42px;
  padding: 10px 16px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 4rem;
  line-height: 1.12;
  font-weight: var(--weight-bold);
}

h2 {
  margin-bottom: 18px;
  font-size: 2.34rem;
  line-height: 1.22;
  font-weight: var(--weight-bold);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.38;
  font-weight: var(--weight-semibold);
}

.eyebrow,
.kicker,
.tag,
.hero-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
}

.home-hero-v2 {
  position: relative;
  padding: 106px 0 86px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 66%, #f7faff 100%);
  border-bottom: 1px solid var(--line);
}

.home-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  background: linear-gradient(110deg, rgba(7, 95, 218, 0.06), transparent 48%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 60px;
  align-items: center;
}

.home-hero-copy h1 {
  max-width: 690px;
  font-size: 3.72rem;
  line-height: 1.14;
}

.hero-kicker {
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.hero-lead-v2 {
  max-width: 610px;
  margin-bottom: 32px;
  color: #40516e;
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.hero-proof-grid div {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  line-height: 1.55;
}

.mini-line-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #c9d9f0;
  border-radius: var(--radius);
  background: #f6f9ff;
}

.mini-line-icon::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.hero-product-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid #d9e4f2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(14, 42, 92, 0.18);
}

.section,
.page-head {
  padding: 104px 0;
}

.problem-section {
  padding-top: 88px;
}

.product-stage,
.product-stage-image {
  min-width: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--blue);
  font-weight: var(--weight-semibold);
}

.text-link::after {
  content: "→";
}

.business-grid.compact {
  align-items: stretch;
}

.page-head {
  padding-top: 124px;
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
}

.section-soft,
.feature-section {
  background: var(--soft);
}

.section-ink,
.section-cta {
  color: #fff;
  background: var(--navy);
}

.section-header {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-header .kicker:empty {
  display: none;
}

.section-header p:last-child,
.large-text,
.hero-lead,
.feature-intro p {
  color: #40516e;
  font-size: 1.04rem;
}

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--ink);
  background-color: rgba(255, 255, 255, 0.88);
  background-image: var(--hero-image);
  background-blend-mode: screen;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 760px;
  padding: 116px 0;
}

.hero h1 {
  font-size: 3.34rem;
  line-height: 1.16;
}

.hero-lead {
  max-width: 660px;
  font-size: 1.12rem;
  line-height: 1.85;
}

.pain-grid,
.business-grid,
.team-grid,
.audience-grid,
.problem-grid,
.form-grid,
.metrics-grid {
  display: grid;
  gap: 14px;
}

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

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

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

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

.feature-card,
.simple-card,
.team-card,
.audience-card,
.problem-card,
.module-card,
.pricing-card,
.form-card,
.contact-form,
.message-box,
.business-row,
.table-wrap,
.visual-panel,
.faq-item,
.pain-card,
.home-module {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pain-card,
.home-module,
.simple-card,
.problem-card,
.module-card,
.pricing-card,
.form-card,
.contact-form,
.message-box {
  padding: 24px 18px;
}

.pain-card,
.home-module {
  min-height: 188px;
  text-align: left;
}

.outline-icon {
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-grid;
  place-items: center;
  color: transparent;
  border: 1px solid #c9d9f0;
  border-radius: var(--radius);
  background: #f6f9ff;
}

.outline-icon::before,
.outline-icon::after {
  content: "";
  position: absolute;
}

.outline-icon::before {
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue);
  border-radius: 5px;
}

.outline-icon::after {
  width: 14px;
  height: 2px;
  background: var(--blue);
  transform: translateY(11px);
}

.pain-card h3,
.home-module h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.pain-card p,
.home-module p,
.feature-card p,
.simple-card p,
.problem-card p,
.module-card p,
.team-card span,
.message-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.5fr);
  gap: 50px;
  align-items: start;
}

.feature-intro {
  position: sticky;
  top: 110px;
}

.home-module-grid,
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.module-card {
  min-width: 0;
  min-height: 210px;
}

.module-icon,
.problem-card span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue);
  background: #eef5ff;
  border: 1px solid #cfe0f5;
  border-radius: var(--radius);
  font-weight: var(--weight-semibold);
  font-size: 0.82rem;
}

.stacked-features {
  display: grid;
  gap: 18px;
}

.business-row {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.business-row:hover,
.audience-card:hover,
.pain-card:hover,
.home-module:hover,
.feature-card:hover,
.module-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.business-row img,
.visual-panel img,
.card-image {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.business-row img,
.card-image {
  aspect-ratio: 4 / 3;
}

.visual-panel {
  overflow: hidden;
}

.visual-panel img {
  aspect-ratio: 16 / 9;
}

.blue-band,
.cta-slab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 48px 56px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  box-shadow: 0 24px 64px rgba(6, 21, 58, 0.22);
}

.blue-band h2,
.cta-slab h2,
.section-cta h2,
.section-ink h2 {
  color: #fff;
}

.blue-band p,
.cta-slab p,
.section-cta p,
.section-ink p,
.section-ink span {
  color: rgba(255, 255, 255, 0.76);
}

.blue-band .kicker,
.cta-slab .kicker,
.section-cta .kicker,
.section-ink .kicker {
  color: #9fcaff;
}

.blue-band-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(128px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.blue-band-items span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: var(--weight-semibold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.large-copy {
  margin: 18px 0 26px;
  color: #40536f;
  font-size: 1.05rem;
  line-height: 1.95;
}

.feature-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(185, 205, 235, 0.72);
  border-radius: 12px;
  background: #f6faff;
  box-shadow: 0 20px 60px rgba(20, 67, 133, 0.12);
}

.feature-visual img {
  width: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.bpo-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 44px;
  border: 1px solid rgba(185, 205, 235, 0.72);
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 20%, rgba(72, 153, 255, 0.2), transparent 16rem),
    linear-gradient(145deg, #ffffff, #f0f7ff);
  box-shadow: 0 20px 60px rgba(20, 67, 133, 0.12);
  text-align: center;
}

.bpo-visual .line-icon {
  width: 84px;
  height: 84px;
}

.bpo-visual strong {
  color: #10264d;
  font-size: 1.4rem;
  font-weight: var(--weight-semibold);
}

.bpo-visual p {
  margin: 0;
  color: #52647f;
}

.news-layout {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 46px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.news-item time {
  color: var(--muted);
  font-weight: var(--weight-medium);
}

.team-grid-single {
  grid-template-columns: minmax(0, 560px);
}

.team-card {
  display: flex;
  gap: 18px;
  padding: 24px;
}

.team-card p {
  margin-bottom: 2px;
  color: var(--blue);
  font-weight: var(--weight-semibold);
}

.avatar {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: var(--weight-semibold);
}

.audience-card {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.audience-card span {
  color: var(--muted);
}

.audience-card strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--ink-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 2px;
}

.large-list li {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.profile-table {
  min-width: 0;
}

.data-table th,
.data-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--ink);
  background: #f5f8fc;
  font-weight: var(--weight-semibold);
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

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

.step {
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.section-soft .step {
  border-color: var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.step span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: var(--weight-semibold);
}

.section-ink .step span {
  color: #9fcaff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: var(--weight-semibold);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--blue);
  font-weight: var(--weight-semibold);
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.form-grid,
.form-two {
  display: grid;
  gap: 16px;
}

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

.form-card,
.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-weight: var(--weight-semibold);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd9e8;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 95, 218, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--blue);
  font-weight: var(--weight-semibold);
}

.policy-list {
  display: grid;
  gap: 18px;
}

.policy-item {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.policy-item h2 {
  font-size: 1.3rem;
}

.site-footer {
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #061735;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer .brand {
  width: fit-content;
  padding: 8px 10px;
  background: #fff;
  border-radius: var(--radius);
}

.site-footer .brand-logo {
  width: 168px;
}

.footer-brand p {
  max-width: 340px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.92rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-image {
  width: 194px;
  height: auto;
}

.sns-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

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

  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 84px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .nav-menu.is-open {
    display: grid;
    gap: 16px;
  }

  .nav-links {
    display: grid;
    gap: 6px;
  }

  .nav-link {
    padding: 10px 2px;
    font-size: 1rem;
  }

  .nav-contact {
    width: 100%;
  }

  .home-hero-grid,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .feature-intro {
    position: static;
  }

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

  .blue-band,
  .cta-slab {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .container.narrow {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    width: calc(100% - 28px);
    height: 70px;
  }

  .brand-logo {
    width: 136px;
  }

  .home-hero-v2 {
    padding: 74px 0 56px;
  }

  .home-hero-copy h1,
  .hero h1,
  h1 {
    font-size: 2.34rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-proof-grid,
  .pain-grid,
  .home-module-grid,
  .module-grid,
  .business-grid,
  .team-grid,
  .metrics-grid,
  .audience-grid,
  .problem-grid,
  .form-grid,
  .mini-metrics,
  .compare-box,
  .steps,
  .steps-light,
  .form-two,
  .blue-band-items,
  .business-row,
  .split,
  .news-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-head {
    padding: 72px 0;
  }

  .page-head {
    padding-top: 92px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 88px 0;
  }

  .section-header {
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .blue-band,
  .cta-slab {
    padding: 28px 20px;
  }
}

/* Startup LP refresh: reference-faithful home page */
:root {
  --ink: #081b3f;
  --ink-2: #163158;
  --muted: #5c6d86;
  --blue: #075ed8;
  --blue-dark: #0146b7;
  --sky: #eaf4ff;
  --soft: #f7fbff;
  --line: #dfeaf8;
  --radius: 10px;
  --shadow-sm: 0 10px 28px rgba(20, 67, 133, 0.08);
  --shadow-md: 0 22px 60px rgba(20, 67, 133, 0.16);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 10%, rgba(0, 113, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #fff 58%, #f8fbff 100%);
  font-family: var(--font-sans);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  border: 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(170%);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(8, 27, 63, 0.08);
}

.nav-shell {
  width: min(1220px, calc(100% - 72px));
  height: 82px;
}

.brand-logo {
  width: 148px;
}

.nav-menu {
  gap: 28px;
}

.nav-links {
  gap: 30px;
}

.nav-link {
  color: #0b2148;
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-contact {
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.button {
  border-radius: 8px;
  font-weight: var(--weight-semibold);
}

.button-primary,
.button-accent {
  background: linear-gradient(180deg, #0969ee 0%, #0051cc 100%);
  border-color: #075ed8;
  box-shadow: 0 13px 28px rgba(7, 94, 216, 0.22);
}

.button-outline {
  color: #075ed8;
  background: rgba(255, 255, 255, 0.78);
  border-color: #94b9ee;
}

.home-hero-v2 {
  min-height: 720px;
  padding: 132px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 27%, rgba(83, 164, 255, 0.18), transparent 30rem),
    radial-gradient(ellipse at 80% 68%, rgba(128, 195, 255, 0.18), transparent 34rem),
    linear-gradient(104deg, #fff 0%, #fff 42%, #f3f9ff 68%, #edf6ff 100%);
  border-bottom: 1px solid #e9f1fb;
}

.home-hero-v2::before {
  width: 58vw;
  height: 58vw;
  inset: -14vw -10vw auto auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 164, 255, 0.2), rgba(255, 255, 255, 0.04) 58%, transparent 72%);
  filter: blur(4px);
}

.home-hero-grid {
  min-height: 586px;
  grid-template-columns: minmax(560px, 0.98fr) minmax(520px, 1.02fr);
  gap: 44px;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 78px;
}

.home-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 28px;
  color: #081b3f;
  font-size: clamp(3.4rem, 5vw, 4.85rem);
  line-height: 1.25;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  font-feature-settings: "palt";
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.home-hero-copy h1 .accent {
  color: #075ed8;
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.home-hero-copy h1 .accent::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: -0.05em;
  bottom: 0.04em;
  z-index: -1;
  height: 0.28em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 95, 218, 0.13), rgba(67, 180, 255, 0.04));
}

.hero-lead-v2 {
  max-width: 500px;
  margin-bottom: 32px;
  color: #233a60;
  font-size: 1.08rem;
  font-weight: var(--weight-regular);
  line-height: 1.9;
}

.hero-actions {
  gap: 14px;
}

.hero-actions .button {
  min-width: 150px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 18px;
  max-width: 510px;
  margin-top: 42px;
}

.hero-stat,
.pain-card,
.benefit-card,
.news-table {
  border: 1px solid rgba(185, 205, 235, 0.72);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 36px rgba(28, 75, 140, 0.09);
}

.hero-stat {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 14px;
}

.hero-stat p {
  margin: 0;
  color: #183052;
  font-size: 0.93rem;
  font-weight: var(--weight-medium);
  line-height: 1.35;
}

.hero-stat strong {
  display: block;
  color: var(--blue);
  font-size: 2.22rem;
  line-height: 1;
  white-space: nowrap;
}

.hero-stat small {
  margin-left: 3px;
  color: var(--blue);
  font-size: 1.12rem;
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
  isolation: isolate;
  transform: translateX(96px);
}

.hero-visual-composite::before {
  content: "";
  position: absolute;
  right: 2%;
  top: 10%;
  z-index: -1;
  width: 88%;
  height: 78%;
  border-radius: 999px;
  background: radial-gradient(ellipse at 54% 48%, rgba(61, 150, 255, 0.18), rgba(126, 199, 255, 0.06) 58%, transparent 76%);
  filter: blur(22px);
}

.hero-visual-composite::after {
  display: none;
}

.hero-clinic-image {
  position: relative;
  z-index: 1;
  width: min(820px, 56vw);
  height: 570px;
  max-width: none;
  margin: 10px -94px 0 0;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  filter:
    drop-shadow(0 30px 62px rgba(9, 40, 86, 0.12))
    saturate(1.02);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(42, 134, 255, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit.one {
  left: 39%;
  top: 11%;
  width: 300px;
  height: 118px;
  transform: rotate(-14deg);
}

.hero-orbit.two {
  left: 48%;
  top: 27%;
  width: 230px;
  height: 90px;
  border-style: dashed;
  opacity: 0.55;
  transform: rotate(18deg);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 2;
  display: inline-grid;
  justify-items: center;
  gap: 6px;
  min-width: 88px;
  padding: 10px 16px 9px;
  border: 1px solid rgba(151, 185, 232, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  font-family: var(--font-latin);
  font-size: 0.64rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(10, 45, 105, 0.08);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.scroll-cue:hover {
  border-color: rgba(7, 94, 216, 0.38);
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -1px);
}

.scroll-cue span {
  width: 8px;
  height: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
}

.section {
  padding: 78px 0;
}

.section-header {
  max-width: none;
  margin: 0 0 34px;
  text-align: left;
}

.section-header h2,
.os-overview h2,
.clinic-plan h2,
.news-heading h2,
.cta-slab h2 {
  margin: 0;
  color: #081b3f;
  font-size: clamp(1.72rem, 2.35vw, 2.28rem);
  line-height: 1.36;
  font-family: var(--font-display);
  font-weight: 700;
  font-feature-settings: "palt";
}

.section-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--blue);
}

.problem-section {
  padding-top: 62px;
  background: #fff;
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.pain-card {
  min-height: 214px;
  padding: 32px;
  border-radius: 12px;
}

.pain-card h3 {
  margin: 0 0 6px;
  font-size: 1.06rem;
  text-align: center;
}

.pain-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.7rem;
  line-height: 1.25;
  text-align: center;
}

.pain-card p {
  color: #2d4162;
  font-size: 0.92rem;
  line-height: 1.9;
}

.statement-bar,
.info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin-top: 32px;
  padding: 18px 24px;
  border-radius: 10px;
  color: #0f274f;
  background: linear-gradient(90deg, #edf5ff, #f7fbff);
  font-size: clamp(1.18rem, 2.2vw, 1.75rem);
  font-weight: 700;
  text-align: center;
}

.statement-bar span {
  color: var(--blue);
}

.os-overview {
  background: #fff;
}

.os-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: end;
}

.os-icon-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(86px, 1fr));
  gap: 26px;
  max-width: 820px;
  margin-top: 34px;
}

.os-icon {
  min-width: 0;
  text-align: center;
}

.os-icon strong {
  display: block;
  margin-top: 10px;
  color: #10264d;
  font-size: 0.86rem;
  line-height: 1.45;
}

.device-shot {
  justify-self: end;
}

.device-image {
  width: 320px;
  aspect-ratio: 1.35;
  object-fit: cover;
  object-position: left center;
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(9, 40, 86, 0.18);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 22px;
  border-radius: 10px;
}

.benefit-card .line-icon {
  grid-row: span 2;
}

.benefit-card h3 {
  margin: 0 0 4px;
  color: var(--blue);
}

.benefit-card p {
  margin: 0;
  color: #334765;
  font-size: 0.9rem;
  line-height: 1.8;
}

.info-strip {
  justify-content: flex-start;
  gap: 20px;
  font-size: 1rem;
  font-weight: var(--weight-medium);
  text-align: left;
}

.info-strip p {
  margin: 0;
}

.clinic-plan {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  border-top: 1px solid #e7effa;
  border-bottom: 1px solid #e7effa;
}

.clinic-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.clinic-grid p {
  max-width: 520px;
  color: #2d4162;
  line-height: 1.95;
}

.clinic-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
}

.clinic-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
}

.clinic-feature strong {
  color: #14305a;
  font-size: 0.98rem;
  line-height: 1.55;
}

.news-section {
  background: #fff;
}

.news-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.news-heading .button {
  min-height: 38px;
  padding: 8px 18px;
}

.news-table {
  overflow: hidden;
  border-radius: 8px;
}

.news-row {
  display: grid;
  grid-template-columns: 110px 116px 1fr 24px;
  gap: 18px;
  align-items: center;
  min-height: 60px;
  padding: 0 28px;
  border-bottom: 1px solid #e4edf8;
  color: #10264d;
}

.news-row:last-child {
  border-bottom: 0;
}

.news-row time {
  color: #2b4b78;
  font-size: 0.84rem;
  font-weight: var(--weight-medium);
}

.news-row span {
  display: inline-flex;
  justify-content: center;
  padding: 4px 10px;
  border: 1px solid #bdd2f3;
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: var(--weight-semibold);
}

.news-row strong {
  font-size: 0.92rem;
}

.news-row em {
  color: var(--blue);
  font-style: normal;
  font-size: 1.7rem;
}

.section-cta {
  padding: 72px 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(97, 105, 255, 0.38), transparent 36rem),
    linear-gradient(120deg, #0054d3 0%, #083d9d 52%, #06255d 100%);
}

.cta-slab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 46px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cta-slab h2 {
  color: #fff;
  white-space: nowrap;
}

.cta-slab p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-card {
  padding: 34px 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 22, 80, 0.24);
}

.cta-card h3 {
  color: #082352;
  font-size: 1.42rem;
}

.cta-card p {
  margin-bottom: 22px;
  color: #415476;
}

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

.site-footer {
  padding: 52px 0 24px;
  background:
    radial-gradient(circle at 14% 0%, rgba(5, 113, 224, 0.35), transparent 30rem),
    linear-gradient(180deg, #072a5e 0%, #041936 100%);
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 42px;
}

.site-footer .brand-logo {
  width: 154px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
  color: #fff;
}

.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-button {
  margin: 0 0 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 7px;
  text-align: center;
}

.line-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--blue);
  border: 2px solid currentColor;
  border-radius: 12px;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.line-icon.clock {
  border-radius: 50%;
}

.line-icon.clock::before {
  width: 2px;
  height: 13px;
  background: currentColor;
  transform: translateY(-5px);
}

.line-icon.clock::after {
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: translate(6px, 3px);
}

.line-icon.clinic::before,
.line-icon.building::before {
  width: 26px;
  height: 19px;
  border: 2px solid currentColor;
  border-top-width: 6px;
  border-radius: 2px;
}

.line-icon.users {
  border-radius: 50%;
}

.line-icon.users::before,
.line-icon.user::before,
.line-icon.doctor::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-8px);
}

.line-icon.users::after,
.line-icon.user::after,
.line-icon.doctor::after {
  width: 22px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 16px 16px 4px 4px;
  transform: translateY(10px);
}

.line-icon.stethoscope {
  border-radius: 50%;
}

.line-icon.stethoscope::before {
  top: 10px;
  left: 11px;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-radius: 0 0 16px 16px;
}

.line-icon.stethoscope::after {
  right: 10px;
  bottom: 10px;
  width: 9px;
  height: 9px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: -11px -9px 0 -7px currentColor;
}

.line-icon.operations::before {
  width: 30px;
  height: 30px;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) center / 28px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 28px no-repeat;
  opacity: 0.72;
}

.line-icon.operations::after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    18px 0 0 -2px #fff, 18px 0 0 0 currentColor,
    -18px 0 0 -2px #fff, -18px 0 0 0 currentColor,
    0 18px 0 -2px #fff, 0 18px 0 0 currentColor,
    0 -18px 0 -2px #fff, 0 -18px 0 0 currentColor;
}

.line-icon.puzzle::before {
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
}

.line-icon.chat::before {
  left: 10px;
  bottom: 8px;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 0 3px;
  background: #fff;
  transform: rotate(-28deg);
}

.line-icon.chat {
  border-radius: 16px;
}

.line-icon.chat::after {
  width: 18px;
  height: 18px;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) center / 16px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 16px no-repeat;
}

.line-icon.calendar::before {
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
  border-top-width: 7px;
  border-radius: 3px;
}

.line-icon.phone::before {
  width: 17px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.line-icon.chart::before {
  width: 24px;
  height: 22px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.line-icon.chart::after {
  width: 18px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(-25deg);
}

.line-icon.sync {
  border-radius: 50%;
}

.line-icon.sync::before {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.line-icon.monitor::before {
  width: 28px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.line-icon.monitor::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translateY(16px);
}

.line-icon.sparkle {
  border-color: rgba(7, 94, 216, 0.16);
  background: #eff6ff;
  border-radius: 50%;
}

.line-icon.sparkle::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
}

.site-footer {
  padding: 58px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 3% 0%, rgba(19, 98, 215, 0.45), transparent 32rem),
    linear-gradient(180deg, #0b2f6b 0%, #061d43 42%, #051732 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.42fr 0.95fr 0.95fr 0.86fr 1.7fr;
  gap: 44px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-logo-mark {
  display: inline-block;
  color: transparent;
  background: linear-gradient(120deg, #20c6ff 8%, #1f73ff 48%, #8db7ff 92%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--font-latin);
  font-size: 2.28rem;
  font-weight: 700;
  line-height: 0.8;
  transform: scaleX(1.22);
}

.footer-logo-image {
  width: 194px;
  height: auto;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: var(--weight-regular);
  line-height: 2;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: var(--weight-semibold);
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  font-weight: var(--weight-regular);
}

.site-footer a:hover {
  color: #fff;
}

.footer-actions {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.footer-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0 !important;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 7px;
  color: #fff !important;
  font-size: 0.94rem !important;
  font-weight: 600 !important;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0, 12, 44, 0.12);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-actions .footer-button:first-child {
  border-color: #fff;
  background: #fff;
  color: #075ed8 !important;
}

.footer-actions .footer-button:last-child {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.footer-button:hover {
  transform: translateY(-1px);
}

.footer-actions .footer-button:first-child:hover {
  background: #eef6ff;
  border-color: #eef6ff;
  color: #004fc8 !important;
}

.footer-actions .footer-button:last-child:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom span {
  margin: 0;
  font-size: 0.78rem;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  position: relative;
  margin: 0;
  font-size: 0.78rem;
}

.footer-bottom a + a::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-50%);
}

.subpage-head {
  padding: 148px 0 42px;
  background: #fff;
  border-bottom: 1px solid #e6eef9;
}

.subpage-head h1 {
  margin: 0 0 4px;
  color: #081b3f;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.24;
  font-family: var(--font-display);
  font-weight: 700;
  font-feature-settings: "palt";
}

.subpage-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-family: var(--font-tech);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage-head p:last-child {
  max-width: 720px;
  margin: 0;
  color: #263d62;
  font-size: 0.98rem;
  font-weight: var(--weight-regular);
  line-height: 1.9;
}

.page-main-section {
  padding-top: 58px;
  background: #fff;
}

.page-section-title {
  margin: 0 0 30px;
  color: #081b3f;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.42;
  font-family: var(--font-display);
  font-weight: 700;
  font-feature-settings: "palt";
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.recruit-card {
  display: grid;
  justify-items: center;
  min-height: 250px;
  padding: 32px 26px;
  border: 1px solid #dce8f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 67, 133, 0.06);
  text-align: center;
}

.service-card h3,
.recruit-card h3 {
  margin: 18px 0 10px;
  color: var(--blue);
  font-size: 1.08rem;
}

.service-card p,
.recruit-card p {
  margin: 0;
  color: #344968;
  font-size: 0.9rem;
  line-height: 1.85;
}

.service-card strong {
  align-self: end;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.86rem;
}

.business-map-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
  padding: 34px 42px;
  border-radius: 8px;
  background: linear-gradient(100deg, #f3f8ff 0%, #eaf4ff 100%);
}

.business-map-panel h2,
.mission-panel h2 {
  margin: 0 0 10px;
  color: #082352;
  font-size: 1.55rem;
}

.business-map-panel p {
  max-width: 640px;
  margin: 0;
  color: #2f4565;
  line-height: 1.9;
}

.japan-map {
  position: relative;
  min-height: 160px;
  border-radius: 999px 40px 999px 70px;
  background:
    radial-gradient(circle at 18% 78%, #b8d8ff 0 12px, transparent 13px),
    radial-gradient(circle at 34% 56%, #b8d8ff 0 18px, transparent 19px),
    radial-gradient(circle at 48% 44%, #b8d8ff 0 24px, transparent 25px),
    radial-gradient(circle at 66% 28%, #b8d8ff 0 20px, transparent 21px),
    linear-gradient(135deg, rgba(7, 94, 216, 0.1), rgba(7, 94, 216, 0.02));
}

.japan-map span {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: rotate(-45deg);
}

.japan-map span:nth-child(1) { right: 24%; top: 18%; }
.japan-map span:nth-child(2) { right: 34%; top: 34%; }
.japan-map span:nth-child(3) { right: 43%; top: 48%; }
.japan-map span:nth-child(4) { right: 55%; top: 58%; }
.japan-map span:nth-child(5) { right: 66%; top: 67%; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.company-table {
  display: grid;
  gap: 0;
}

.company-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid #dce8f7;
}

.company-table strong {
  color: var(--blue);
  font-size: 0.9rem;
}

.company-table p {
  margin: 0;
  color: #182f55;
  font-weight: var(--weight-medium);
  line-height: 1.8;
}

.about-brand-panel {
  overflow: hidden;
  border: 1px solid #dce8f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 67, 133, 0.08);
}

.brand-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f8fbff;
}

.brand-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 28, 62, 0.02));
  pointer-events: none;
}

.brand-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.mission-panel {
  margin-top: 42px;
  padding: 38px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eef6ff 0%, #f7fbff 100%);
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mission-item {
  scroll-margin-top: 112px;
  padding: 18px 22px;
}

.mission-item + .mission-item {
  border-left: 1px solid rgba(164, 194, 233, 0.72);
}

.mission-panel p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: var(--weight-semibold);
}

.mission-panel h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-feature-settings: "palt";
}

.mission-panel span {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  color: #263d62;
  line-height: 1.9;
}

.founder-message-card {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border: 1px solid rgba(185, 205, 235, 0.72);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(20, 67, 133, 0.09);
}

.founder-message-card h2 {
  margin: 4px 0 10px;
  color: #081b3f;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.35;
  font-feature-settings: "palt";
}

.founder-message-card p:not(.kicker) {
  max-width: 780px;
  margin: 0 0 20px;
  color: #40536f;
  line-height: 1.9;
}

.founder-photo-slot {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(166, 194, 233, 0.78);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 22%, rgba(72, 153, 255, 0.22), transparent 8rem),
    linear-gradient(145deg, #f7fbff, #eaf4ff);
}

.founder-photo-slot::before {
  content: "";
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  top: 22%;
  border: 2px solid rgba(7, 95, 218, 0.28);
  border-radius: 50%;
}

.founder-photo-slot::after {
  content: "";
  position: absolute;
  width: 64%;
  height: 32%;
  bottom: 16%;
  border: 2px solid rgba(7, 95, 218, 0.24);
  border-radius: 999px 999px 18px 18px;
}

.founder-photo-slot span {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-bottom: 16px;
  color: rgba(7, 95, 218, 0.52);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: start;
}

.message-lead {
  position: sticky;
  top: 110px;
}

.founder-photo-slot-large {
  max-width: 280px;
  margin-bottom: 28px;
}

.message-lead h2 {
  margin: 0 0 18px;
  color: #081b3f;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.32;
  font-feature-settings: "palt";
}

.message-lead span {
  display: block;
  color: #40536f;
  line-height: 1.9;
}

.message-body {
  padding: 42px;
  border: 1px solid rgba(185, 205, 235, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.92)),
    #fff;
  box-shadow: 0 18px 52px rgba(20, 67, 133, 0.1);
}

.message-body p {
  margin: 0 0 22px;
  color: #263d62;
  font-size: 1.02rem;
  line-height: 2.08;
}

.message-body footer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #dfe9f6;
}

.message-body strong,
.message-body span {
  display: block;
}

.message-body strong {
  color: #081b3f;
  font-size: 1.1rem;
}

.message-body span {
  margin-top: 4px;
  color: #65738a;
}

.os-detail-section {
  background: #fff;
}

.os-detail-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.os-orbit {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.os-orbit::before {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px solid #dbe9fb;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 94, 216, 0.08), transparent 58%);
}

.orbit-center {
  position: relative;
  z-index: 2;
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 50%;
  color: #063879;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #dff4ff 0%, #a9dfff 58%, #7ec8ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -18px 34px rgba(0, 103, 204, 0.12),
    0 24px 56px rgba(7, 94, 216, 0.16);
}

.orbit-logo-mark {
  display: block;
  width: 88px;
  height: auto;
  filter: drop-shadow(0 9px 16px rgba(8, 53, 118, 0.16));
}

.orbit-center strong {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #063879;
}

.orbit-node {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #17335c;
  font-size: 0.84rem;
  font-weight: var(--weight-semibold);
}

.orbit-node .line-icon {
  width: 42px;
  height: 42px;
  background: #fff;
}

.node-1 { left: 12%; top: 16%; }
.node-2 { left: 50%; top: 4%; transform: translateX(-50%); }
.node-3 { right: 12%; top: 16%; }
.node-4 { right: 10%; bottom: 18%; }
.node-5 { left: 50%; bottom: 4%; transform: translateX(-50%); }
.node-6 { left: 10%; bottom: 18%; }

.os-feature-list {
  display: grid;
  gap: 22px;
}

.os-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.os-feature .line-icon {
  width: 34px;
  height: 34px;
}

.os-feature h3 {
  margin: 0 0 6px;
  color: #12305d;
  font-size: 1.08rem;
}

.os-feature p {
  margin: 0;
  color: #40536f;
  font-size: 0.93rem;
  line-height: 1.8;
}

.os-cta-panel {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 30px 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(100deg, #0057d8, #0047bf);
}

.os-cta-panel h2,
.os-cta-panel p {
  margin: 0;
  color: #fff;
}

.os-cta-panel p {
  margin-top: 8px;
  opacity: 0.86;
}

.recruit-page-section {
  padding-top: 30px;
}

.recruit-hero-image {
  overflow: hidden;
  margin: 0;
  border-radius: 10px 10px 0 0;
}

.recruit-hero-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.recruit-panel {
  margin-top: -34px;
  padding: 36px 32px;
  border-radius: 16px 16px 8px 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(20, 67, 133, 0.14);
}

.recruit-panel h2 {
  margin: 0 0 24px;
  color: #10264d;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-feature-settings: "palt";
}

.recruit-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.recruit-card {
  min-height: 190px;
  padding: 24px 18px;
}

.recruit-card h3 {
  color: #10264d;
  font-size: 0.98rem;
}

.recruit-cta-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 18px;
  margin-top: 26px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(100deg, #0057d8, #0047bf);
}

.recruit-positions-section {
  scroll-margin-top: 96px;
}

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

.position-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(185, 205, 235, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(20, 67, 133, 0.08);
}

.position-card p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-family: var(--font-tech);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.position-card h3 {
  margin: 0 0 12px;
  color: #10264d;
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-feature-settings: "palt";
}

.position-card span {
  color: #40536f;
  line-height: 1.85;
}

.position-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}

.position-tags em {
  padding: 7px 10px;
  color: #075ed8;
  background: #edf5ff;
  border: 1px solid #cfe2fb;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: var(--weight-medium);
}

.position-card .button {
  margin-top: auto;
  width: 100%;
}

.news-table-large .news-row {
  min-height: 74px;
}

.news-page-button {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.line-icon.globe {
  border-radius: 50%;
}

.line-icon.globe::before {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon.globe::after {
  width: 2px;
  height: 28px;
  background: currentColor;
  box-shadow: -8px 0 0 -0.5px transparent, 8px 0 0 -0.5px transparent;
}

@media (max-width: 1120px) {
  .nav-menu {
    top: 84px;
    border-radius: 18px;
  }

  .nav-actions {
    display: grid;
    gap: 10px;
  }

  .home-hero-grid,
  .os-head,
  .clinic-grid,
  .message-layout,
  .cta-slab {
    grid-template-columns: 1fr;
  }

  .home-hero-v2 {
    min-height: auto;
    padding-bottom: 44px;
  }

  .home-hero-copy {
    padding-bottom: 0;
  }

  .hero-clinic-image {
    width: 100%;
    height: auto;
    margin: 20px 0 0;
    border-radius: 0;
  }

  .hero-visual {
    transform: none;
  }

  .hero-orbit.one {
    left: 24%;
    top: 10%;
  }

  .hero-orbit.two {
    left: 31%;
    top: 24%;
  }

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

  .device-shot {
    justify-self: start;
  }

  .device-image {
    width: min(100%, 520px);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .message-lead {
    position: static;
  }

  .service-card-grid,
  .about-grid,
  .founder-message-card,
  .message-layout,
  .os-detail-grid,
  .business-map-panel,
  .os-cta-panel,
  .recruit-cta-row,
  .position-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .nav-shell {
    width: calc(100% - 28px);
  }

  .brand-logo {
    width: 132px;
  }

  .home-hero-v2 {
    padding-top: 108px;
  }

  .home-hero-copy h1 {
    font-size: 2.72rem;
    line-height: 1.18;
  }

  .hero-line {
    white-space: normal;
  }

  .section-header h2,
  .os-overview h2,
  .clinic-plan h2,
  .news-heading h2,
  .cta-slab h2 {
    font-size: 1.66rem;
  }

  .cta-slab h2 {
    white-space: normal;
  }

  .hero-stat-row,
  .pain-grid,
  .benefit-grid,
  .clinic-feature-grid,
  .news-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .os-icon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .news-row {
    gap: 6px;
    padding: 16px 18px;
  }

  .news-row em {
    display: none;
  }

  .benefit-card {
    grid-template-columns: 48px 1fr;
  }

  .cta-card {
    padding: 26px 22px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom a + a::before {
    display: none;
  }

  .footer-button {
    white-space: normal;
  }

  .subpage-head {
    padding: 112px 0 34px;
  }

  .service-card-grid,
  .recruit-card-grid,
  .founder-message-card,
  .position-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo-slot {
    max-width: 220px;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .business-map-panel,
  .mission-panel,
  .message-body,
  .os-cta-panel,
  .recruit-panel {
    padding: 26px 18px;
  }

  .mission-panel {
    grid-template-columns: 1fr;
  }

  .mission-item + .mission-item {
    border-left: 0;
    border-top: 1px solid rgba(164, 194, 233, 0.72);
  }

  .os-orbit {
    min-height: 380px;
  }

  .os-orbit::before {
    inset: 46px;
  }

  .orbit-center {
    width: 132px;
    height: 132px;
    gap: 12px;
  }

  .orbit-center strong {
    font-size: 1rem;
  }

  .orbit-logo-mark {
    width: 68px;
  }

  .orbit-node {
    font-size: 0.72rem;
  }

  .orbit-node .line-icon {
    width: 34px;
    height: 34px;
  }

  .recruit-hero-image img {
    height: 210px;
  }

  .recruit-cta-row .button {
    width: 100%;
  }
}
