@charset "UTF-8";

/* ============================================================
   BODY / MAIN LAYOUT
============================================================ */
.body {
  position: relative;
  min-height: 100svh;
  z-index: 1;
}
.main {
  position: relative;
  min-height: 100vh;
  margin-inline: auto;
  background-color: #000;
  padding-inline: 16px;
  overflow: clip;
  max-width: 500px;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.general-section { position: relative; z-index: 1; }

/* ============================================================
   PC 背景レイアウト（サイドナビ・ボーダーライン）
============================================================ */
.pc-bg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  padding: 44px 48px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.side-nav {
  display: flex;
  flex-direction: column;
}
.side-nav-logo { width: min(100%, 220px); }
.side-nav-menu {
  margin-top: 36px;
  font-size: clamp(1.4rem, 1.6vw, 2.4rem);
}
.side-nav-menu-list { display: grid; gap: 12px; }
.side-nav-menu-link {
  color: #fff;
  position: relative;
  letter-spacing: 0.1em;
}
.side-nav-menu-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d1c6b4;
  transition: width 0.3s ease;
}
.side-nav-menu-link:hover::before { width: 100%; }

.side-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding-bottom: 44px;
}
.side-btn .btn { margin-top: 0; }
.side-btn .btn.-l a {
  background-color: transparent;
  color: #fff;
  border-color: #555;
  width: 220px;
  height: 50px;
  font-size: 1.3rem;
}
.side-btn .btn.-l a:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.pc-bg-border {
  position: absolute;
  z-index: -1;
  top: 0; left: 50%;
  translate: -50% 0;
  width: calc(100% - 66px);
  height: 100%;
  display: flex;
}
.pc-bg-border span {
  display: block;
  width: calc(100% / 10);
  height: 100%;
  border-right: 1px solid #1e1e1e;
}
.pc-bg-border span:first-child { border-left: 1px solid #1e1e1e; }
.pc-bg-border::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 100vw;
  height: 1px;
  background-color: #1e1e1e;
}

/* ============================================================
   LOOP TICKER
============================================================ */
.loop-en {
  position: fixed;
  z-index: 100;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  padding-block: 0;
  display: flex;
  white-space: nowrap;
  gap: 20px;
  background-color: #000;
  border-top: 1px solid #1e1e1e;
}
.loop-en-text {
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  letter-spacing: 0.08em;
  height: 100%;
}
.loop-en-text.-item01 { animation: loop 12s linear infinite; }
.loop-en-text.-item02 {
  position: absolute;
  top: 50%; left: 0;
  translate: 0 -50%;
  animation: loop 12s -6s linear infinite;
}
.loop-en-text span {
  font-size: 1.2rem;
  color: #c4bba6;
  border: 1px solid #c4bba6;
  border-radius: 100vmax;
  padding: 0.2em 1.5em 0.3em;
}
@keyframes loop {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: absolute;
  top: 0; left: 50%;
  translate: -50% 0;
  width: 100%;
  max-width: 500px;
  padding-inline: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  z-index: 100;
  background-color: #000;
}
.logo { width: 22px; display: flex; position: relative; }

.hamburger-btn {
  display: none;
  width: 30px;
  height: 18px;
  position: relative;
  place-items: center;
  z-index: 101;
}
.hamburger-btn::before,
.hamburger-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform-origin: center;
  transition: all 0.3s ease;
}
.hamburger-btn::before { top: 0; }
.hamburger-btn::after  { bottom: 0; }
.is-active .hamburger-btn::before { rotate: -25deg; top: 50%; translate: 0 -50%; }
.is-active .hamburger-btn::after  { rotate: 25deg; bottom: 47%; translate: 0 -50%; }
.hamburger-btn span {
  width: 100%; height: 1px;
  background-color: #fff;
  display: block;
  transition: all 0.3s ease;
}
.is-active .hamburger-btn span { opacity: 0; }

.header-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100%; height: 100vh;
  opacity: 0;
  pointer-events: none;
  z-index: -100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 16px;
  transition: opacity 0.3s ease;
}
.header-nav::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #000;
  opacity: .85;
  z-index: -1;
}
.is-active .header-nav { opacity: 1; z-index: 99; pointer-events: all; }
.header-nav-link { font-size: 2rem; color: #fff; letter-spacing: 0.15em; }
.header-nav-list { display: grid; gap: 24px; margin-bottom: 40px; }

/* ============================================================
   LOADING
============================================================ */
.loading {
  position: fixed;
  top: 0; left: 50%;
  translate: -50% 0;
  height: 100svh;
  width: min(100%, 532px);
  background-color: #000;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
.loading.is-off { opacity: 0; pointer-events: none; }
.loading::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: calc(100% - 32px);
  height: calc(100% - 80px);
  border: 1px solid #333;
}
.loading > * {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 100%;
  opacity: 0;
}
.loading-bar {
  width: calc(100% - 100px);
  height: 1px;
  background-color: #222;
  opacity: 1;
  z-index: 100;
}
.loading-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background-color: #fff;
  transition: width 1s ease 1s;
}
.loading-copy {
  font-size: 1.5rem;
  color: #c4bba6;
  text-align: center;
  letter-spacing: 0.2em;
  opacity: 0;
  transition: opacity 1s ease 4s;
}
.loading-logo { transition: opacity 1s ease 7s; width: 280px; }
.loading-skip {
  pointer-events: cursor;
  opacity: 1;
  top: unset;
  bottom: 10%;
  left: 50%;
  translate: -50% 0;
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  z-index: 100;
}
.loading-skip span {
  position: absolute;
  top: 50%; width: 8px; aspect-ratio: 1/1;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  rotate: 45deg;
  right: 2.5em;
  transform: skew(15deg, 15deg);
}
.animated .loading-bar::before { width: 100%; }
.animated .loading-copy        { opacity: 1; }
.animated .loading-logo        { opacity: 1; }

/* ============================================================
   KV（キービジュアル）
============================================================ */
.kv {
  position: relative;
  padding: 44px 0 80px;
  z-index: 1;
}
.fixed-bg {
  position: fixed;
  top: 0; left: 50%;
  translate: -50% 0;
  min-height: 1000px;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.30) 40%,
      rgba(0,0,0,0.55) 75%,
      rgba(0,0,0,0.80) 100%
    ),
    url(../img/kv-bg.jpg) center / cover no-repeat;
  z-index: -1;
  width: min(100%, 532px);
}
.fixed-bg::before,
.fixed-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 100%;
  background-color: #000;
}
.fixed-bg::after { right: 0; left: auto; }

.kv-inner {
  position: relative;
  display: grid;
  place-content: center;
  min-height: calc(100svh - 100px);
  gap: 0;
  padding-bottom: 110px;
}
.kv-en {
  position: absolute;
  top: 40px; left: 0;
  color: #c4bba6;
  rotate: 90deg;
  font-size: 1.2rem;
  transform-origin: top left;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.kv-img {
  width: min(100%, 260px);
  margin-inline: auto;
  margin-bottom: 32px;
}
.kv-catch {
  font-size: clamp(2.6rem, 6.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.kv-sub {
  font-size: 1.5rem;
  color: #c4bba6;
  text-align: center;
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.kv .btn { margin-top: 32px; }
.kv .btn a {
  background-color: #fff;
  color: #000;
  width: min(100%, 280px);
  height: 54px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.scroll-bar {
  position: absolute;
  bottom: 0; left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.scroll-bar p { font-size: 1rem; color: #666; letter-spacing: 0.25em; }
.scroll-bar span {
  display: block;
  height: 60px; width: 1px;
  background-color: #333;
  position: relative;
}
.scroll-bar span::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  translate: -50% 0;
  width: 1px; height: 100%;
  background-color: #fff;
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0%   { transform: scale(1, 0); transform-origin: 0 0; }
  50%  { transform: scale(1, 1); transform-origin: 0 0; }
  51%  { transform: scale(1, 1); transform-origin: 0 100%; }
  100% { transform: scale(1, 0); transform-origin: 0 100%; }
}

/* ============================================================
   INTRO
============================================================ */
.intro .inner { padding-inline: 32px; }
.intro-heading {
  font-size: clamp(2.8rem, 7vw, 3.8rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 28px;
  color: #000;
}
.intro .note { color: #333; }

/* ============================================================
   PROBLEM（旧デザイン継承：コンセプトカード形式）
============================================================ */
.problem-list { display: grid; gap: 80px; }

.concept-item-image {
  position: relative;
  margin-bottom: 28px;
}
.concept-item-image::before {
  content: "";
  position: absolute;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.35);
  z-index: 1;
}
.concept-item-lead {
  position: absolute;
  left: 12px; top: 20px;
  z-index: 2;
  color: #fff;
}
.concept-item-lead .num {
  font-family: "Lato", sans-serif;
  font-size: 3.8rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.1em;
  line-height: 1;
}
.concept-item-lead .num span {
  font-size: 1.8rem;
  margin-left: 10px;
  padding-left: 10px;
  display: inline-block;
  position: relative;
}
.concept-item-lead .num span::before {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  translate: 0 -50%;
  background: repeating-linear-gradient(0deg, #fff 0px, #fff 1px, transparent 1px, transparent 4px);
  width: 1px; height: 60%;
}
.concept-item-lead .en { font-size: 1.2rem; letter-spacing: 0.2em; }

.concept-item-heading {
  position: absolute;
  left: 12px; bottom: 20px;
  font-size: 2.2rem;
  color: #fff;
  z-index: 2;
  line-height: 1.4;
}
.concept-item-heading > span {
  padding: 0.3em 0.5em 0.4em;
  display: block;
  position: relative;
  z-index: 1;
}
.concept-item-heading > span::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0; left: 0;
  width: 0; height: 100%;
  background-color: #000;
  transition: width 0.5s ease;
}
.concept-item-heading > span:nth-of-type(2)::before { transition: width 0.5s ease 0.2s; }
.concept-item-heading > span > span {
  display: inline-block;
  opacity: 0;
  translate: 0 10px;
  transition: opacity 0.5s ease 0.8s, translate 0.5s ease 0.8s;
}
.concept-item-heading > span:nth-of-type(2) > span {
  transition: opacity 0.5s ease 1s, translate 0.5s ease 1s;
}
.concept-item-heading.animated > span::before     { width: 100%; }
.concept-item-heading.animated > span > span      { opacity: 1; translate: 0 0; }
.concept-item-heading .emphasis {
  font-size: 2.8rem;
  font-style: normal;
  color: #d1c6b4;
}

.concept-item .note { color: #c4bba6; }

/* ============================================================
   RESULTS
============================================================ */
.results { background-color: #000; }
.results .primary-heading { color: #c4bba6; }
.results .note { color: #888; margin-bottom: 48px; }

.results-list {
  display: grid;
  gap: 1px;
  border: 1px solid #1e1e1e;
}
.results-item {
  padding: 36px 24px;
  border-bottom: 1px solid #1e1e1e;
  text-align: center;
  background-color: #0a0a0a;
  transition: background-color 0.3s ease;
}
.results-item:last-child { border-bottom: none; }
.results-item:hover { background-color: #111; }

.results-num {
  font-size: clamp(4.8rem, 12vw, 7.2rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.results-num span { font-size: 0.45em; letter-spacing: 0; vertical-align: bottom; padding-left: 4px; }

.results-label {
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: #c4bba6;
  margin-bottom: 16px;
  font-weight: 700;
}
.results-divider {
  width: 32px; height: 1px;
  background-color: #333;
  margin-inline: auto;
  margin-bottom: 16px;
}
.results-note {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* ============================================================
   SERVICE
============================================================ */
.service .primary-heading { color: #000; }

.service-price-box {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid #1e1e1e;
  background-color: #000;
  margin-bottom: 48px;
}
.service-price-label {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: #c4bba6;
  margin-bottom: 12px;
}
.service-price-num {
  font-family: "Lato", sans-serif;
  font-size: clamp(3.2rem, 8vw, 4.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.service-price-num span { font-size: 1.4rem; color: #888; letter-spacing: 0.05em; display: block; margin-top: 8px; font-family: "Noto Sans JP", sans-serif; font-weight: 400; }

.service-list { display: grid; gap: 1px; border: 1px solid #1e1e1e; margin-bottom: 8px; }

.service-item {
  background-color: #0a0a0a;
  padding: 32px 24px;
  border-bottom: 1px solid #1e1e1e;
  transition: background-color 0.3s ease;
}
.service-item:last-child { border-bottom: none; }
.service-item:hover { background-color: #111; }

.service-item-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 16px;
}
.service-item-num {
  font-size: 3.6rem;
  font-weight: 900;
  color: #1e1e1e;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.service-item:hover .service-item-num { color: #333; }

.service-item-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.service-item .note { color: #888; font-size: 1.4rem; padding-left: calc(3.6rem + 20px); }

.service .btn a { background-color: #fff; color: #000; }
.service .btn a:hover { background-color: #000; color: #fff; border-color: #fff; }

/* ============================================================
   FLOW
============================================================ */
.flow { background-color: #000; }
.flow .note { color: #666; margin-bottom: 48px; text-align: center; }
.flow .primary-heading { color: #c4bba6; }

.flow-list { display: grid; gap: 0; position: relative; }
.flow-list::before {
  content: "";
  position: absolute;
  left: 38px; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, #333 0%, transparent 100%);
}
.flow-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #1a1a1a;
  align-items: start;
  position: relative;
}
.flow-item:last-child { border-bottom: none; }

.flow-item-num {
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #c4bba6;
  text-align: right;
  padding-right: 8px;
  padding-top: 4px;
  position: relative;
}
.flow-item-num::after {
  content: "";
  position: absolute;
  right: -1px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: #c4bba6;
  translate: 50% 0;
}
.flow-item-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.flow-item-text {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* ============================================================
   PROFILE
============================================================ */
.profile .primary-heading { color: #000; }

.profile-lead {
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* 2カラムグリッド */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.profile-card {
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.profile-card__img {
  overflow: hidden;
}
.profile-card__img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.profile-card__body {
  padding: 24px 20px 28px;
  background-color: #fff;
}

.profile-role {
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: #c4bba6;
  margin-bottom: 10px;
  display: block;
}

.profile-name {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.3;
}
.profile-name-en {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.2em;
  margin-top: 5px;
}

.profile-card__charge {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  background-color: #f5f5f5;
  border-left: 3px solid #c4bba6;
  padding: 0.5em 1em;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.profile-card__body .note {
  color: #444;
  font-size: 1.3rem;
  margin-bottom: 20px;
  line-height: 1.9;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.profile-tag {
  font-size: 1.1rem;
  padding: 0.3em 0.9em;
  border: 1px solid #1e1e1e;
  color: #c4bba6;
  background-color: #000;
  letter-spacing: 0.04em;
}

/* ============================================================
   FAQ
============================================================ */
.faq-heading .en {
  font-size: 4.8rem;
  margin-bottom: 0.1em;
  color: #000;
}
.faq-heading .ja {
  font-size: 1.4rem;
  color: #999;
}
.faq-list {
  margin-top: 48px;
  font-size: 1.6rem;
  display: grid;
  gap: 40px;
}
.faq-item { cursor: pointer; overflow: hidden; }
.q-item {
  position: relative;
  padding-left: 40px;
  padding-right: 60px;
  line-height: 1.7;
  padding-block: 0.1em;
  color: #000;
  font-weight: 700;
}
.q-item::before {
  content: "Q";
  font-family: "Lato", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  position: absolute;
  top: 0; left: 0;
  translate: 0 -10px;
  color: #000;
}
.a-item {
  position: relative;
  padding-left: 40px;
  margin-top: 16px;
  padding-right: 60px;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #555;
  font-size: 1.4rem;
}
.a-item::before {
  content: "A";
  font-family: "Lato", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  position: absolute;
  top: 0; left: 0;
  translate: 0 -10px;
  color: #c4bba6;
}
.faq-item.is-open .a-item { max-height: 100vh; transition: max-height 1s ease; }

.accordion-btn {
  position: absolute;
  top: 50%; right: 0;
  translate: 0 -50%;
  display: inline-block;
  width: 22px; height: 22px;
}
.accordion-btn::before,
.accordion-btn::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 100%; height: 1px;
  background-color: #000;
  transition: transform 0.3s ease;
}
.accordion-btn::after { transform: rotate(90deg); }
.faq-item.is-open .accordion-btn::after { transform: rotate(0deg); }

/* ============================================================
   CONTACT
============================================================ */
.contact { color: #fff; background-color: #000; }
.contact .note { color: #c4bba6; }
.contact-en { margin-top: 72px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 32px 16px;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}
.footer::after {
  content: "© THE STORY All Rights Reserved.";
  font-size: 1.1rem;
  color: #333;
  letter-spacing: 0.1em;
  display: block;
}

/* ============================================================
   WOW フェードイン
============================================================ */
.fadein {
  translate: 0 12px;
  opacity: 0;
  transition: translate 0.9s ease 0.15s, opacity 0.9s ease 0.15s;
}
.fadein.animated { translate: 0 0; opacity: 1; }

/* ============================================================
   中央コンテンツ：常にSP表示（画面幅に関わらず固定）
============================================================ */
/* ハンバーガー・固定ヘッダー：常時有効 */
.hamburger-btn { display: grid; }
.header-nav    { display: block; }
.header        { position: fixed; }

/* サイドナビ：1200px以下で非表示 */
@media screen and (max-width: 1200px) {
  .side-nav, .side-btn { display: none; }
}

/* ループティッカー：PC幅で大きく表示 */
@media screen and (min-width: 768px) {
  .loop-en { height: 64px; }
  .loop-en-text { font-size: 1.6rem; gap: 16px; }
  .loop-en-text span { font-size: 1.3rem; }
}

/* 中央コンテンツはSPスタイル固定 */
.concept-item-heading { font-size: 1.8rem; }
.concept-item-heading .emphasis { font-size: 2.2rem; }
.faq-item { font-size: 1.4rem; }
.faq-list { gap: 28px; }
.q-item, .a-item { padding-right: 36px; }
.contact-en { margin-top: 44px; }
.contact { padding-bottom: 80px; }
.kv { padding: 44px 0 0; }
.kv-en { position: fixed; font-size: 1rem; translate: 12px 0; }
.service-item .note { padding-left: 0; }
.kv-inner {
  padding-bottom: 120px;
  align-content: center;
}
.kv-img   { margin-bottom: 20px; }
.kv-catch { font-size: clamp(2.2rem, 6vw, 2.8rem); margin-bottom: 14px; }
.kv-sub   { font-size: 1.3rem; margin-bottom: 4px; }
.kv .btn  { margin-top: 20px; }
.profile-grid { grid-template-columns: 1fr; gap: 32px; }
.profile-card__body { padding: 20px 16px 24px; }
.flow-list::before { left: 24px; }
.flow-item { grid-template-columns: 56px 1fr; gap: 14px; }
.flow-item-num { font-size: 0.9rem; }
.flow-item-num::after { right: -1px; }
.results-num { font-size: clamp(4rem, 15vw, 5.6rem); }
