:root {
  --ink: #18221f;
  --muted: #66736e;
  --line: #d8e0db;
  --paper: #f5f2eb;
  --white: #ffffff;
  --green: #123a31;
  --green-2: #2b6254;
  --copper: #a96138;
  --ai: #356f91;
  --ai-soft: #dfeaf0;
  --sand: #e8ddcc;
  --sky: #9bbfd0;
  --shadow: 0 18px 48px rgba(18, 32, 28, 0.11);
  --soft-shadow: 0 8px 28px rgba(18, 32, 28, 0.07);
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP",
    serif;
  --sans: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(247, 248, 244, 0.92);
  box-shadow: 0 1px 20px rgba(20, 33, 30, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 14px;
  font-weight: 800;
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-weight: 700;
}

.brand small {
  margin-top: -4px;
  font-size: 11px;
  opacity: 0.75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 30px);
  font-size: 14px;
}

.nav-cta {
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 6vw, 88px) 54px;
  color: var(--white);
  background: #081713;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  opacity: 1;
}

.hero-video {
  filter: saturate(0.9) contrast(1.06) brightness(0.86);
}

.hero-image {
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-fallback {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 15, 0.96) 0%, rgba(10, 30, 25, 0.82) 42%, rgba(8, 20, 18, 0.38) 72%, rgba(5, 14, 12, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 14, 12, 0.86) 0%, rgba(5, 14, 12, 0.16) 54%, rgba(5, 14, 12, 0.34) 100%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.07) 38%, transparent 58%),
    radial-gradient(circle at 78% 18%, rgba(244, 196, 158, 0.16), transparent 22%),
    radial-gradient(circle at 8% 72%, rgba(169, 97, 56, 0.14), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: ambientLight 9s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  bottom: 120px;
  width: min(34vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 97, 56, 0.42), transparent);
  animation: lineFloat 4.8s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  writing-mode: vertical-rl;
  color: rgba(18, 58, 49, 0.72);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  margin: 10px auto 0;
  background: rgba(18, 58, 49, 0.34);
  animation: scrollLine 1.9s ease-in-out infinite;
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5c39d;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: loose;
  hanging-punctuation: allow-end;
}

h1 {
  margin: 0;
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: wrap;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.72vw, 40px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: wrap;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
  text-wrap: wrap;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(42, 52, 46, 0.18);
}

.button.primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 14px 34px rgba(98, 46, 19, 0.26);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
}

.diagnosis-card .button.secondary {
  color: var(--green);
  background: var(--white);
  border-color: var(--line);
}

.line-button {
  color: #18332d;
}

.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-metrics dt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.hero-metrics dd {
  margin: 4px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: var(--white);
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 126px) clamp(20px, 5.2vw, 104px);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 5.2vw, 104px);
  right: clamp(20px, 5.2vw, 104px);
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 58, 49, 0.18), transparent);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.48fr);
  gap: clamp(24px, 4.4vw, 72px);
  align-items: end;
  max-width: 1480px;
  margin-bottom: 42px;
}

.section-head p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  text-wrap: wrap;
}

.section-head .eyebrow,
.section-head h2 {
  grid-column: 1;
}

.section-head h2 {
  max-width: 1080px;
}

.section-head p:not(.eyebrow) {
  grid-column: 2;
  align-self: end;
}

.intro-band,
.blueprint,
.proof-section,
.team {
  background: var(--white);
}

.intro-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  max-width: 1480px;
}

.intro-statement h2 {
  max-width: 980px;
}

.intro-statement > p:not(.eyebrow) {
  grid-column: 1;
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 10px;
}

.intro-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcf9;
  color: var(--green);
  font-weight: 900;
}

.intro-actions a::after {
  content: "→";
  color: var(--copper);
}

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

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

.position-card,
.blueprint-item,
.proof-card,
.team-role {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.position-card::after,
.blueprint-item::after,
.proof-card::after,
.detail-card::after,
.area-detail-card::after,
.industry-detail::after,
.journal-card::after,
.article-panel::after {
  display: none;
}

.blueprint-item {
  display: block;
}

.position-card:hover,
.blueprint-item:hover,
.proof-card:hover,
.team-role:hover,
.journal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(169, 97, 56, 0.34);
  box-shadow: var(--shadow);
}

.intro-band .position-card {
  background: #fbfcf9;
}

.position-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-weight: 900;
  font-family: var(--serif);
  font-size: 22px;
}

.proof-card {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 235, 0.74)),
    var(--white);
}

.proof-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

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

.founder-section {
  background:
    linear-gradient(90deg, rgba(18, 58, 49, 0.96), rgba(18, 58, 49, 0.78)),
    url("./assets/subsidy-consulting.png") center/cover;
  color: var(--white);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.4fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
}

.founder-copy {
  max-width: 840px;
}

.founder-copy .eyebrow {
  color: #f4c49e;
}

.founder-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.founder-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid rgba(244, 196, 158, 0.74);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.founder-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: #f4c49e;
  font-size: 12px;
  font-weight: 900;
}

.founder-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
}

.founder-card ul {
  display: grid;
  gap: 8px;
  padding-left: 1.1em;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.audience-section {
  background: var(--white);
}

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

.audience-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(169, 97, 56, 0.42);
  border-radius: 6px;
  background: #fbfcf9;
  box-shadow: var(--soft-shadow);
}

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

.icon,
.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 1px solid rgba(169, 97, 56, 0.28);
  border-radius: 16px;
  color: var(--green);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 221, 204, 0.36));
}

.icon svg,
.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  color: var(--green);
  border-color: rgba(169, 97, 56, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 221, 204, 0.5));
}

.blueprint-item .icon {
  margin-bottom: 18px;
}

.position-card p,
.blueprint-item p,
.team-role p {
  margin: 12px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

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

.detail-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(155, 191, 208, 0.26), transparent 26%),
    var(--paper);
}

.detail-grid,
.area-detail-grid,
.industry-detail-grid,
.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-card,
.area-detail-card,
.industry-detail,
.article-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
  border-top: 3px solid rgba(169, 97, 56, 0.42);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.detail-card:hover,
.area-detail-card:hover,
.industry-detail:hover,
.article-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(169, 97, 56, 0.3);
  box-shadow: var(--shadow);
}

.detail-card h3,
.area-detail-card h3,
.industry-detail h3,
.article-panel h3 {
  font-size: 24px;
}

.detail-card h3::before,
.area-detail-card h3::before,
.industry-detail h3::before,
.article-panel h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--copper);
}

.detail-card p,
.area-detail-card p,
.industry-detail p,
.article-panel p {
  color: var(--muted);
}

.detail-card ul,
.area-detail-card ul,
.article-panel ul {
  display: grid;
  gap: 8px;
  padding-left: 1.1em;
  margin: 18px 0 0;
  color: var(--ink);
}

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

.diagnosis-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  gap: 26px;
  min-height: 520px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 237, 0.92)),
    var(--white);
  border: 1px solid rgba(18, 58, 49, 0.12);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.diagnosis-card.ai {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 221, 204, 0.58)),
    var(--white);
}

.diagnosis-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(18, 32, 28, 0.2);
}

.diagnosis-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(169, 97, 56, 0.16);
  transform: rotate(18deg);
  pointer-events: none;
}

.diagnosis-card p,
.card-result span {
  color: var(--muted);
}

.result-label {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

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

.mini-option {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.mini-option:hover {
  transform: translateY(-2px);
}

.mini-option.active {
  color: var(--green);
  background: rgba(255, 255, 255, 0.94);
}

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

.question-stack label {
  display: grid;
  gap: 7px;
}

.question-stack span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.question-stack select {
  min-height: 50px;
  padding-right: 32px;
  border-color: rgba(18, 58, 49, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(18, 32, 28, 0.06);
}

.question-stack select:focus {
  outline: 2px solid rgba(169, 97, 56, 0.44);
  outline-offset: 2px;
}

.question-stack option {
  color: var(--ink);
  background: var(--white);
}

.card-result {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(18, 58, 49, 0.12);
  border-radius: 6px;
  background: rgba(248, 250, 244, 0.82);
}

.card-result strong {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
  text-wrap: wrap;
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(32px, 5.4vw, 88px);
  align-items: center;
  padding: clamp(76px, 9vw, 126px) clamp(20px, 5.2vw, 104px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent),
    var(--sand);
}

.ai-visual {
  grid-template-columns: minmax(460px, 1.05fr) minmax(420px, 0.95fr);
  background:
    radial-gradient(circle at 12% 18%, rgba(155, 191, 208, 0.38), transparent 26%),
    #eef2ed;
}

.visual-copy {
  max-width: 780px;
}

.visual-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.visual-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  min-height: 420px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  pointer-events: none;
}

.visual-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.visual-media:hover img {
  transform: scale(1.045);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 16px;
  height: 1px;
  background: var(--copper);
}

.problem-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(232, 238, 232, 0.84)),
    #eef2ed;
}

.deliverable-section {
  background:
    linear-gradient(180deg, rgba(246, 242, 235, 0.82), rgba(255, 255, 255, 0.84)),
    var(--paper);
}

.clean-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 242, 235, 0.88)),
    var(--paper);
}

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

.clean-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(169, 97, 56, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.clean-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

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

.referral-section {
  background: var(--green);
  color: var(--white);
}

.referral-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.referral-box .eyebrow {
  color: #f4c49e;
}

.referral-box p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.intake-section {
  background: var(--white);
}

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

.intake-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(169, 97, 56, 0.42);
  border-radius: 6px;
  background: #fbfcf9;
  box-shadow: var(--soft-shadow);
}

.intake-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

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

.pipeline-section {
  background:
    linear-gradient(180deg, rgba(246, 242, 235, 0.88), rgba(255, 255, 255, 0.92)),
    var(--paper);
}

.pipeline-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.pipeline-board div {
  min-height: 150px;
  padding: 22px;
  border-left: 1px solid var(--line);
}

.pipeline-board div:first-child {
  border-left: 0;
}

.pipeline-board span,
.pipeline-board strong {
  display: block;
}

.pipeline-board span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.pipeline-board strong {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}

.deliverable-board {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.deliverable-row {
  display: grid;
  grid-template-columns: 72px minmax(170px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 26px;
  border-top: 1px solid var(--line);
}

.deliverable-row:first-child {
  border-top: 0;
}

.deliverable-row span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}

.deliverable-row strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
}

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

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

.problem-card,
.faq-item {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.problem-card:hover,
.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(169, 97, 56, 0.3);
  box-shadow: var(--shadow);
}

.problem-card span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 3px 10px;
  border: 1px solid rgba(169, 97, 56, 0.24);
  border-radius: 6px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.problem-card p,
.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-section {
  background: var(--white);
}

.faq-item {
  min-height: 150px;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.field-group,
.contact-form label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 800;
}

select,
input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.areas {
  background: #e8eee8;
}

.area-map {
  position: relative;
  min-height: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 12px 24px;
  padding: 32px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #f6f8f4 0%, #dfe9e2 100%);
  box-shadow: var(--shadow);
}

.area-map::before {
  display: none;
}

.map-pin {
  position: static;
  grid-column: 1;
  width: 100%;
  min-width: 96px;
  min-height: 40px;
  border: 1px solid rgba(22, 60, 50, 0.22);
  border-radius: 6px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(25, 47, 41, 0.1);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
  animation: none;
}

.map-pin:hover {
  transform: translateY(-3px);
}

.map-pin.active {
  color: var(--white);
  background: var(--green);
}

.area-copy {
  position: static;
  grid-column: 2;
  grid-row: 1 / 5;
  width: auto;
  padding: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.area-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.area-detail-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(232, 238, 232, 0.88)),
    #eef2ed;
}

.area-detail-card span,
.article-panel span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.area-detail-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 238, 232, 0.8)),
    var(--white);
}

.industry-section {
  background:
    radial-gradient(circle at 84% 0%, rgba(169, 97, 56, 0.16), transparent 28%),
    var(--white);
}

.local-search-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 238, 232, 0.84)),
    #eef2ed;
}

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

.local-search-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(169, 97, 56, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.local-search-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.local-search-card p {
  color: var(--muted);
}

.local-search-card ul {
  display: grid;
  gap: 8px;
  padding-left: 1.1em;
  margin: 18px 0 0;
}

.area-page {
  background: var(--paper);
}

.area-page-hero {
  padding: 132px clamp(18px, 6vw, 88px) 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 26, 22, 0.9), rgba(11, 26, 22, 0.56)),
    url("./assets/hero-doto-business.png") center/cover;
}

.area-page-hero .brand {
  color: var(--white);
  margin-bottom: 46px;
}

.area-page-hero h1 {
  max-width: 880px;
}

.area-page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.area-page-main {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 6vw, 88px);
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(9, 24, 21, 0.94), rgba(18, 58, 49, 0.72)),
    url("./assets/ai-workshop.png") center/cover;
}

.blog-list .journal-card h2 {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
  text-wrap: wrap;
}

.blog-article {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 88px;
}

.blog-article h1 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 58px);
}

.blog-article h2 {
  margin-top: 44px;
  font-size: clamp(24px, 3vw, 34px);
}

.article-lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.blog-article section,
.article-cta {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(169, 97, 56, 0.44);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.blog-article ul {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
}

.blog-article .faq-item {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.area-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.35fr);
  gap: 24px;
  align-items: start;
}

.area-page-panel,
.area-page-aside {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(169, 97, 56, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.area-page-panel ul,
.area-page-aside ul {
  display: grid;
  gap: 8px;
  padding-left: 1.1em;
}

.area-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.industry-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.industry-rail a {
  scroll-snap-align: start;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(232, 221, 204, 0.34)),
    var(--white);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.industry-rail a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.industry-rail span {
  display: block;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.industry-rail strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}

.industry-detail-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-detail {
  min-height: 190px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 235, 0.8)),
    var(--white);
}

.article-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(232, 221, 204, 0.26)),
    var(--white);
}

.article-panel:nth-child(2),
.article-panel:nth-child(3) {
  transform: translateY(18px);
}

.article-panel:nth-child(2):hover,
.article-panel:nth-child(3):hover {
  transform: translateY(10px);
}

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

.journal-card {
  display: block;
  min-height: 268px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  border-top: 3px solid rgba(169, 97, 56, 0.42);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.journal-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.journal-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.journal-card em {
  display: inline-block;
  margin-top: 22px;
  color: var(--copper);
  font-style: normal;
  font-weight: 900;
}

.journal-card em::after {
  content: "  →";
}

.article-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(169, 97, 56, 0.12), transparent 28%),
    var(--white);
}

.scenario-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 242, 235, 0.86)),
    var(--paper);
}

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

.scenario-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(169, 97, 56, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.scenario-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

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

.scenario-card ul {
  display: grid;
  gap: 8px;
  padding-left: 1.1em;
  margin: 18px 0 0;
}

.revenue {
  background: var(--green);
  color: var(--white);
}

.revenue .section-head p,
.revenue .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.revenue-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  overflow: hidden;
}

.revenue-strip div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.revenue-strip div:first-child {
  border-left: 0;
}

.revenue-strip span,
.revenue-strip strong {
  display: block;
}

.revenue-strip span {
  color: #f4c49e;
  font-weight: 900;
  font-size: 13px;
}

.revenue-strip strong {
  margin-top: 8px;
  font-size: 24px;
}

.revenue-strip p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 480px);
  gap: 32px;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 88px);
  background: var(--white);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.line-box {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8faf4;
  box-shadow: 0 18px 54px rgba(18, 32, 28, 0.09);
}

.line-box span {
  width: fit-content;
  padding: 3px 10px;
  border-radius: 6px;
  color: var(--white);
  background: #06c755;
  font-size: 12px;
  font-weight: 900;
}

.line-box strong {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.line-box p {
  margin: 0;
}

.line-box .button {
  width: fit-content;
  background: #06c755;
  box-shadow: 0 14px 34px rgba(6, 199, 85, 0.22);
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcf9;
  box-shadow: var(--shadow);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-system {
  max-width: 520px;
  margin-top: 14px;
  padding: 18px 20px;
  border-left: 3px solid var(--copper);
  background: #f6f2eb;
}

.contact-system strong {
  display: block;
  color: var(--green);
}

.contact-system p {
  margin: 6px 0 0;
}

textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.sticky-consult {
  position: fixed;
  z-index: 25;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(18, 58, 49, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(18, 32, 28, 0.18);
  backdrop-filter: blur(16px);
}

.sticky-consult span {
  padding: 0 10px 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.sticky-consult a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.sticky-consult a:last-child {
  background: #06c755;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.76);
  background: #111b18;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-video,
  .hero-image {
    width: 100%;
    opacity: 0.54;
  }

  .hero-metrics,
  .position-grid,
  .blueprint-grid,
  .proof-grid,
  .intro-statement,
  .founder-layout,
  .audience-grid,
  .team-grid,
  .diagnosis-cards,
  .detail-grid,
  .area-detail-grid,
  .industry-detail-grid,
  .article-list,
  .revenue-strip,
  .problem-grid,
  .faq-grid,
  .scenario-grid,
  .local-search-grid,
  .clean-grid,
  .referral-box,
  .intake-grid,
  .pipeline-board,
  .area-page-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-statement > p:not(.eyebrow),
  .intro-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .deliverable-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .mini-options {
    grid-template-columns: 1fr;
  }

  .question-stack {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head p:not(.eyebrow) {
    grid-column: 1;
  }

  .article-panel:nth-child(2),
  .article-panel:nth-child(3),
  .article-panel:nth-child(2):hover,
  .article-panel:nth-child(3):hover {
    transform: none;
  }

  .revenue-strip div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .pipeline-board div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pipeline-board div:first-child {
    border-top: 0;
  }

  .revenue-strip div:first-child {
    border-top: 0;
  }

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

  .visual-section,
  .ai-visual {
    grid-template-columns: 1fr;
  }

  .ai-visual .visual-media {
    order: 2;
  }

  .visual-media,
  .visual-media img {
    min-height: 320px;
  }

  .area-map {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .area-copy {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero-actions,
  .mini-options {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-metrics div {
    padding: 12px;
  }

  .section,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .line-box .button {
    width: 100%;
  }

  .sticky-consult {
    right: 10px;
    left: 10px;
    bottom: 10px;
    justify-content: space-between;
    border-radius: 16px;
  }

  .sticky-consult span {
    display: none;
  }

  .sticky-consult a {
    flex: 1;
  }

  .site-footer {
    padding-bottom: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-fallback {
    display: block;
  }

  .hero-overlay::after,
  .hero-image {
    animation: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes ambientLight {
  from {
    transform: translateX(-2%);
    opacity: 0.28;
  }
  to {
    transform: translateX(4%);
    opacity: 0.52;
  }
}

@keyframes lineFloat {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 0.75;
    transform: translateY(-12px);
  }
}

@keyframes pinPulse {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(25, 47, 41, 0.1);
  }
  50% {
    box-shadow: 0 16px 34px rgba(25, 47, 41, 0.18);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.55);
    transform-origin: top;
    opacity: 0.38;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.84;
  }
}
