:root {
  --ink: #17201f;
  --muted: #5f6d69;
  --line: #d9e3df;
  --paper: #fbfcfa;
  --panel: #ffffff;
  --mist: #eef6f2;
  --blue: #225f7a;
  --teal: #1d7a68;
  --amber: #d79c31;
  --rose: #b95f58;
  --shadow: 0 18px 48px rgba(22, 37, 34, 0.10);
  --radius: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(29, 122, 104, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(34, 95, 122, 0.04) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 56px 56px;
  line-height: 1.75;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 32, 31, 0.08);
  background: rgba(251, 252, 250, 0.93);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 8px 20px rgba(23, 32, 31, 0.06);
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 18px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.3;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 32, 31, 0.18);
}

.button.secondary {
  background: var(--panel);
  color: var(--ink);
  border-color: var(--line);
}

.button.teal {
  background: var(--teal);
  border-color: var(--teal);
}

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 78px 24px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 6.4vw, 72px);
  max-width: 880px;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
}

h3 {
  font-size: 20px;
}

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

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.trust-row div,
.note-box,
.metric {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.trust-row div {
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.visual-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f1f8f4);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

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

.workflow-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 16px 0 0 var(--amber), 32px 0 0 var(--rose);
}

.record-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 14px;
}

.record-card strong {
  display: block;
  font-size: 14px;
}

.record-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.bars {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.bar {
  height: 8px;
  border-radius: 99px;
  background: #e3ede8;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--teal);
}

.screen-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 12px;
}

.mini-list {
  display: grid;
  gap: 8px;
}

.mini-list span {
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7faf8;
  padding: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.page-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 24px 42px;
}

.section {
  padding: 58px 24px;
}

.section.alt {
  background: rgba(238, 246, 242, 0.72);
  border-top: 1px solid rgba(217, 227, 223, 0.7);
  border-bottom: 1px solid rgba(217, 227, 223, 0.7);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

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

.section-head p,
.body-copy {
  color: var(--muted);
  font-size: 17px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(23, 32, 31, 0.05);
}

.card p,
.card li {
  color: var(--muted);
}

.card p:last-child {
  margin-bottom: 0;
}

.card.accent {
  border-color: rgba(29, 122, 104, 0.28);
  background: linear-gradient(180deg, #ffffff, #eff8f4);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.flow div {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 16px;
  min-height: 116px;
}

.flow small {
  color: var(--amber);
  font-weight: 900;
}

.price-table,
.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.price-table th,
.price-table td,
.info-table th,
.info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th,
.info-table th {
  width: 28%;
  background: #f4f8f6;
}

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

.note-box {
  padding: 18px;
  color: var(--muted);
}

.note-box strong {
  color: var(--ink);
}

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

.metric {
  padding: 20px;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.2;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.mail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
}

.mail-card .mail-address {
  display: block;
  margin: 14px 0 4px;
  color: var(--teal);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.field-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.field-list li {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: #f8fbf9;
  color: var(--muted);
}

.policy {
  max-width: 920px;
}

.policy h2 {
  margin-top: 42px;
  font-size: 26px;
}

.policy p,
.policy li {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #15201d;
  color: #f8fbf9;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #c9d8d2;
  font-size: 14px;
}

.disclaimer {
  margin-top: 14px;
  color: #b8c8c1;
  font-size: 13px;
  max-width: 760px;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 14px;
  }

  .hero,
  .screen-grid,
  .grid-2,
  .contact-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .grid-3,
  .trust-row,
  .metrics,
  .flow {
    grid-template-columns: 1fr;
  }

  .visual-frame {
    min-width: 0;
  }

  .price-table th,
  .price-table td,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .nav,
  .hero,
  .section,
  .page-hero,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    width: 100%;
  }

  .nav-links .button {
    width: auto;
    min-width: 132px;
  }

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

/* Welza LP redesign: icon-led, low-friction, A-type-office focused */
:root {
  --ink: #202523;
  --muted: #65716e;
  --line: #dfe8e4;
  --paper: #fffdf7;
  --panel: #ffffff;
  --mist: #edf8f3;
  --mint-soft: #dff7ed;
  --sky-soft: #deefff;
  --peach-soft: #ffe4d3;
  --butter-soft: #fff2bd;
  --coral-soft: #ffd3cc;
  --teal: #178b78;
  --blue: #3578b7;
  --amber: #e7a92d;
  --rose: #d67267;
  --shadow: 0 20px 54px rgba(41, 58, 53, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 12%, rgba(223, 247, 237, 0.9), transparent 24%),
    radial-gradient(circle at 86% 4%, rgba(255, 228, 211, 0.75), transparent 22%),
    linear-gradient(180deg, #fffdf7 0%, #f7fbf8 48%, #fffaf3 100%);
}

.site-header {
  background: rgba(255, 253, 247, 0.92);
}

.nav {
  max-width: 1120px;
}

.brand small {
  color: #74817d;
}

.nav-links {
  gap: 16px;
}

.button {
  border-radius: 8px;
}

.button.teal {
  background: #178b78;
  border-color: #178b78;
  box-shadow: 0 12px 24px rgba(23, 139, 120, 0.18);
}

.button.light {
  background: #ffffff;
  border-color: rgba(32, 37, 35, 0.14);
  color: var(--ink);
}

.friendly-hero {
  max-width: 1120px;
  padding: 58px 24px 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.86fr);
  grid-template-areas:
    "copy board"
    "follow board";
  gap: 36px;
}

.hero-copy {
  grid-area: copy;
  max-width: 650px;
}

.hero-followup {
  grid-area: follow;
}

.friendly-hero h1 {
  max-width: 680px;
  font-size: clamp(34px, 5.2vw, 58px);
}

.friendly-hero .lead {
  max-width: 610px;
  margin-top: 18px;
  font-size: 17px;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.micro-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(32, 37, 35, 0.1);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 12px;
  color: #52615d;
  font-size: 13px;
  font-weight: 800;
}

.micro-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.structure-board {
  grid-area: board;
  position: relative;
  border: 1px solid rgba(32, 37, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow: hidden;
}

.structure-board::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(23, 139, 120, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.structure-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding: 4px 4px 12px;
  border-bottom: 1px solid rgba(32, 37, 35, 0.08);
}

.structure-title strong {
  font-size: 16px;
}

.structure-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.structure-map::before,
.structure-map::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: rgba(23, 139, 120, 0.16);
}

.structure-map::before {
  left: 50%;
  top: 16px;
  bottom: 16px;
  width: 2px;
}

.structure-map::after {
  top: 50%;
  left: 16px;
  right: 16px;
  height: 2px;
}

.structure-card {
  position: relative;
  z-index: 1;
  min-height: 158px;
  border: 1px solid rgba(32, 37, 35, 0.12);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 12px 24px rgba(41, 58, 53, 0.07);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.structure-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, var(--mint-soft));
}

.structure-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, var(--sky-soft));
}

.structure-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, var(--peach-soft));
}

.structure-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff, var(--butter-soft));
}

.structure-card:hover,
.structure-card:focus {
  transform: translateY(-3px);
  border-color: rgba(23, 139, 120, 0.45);
  box-shadow: 0 18px 34px rgba(41, 58, 53, 0.14);
  outline: 0;
}

.tap-label {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 28px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.76);
  padding: 4px 8px;
  color: #53605c;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.structure-card h3 {
  margin-top: 8px;
  font-size: 17px;
}

.structure-card p {
  margin: 7px 0 0;
  color: #5d6a66;
  font-size: 13px;
  line-height: 1.55;
}

.line-icon {
  position: relative;
  width: 78px;
  height: 64px;
}

.line-icon span,
.line-icon i,
.line-icon b,
.line-icon::before,
.line-icon::after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  content: "";
}

.talk-icon span,
.talk-icon i {
  width: 16px;
  height: 16px;
  top: 18px;
  border: 3px solid #203331;
  border-radius: 50%;
  background: #ffffff;
}

.talk-icon span {
  left: 8px;
}

.talk-icon i {
  left: 38px;
}

.talk-icon span::after,
.talk-icon i::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 18px;
  width: 30px;
  height: 20px;
  border: 3px solid #203331;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.talk-icon b {
  left: 25px;
  top: 4px;
  width: 38px;
  height: 23px;
  border: 3px solid #178b78;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.talk-icon b::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: -8px;
  border-top: 8px solid #178b78;
  border-left: 6px solid transparent;
}

.note-icon span {
  left: 12px;
  top: 8px;
  width: 44px;
  height: 52px;
  border: 3px solid #203331;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.8);
}

.note-icon i,
.note-icon b,
.note-icon::after {
  left: 23px;
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: #178b78;
}

.note-icon i {
  top: 25px;
}

.note-icon b {
  top: 37px;
}

.note-icon::after {
  top: 49px;
  width: 17px;
}

.user-icon span {
  left: 24px;
  top: 8px;
  width: 24px;
  height: 24px;
  border: 3px solid #203331;
  border-radius: 50%;
  background: #ffffff;
}

.user-icon i {
  left: 11px;
  top: 36px;
  width: 50px;
  height: 23px;
  border: 3px solid #203331;
  border-radius: 18px 18px 8px 8px;
  background: rgba(255, 255, 255, 0.76);
}

.user-icon b,
.user-icon::after {
  width: 16px;
  height: 4px;
  border-radius: 99px;
  background: #178b78;
}

.user-icon b {
  left: 56px;
  top: 18px;
}

.user-icon::after {
  left: 56px;
  top: 31px;
}

.file-icon span {
  left: 15px;
  top: 8px;
  width: 40px;
  height: 50px;
  border: 3px solid #203331;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
}

.file-icon span::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 15px;
  height: 15px;
  border-left: 3px solid #203331;
  border-bottom: 3px solid #203331;
  background: #fff2bd;
}

.file-icon i {
  left: 25px;
  top: 25px;
  width: 20px;
  height: 3px;
  border-radius: 99px;
  background: #178b78;
}

.file-icon b {
  left: 25px;
  top: 37px;
  width: 15px;
  height: 3px;
  border-radius: 99px;
  background: #178b78;
}

.quick-flow {
  max-width: 1120px;
  margin: 0 auto 20px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quick-flow .flow-step {
  min-height: 112px;
  border: 1px solid rgba(32, 37, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(41, 58, 53, 0.06);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.flow-step strong {
  display: block;
  font-size: 18px;
}

.flow-step p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section.compact {
  padding: 48px 24px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered h2 {
  max-width: 740px;
  margin: 0 auto;
}

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

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

.need-card {
  min-height: 166px;
  border: 1px solid rgba(32, 37, 35, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(41, 58, 53, 0.06);
}

.need-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 3px solid rgba(32, 37, 35, 0.86);
  border-radius: 14px;
  box-shadow: inset 10px -10px 0 rgba(255, 255, 255, 0.55);
}

.need-icon.mint {
  background: var(--mint-soft);
}

.need-icon.sky {
  background: var(--sky-soft);
}

.need-icon.peach {
  background: var(--peach-soft);
}

.need-icon.yellow {
  background: var(--butter-soft);
}

.need-icon.coral {
  background: var(--coral-soft);
}

.need-icon.ink {
  background: #dfe5e2;
}

.need-card h3 {
  font-size: 18px;
}

.need-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.soft-band {
  background: linear-gradient(90deg, rgba(223, 247, 237, 0.72), rgba(222, 239, 255, 0.6));
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.74fr);
  gap: 24px;
  align-items: center;
}

.split-block.reverse {
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 0.84fr);
}

.mini-demo {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(32, 37, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  padding: 14px;
  box-shadow: 0 14px 32px rgba(41, 58, 53, 0.08);
}

.mini-demo.wide {
  min-height: 260px;
}

.demo-line {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(32, 37, 35, 0.09);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 12px;
}

.demo-line span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.demo-line strong {
  font-size: 14px;
}

.demo-line.complete {
  background: #203331;
  color: #ffffff;
}

.demo-line.complete span {
  color: #9be7d7;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(32, 37, 35, 0.1);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.feature-row article {
  min-height: 138px;
  padding: 22px;
}

.feature-row article + article {
  border-left: 1px solid rgba(32, 37, 35, 0.1);
}

.feature-row p {
  color: var(--muted);
  margin-bottom: 0;
}

.cta-band {
  background: #203331;
  color: #ffffff;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-inner h2 {
  color: #ffffff;
}

.cta-inner p {
  max-width: 720px;
  color: #d8e8e2;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.plan-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(32, 37, 35, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(41, 58, 53, 0.07);
}

.plan-panel p {
  color: var(--muted);
}

.safe-note {
  border: 1px solid rgba(32, 37, 35, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.safe-note p {
  margin: 8px 0 0;
  color: var(--muted);
}

.prototype-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(223, 247, 237, 0.54)),
    #fffdf7;
}

.prototype-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.prototype-head h2 {
  max-width: 760px;
}

.prototype-head p {
  max-width: 720px;
  color: var(--muted);
}

.prototype-safe {
  border: 1px solid rgba(23, 139, 120, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 12px 14px;
  color: #4f625d;
  font-size: 13px;
  font-weight: 800;
}

.prototype-workbench {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
  align-items: stretch;
}

.prototype-panel {
  border: 1px solid rgba(32, 37, 35, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(41, 58, 53, 0.08);
  padding: 16px;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-topline strong {
  font-size: 16px;
}

.panel-topline span {
  border-radius: 99px;
  background: #edf8f3;
  padding: 5px 9px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.sample-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.sample-buttons button {
  min-height: 44px;
  border: 1px solid rgba(32, 37, 35, 0.13);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.sample-buttons button[aria-pressed="true"] {
  border-color: rgba(23, 139, 120, 0.45);
  background: #dff7ed;
  color: #0b6d5d;
}

.prototype-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.prototype-panel textarea {
  width: 100%;
  min-height: 174px;
  resize: vertical;
  border: 1px solid rgba(32, 37, 35, 0.13);
  border-radius: 8px;
  background: #fffefb;
  padding: 12px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  line-height: 1.75;
}

.prototype-panel textarea:focus {
  border-color: rgba(23, 139, 120, 0.55);
  outline: 3px solid rgba(23, 139, 120, 0.12);
}

.prototype-run {
  width: 100%;
  margin-top: 12px;
}

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

.output-card {
  min-height: 142px;
  border: 1px solid rgba(32, 37, 35, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fcfa);
  padding: 14px;
}

.output-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #eff7ff);
}

.output-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #fff6d9);
}

.output-card.alert {
  background: linear-gradient(180deg, #ffffff, #ffe8df);
}

.output-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  padding: 4px 9px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.output-card p {
  margin: 12px 0 0;
  color: #4f5f5b;
  font-size: 14px;
  line-height: 1.7;
}

.prototype-workbench.is-processing .output-card {
  animation: welzaPulse 520ms ease;
}

@keyframes welzaPulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .friendly-hero,
  .split-block,
  .split-block.reverse,
  .plan-panel,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .quick-flow,
  .simple-grid,
  .simple-grid.three,
  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .prototype-head,
  .prototype-workbench {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .friendly-hero {
    padding-top: 42px;
  }

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

  .structure-map,
  .quick-flow,
  .simple-grid,
  .simple-grid.three,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .structure-map::before,
  .structure-map::after {
    display: none;
  }

  .structure-card {
    min-height: 142px;
  }

  .demo-line {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .feature-row article + article {
    border-left: 0;
    border-top: 1px solid rgba(32, 37, 35, 0.1);
  }

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

@media (max-width: 900px) {
  .friendly-hero {
    grid-template-areas:
      "copy"
      "board"
      "follow";
  }
}

@media (max-width: 560px) {
  .friendly-hero {
    padding-top: 34px;
    gap: 20px;
  }

  .friendly-hero h1 {
    font-size: 31px;
  }

  .friendly-hero .lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 4px;
  }

  .micro-trust {
    margin-top: 14px;
  }

  .structure-board {
    padding: 12px;
  }

  .structure-title {
    display: grid;
    gap: 4px;
    align-items: start;
    margin-bottom: 10px;
  }

  .sample-buttons,
  .prototype-output-grid {
    grid-template-columns: 1fr;
  }

  .prototype-safe {
    font-size: 12px;
  }
}

/* Welza color system: 鴨羽色 as the main brand color */
:root {
  --kamoha: #008080;
  --kamoha-deep: #005f63;
  --kamoha-dark: #123f42;
  --kamoha-ink: #193331;
  --kamoha-pale: #e4f5f3;
  --kamoha-wash: #f3fbfa;
  --audience-blue: #dceeff;
  --audience-leaf: #e5f6db;
  --audience-coral: #ffe2d8;
  --audience-indigo: #e7ecff;
  --soft-amber: #fff0bd;
  --paper: #f7fbfa;
  --teal: var(--kamoha);
  --blue: #316f94;
  --amber: #d99a2b;
  --rose: #c96d62;
  --shadow: 0 20px 54px rgba(18, 63, 66, 0.13);
}

body {
  background:
    radial-gradient(circle at 8% 9%, rgba(228, 245, 243, 0.95), transparent 26%),
    radial-gradient(circle at 88% 4%, rgba(220, 238, 255, 0.8), transparent 24%),
    radial-gradient(circle at 86% 64%, rgba(255, 226, 216, 0.54), transparent 22%),
    linear-gradient(180deg, #f8fcfb 0%, #eef8f6 42%, #f9fbff 100%);
}

.site-header {
  background: rgba(247, 251, 250, 0.94);
}

.brand-mark {
  border-color: rgba(0, 128, 128, 0.22);
  color: var(--kamoha-deep);
}

.eyebrow,
.demo-line span,
.panel-topline span,
.output-card span {
  color: var(--kamoha-deep);
}

.button.teal {
  background: var(--kamoha);
  border-color: var(--kamoha);
  box-shadow: 0 12px 24px rgba(0, 128, 128, 0.2);
}

.button.teal:hover {
  background: var(--kamoha-deep);
}

.micro-trust span::before,
.status-dot,
.bar span {
  background: var(--kamoha);
}

.structure-board {
  border-color: rgba(0, 128, 128, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.structure-board::before {
  border-color: rgba(0, 128, 128, 0.22);
}

.structure-map::before,
.structure-map::after {
  background: rgba(0, 128, 128, 0.18);
}

.structure-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, var(--kamoha-pale));
}

.structure-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, var(--audience-blue));
}

.structure-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, var(--audience-coral));
}

.structure-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff, var(--soft-amber));
}

.structure-card:hover,
.structure-card:focus {
  border-color: rgba(0, 128, 128, 0.46);
  box-shadow: 0 18px 34px rgba(18, 63, 66, 0.16);
}

.talk-icon b,
.note-icon i,
.note-icon b,
.note-icon::after,
.user-icon b,
.user-icon::after,
.file-icon i,
.file-icon b {
  background: var(--kamoha);
}

.talk-icon b {
  border-color: var(--kamoha);
}

.talk-icon b::after {
  border-top-color: var(--kamoha);
}

.quick-flow .flow-step,
.prototype-panel,
.need-card,
.plan-panel,
.safe-note {
  border-color: rgba(0, 128, 128, 0.12);
}

.step-number {
  background: var(--kamoha-dark);
}

.soft-band {
  background: linear-gradient(90deg, rgba(228, 245, 243, 0.82), rgba(220, 238, 255, 0.62));
}

.cta-band,
.demo-line.complete {
  background: var(--kamoha-dark);
}

.prototype-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(228, 245, 243, 0.66)),
    var(--kamoha-wash);
}

.prototype-safe,
.sample-buttons button[aria-pressed="true"] {
  border-color: rgba(0, 128, 128, 0.28);
  background: var(--kamoha-pale);
  color: var(--kamoha-deep);
}

.prototype-panel textarea {
  background: #fbfefd;
}

.prototype-panel textarea:focus {
  border-color: rgba(0, 128, 128, 0.58);
  outline-color: rgba(0, 128, 128, 0.12);
}

.output-card {
  background: linear-gradient(180deg, #ffffff, var(--kamoha-wash));
}

.output-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, var(--audience-blue));
}

.output-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, var(--soft-amber));
}

.output-card.alert {
  background: linear-gradient(180deg, #ffffff, var(--audience-coral));
}

.audience-section {
  padding-top: 38px;
}

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

.audience-card {
  position: relative;
  min-height: 218px;
  border: 1px solid rgba(18, 63, 66, 0.12);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(18, 63, 66, 0.07);
}

.audience-card::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  opacity: 0.58;
}

.audience-card.manager {
  background: linear-gradient(180deg, #ffffff, var(--kamoha-pale));
}

.audience-card.manager::after {
  background: var(--kamoha);
}

.audience-card.sabikan {
  background: linear-gradient(180deg, #ffffff, var(--audience-blue));
}

.audience-card.sabikan::after {
  background: #7eb7dd;
}

.audience-card.staff {
  background: linear-gradient(180deg, #ffffff, var(--audience-leaf));
}

.audience-card.staff::after {
  background: #a5d783;
}

.audience-card.audit {
  background: linear-gradient(180deg, #ffffff, var(--audience-indigo));
}

.audience-card.audit::after {
  background: #8f9de5;
}

.audience-card small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  padding: 4px 10px;
  color: var(--kamoha-dark);
  font-size: 12px;
  font-weight: 900;
}

.audience-card h3 {
  margin-top: 14px;
  font-size: 19px;
}

.audience-card p {
  margin: 9px 0 0;
  color: #53625f;
  font-size: 14px;
  line-height: 1.66;
}

.audience-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.audience-icon::before,
.audience-icon::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.manager-icon::before {
  left: 13px;
  top: 12px;
  width: 26px;
  height: 26px;
  border: 3px solid var(--kamoha);
  border-radius: 50%;
}

.manager-icon::after {
  left: 10px;
  top: 35px;
  width: 32px;
  height: 10px;
  border-radius: 99px;
  background: var(--kamoha);
}

.plan-icon::before {
  left: 13px;
  top: 11px;
  width: 27px;
  height: 35px;
  border: 3px solid #316f94;
  border-radius: 6px;
}

.plan-icon::after {
  left: 21px;
  top: 23px;
  width: 20px;
  height: 15px;
  border-top: 3px solid #316f94;
  border-bottom: 3px solid #316f94;
}

.care-icon::before {
  left: 12px;
  top: 13px;
  width: 14px;
  height: 14px;
  border: 3px solid #5f9342;
  border-radius: 50%;
  box-shadow: 19px 0 0 -3px #ffffff, 19px 0 0 0 #5f9342;
}

.care-icon::after {
  left: 10px;
  top: 34px;
  width: 36px;
  height: 12px;
  border: 3px solid #5f9342;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.audit-icon::before {
  left: 12px;
  top: 10px;
  width: 30px;
  height: 38px;
  border: 3px solid #5967bc;
  border-radius: 6px;
}

.audit-icon::after {
  left: 20px;
  top: 24px;
  width: 19px;
  height: 10px;
  border-left: 4px solid #5967bc;
  border-bottom: 4px solid #5967bc;
  transform: rotate(-45deg);
}

.need-icon {
  position: relative;
  border-radius: 16px;
  background: var(--kamoha-pale);
  border-color: var(--kamoha-dark);
}

.need-icon::before,
.need-icon::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.need-icon.record::before,
.need-icon.evidence::before {
  left: 11px;
  top: 8px;
  width: 19px;
  height: 25px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 5px;
  background: #ffffff;
}

.need-icon.record::after,
.need-icon.evidence::after {
  left: 17px;
  top: 18px;
  width: 15px;
  height: 11px;
  border-top: 3px solid var(--kamoha);
  border-bottom: 3px solid var(--kamoha);
}

.need-icon.profile {
  background: var(--audience-coral);
}

.need-icon.profile::before {
  left: 13px;
  top: 8px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 50%;
}

.need-icon.profile::after {
  left: 8px;
  top: 26px;
  width: 27px;
  height: 12px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 14px 14px 6px 6px;
}

.need-icon.monitor {
  background: var(--audience-blue);
}

.need-icon.monitor::before {
  left: 7px;
  top: 11px;
  width: 28px;
  height: 20px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 5px;
}

.need-icon.monitor::after {
  left: 13px;
  top: 32px;
  width: 18px;
  height: 4px;
  border-radius: 99px;
  background: var(--kamoha);
}

.need-icon.connect {
  background: var(--audience-leaf);
}

.need-icon.connect::before {
  left: 7px;
  top: 17px;
  width: 30px;
  height: 8px;
  border-left: 4px solid #5f9342;
  border-right: 4px solid #5f9342;
  border-top: 3px solid #5f9342;
  border-bottom: 3px solid #5f9342;
  border-radius: 99px;
}

.need-icon.connect::after {
  left: 17px;
  top: 9px;
  width: 10px;
  height: 26px;
  border-radius: 99px;
  background: #5f9342;
}

.need-icon.review {
  background: var(--soft-amber);
}

.need-icon.review::before {
  left: 10px;
  top: 9px;
  width: 22px;
  height: 22px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 50%;
}

.need-icon.review::after {
  left: 25px;
  top: 27px;
  width: 14px;
  height: 4px;
  border-radius: 99px;
  background: var(--kamoha-dark);
  transform: rotate(42deg);
}

.need-icon.evidence {
  background: var(--audience-indigo);
}

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

@media (max-width: 560px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }
}

/* Corporate / launch split: company trust pages and Welza LP have separate jobs */
body {
  background: linear-gradient(180deg, #f8fcfb 0%, #eef8f6 46%, #fffaf3 100%);
}

.company-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 66px 24px 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.company-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(34px, 5.4vw, 60px);
}

.company-signal {
  border: 1px solid rgba(18, 63, 66, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: 0 18px 42px rgba(18, 63, 66, 0.10);
}

.signal-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(18, 63, 66, 0.1);
}

.signal-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.signal-flow {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.signal-flow div {
  display: grid;
  grid-template-columns: 48px minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(18, 63, 66, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.signal-flow strong {
  font-size: 16px;
}

.signal-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.signal-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 13px;
  background: var(--kamoha-pale);
}

.signal-icon::before,
.signal-icon::after,
.principle-icon::before,
.principle-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.signal-icon.record::before {
  left: 10px;
  top: 8px;
  width: 17px;
  height: 22px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 4px;
  background: #ffffff;
}

.signal-icon.record::after {
  left: 16px;
  top: 18px;
  width: 14px;
  height: 9px;
  border-top: 3px solid var(--kamoha);
  border-bottom: 3px solid var(--kamoha);
}

.signal-icon.arrange {
  background: var(--audience-blue);
}

.signal-icon.arrange::before {
  left: 8px;
  top: 9px;
  width: 22px;
  height: 22px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 50%;
}

.signal-icon.arrange::after {
  left: 24px;
  top: 26px;
  width: 13px;
  height: 4px;
  border-radius: 99px;
  background: var(--kamoha-dark);
  transform: rotate(42deg);
}

.signal-icon.use {
  background: var(--soft-amber);
}

.signal-icon.use::before {
  left: 8px;
  top: 18px;
  width: 25px;
  height: 4px;
  border-radius: 99px;
  background: var(--kamoha-dark);
}

.signal-icon.use::after {
  right: 8px;
  top: 13px;
  width: 14px;
  height: 14px;
  border-right: 4px solid var(--kamoha-dark);
  border-top: 4px solid var(--kamoha-dark);
  transform: rotate(45deg);
}

.company-facts {
  max-width: 1120px;
  margin: 0 auto 16px;
  padding: 0 24px 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.company-facts div {
  border: 1px solid rgba(18, 63, 66, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}

.company-facts span {
  display: block;
  color: var(--kamoha-deep);
  font-size: 12px;
  font-weight: 900;
}

.company-facts strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  overflow-wrap: anywhere;
}

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

.principle-grid article,
.company-note,
.route-card {
  border: 1px solid rgba(18, 63, 66, 0.12);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(18, 63, 66, 0.07);
}

.principle-grid h3,
.route-card h2 {
  margin-top: 12px;
  font-size: 20px;
}

.principle-grid p,
.company-note p,
.route-card p,
.diagnosis-block p {
  color: var(--muted);
}

.principle-icon {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 16px;
  background: var(--kamoha-pale);
}

.principle-icon.simple::before {
  left: 13px;
  top: 12px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 50%;
}

.principle-icon.simple::after {
  left: 10px;
  top: 32px;
  width: 27px;
  height: 7px;
  border-radius: 99px;
  background: var(--kamoha);
}

.principle-icon.evidence {
  background: var(--audience-blue);
}

.principle-icon.evidence::before {
  left: 13px;
  top: 9px;
  width: 23px;
  height: 30px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 5px;
  background: #ffffff;
}

.principle-icon.evidence::after {
  left: 21px;
  top: 24px;
  width: 17px;
  height: 9px;
  border-left: 4px solid var(--kamoha);
  border-bottom: 4px solid var(--kamoha);
  transform: rotate(-45deg);
}

.principle-icon.human {
  background: var(--audience-leaf);
}

.principle-icon.human::before {
  left: 15px;
  top: 10px;
  width: 17px;
  height: 17px;
  border: 3px solid var(--kamoha-dark);
  border-radius: 50%;
}

.principle-icon.human::after {
  left: 11px;
  top: 30px;
  width: 27px;
  height: 11px;
  border: 3px solid var(--kamoha-dark);
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.product-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.product-highlight h2 {
  font-size: clamp(42px, 7vw, 72px);
}

.product-mini {
  display: grid;
  gap: 10px;
}

.product-mini div {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(18, 63, 66, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px;
}

.product-mini span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--kamoha-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.trust-links-block {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
}

.trust-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-link-list a,
.route-mails a {
  border: 1px solid rgba(18, 63, 66, 0.12);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
  color: var(--kamoha-deep);
  font-weight: 900;
}

.trust-link-list a:hover,
.route-mails a:hover {
  border-color: rgba(0, 128, 128, 0.38);
  background: var(--kamoha-wash);
}

.contact-routes {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.route-card.primary {
  background: linear-gradient(180deg, #ffffff, var(--kamoha-wash));
}

.route-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 99px;
  background: var(--kamoha-pale);
  padding: 5px 12px;
  color: var(--kamoha-deep);
  font-size: 12px;
  font-weight: 900;
}

.route-card .mail-address {
  display: block;
  margin-top: 16px;
  color: var(--kamoha-deep);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.route-mails {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.diagnosis-block {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.diagnosis-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.diagnosis-list li {
  position: relative;
  border: 1px solid rgba(18, 63, 66, 0.12);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 14px 12px 40px;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.diagnosis-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--kamoha);
  border-bottom: 3px solid var(--kamoha);
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .company-hero,
  .product-highlight,
  .trust-links-block,
  .contact-routes,
  .diagnosis-block {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .nav-links {
    flex-wrap: wrap;
    overflow-x: visible;
    row-gap: 8px;
  }

  .company-hero {
    padding-top: 38px;
  }

  .company-hero-copy h1 {
    font-size: 32px;
  }

  .signal-flow div,
  .company-facts,
  .principle-grid,
  .trust-link-list {
    grid-template-columns: 1fr;
  }

  .company-facts {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Tomos corporate theme: AI development company with a warm torch motif */
:root {
  --torch-dark: #16120f;
  --torch-surface: #221c17;
  --torch-line: #3a322b;
  --torch-cream: #fbf7f1;
  --torch-cream-2: #f4ede4;
  --torch-muted: #b9afa2;
  --torch-ink: #221c17;
  --torch-amber: #ff8a3d;
  --torch-amber-soft: #ffc07a;
  --torch-cta: #e85d2a;
  --torch-sage: #6d8176;
}

.tomos-corporate {
  background: var(--torch-cream);
  color: var(--torch-ink);
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

.tomos-corporate .site-header {
  border-bottom: 1px solid rgba(255, 192, 122, 0.15);
  background: rgba(22, 18, 15, 0.94);
}

.tomos-corporate .brand,
.tomos-corporate .nav-links {
  color: var(--torch-cream-2);
}

.tomos-corporate .brand small,
.tomos-corporate .nav-links a {
  color: var(--torch-muted);
}

.tomos-corporate .nav-links a:hover {
  color: var(--torch-amber-soft);
}

.tomos-corporate .brand-mark {
  border-color: rgba(255, 138, 61, 0.35);
  background: #2b221c;
  color: var(--torch-amber-soft);
  box-shadow: 0 0 0 1px rgba(255, 192, 122, 0.08), 0 14px 30px rgba(0, 0, 0, 0.22);
}

.button.flame {
  border-color: var(--torch-cta);
  background: var(--torch-cta);
  color: #fff8ef;
  box-shadow: 0 14px 30px rgba(232, 93, 42, 0.22);
}

.button.flame:hover {
  background: #c9491d;
}

.button.ember-outline {
  border-color: rgba(255, 192, 122, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--torch-cream-2);
}

.warm-section .button.ember-outline,
.product-stage .button.ember-outline,
.tomos-corporate .note-box .button.secondary {
  border-color: #e8dfd4;
  background: #ffffff;
  color: var(--torch-ink);
}

.tomos-corporate .eyebrow {
  color: var(--torch-cta);
}

.torch-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.76fr);
  gap: 44px;
  align-items: center;
  min-height: 690px;
  padding: 88px 24px 76px;
  background:
    linear-gradient(124deg, rgba(255, 138, 61, 0.18), transparent 42%),
    linear-gradient(180deg, #16120f 0%, #211914 100%);
  color: var(--torch-cream-2);
}

.torch-hero::before {
  content: "";
  position: absolute;
  left: 8%;
  top: 16%;
  width: 2px;
  height: 360px;
  background: linear-gradient(180deg, transparent, rgba(255, 192, 122, 0.72), transparent);
  box-shadow:
    42px 10px 120px rgba(255, 138, 61, 0.32),
    120px 44px 180px rgba(255, 192, 122, 0.16);
  transform: rotate(18deg);
}

.torch-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 192, 122, 0.58), transparent);
}

.compact-hero {
  min-height: 560px;
}

.torch-hero-copy,
.lamp-panel {
  position: relative;
  z-index: 1;
}

.torch-hero-copy {
  max-width: 760px;
  margin-left: max(0px, calc((100vw - 1120px) / 2));
}

.torch-hero h1 {
  max-width: 820px;
  color: var(--torch-cream-2);
  font-size: clamp(46px, 8.2vw, 96px);
  line-height: 1.02;
}

.no-break {
  white-space: nowrap;
}

.torch-hero .lead {
  color: #d8cfc4;
  font-size: clamp(18px, 2.4vw, 24px);
}

.lamp-panel {
  max-width: 430px;
  margin-right: max(0px, calc((100vw - 1120px) / 2));
  border: 1px solid rgba(255, 192, 122, 0.18);
  border-radius: 8px;
  background: rgba(34, 28, 23, 0.74);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  padding: 18px;
}

.lamp-glass {
  position: relative;
  display: block;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 192, 122, 0.62);
  border-radius: 8px 8px 20px 20px;
  background: linear-gradient(180deg, rgba(255, 192, 122, 0.34), rgba(232, 93, 42, 0.08));
  box-shadow: 0 0 44px rgba(255, 138, 61, 0.35);
}

.lamp-glass::before,
.lamp-glass::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--torch-amber-soft);
}

.lamp-glass::before {
  top: 13px;
  width: 16px;
  height: 24px;
  border-radius: 10px 10px 4px 4px;
}

.lamp-glass::after {
  bottom: -8px;
  width: 42px;
  height: 7px;
  border-radius: 99px;
}

.lamp-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(255, 192, 122, 0.13);
  padding: 14px 0;
}

.lamp-row span {
  color: var(--torch-amber-soft);
  font-size: 13px;
  font-weight: 900;
}

.lamp-row strong {
  color: var(--torch-cream-2);
  font-size: 15px;
}

.tomos-intro {
  background: var(--torch-surface);
  color: var(--torch-cream-2);
}

.tomos-intro .container {
  max-width: 920px;
}

.tomos-intro p {
  margin: 0;
  color: #dfd5ca;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.9;
}

.tomos-intro p + p {
  margin-top: 16px;
  color: var(--torch-amber-soft);
}

.warm-section {
  background: var(--torch-cream);
}

.warm-section .section-head p,
.product-stage .section-head p,
.corporate-page-hero .lead {
  color: #6f6258;
}

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

.torch-card {
  position: relative;
  border: 1px solid #e8dfd4;
  border-radius: 8px;
  background: #fffdf9;
  padding: 24px;
  box-shadow: 0 18px 42px rgba(34, 28, 23, 0.08);
}

.torch-card small,
.product-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 99px;
  background: #fff1e5;
  padding: 4px 10px;
  color: var(--torch-cta);
  font-size: 12px;
  font-weight: 900;
}

.torch-card h3 {
  margin-top: 14px;
}

.torch-card p,
.product-card p,
.service-detail p,
.service-detail li,
.service-detail aside {
  color: #6c6259;
}

.mini-lamp {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border: 2px solid var(--torch-cta);
  border-radius: 8px 8px 14px 14px;
  background: #fff4e9;
  box-shadow: 0 0 22px rgba(255, 138, 61, 0.2);
}

.centered-action {
  justify-content: center;
}

.product-stage {
  background:
    linear-gradient(180deg, rgba(34, 28, 23, 0.04), transparent 18%),
    #f7efe6;
}

.product-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 16px;
  align-items: stretch;
}

.product-card {
  border: 1px solid #e3d8cb;
  border-radius: 8px;
  background: #fffdf9;
  padding: 26px;
  box-shadow: 0 18px 46px rgba(34, 28, 23, 0.08);
}

.product-card.featured {
  background:
    linear-gradient(145deg, rgba(255, 138, 61, 0.13), transparent 46%),
    #fffaf3;
}

.product-card h2,
.product-card h3 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 58px);
}

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

.strength-grid article {
  border: 1px solid #e8dfd4;
  border-radius: 8px;
  background: #fffdf9;
  padding: 18px;
}

.strength-grid strong {
  display: block;
  color: var(--torch-ink);
  font-size: 18px;
}

.strength-grid span {
  display: block;
  margin-top: 8px;
  color: #6f6258;
  font-size: 13px;
  line-height: 1.6;
}

.story-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 138, 61, 0.14), transparent 44%),
    var(--torch-dark);
  color: var(--torch-cream-2);
}

.story-band::before {
  content: "";
  position: absolute;
  left: 9%;
  top: -10%;
  width: 1px;
  height: 360px;
  background: rgba(255, 192, 122, 0.65);
  box-shadow: 58px 42px 120px rgba(255, 138, 61, 0.24);
  transform: rotate(22deg);
}

.story-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 84px 24px;
}

.story-inner h2 {
  color: var(--torch-cream-2);
}

.story-inner p:last-child {
  color: #d8cfc4;
  font-size: 18px;
}

.final-cta {
  background: var(--torch-cream);
}

.corporate-page-hero {
  max-width: 1040px;
}

.service-detail-list {
  display: grid;
  gap: 14px;
}

.service-detail {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 20px;
  align-items: start;
  border: 1px solid #e8dfd4;
  border-radius: 8px;
  background: #fffdf9;
  padding: 24px;
}

.service-detail > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--torch-surface);
  color: var(--torch-amber-soft);
  font-weight: 900;
}

.service-detail ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.service-detail aside {
  border-left: 3px solid var(--torch-amber);
  background: #fff4e9;
  padding: 14px;
  border-radius: 0 8px 8px 0;
  font-weight: 800;
}

.corporate-table th {
  background: #fff1e5;
  color: var(--torch-ink);
}

.corporate-table a {
  color: var(--torch-cta);
  font-weight: 900;
}

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

.small-mail {
  font-size: clamp(20px, 3vw, 30px) !important;
}

.tomos-corporate .site-footer {
  border-top-color: rgba(255, 192, 122, 0.16);
  background: var(--torch-dark);
}

@media (max-width: 900px) {
  .torch-hero,
  .product-cards,
  .service-detail {
    grid-template-columns: 1fr;
  }

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

  .torch-hero-copy,
  .lamp-panel {
    margin-left: 0;
    margin-right: 0;
  }

  .torch-card-grid,
  .strength-grid,
  .contact-checks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .torch-hero {
    padding: 58px 18px 48px;
  }

  .torch-hero h1 {
    font-size: 54px;
  }

  .lamp-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .story-inner {
    padding: 64px 18px;
  }
}
