:root {
  --bg: #eef4f8;
  --bg-soft: #e8f0f6;
  --surface: #ffffff;
  --ink: #12161c;
  --ink-muted: #5b6674;
  --line: #d3dde7;

  --brand: #29a8dc;
  --brand-strong: #0f8ec4;
  --brand-soft: #e5f4fb;

  --danger: #d64a4a;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;

  --shadow-1: 0 8px 20px rgba(18, 22, 28, 0.05);
  --shadow-2: 0 14px 34px rgba(18, 22, 28, 0.08);

  --font-body: "BIZ UDPGothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-heading: "Murecho", "BIZ UDPGothic", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

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

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

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  z-index: 110;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-4);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 2.7vw, 2.1rem);
}

h3 {
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
}

p,
ul,
ol,
li,
dd,
dt,
th,
td {
  margin-top: 0;
  color: var(--ink-muted);
  font-style: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

ul,
ol {
  margin-bottom: 0;
}

a {
  color: var(--brand-strong);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: #0c79a6;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(41, 168, 220, 0.4);
  outline-offset: 2px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

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

.main {
  min-height: 100vh;
  position: relative;
}

.site-shell {
  position: relative;
}

.has-next {
  margin-bottom: var(--space-2);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid transparent;
  background: rgba(244, 246, 248, 0.86);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 246, 248, 0.96);
}

.site-header__inner {
  height: 78px;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

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

.wf-icon {
  display: block;
  width: 194px;
  height: 40px;
  background: transparent url(/images/web_logo.png) no-repeat left center;
  background-size: contain;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 2px 11px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #2a3442;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__link:hover {
  border-color: #9cc6da;
  color: #0f6b92;
}

.site-nav__link.is-current {
  border-color: var(--brand-strong);
  color: #0f6b92;
}

.site-nav__cta {
  margin-left: var(--space-2);
  padding: 10px 14px;
  border: 1px solid var(--brand-strong);
  border-bottom-color: var(--brand-strong);
  border-radius: 999px;
  background: var(--brand-strong);
  color: #ffffff;
}

.site-nav__cta:hover,
.site-nav__cta:focus,
.site-nav__cta.is-current {
  border-color: #0b7eae;
  border-bottom-color: #0b7eae;
  background: #0b7eae;
  color: #ffffff;
}

.menu-toggle {
  margin-left: auto;
  width: 52px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: #1f2a37;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  background: rgba(12, 18, 27, 0.36);
  transition: opacity 0.2s ease;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu__panel {
  margin-left: auto;
  width: min(420px, 100%);
  height: 100%;
  background: #1a2431;
  transform: translateX(110%);
  transition: transform 0.26s ease;
  box-shadow: var(--shadow-2);
}

.site-menu.is-open .site-menu__panel {
  transform: translateX(0);
}

.site-menu__inner {
  display: grid;
  gap: var(--space-2);
  padding-top: 110px;
}

.site-menu__close {
  justify-self: end;
  border: 1px solid rgba(201, 221, 234, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d9e8f2;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.site-menu__close:hover,
.site-menu__close:focus-visible {
  border-color: rgba(201, 221, 234, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-menu__link {
  border: 1px solid rgba(201, 221, 234, 0.26);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  color: #d9e8f2;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-menu__link:hover {
  border-color: rgba(201, 221, 234, 0.58);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-menu__link.is-current {
  border-color: rgba(90, 189, 226, 0.8);
  background: rgba(41, 168, 220, 0.22);
  color: #ffffff;
}

/* Hero */
.hero {
  position: relative;
}

.hero-home {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 64px 0 76px;
}

.hero-home__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.98;
  filter: saturate(1.12) contrast(1.08);
}

.hero-home__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-5);
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-3);
  color: #36617b;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: var(--brand);
}

.hero-home h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-sub {
  position: relative;
  overflow: hidden;
  padding: 52px 0 38px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(130deg, #dbeef8 0%, #e9f4fa 48%, #e4eef5 100%);
}

.hero-sub:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1300px 420px at 8% 6%, rgba(77, 171, 211, 0.3) 0%, rgba(77, 171, 211, 0) 66%),
    radial-gradient(900px 340px at 92% 22%, rgba(123, 196, 225, 0.22) 0%, rgba(123, 196, 225, 0) 68%);
  pointer-events: none;
}

.hero-sub:after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(118deg, rgba(41, 129, 169, 0.08) 0 1px, transparent 1px 42px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-sub > .container {
  position: relative;
  z-index: 1;
}

.hero-sub__inner {
  max-width: 920px;
  padding: 0;
}

.hero-sub__inner p {
  max-width: 860px;
  margin-bottom: 0;
  color: #334d62;
}

.hero-sub__inner p + p {
  margin-top: var(--space-2);
}

.hero-sub__inner h1 {
  margin-bottom: var(--space-3);
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.13;
}

.hero-sub + .page-section {
  padding-top: 36px;
}

/* Sections */
.page-section {
  padding: var(--space-7) 0;
}

body.inner-page .page-section:not(.page-section--alt):not(.page-section--accent) {
  background: #edf4f8;
}

.page-section--alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #e4eef5;
}

.page-section--accent {
  background: #1d2733;
}

.section-heading {
  margin-bottom: var(--space-4);
  max-width: 780px;
}

.section-heading--wide {
  max-width: 100%;
}

.section-heading h2 {
  margin-bottom: var(--space-2);
}

.section-heading--light h2,
.section-heading--light p,
.section-heading--light .eyebrow {
  color: #edf4f8;
}

.section-heading--light .eyebrow:before {
  background: #7dceee;
}

/* Index-specific */
#service {
  padding-bottom: var(--space-3);
}

#service + .page-section {
  padding-top: var(--space-4);
}

#service .section-heading {
  margin-bottom: 0;
}

#service .eyebrow {
  margin-bottom: var(--space-2);
}

.value-stack {
  display: grid;
  gap: var(--space-3);
}

.value-item {
  border-top: 1px solid var(--line);
  padding-top: var(--space-3);
}

.value-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.value-item h3 {
  margin-bottom: 8px;
}

.route-flow {
  display: grid;
  gap: var(--space-4);
}

.route-step {
  border-left: 3px solid #c6d6e3;
  padding-left: var(--space-4);
}

.route-step strong {
  display: block;
  margin-bottom: 6px;
  color: #243446;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.route-step h3 {
  margin-bottom: 8px;
}

/* Grids */
.feature-grid {
  display: grid;
  gap: var(--space-4);
}

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

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

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.founder-grid {
  align-items: start;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: var(--space-5);
  align-items: start;
}

.content-stack {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.content-block {
  padding-top: clamp(16px, 2.4vw, 24px);
  border-top: 1px solid var(--line);
}

.content-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.content-block h2 {
  margin-bottom: var(--space-2);
}

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

.content-block .partner-list {
  margin-top: var(--space-2);
}

.flow-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.flow-item {
  position: relative;
  padding-left: 44px;
}

.flow-item:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #5baed2;
  border-radius: 999px;
  background: #f7fcff;
}

.flow-item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 24px;
  left: 7px;
  width: 2px;
  height: calc(100% + 8px);
  background: #bfdae9;
}

.flow-item__index {
  margin: 0 0 6px;
  color: #25556f;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-item h3 {
  margin-bottom: 8px;
}

/* Blocks */
.feature-card,
.step-card,
.panel-card,
.contact-card,
.highlight-case,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--surface);
  box-shadow: var(--shadow-1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card,
.step-card,
.panel-card,
.contact-card,
.policy-card {
  padding: var(--space-5);
}

.feature-card:hover,
.step-card:hover,
.panel-card:hover,
.contact-card:hover,
.highlight-case:hover,
.policy-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: #c8d8e4;
}

.feature-card__icon {
  margin-bottom: var(--space-3);
  min-height: 0;
  display: inline-flex;
}

.step-card__index {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-3);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #1a6f97;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.highlight-case {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
}

.highlight-case__body h3 {
  margin-bottom: var(--space-2);
}

.note {
  margin-top: var(--space-2);
  color: #6b7787;
  font-size: 0.88rem;
}

.tag-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.tag-list li {
  margin: 0;
  border: 1px solid #cfdde8;
  border-radius: 999px;
  padding: 8px 12px;
  color: #2f4456;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-card {
  background: #fafcfd;
}

.contact-mail {
  margin-bottom: var(--space-2);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.03rem;
  font-weight: 700;
}

.cta-band {
  text-align: center;
}

.cta-band p {
  margin-bottom: var(--space-4);
}

.page-section--accent .cta-band,
.page-section--accent .cta-band h2,
.page-section--accent .cta-band p,
.page-section--accent .cta-band .eyebrow {
  color: #edf4f8;
}

.page-section--accent .cta-band .eyebrow {
  justify-content: center;
}

.page-section--accent .cta-band .eyebrow:before {
  background: #7dceee;
}

.align-center {
  text-align: center;
}

/* Buttons */
.wf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--brand-strong);
  border-radius: var(--radius-s);
  padding: 12px 24px;
  color: var(--brand-strong);
  background: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wf-btn:hover,
.wf-btn:focus {
  border-color: #0b7eae;
  background: #0b7eae;
  color: #ffffff;
}

.wf-btn--solid {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  color: #ffffff;
}

.wf-btn--solid:hover,
.wf-btn--solid:focus {
  border-color: #0b7eae;
  background: #0b7eae;
}

.wf-btn--contact {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  color: #ffffff;
}

.wf-btn--contact:hover,
.wf-btn--contact:focus {
  border-color: #0b7eae;
  background: #0b7eae;
  color: #ffffff;
}

.wf-btn--light {
  border-color: #9ecfe4;
  background: #ffffff;
  color: #1c5f83;
}

.wf-btn--light:hover,
.wf-btn--light:focus {
  border-color: #ffffff;
  background: #ffffff;
  color: #16344a;
}

/* Forms */
.form-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--surface);
  padding: clamp(20px, 3.2vw, 30px);
  box-shadow: var(--shadow-1);
}

.form-shell h2 {
  margin-bottom: var(--space-3);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.form-label {
  display: block;
  margin-bottom: 6px;
  color: #1f2b39;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-control {
  width: 100%;
  height: 48px;
  margin-bottom: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 10px 14px;
  color: var(--ink);
  background: #ffffff;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(41, 168, 220, 0.2);
}

textarea.form-control {
  height: auto;
  min-height: 180px;
}

[aria-invalid="true"] {
  border-color: var(--danger) !important;
}

button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Lists and table */
.info-list {
  margin: var(--space-3) 0 0;
}

.info-list dt {
  margin-bottom: 4px;
  color: #202c39;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.info-list dd {
  margin: 0 0 var(--space-3);
}

.partner-list {
  margin: 0;
  padding-left: 20px;
}

.partner-list li {
  margin-bottom: 8px;
}

.founder-message h2 {
  margin-bottom: var(--space-3);
}

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

.founder-message {
  padding-right: var(--space-3);
}

.founder-visual {
  display: grid;
  align-content: start;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid #cfdbe6;
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.72);
}

.founder-portrait {
  margin: 0;
}

.founder-portrait__avatar {
  position: relative;
  overflow: hidden;
  width: min(360px, 100%);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border: 1px solid #cbd7e3;
  border-radius: var(--radius-m);
  background: #eef4f8;
  display: grid;
  place-items: center;
}

.founder-portrait__avatar:before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  width: 32%;
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #cedce8;
}

.founder-portrait__avatar:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 64%;
  height: 42%;
  transform: translateX(-50%);
  border-radius: 999px 999px 16px 16px;
  background: #bdd2e2;
}

.founder-portrait__avatar span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 1px solid #8db3ca;
  background: rgba(255, 255, 255, 0.92);
  color: #1f4e6a;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.founder-portrait figcaption {
  margin-top: var(--space-3);
  color: #233447;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-2);
}

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

.company-table th {
  width: 170px;
  background: #f2f5f8;
  color: #202b38;
  font-weight: 700;
}

.policy-card .headings,
.policy-document .headings {
  margin-bottom: var(--space-4);
}

.policy-card .headings:last-child,
.policy-document .headings:last-child {
  margin-bottom: 0;
}

.policy-document .headings {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}

.policy-document .headings:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-card ol,
.policy-document ol {
  padding-left: 20px;
}

.policy-card li,
.policy-document li {
  margin-bottom: 6px;
}

.policy-document .mb80 {
  margin-bottom: var(--space-3);
}

.confirm-lead {
  margin: 0 0 var(--space-4);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Footer */
.site-footer {
  margin-top: 0;
  position: relative;
  overflow: visible;
  border-top: 1px solid #2a3644;
  background: #151d27;
  padding: 24px 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 16px;
  row-gap: 6px;
}

.site-footer__nav a {
  border-bottom: 1px solid transparent;
  padding: 3px 0;
  color: #d9e4ec;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__nav a:hover {
  border-bottom-color: #6aaecf;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  color: #d7e3ec;
  font-size: 12px;
}

/* Utility */
.mb80 {
  margin-bottom: 80px;
}

.mt80 {
  margin-top: 80px;
}

.mr60 {
  margin-right: 60px;
}

.tR {
  text-align: right;
}

.g-recaptcha {
  margin-bottom: var(--space-4);
}

/* Responsive */
@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .founder-layout,
  .feature-grid--3,
  .hero-metrics,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .highlight-case {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .feature-grid--2,
  .feature-grid--3,
  .split-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-shell {
    padding: var(--space-4);
  }

  .flow-item {
    padding-left: 36px;
  }

  .hero-home {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .hero-home h1 {
    font-size: clamp(2rem, 10.5vw, 3.2rem);
  }

  .hero-sub {
    padding: 38px 0 26px;
  }

  .hero-sub__inner h1 {
    font-size: clamp(1.8rem, 8.4vw, 2.5rem);
  }

  .hero-sub + .page-section {
    padding-top: 28px;
  }

  .feature-card,
  .step-card,
  .panel-card,
  .contact-card,
  .highlight-case,
  .policy-card {
    padding: var(--space-4);
  }

  .site-header__inner {
    height: 70px;
    justify-content: space-between;
  }

  .wf-icon {
    width: 166px;
  }
}

@media (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }

  .site-menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .container,
  .narrow-container {
    width: calc(100% - 28px);
  }

  .founder-message {
    padding-right: 0;
  }

  .page-section {
    padding: 56px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wf-btn {
    width: 100%;
  }

  .site-footer__nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .site-footer__nav a {
    text-align: center;
    padding: 6px 0;
  }

  .mr60 {
    margin-right: 0;
  }

  .company-table,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    border-bottom: 0;
  }

  .company-table td {
    border-top: 0;
  }
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
