:root {
  --bg: #f6fbfc;
  --bg-warm: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #eef8fa;
  --ink: #12324a;
  --ink-strong: #073b78;
  --muted: #5f7481;
  --line: rgba(18, 50, 74, 0.12);
  --line-strong: rgba(18, 50, 74, 0.2);
  --teal: #13c8cd;
  --blue: #0c54b8;
  --cyan: #0ea5c6;
  --green: #0f9f79;
  --amber: #d88a1d;
  --shadow: 0 14px 34px rgba(18, 50, 74, 0.08);
  --shadow-strong: 0 22px 54px rgba(18, 50, 74, 0.13);
  --radius: 8px;
  --radius-lg: 16px;
  --shell: min(1160px, calc(100vw - 44px));
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 251, 252, 0.94), rgba(251, 250, 247, 0.84) 44%, #f3f9fb),
    radial-gradient(circle at top left, rgba(19, 200, 205, 0.12), transparent 28rem);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.78;
  text-rendering: optimizeLegibility;
}

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

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

p,
ul,
ol,
dl,
dd {
  margin: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(19, 200, 205, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(18, 50, 74, 0.08);
  background: rgba(250, 253, 254, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}

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

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--muted);
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav__link:hover {
  transform: translateY(-1px);
  color: var(--ink);
  background: rgba(19, 200, 205, 0.08);
}

.nav__link.is-active {
  color: var(--ink-strong);
  background: rgba(14, 165, 198, 0.1);
}

.nav__link:last-child {
  margin-left: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 24px rgba(12, 84, 184, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  flex: 0 0 44px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  line-height: 1.14;
}

h1 {
  max-width: 13ch;
  margin-top: 14px;
  font-size: clamp(2.85rem, 5vw, 4.6rem);
  font-weight: 800;
}

.page-hero h1 {
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  font-weight: 800;
}

h3 {
  font-size: 1.12rem;
  font-weight: 800;
}

.lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow,
.footer-label,
.callout__label,
.news-meta {
  color: var(--cyan);
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero,
.page-hero {
  padding: 76px 0 40px;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
}

.hero-copy,
.hero-visual,
.page-visual,
.page-hero-grid > *,
.about-hero-grid > *,
.about-profile-grid > *,
.card-grid > *,
.split > *,
.contact-layout > *,
.footer-grid > *,
.faq-layout > *,
.news-card > * {
  min-width: 0;
}

.hero-copy,
.hero-visual,
.page-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 46px 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 253, 0.94)),
    radial-gradient(circle at top right, rgba(19, 200, 205, 0.12), transparent 17rem);
}

.hero-visual,
.page-visual {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 247, 250, 0.92)),
    radial-gradient(circle at 78% 18%, rgba(19, 200, 205, 0.14), transparent 15rem);
}

.page-visual {
  min-height: 330px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: "→";
  margin-left: 9px;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 28px rgba(12, 84, 184, 0.2);
}

.button--ghost {
  color: var(--ink-strong);
  background: rgba(14, 165, 198, 0.08);
  border-color: rgba(14, 165, 198, 0.18);
}

.section {
  padding: 54px 0;
}

.section--soft .shell,
.section--contrast .shell,
.section--cta .shell {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section--cta .button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.section--soft .shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 250, 0.92));
}

.section--contrast .shell {
  color: #eefbfc;
  background: linear-gradient(135deg, #12324a, #0d5872);
}

.section--contrast h2,
.section--contrast p,
.section--contrast span,
.section--cta h2,
.section--cta p {
  color: inherit;
}

.section--cta .shell {
  color: #f6feff;
  background:
    linear-gradient(135deg, #0b3d78, #0a91ad),
    radial-gradient(circle at top right, rgba(19, 200, 205, 0.24), transparent 18rem);
}

.section-head {
  max-width: 900px;
  margin-bottom: 28px;
}

.section-head h2 + p,
.section-head .eyebrow + h2 {
  margin-top: 12px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.section--contrast .section-head p,
.section--cta .section-head p {
  color: rgba(246, 254, 255, 0.82);
}

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

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

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

.info-card,
.callout,
.news-card,
.contact-form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 198, 0.24);
  box-shadow: var(--shadow-strong);
}

.info-card p {
  margin-top: 12px;
  color: var(--muted);
}

.split,
.contact-layout,
.footer-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.callout {
  padding: 24px;
  background: linear-gradient(180deg, rgba(14, 165, 198, 0.08), rgba(255, 255, 255, 0.98));
}

.callout p:not(.callout__label) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--ink-strong);
  font-weight: 800;
}

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

.workflow {
  display: grid;
  gap: 12px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid rgba(14, 165, 198, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.workflow-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-family: "Figtree", sans-serif;
  font-weight: 800;
}

.workflow-item p {
  font-weight: 800;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(14, 165, 198, 0.16);
  border-radius: 999px;
  color: var(--ink-strong);
  background: rgba(14, 165, 198, 0.07);
  font-weight: 700;
}

.info-table {
  display: grid;
  border-top: 1px solid var(--line);
}

.info-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.info-table dt {
  color: var(--muted);
  font-weight: 700;
}

.info-table dd {
  font-weight: 700;
}

.room-visual {
  position: absolute;
  inset: 28px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18)),
    linear-gradient(145deg, #eef8f8, #fbfaf7 58%, #d8eef2);
  overflow: hidden;
}

.room-wall {
  position: absolute;
  inset: 0 0 46%;
  background:
    linear-gradient(90deg, rgba(18, 50, 74, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 50, 74, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.room-device {
  position: absolute;
  top: 44px;
  right: 68px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #dfeff2);
  border: 1px solid rgba(18, 50, 74, 0.12);
  box-shadow: 0 14px 28px rgba(18, 50, 74, 0.1);
}

.room-device span {
  position: absolute;
  inset: 21px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.sense-ring {
  position: absolute;
  top: 14px;
  right: 38px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(19, 200, 205, 0.24);
  border-radius: 50%;
}

.sense-ring--two {
  top: -14px;
  right: 10px;
  width: 182px;
  height: 182px;
  opacity: 0.62;
}

.room-bed {
  position: absolute;
  left: 54px;
  bottom: 64px;
  width: 58%;
  height: 128px;
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(135deg, #fff, #e7f2f4);
  border: 1px solid rgba(18, 50, 74, 0.1);
  box-shadow: 0 18px 32px rgba(18, 50, 74, 0.08);
}

.room-bed span {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 116px;
  height: 42px;
  border-radius: 999px;
  background: #d9eef1;
}

.room-table {
  position: absolute;
  right: 54px;
  bottom: 78px;
  width: 82px;
  height: 86px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8faf9, #d9e9ec);
  border: 1px solid rgba(18, 50, 74, 0.1);
}

.voice-cue {
  position: absolute;
  right: 42px;
  bottom: 32px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(14, 165, 198, 0.18);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-visual,
.balance-visual,
.privacy-visual {
  position: absolute;
  inset: 28px;
  display: grid;
  gap: 14px;
  align-content: center;
}

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

.service-visual div,
.balance-visual div,
.privacy-lock {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(14, 165, 198, 0.18);
  border-radius: var(--radius);
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-align: center;
}

.mini-room,
.mini-prompt {
  background: rgba(14, 165, 198, 0.08) !important;
}

.mini-phone,
.mini-record {
  background: rgba(15, 159, 121, 0.08) !important;
}

.balance-visual {
  grid-template-columns: 1fr 1.1fr 1fr;
}

.balance-center {
  min-height: 176px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
}

.privacy-room {
  min-height: 160px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(18, 50, 74, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 50, 74, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 42px 42px;
}

.privacy-line {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
}

.contrast-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contrast-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.faq-layout {
  grid-template-columns: 240px minmax(0, 1fr);
}

.faq-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 8px;
}

.faq-sidebar a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.faq-content {
  display: grid;
  gap: 28px;
}

.faq-group h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.faq-item {
  padding: 16px 18px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding-right: 28px;
  position: relative;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--cyan);
}

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

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

.news-card {
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(14, 165, 198, 0.1), rgba(255, 255, 255, 0.96) 28%),
    #fff;
}

.news-card h2 {
  max-width: 820px;
  margin: 8px 0 16px;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.news-card p:not(.news-meta),
.empty-note {
  color: var(--muted);
}

.empty-note {
  margin-top: 18px;
}

.contact-guidance {
  display: grid;
  gap: 16px;
}

.contact-guidance h2 {
  font-size: 1.55rem;
}

.contact-guidance p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form .full,
.contact-form .form-note,
.contact-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.form-note {
  padding: 14px;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(14, 165, 198, 0.07);
}

.site-footer {
  padding: 56px 0 72px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 148px;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-list {
  color: var(--muted);
}

.footer-list {
  padding: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 8px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
}

/* Mock-faithful layout pass */
:root {
  --shell: min(1420px, calc(100vw - 72px));
}

body {
  background: #fff;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(18, 50, 74, 0.12);
}

.site-header__inner {
  min-height: 76px;
}

.brand {
  width: 190px;
  min-width: 190px;
}

.site-nav {
  gap: 26px;
}

.nav__link {
  min-height: 76px;
  padding: 0;
  border-radius: 0;
  color: #071b45;
  font-size: 1.02rem;
  font-weight: 600;
  position: relative;
}

.nav__link:hover,
.nav__link.is-active {
  color: #006f82;
  background: transparent;
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #006f82;
}

.nav__link:last-child {
  min-height: 48px;
  padding: 0 26px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #006d7d, #008ca1);
}

.nav__link:last-child::before {
  content: "✉";
  margin-right: 10px;
  font-size: 1rem;
}

.nav__link:last-child.is-active::after {
  display: none;
}

.hero {
  padding: 0;
}

.hero .shell {
  width: 100%;
  max-width: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 42%) minmax(0, 58%);
  gap: 0;
  min-height: 530px;
  overflow: hidden;
}

.hero-copy,
.hero-visual {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-copy {
  z-index: 2;
  padding: 76px 54px 64px;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 72%, rgba(255, 255, 255, 0.62) 100%);
}

.hero-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(3.2rem, 4.2vw, 4.4rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.hero-copy .lead {
  max-width: 460px;
  color: #071b45;
  font-size: 1.17rem;
  line-height: 2;
}

.hero-visual {
  min-height: 530px;
}

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

.page-hero {
  padding: 48px 0 28px;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 38px;
}

.page-hero h1 {
  max-width: 17ch;
  font-size: clamp(2.55rem, 3.1vw, 3.7rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.page-hero .lead {
  color: #071b45;
  font-size: 1.08rem;
  line-height: 2;
}

.page-visual {
  min-height: 360px;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.page-visual .visual-image {
  object-fit: contain;
}

.section {
  padding: 32px 0;
}

.section-head {
  max-width: 1180px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 2.2vw, 2.55rem);
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px auto 0;
  color: #071b45;
  line-height: 2;
}

.card-grid {
  gap: 24px;
}

.info-card {
  min-height: 146px;
  padding: 26px 30px;
  border-color: rgba(18, 50, 74, 0.14);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(18, 50, 74, 0.06);
}

.info-card h3 {
  font-size: 1.38rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.info-card p {
  color: #071b45;
  line-height: 1.9;
}

.button {
  min-height: 66px;
  padding: 0 30px;
  border-radius: 7px;
  font-size: 1.05rem;
}

.button--primary {
  background: linear-gradient(135deg, #006d7d, #008fa5);
}

.button--primary::before {
  content: "✉";
  margin-right: 12px;
}

.button--ghost {
  background: #fff;
  border-color: #006d7d;
  color: #006d7d;
}

.section--soft .shell,
.section--contrast .shell,
.section--cta .shell {
  border-radius: 8px;
}

.section--cta .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.45fr);
  align-items: center;
  gap: 28px;
  padding: 26px 56px;
  color: #071b45;
  background: linear-gradient(90deg, #eef9fb, #f8fcfd);
  box-shadow: none;
}

.section--cta .section-head {
  margin: 0;
  text-align: left;
}

.section--cta .section-head h2 {
  color: #071b45;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
}

.section--cta .button-row {
  margin: 0;
  justify-content: flex-end;
}

.section--cta .button--ghost {
  color: #006d7d;
  background: #fff;
  border-color: #006d7d;
}

.split {
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.7fr);
}

.workflow-item {
  min-height: 74px;
  border-radius: 8px;
  background: #fff;
}

.news-card {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr) 42px;
  gap: 50px;
  align-items: center;
  padding: 18px 30px 18px 20px;
}

.news-card::after {
  content: "›";
  color: #006d7d;
  font-size: 4rem;
  line-height: 1;
}

.news-card > img {
  width: 100%;
  border-radius: 8px;
}

.news-card h2 {
  max-width: 860px;
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  line-height: 1.45;
}

.empty-note {
  display: grid;
  place-items: center;
  min-height: 130px;
  margin-top: 30px;
  border: 1px dashed rgba(0, 109, 125, 0.24);
  border-radius: 8px;
  color: #071b45;
}

body[data-page="problem"] .page-hero-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(640px, 1.28fr);
}

body[data-page="problem"] .page-visual {
  min-height: 430px;
}

body[data-page="problem"] .section:not(.section--contrast) .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 20px;
  border-top: 1px solid rgba(18, 50, 74, 0.14);
}

body[data-page="problem"] .section--contrast .shell {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.45fr);
}

/* About page matching the approved founder/company mock */
.about-hero {
  padding: 54px 0 42px;
  background: #fff;
}

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

.about-hero h1 {
  max-width: 16ch;
  color: #071b45;
  font-size: clamp(3rem, 3.7vw, 4.1rem);
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.about-hero p {
  margin-top: 26px;
  color: #071b45;
  font-size: 1.28rem;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.about-hero img {
  width: 100%;
  opacity: 0.96;
}

.about-principles {
  padding: 28px 0;
  background: linear-gradient(90deg, #eef7fa, #f8fcfd);
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.principle-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 142px;
  padding: 10px 44px 10px 30px;
}

.principle-item + .principle-item {
  border-left: 1px solid rgba(18, 50, 74, 0.18);
}

.principle-icon {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(212, 232, 238, 0.7);
}

.principle-icon::before,
.principle-icon::after {
  content: "";
  position: absolute;
  border-color: #006f82;
}

.principle-icon--people::before {
  left: 35px;
  top: 27px;
  width: 18px;
  height: 18px;
  border: 3px solid #006f82;
  border-radius: 50%;
}

.principle-icon--people::after {
  left: 26px;
  top: 55px;
  width: 38px;
  height: 26px;
  border: 3px solid #006f82;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 33px -5px 0 -10px transparent;
}

.principle-icon--care::before {
  left: 35px;
  top: 28px;
  width: 38px;
  height: 32px;
  border: 3px solid #006f82;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  transform: rotate(-12deg);
}

.principle-icon--care::after {
  left: 44px;
  top: 26px;
  width: 24px;
  height: 22px;
  border: 3px solid #006f82;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.principle-icon--network::before {
  inset: 27px;
  border: 3px solid #006f82;
  border-radius: 50%;
}

.principle-icon--network::after {
  left: 51px;
  top: 24px;
  width: 6px;
  height: 60px;
  background: #006f82;
  border: 0;
  box-shadow: -26px 30px 0 -1px #006f82, 26px 30px 0 -1px #006f82;
  opacity: 0.9;
}

.principle-item h2 {
  color: #006f82;
  font-size: 1.9rem;
  line-height: 1.2;
}

.principle-item p {
  margin-top: 16px;
  color: #071b45;
  font-size: 1.02rem;
  line-height: 2;
}

.about-profile {
  padding: 34px 0 58px;
  background: #fff;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(620px, 1.14fr);
  gap: 84px;
  align-items: start;
}

.founder-block,
.company-block {
  padding-top: 0;
}

.founder-block h2,
.company-block h2 {
  color: #071b45;
  font-size: 1.75rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.founder-block h3 {
  margin-top: 22px;
  color: #071b45;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
}

.founder-block p {
  margin-top: 8px;
  color: #071b45;
  font-size: 0.97rem;
  line-height: 1.85;
}

.company-block .info-table {
  margin-top: 18px;
  border: 1px solid rgba(18, 50, 74, 0.18);
  border-radius: 6px;
  overflow: hidden;
}

.company-block .info-table div {
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 0;
  border-bottom: 1px solid rgba(18, 50, 74, 0.18);
}

.company-block .info-table div:last-child {
  border-bottom: 0;
}

.company-block .info-table dt,
.company-block .info-table dd {
  min-height: 48px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
}

.company-block .info-table dt {
  color: #071b45;
  background: rgba(248, 250, 251, 0.82);
  border-right: 1px solid rgba(18, 50, 74, 0.18);
  font-weight: 700;
}

.company-block .info-table dd {
  color: #071b45;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 0;
  }

  .nav__link {
    padding: 0 8px;
    font-size: 0.84rem;
  }

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

@media (max-width: 900px) {
  :root {
    --shell: min(100vw - 36px, 100%);
  }

  .site-header__inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
    box-shadow: 0 8px 20px rgba(18, 50, 74, 0.08);
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav__link {
    justify-content: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .nav__link.is-active::after {
    display: none;
  }

  .nav__link:last-child {
    margin-left: 0;
    min-height: 52px;
  }

  .hero-grid,
  .page-hero-grid,
  .about-hero-grid,
  .about-profile-grid,
  .split,
  .contact-layout,
  .footer-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 48px 30px 36px;
  }

  .hero-copy h1,
  .page-hero h1,
  .about-hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 8vw, 3.4rem);
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .hero-copy .lead,
  .page-hero .lead,
  .about-hero p {
    font-size: 1rem;
    line-height: 1.9;
    overflow-wrap: anywhere;
  }

  .hero-visual,
  .page-visual {
    min-height: 360px;
  }

  .page-hero {
    padding: 38px 0 22px;
  }

  .page-hero-grid {
    gap: 28px;
  }

  .section--cta .shell {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .section--cta .section-head {
    text-align: left;
  }

  .section--cta .button-row {
    justify-content: flex-start;
  }

  .section-head h2,
  .info-card h3,
  .news-card h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .news-card {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
  }

  .news-card::after {
    display: none;
  }

  .about-hero {
    padding: 38px 0 28px;
  }

  .about-hero-grid,
  .about-profile-grid {
    gap: 30px;
  }

  .about-hero img {
    max-height: 360px;
    object-fit: contain;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-item {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 116px;
    padding: 18px 0;
  }

  .principle-item + .principle-item {
    border-top: 1px solid rgba(18, 50, 74, 0.18);
    border-left: 0;
  }

  .principle-icon {
    width: 78px;
    height: 78px;
    transform: scale(0.72);
    transform-origin: center;
  }

  .faq-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100vw - 28px, 100%);
  }

  h1 {
    max-width: none;
    font-size: clamp(2.08rem, 9.4vw, 3rem);
  }

  .brand {
    width: 132px;
    min-width: 132px;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .site-nav {
    top: 62px;
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 0;
  }

  .hero-copy {
    padding: 38px 22px 28px;
  }

  .hero-copy h1,
  .page-hero h1,
  .about-hero h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero-copy .lead,
  .page-hero .lead,
  .section-head p:not(.eyebrow),
  .info-card p,
  .about-hero p,
  .principle-item p,
  .founder-block p {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .hero-visual {
    min-height: 300px;
  }

  .page-visual {
    min-height: 260px;
  }

  body[data-page="problem"] .page-visual {
    min-height: 280px;
  }

  .page-visual .visual-image {
    object-fit: contain;
  }

  .hero-copy,
  .section--soft .shell,
  .section--contrast .shell,
  .section--cta .shell {
    padding: 24px;
  }

  .card-grid,
  .cards--three,
  .cards--four,
  .contact-form,
  .balance-visual {
    grid-template-columns: 1fr;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.98rem;
  }

  .section {
    padding: 26px 0;
  }

  .section-head {
    margin-bottom: 18px;
    text-align: left;
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.45;
    letter-spacing: 0.03em;
  }

  .info-card {
    min-height: auto;
    padding: 20px;
  }

  .info-card h3,
  .contact-guidance h2 {
    font-size: 1.18rem;
  }

  .workflow-item {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 64px;
    padding: 10px 12px;
  }

  .workflow-item span {
    width: 36px;
    height: 36px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .news-card h2 {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
    overflow-wrap: anywhere;
  }

  .contact-form {
    padding: 18px;
  }

  .info-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-block .info-table div {
    grid-template-columns: 1fr;
  }

  .company-block .info-table dt,
  .company-block .info-table dd {
    min-height: auto;
    padding: 10px 14px;
  }

  .company-block .info-table dt {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 50, 74, 0.1);
  }

  .about-principles {
    padding: 16px 0;
  }

  .principle-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
  }

  .principle-icon {
    width: 62px;
    height: 62px;
    transform: scale(0.58);
  }

  .principle-item h2,
  .founder-block h2,
  .company-block h2,
  .founder-block h3 {
    font-size: 1.38rem;
  }

  .about-profile {
    padding: 28px 0 44px;
  }

  .room-bed {
    left: 28px;
    width: 68%;
  }

  .room-device {
    right: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
