/*
Theme Name: Nexis
Theme URI: http://testsite25.local
Author: Nexis Inc
Author URI: http://testsite25.local
Description: 採用・集客につながる動画を届けるNexisの公式サイトテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nexis
Tags: one-page, japanese, business
*/
/* ===== Reset / Base ===== */
:root {
  --c-yellow: #ffc847;
  --c-yellow-deep: #f7b520;
  --c-cream: #fffaf0;
  --c-cream-deep: #fff3dc;
  --c-pink: #ff7a93;
  --c-blue: #5b8def;
  --c-text: #1a1f2c;
  --c-text-sub: #5e6573;
  --c-border: #eef0f4;
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--c-text);
  background: #fff;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

/* ===== Subtle 3D / Motion ===== */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(20px,-15px) rotate(8deg); }
}
@keyframes shine-sweep {
  0% { transform: translateX(-120%) skewX(-20deg); opacity: 0; }
  20% { opacity: .85; }
  100% { transform: translateX(240%) skewX(-20deg); opacity: 0; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.float-anim { animation: float-y 5s ease-in-out infinite; }
.float-anim--slow { animation: float-y 7s ease-in-out infinite; }
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, p { margin: 0; }

/* Long-string safety only where layout-breaking content is expected */
.company-table td, .price-card__desc, .hero__lead {
  overflow-wrap: anywhere;
  word-break: normal;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* === Responsive line-break utilities === */
.pc-only { display: inline; }
.tablet-only { display: none; }
.sp-only { display: none; }
.pc-tab-only { display: inline; }
@media (max-width: 1024px) {
  .pc-only { display: none; }
  .tablet-only { display: inline; }
}
@media (max-width: 600px) {
  .pc-only { display: none; }
  .tablet-only { display: none; }
  .sp-only { display: inline; }
  .pc-tab-only { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--lg { padding: 16px 30px; font-size: 15px; }
.btn--primary { background: #161b25; color: #fff; }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(22,27,37,.2); }
.btn--ghost { background: #fff; color: #161b25; border-color: #d8dce4; }
.btn--ghost:hover { background: #f6f7fb; }
.btn--white { background: #fff; color: #161b25; border-color: #ececec; }
.btn--white:hover { background: #fafafa; box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.btn--yellow {
  background: var(--c-yellow);
  color: #161b25;
  box-shadow: 0 6px 14px -4px rgba(247, 181, 32, .45);
}
.btn--yellow:hover { background: var(--c-yellow-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(247, 181, 32, .55); }
.btn--outline {
  background: #fff;
  color: #161b25;
  border: 2px solid #1a1f2c;
}
.btn--outline:hover { background: #1a1f2c; color: #fff; }

/* Header logo tag */
.logo__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-sub);
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid var(--c-border);
}

/* ===== Hero handwrite ===== */
.hero__handwrite {
  position: relative;
  display: inline-block;
  font-family: "Klee One", "Hiragino Maru Gothic ProN", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 18px;
}
.hero__handwrite-line {
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  width: 100%; height: 10px;
}

/* ===== Hero collage ===== */
.hero__visual--collage { height: auto !important; }
.collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 520px;
  width: 100%;
}
.collage__cell {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px -16px rgba(50, 60, 90, .25);
  position: relative;
}
.collage__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.collage__cell:hover img { transform: scale(1.06); }
.collage__cell--1 { grid-row: 1 / 3; }
.collage__cell--2 { grid-column: 2; grid-row: 1; }
.collage__cell--3 { grid-column: 2; grid-row: 2; }
.collage__cell--4 { display: none; }
.collage__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.2);
  z-index: 2;
  animation: float-y 4s ease-in-out infinite;
}
.collage__badge-mark {
  display: block;
  font-family: "Klee One", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-yellow-deep);
  margin-bottom: 4px;
}
.collage__badge-main {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-text);
}

/* ===== Stats Strip ===== */
.stats-strip {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #fff 0%, var(--c-cream) 100%);
  position: relative;
}
.stats-strip__lead {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-sub);
  margin-bottom: 32px;
  letter-spacing: .04em;
}
.stats-strip__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.stats-strip__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px -14px rgba(50, 60, 90, .15);
}
.stats-strip__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.stats-strip__icon--blue { background: #e8f0ff; color: #5b8def; }
.stats-strip__icon--yellow { background: #fff5d8; color: var(--c-yellow-deep); }
.stats-strip__icon--pink { background: #ffe9ee; color: var(--c-pink); }
.stats-strip__icon--green { background: #e3f7ec; color: #4caf80; }
.stats-strip__txt small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-sub);
  margin-bottom: 2px;
  letter-spacing: .04em;
}
.stats-strip__txt strong {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--c-text);
}
.stats-strip__txt strong em {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--c-text-sub);
}

@media (max-width: 960px) {
  .collage { grid-template-columns: 1fr 1fr; height: 400px; }
  .collage__cell--1 { grid-row: 1 / 2; }
  .collage__cell--2 { grid-row: 1; }
  .collage__cell--3 { grid-column: 1 / 3; grid-row: 2; }
  .collage__badge { width: 110px; height: 110px; }
  .collage__badge-mark { font-size: 12px; }
  .collage__badge-main { font-size: 10px; }
  .stats-strip__list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-strip__icon { width: 52px; height: 52px; }
  .stats-strip__txt strong { font-size: 22px; }
  .logo__tag { display: none; }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
body { padding-top: 80px; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo__img {
  height: 48px;
  width: auto;
  display: block;
}
.footer .logo__img { height: 42px; }
.logo__text {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #161b25;
}
.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav a { transition: color .2s ease; }
.nav a:hover { color: #ff6b8a; }
.header__actions { display: flex; gap: 10px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: #161b25;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.hamburger span:nth-child(1) { transform: translate(-50%, -7px); }
.hamburger span:nth-child(3) { transform: translate(-50%, 5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(255, 200, 71, .18) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 243, 220, .55) 0%, transparent 50%),
    #fff;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero__title {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: #161b25;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero__title-accent {
  background: linear-gradient(90deg, #ff7a93 0%, #ff9a5a 50%, #ffc04d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin-top: 22px;
  font-size: 15px;
  color: #4a5266;
  line-height: 2;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__platforms {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero__platforms-label {
  font-size: 11px;
  color: #4a5266;
  font-weight: 700;
  letter-spacing: .08em;
  padding-right: 12px;
  border-right: 1px solid #d8dce4;
}
.platform-list {
  display: flex;
  gap: 14px;
  align-items: center;
}
.platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 10px;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #2c3140;
  box-shadow: 0 6px 16px -8px rgba(50, 60, 90, .15);
}
.platform svg { flex-shrink: 0; }

/* === Hero Visual / Phones === */
.hero__visual {
  position: relative;
  height: 580px;
  max-width: 100%;
}
.phone {
  position: absolute;
  width: 230px;
  height: 480px;
  max-width: 80%;
}
.phone--left {
  left: 12%;
  top: 30px;
  transform: rotate(-7deg);
  z-index: 2;
}
.phone--right {
  right: 8%;
  top: 70px;
  transform: rotate(6deg);
  z-index: 1;
}
.phone__bezel {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #2a2d36 0%, #16181f 60%, #0e1014 100%);
  border-radius: 40px;
  padding: 9px;
  box-shadow:
    0 30px 60px -10px rgba(20, 22, 32, .35),
    0 0 0 1.5px #3a3d48,
    inset 0 0 0 1.5px #000,
    inset 0 2px 4px rgba(255,255,255,.06);
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #0a0a0a;
}
.phone__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px #1c1c20;
}
.phone__glare {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 35%);
  z-index: 6;
  mix-blend-mode: screen;
}

.live-dot { width: 6px; height: 6px; background: #ff3838; border-radius: 50%; display:inline-block; }

/* YouTube screen (light theme) */
.phone__screen--yt {
  background: #fff;
  color: #0f0f0f;
  display: flex;
  flex-direction: column;
}
.yt-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 4px;
  font-size: 11px;
  font-weight: 600;
  color: #0f0f0f;
}
.yt-status__icons { display: inline-flex; align-items: center; gap: 4px; }
.yt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 10px;
}
.yt-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -.01em;
}
.yt-logo__btn {
  display: inline-grid;
  place-items: center;
  background: #ff0000;
  border-radius: 4px;
  width: 18px;
  height: 13px;
  padding-left: 1px;
}
.yt-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.yt-avatar {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  overflow: hidden;
}
.yt-avatar--img {
  background: #fff;
  padding: 2px;
}
.yt-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yt-thumb {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,138,90,.35), transparent 60%),
    linear-gradient(150deg, #ff7a93 0%, #ff9a5a 60%, #ffc04d 100%);
}
.yt-thumb__live {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  background: rgba(0,0,0,.55);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
}
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  backdrop-filter: blur(2px);
}
.yt-thumb__time {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 2px 6px;
  background: rgba(0,0,0,.7);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

.yt-meta { padding: 12px 14px 10px; }
.yt-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  color: #0f0f0f;
}
.yt-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef0f4;
}
.yt-ch-ava {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.yt-ch-ava--img { background: #fff; padding: 2px; box-shadow: inset 0 0 0 1px #eef0f4; }
.yt-ch-ava--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.yt-ch-meta { flex: 1; min-width: 0; }
.yt-ch-meta strong { display: block; font-size: 11px; color: #0f0f0f; }
.yt-ch-meta small { font-size: 9.5px; color: #606060; }
.yt-subscribe {
  background: #0f0f0f;
  border: 0;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
}

/* === YouTube recommended === */
.yt-recommended {
  padding: 10px 14px 14px;
  flex: 1;
}
.yt-rec-head {
  font-size: 10px;
  font-weight: 700;
  color: #606060;
  margin: 0 0 8px;
  letter-spacing: .04em;
}
.yt-rec-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.yt-rec-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
}
.yt-rec-thumb--1 { background: linear-gradient(135deg, #5b6cff 0%, #8a6bff 60%, #c46bff 100%); }
.yt-rec-thumb--2 { background: linear-gradient(135deg, #2ec4b6 0%, #5b8def 100%); }
.yt-rec-time {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 1px 4px;
  background: rgba(0,0,0,.7);
  color: #fff;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 700;
}
.yt-rec-info { display: flex; flex-direction: column; min-width: 0; }
.yt-rec-info p {
  font-size: 10px;
  font-weight: 700;
  color: #0f0f0f;
  line-height: 1.3;
  margin: 0 0 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-rec-info small { font-size: 9px; color: #606060; }

/* Float cards */
.floatcard {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 22px 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow:
    0 30px 60px -16px rgba(50, 60, 90, .25),
    0 0 0 1px rgba(255,255,255,.6) inset;
  overflow: hidden;
}
.floatcard--views {
  left: 6%; bottom: 30px; z-index: 4;
  animation: float-y 5s ease-in-out infinite;
}
.floatcard--creators {
  right: 0%; bottom: 0; z-index: 4;
  animation: float-y 7s ease-in-out -2.5s infinite;
}
.floatcard__shine {
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.6) 50%, transparent 100%);
  animation: shine-sweep 4.5s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}
.floatcard--creators .floatcard__shine { animation-delay: 3s; }
.floatcard__icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #fff0f1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.floatcard__icon--pink {
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  box-shadow: 0 8px 20px -6px rgba(255, 122, 147, .55);
}
.floatcard__icon--blue {
  background: linear-gradient(135deg, #5b8def, #8a6bff);
  box-shadow: 0 8px 20px -6px rgba(91, 141, 239, .55);
}
.floatcard__icon--gradient {
  background: linear-gradient(135deg, #ffd3da 0%, #ffe7b8 100%);
}
.floatcard__text { min-width: 0; position: relative; z-index: 1; }
.floatcard { white-space: nowrap; }
.floatcard__label { font-size: 11px; color: #7a8295; font-weight: 700; letter-spacing: .04em; }
.floatcard__value {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #161b25;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.floatcard__value em {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b8a, #ff9a5a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.floatcard--creators .floatcard__value em {
  background: linear-gradient(135deg, #5b8def, #8a6bff);
  -webkit-background-clip: text;
  background-clip: text;
}
.floatcard__value small { font-family: "Noto Sans JP", sans-serif; font-size: 12px; font-weight: 700; margin-left: 4px; color: #4a5266; }
.floatcard__value--sm { font-family: "Noto Sans JP", sans-serif; font-size: 13px; letter-spacing: 0; }
.floatcard__avatars { display: flex; }
.floatcard__avatars .ava { margin-left: -6px; }
.floatcard__avatars .ava:first-child { margin-left: 0; }

.ava {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid #fff;
}
.ava--a { background: #ff7a93; }
.ava--b { background: #ff9a5a; }
.ava--c { background: #5b8def; }

/* ===== Feature strip ===== */
.feature-strip {
  margin-top: 40px;
  background: #fff;
  border-radius: 22px;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 20px 50px -20px rgba(50, 60, 90, .15);
}
.feature-strip li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-strip__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-strip__icon--pink { background: #ffeaf0; }
.feature-strip__icon--blue { background: #e8f0ff; }
.feature-strip__icon--purple { background: #efe9ff; }
.feature-strip__icon--gray { background: #eef0f4; }
.feature-strip__txt { display: flex; flex-direction: column; line-height: 1.4; }
.feature-strip__txt small { font-size: 11px; color: #7a8295; font-weight: 500; }
.feature-strip__txt strong { font-size: 14px; font-weight: 700; }

/* ===== Clients ===== */
.clients {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.clients__lead {
  font-size: 13px;
  color: #4a5266;
  font-weight: 500;
  line-height: 1.6;
}
.clients__list {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 800;
  color: #2c3140;
  font-size: 18px;
}
.clients__list li { display: inline-flex; align-items: center; gap: 8px; }
.clients__list small { font-size: 9px; font-weight: 700; letter-spacing: .05em; }
.logo-cyber { display: inline-grid; place-items: center; width: 28px; height: 28px; background: #43b549; color: #fff; border-radius: 6px; font-size: 12px; }
.logo-smarthr { display: inline-grid; place-items: center; width: 26px; height: 26px; background: #00d4d8; color: #fff; border-radius: 8px; font-size: 14px; }
.logo-mercari { color: #ff3838; font-size: 16px; }
.logo-zozo { color: #ffd333; font-size: 18px; }
.logo-mrk { display: inline-grid; place-items: center; width: 26px; height: 26px; background: #161b25; color: #fff; border-radius: 4px; font-size: 12px; }

/* ===== Sections ===== */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section--gray {
  background:
    radial-gradient(ellipse at 80% -10%, rgba(255, 154, 90, .12) 0%, transparent 50%),
    radial-gradient(ellipse at -5% 105%, rgba(255, 138, 162, .1) 0%, transparent 50%),
    #fdf9f4;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(91, 141, 239, .08) 1px, transparent 0),
    radial-gradient(circle at 5% 10%, rgba(255, 138, 162, .08) 0%, transparent 30%),
    radial-gradient(circle at 95% 80%, rgba(138, 107, 255, .07) 0%, transparent 25%);
  background-size: 24px 24px, auto, auto;
  background-position: 0 0, 0 0, 0 0;
  background-repeat: repeat, no-repeat, no-repeat;
}
.section--gray::before {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(91, 141, 239, .12) 1px, transparent 0),
    radial-gradient(circle at 5% 10%, rgba(255, 138, 162, .1) 0%, transparent 30%),
    radial-gradient(circle at 95% 80%, rgba(138, 107, 255, .09) 0%, transparent 25%);
  background-size: 28px 28px, auto, auto;
  background-repeat: repeat, no-repeat, no-repeat;
}
.section > .container { position: relative; z-index: 1; }

/* Floating shapes / blobs */
.section::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: .55;
}
#service::after {
  background: rgba(255, 154, 90, .35);
  top: 20%; right: -80px;
  animation: drift 22s ease-in-out infinite;
}
#works::after {
  background: rgba(91, 141, 239, .3);
  bottom: 10%; left: -100px;
  animation: drift 25s ease-in-out -3s infinite reverse;
}
#voice::after, .section--voice::after {
  background: rgba(255, 122, 147, .3);
  top: 30%; right: -100px;
  animation: drift 26s ease-in-out -4s infinite;
}
#price::after {
  background: rgba(138, 107, 255, .25);
  top: 50%; left: -120px;
  animation: drift 28s ease-in-out -6s infinite reverse;
}
.eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25em;
  color: #ff6b8a;
  margin-bottom: 12px;
}
.eyebrow--white { color: rgba(255,255,255,.85); }
.section__title {
  text-align: center;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.section__lead {
  text-align: center;
  color: #4a5266;
  font-size: 16px;
  margin-bottom: 56px;
  line-height: 1.95;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.service-card__body p,
.price-card__desc,
.price-features li,
.modal__list li,
.modal__intro,
.modal__text,
.contact__bullets li {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* ===== Service ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 8px 28px -8px rgba(50, 60, 90, .1);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  transform: perspective(900px) translateY(-6px) rotateX(2deg) rotateY(-2deg) scale(1.01);
  box-shadow: 0 30px 60px -20px rgba(50, 60, 90, .25);
}
.service-grid--3 .service-card {
  grid-template-columns: 1fr;
  text-align: left;
  align-items: stretch;
  position: relative;
  padding: 0 0 60px;
  overflow: hidden;
}
.service-grid--3 .service-card__arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
}
.service-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f6f7fb;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__media .service-card__icon {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 0;
  z-index: 2;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.25);
}
.service-card__body { padding: 24px 24px 0; }
.service-grid--3 .service-card__body h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.service-grid--3 .service-card__body p { font-size: 15px; color: #4a5266; line-height: 1.9; }
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(50, 60, 90, .18);
}
.service-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
}
.service-card__icon--pink { background: linear-gradient(135deg, #ff6b8a, #ff8aa2); box-shadow: 0 10px 24px -6px rgba(255, 107, 138, .4); }
.service-card__icon--orange { background: linear-gradient(135deg, #ff9a5a, #ffb774); box-shadow: 0 10px 24px -6px rgba(255, 154, 90, .4); }
.service-card__icon--purple { background: linear-gradient(135deg, #8a6bff, #a785ff); box-shadow: 0 10px 24px -6px rgba(138, 107, 255, .4); }
.service-card__icon--blue { background: linear-gradient(135deg, #5b8def, #74a5ff); box-shadow: 0 10px 24px -6px rgba(91, 141, 239, .4); }
.service-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: #4a5266; line-height: 1.7; }
.service-card__arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.service-card__arrow--pink { background: #ff6b8a; }
.service-card__arrow--orange { background: #ff9a5a; }
.service-card__arrow--purple { background: #8a6bff; }
.service-card__arrow--blue { background: #5b8def; }

/* ===== Problems ===== */
.problems {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #fffaf3 0%, #fff5e6 100%);
  overflow: hidden;
}
.problems__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 154, 90, .14) 1px, transparent 0),
    radial-gradient(ellipse at 100% 0%, rgba(255, 138, 162, .12) 0%, transparent 40%);
  background-size: 22px 22px, auto;
  background-repeat: repeat, no-repeat;
}
.problems__bg::before, .problems__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.problems__bg::before {
  width: 240px; height: 240px;
  top: 10%; left: -8%;
  background: rgba(255, 154, 90, .25);
}
.problems__bg::after {
  width: 200px; height: 200px;
  bottom: 5%; right: -6%;
  background: rgba(255, 122, 147, .25);
}
.problems__head { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.problems__head .eyebrow { margin-bottom: 14px; }
.problems__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #161b25;
}
.problems__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.problems__illust {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.problems__illust img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(255, 138, 90, .25));
}
.problems__dots {
  position: absolute;
  top: 30px;
  left: -10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.problems__dots span {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ffb6a7;
  opacity: .6;
}
.problems__dots span:nth-child(2) { width: 6px; height: 6px; margin-left: 6px; }
.problems__dots span:nth-child(3) { width: 4px; height: 4px; margin-left: 12px; }
.problems__title-accent {
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.problems__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.problems__bubble {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 24px 40px;
  box-shadow: 0 20px 40px -18px rgba(50, 60, 90, .18);
}
.problems__bubble::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 56px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 16px 12px 0;
  border-color: transparent #fff transparent transparent;
  filter: drop-shadow(-3px 2px 4px rgba(50, 60, 90, .08));
}
.problems__list {
  display: grid;
  gap: 4px;
}
.problems__list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #161b25;
  padding: 18px 0;
  border-bottom: 1px dashed #f0e6d8;
  line-height: 1.4;
}
@media (max-width: 960px) {
  .problems__list li { font-size: 16px; padding: 12px 0; }
}
.problems__list li:last-child { border-bottom: 0; }
.problems__list li { justify-content: flex-start; }
.problems__list li::after {
  content: "";
  flex: 1;
}

/* タグでバランス埋め */
.problems__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  padding: 0 8px;
}
.problems__tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #fff;
  color: #ff6b8a;
  border: 1px solid #ffdad3;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s ease;
}
.problems__tags span:hover { transform: translateY(-2px); }
.problems__check {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px -4px rgba(255, 122, 147, .55);
}
.problems__check svg { width: 18px; height: 18px; }
.problems__solution {
  position: relative;
  text-align: center;
  padding: 16px 24px 0;
  font-weight: 800;
}
.problems__solution-mark {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #5e6573;
  margin-bottom: 12px;
}
.problems__solution-banner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff7a93 0%, #ff9a5a 60%, #ffb74d 100%);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  padding: 22px 56px;
  border-radius: 999px;
  letter-spacing: .04em;
  box-shadow:
    0 20px 40px -10px rgba(255, 122, 147, .55),
    inset 0 -3px 0 rgba(0,0,0,.15);
  text-shadow: 0 2px 4px rgba(0,0,0,.12);
}
.problems__solution-banner::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px dashed #ff9a5a;
  opacity: .5;
}
.problems__solution-arrow {
  font-size: 14px;
  background: #fff;
  color: #ff7a93;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,.15);
}
.problems__solution-banner strong { font-weight: 900; }
@media (max-width: 960px) {
  .problems__solution-banner { font-size: 20px; padding: 18px 32px; gap: 8px; }
}
@media (max-width: 600px) {
  .problems__solution-banner { font-size: 18px; padding: 16px 24px; white-space: nowrap; }
}
@media (max-width: 960px) {
  .problems { padding: 64px 0; }
  .problems__layout { grid-template-columns: 1fr; gap: 0; }
  .problems__illust { width: 180px; height: 200px; margin: 0 auto; }
  .problems__title { font-size: 24px; line-height: 1.5; }
  .problems__bubble { padding: 22px 24px; }
  .problems__bubble::before { display: none; }
  .problems__list li { font-size: 14px; }
  .problems__solution-handwrite { font-size: 22px; }
}

/* ===== Why Us ===== */
.whyus {
  position: relative;
  padding: 100px 0 110px;
  background:
    linear-gradient(135deg, #ff7a93 0%, #ff9a5a 60%, #ffb74d 100%);
  color: #fff;
  overflow: hidden;
}
.whyus__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.18) 0%, transparent 35%),
    radial-gradient(circle at 85% 85%, rgba(91, 141, 239, .25) 0%, transparent 40%);
}
.whyus__bg::before, .whyus__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.whyus__bg::before {
  width: 280px; height: 280px;
  top: -80px; left: -60px;
  background: rgba(255, 255, 255, .25);
  animation: drift 14s ease-in-out infinite;
}
.whyus__bg::after {
  width: 360px; height: 360px;
  bottom: -120px; right: -100px;
  background: rgba(138, 107, 255, .35);
  animation: drift 18s ease-in-out infinite reverse;
}
.whyus__title {
  text-align: center;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  margin: 10px 0 14px;
  letter-spacing: -.01em;
}
.whyus__lead {
  text-align: center;
  font-size: 16px;
  opacity: .95;
  margin-bottom: 56px;
}
.whyus__reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.reason-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 30px 32px;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 30px 60px -22px rgba(150, 60, 80, .4);
  color: #1a1f2c;
  overflow: hidden;
}
.reason-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff7a93 0%, #ff9a5a 50%, #ffb74d 100%);
}
.reason-card:hover {
  transform: perspective(900px) translateY(-8px) rotateX(2deg);
  box-shadow: 0 40px 70px -20px rgba(150, 60, 80, .55);
}
.reason-card--accent::before { background: linear-gradient(90deg, #5b8def, #8a6bff); }
.reason-card__num {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.reason-card__num-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #ff6b8a;
}
.reason-card--accent .reason-card__num-label { color: #5b8def; }
.reason-card__num-value {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reason-card--accent .reason-card__num-value {
  background: linear-gradient(135deg, #5b8def, #8a6bff);
  -webkit-background-clip: text;
  background-clip: text;
}
.reason-card__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.reason-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 20px -8px rgba(255, 122, 147, .5);
}
.reason-card--accent .reason-card__icon {
  background: linear-gradient(135deg, #5b8def, #8a6bff);
  box-shadow: 0 10px 20px -8px rgba(91, 141, 239, .5);
}
.reason-card__big {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: #161b25;
}
.reason-card__big--text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  letter-spacing: 0;
}
.reason-card__big small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
  color: #4a5266;
}
.reason-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #161b25;
}
.reason-card__desc {
  font-size: 13.5px;
  line-height: 1.9;
  color: #4a5266;
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: anywhere;
}

/* legacy achievement keep for fallback */
.achievement { padding: 0; }
.achievement__card {
  background: linear-gradient(135deg, #ff7a93 0%, #ff9a5a 100%);
  color: #fff;
  border-radius: 24px;
  padding: 72px 56px;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(255, 120, 130, .35);
}
.achievement__title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  margin: 10px 0 12px;
  letter-spacing: -.01em;
}
.achievement__lead {
  opacity: .95;
  font-size: 16px;
  margin-bottom: 56px;
}
.achievement__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.achievement__stats--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.achievement__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.08);
  padding: 32px 20px;
  border-radius: 18px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,.16);
}
.achievement__stats--2 li {
  padding: 40px 24px;
}
.stat__icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.22);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.achievement__stats--2 .stat__icon {
  width: 64px; height: 64px;
}
.stat__value {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.achievement__stats--2 .stat__value {
  font-size: 64px;
}
.stat__value small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}
.achievement__stats--2 .stat__value small { font-size: 22px; }
.stat__label {
  font-size: 15px;
  font-weight: 600;
  opacity: 1;
}
.achievement__stats--2 .stat__label { font-size: 17px; font-weight: 700; }

/* ===== Works ===== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px -8px rgba(50, 60, 90, .12);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  transform-style: preserve-3d;
}
.work-card:hover {
  transform: perspective(900px) translateY(-6px) rotateX(3deg) scale(1.02);
  box-shadow: 0 30px 60px -20px rgba(50, 60, 90, .28);
}
.work-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #2c3140;
}
.work-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.work-card:hover .work-card__thumb img { transform: scale(1.06); }
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.work-card__thumb .play, .work-card__thumb .work-card__category { position: relative; z-index: 2; }
.work-card__thumb--1, .work-card__thumb--2, .work-card__thumb--3 { background: #2c3140; }
.work-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, .92);
  color: #161b25;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.play {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.95);
  color: #161b25;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  padding-left: 4px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 20px -4px rgba(0,0,0,.2);
}
.work-card:hover .play { transform: scale(1.08); box-shadow: 0 16px 32px -6px rgba(0,0,0,.3); }
.work-card__info { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.work-card__info h3 { font-size: 17px; font-weight: 800; }
.work-card__meta { margin: 0; display: grid; gap: 8px; }
.work-card__meta > div { display: grid; grid-template-columns: 64px 1fr; gap: 10px; align-items: baseline; }
.work-card__meta dt {
  font-size: 11px;
  font-weight: 700;
  color: #7a8295;
  padding: 2px 8px;
  background: #f6f7fb;
  border-radius: 4px;
  text-align: center;
  letter-spacing: .04em;
}
.work-card__meta dd {
  margin: 0;
  font-size: 13px;
  color: #2c3140;
  line-height: 1.7;
}
.work-card__link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: #ff6b8a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* === Client === */
.client {
  margin-top: 80px;
  position: relative;
}
.client__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25em;
  color: #ff6b8a;
  margin-bottom: 8px;
}
.client__head {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -.01em;
  color: #161b25;
}
.client-card {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 52px;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 20px;
  box-shadow: 0 20px 50px -22px rgba(50, 60, 90, .18);
  position: relative;
  overflow: hidden;
}
.client-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 154, 90, .15) 0%, transparent 70%);
  pointer-events: none;
}
.client-card__info { position: relative; z-index: 1; }
.client-card__name {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #161b25;
  margin: 0 0 14px;
}
.client-card__desc {
  font-size: 14px;
  line-height: 2;
  color: #2c3140;
  margin: 0 0 20px;
}
.client-card__desc strong { font-weight: 800; color: #161b25; }
.client-card__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.client-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #d8dce4;
  background: #fafbfd;
  color: #161b25;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.client-link:hover {
  transform: translateY(-2px);
  border-color: #ff6b8a;
  background: #fff;
  box-shadow: 0 12px 24px -10px rgba(255, 107, 138, .35);
}
.client-link--yt:hover { border-color: #ff0000; box-shadow: 0 12px 24px -10px rgba(255, 0, 0, .25); }
.client-card__logo {
  display: grid;
  place-items: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, #fafbfd 0%, #fff 100%);
  border-radius: 18px;
  border: 1px solid #eef0f4;
  position: relative;
  z-index: 1;
  min-height: 380px;
}
.client-card__logo img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  transform: scale(1.6);
  transform-origin: center;
}
.client-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  padding: 5px 14px;
  border-radius: 999px;
  margin: 0 0 14px;
}

/* === Voice === */
.section--voice {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(255, 154, 90, .1) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 90%, rgba(255, 138, 162, .08) 0%, transparent 50%),
    #fffaf3;
  position: relative;
  overflow: hidden;
}
.voice__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.voice__bg::before, .voice__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.voice__bg::before {
  width: 280px; height: 280px;
  top: 20%; left: -10%;
  background: rgba(255, 154, 90, .15);
  animation: drift 16s ease-in-out infinite;
}
.voice__bg::after {
  width: 240px; height: 240px;
  bottom: 10%; right: -8%;
  background: rgba(138, 107, 255, .12);
  animation: drift 20s ease-in-out -3s infinite reverse;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.voice-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px -18px rgba(50, 60, 90, .15);
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  transform-style: preserve-3d;
}
.voice-card:hover {
  transform: perspective(900px) translateY(-6px) rotateX(2deg);
  box-shadow: 0 30px 60px -22px rgba(50, 60, 90, .25);
}
.voice-card--featured {
  background: linear-gradient(135deg, #fff 0%, #fffaf3 100%);
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, #ff7a93 0%, #ff9a5a 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: translateY(-8px);
}
.voice-card__quote {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: "Poppins", serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(255, 138, 162, .15);
  font-weight: 800;
  pointer-events: none;
}
.voice-card__rate { display: none; }
.voice-card__text {
  font-size: 14.5px;
  line-height: 1.95;
  color: #2c3140;
  margin-bottom: 22px;
}
.voice-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed #d8dce4;
}
.voice-card__ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.3);
}
.voice-card__ava::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,.3) 0%, transparent 40%);
}
.voice-card__ava--a { background: linear-gradient(135deg, #ff7a93, #ff9a5a); }
.voice-card__ava--b { background: linear-gradient(135deg, #5b8def, #8a6bff); }
.voice-card__ava--c { background: linear-gradient(135deg, #2ec4b6, #5b8def); }
.voice-card__profile strong { display: block; font-size: 13px; font-weight: 800; color: #161b25; }
.voice-card__profile small { font-size: 11px; color: #7a8295; font-weight: 500; }

/* ===== Voice ===== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.voice-card__rate { color: #ffb74d; letter-spacing: 2px; font-size: 15px; }
.voice-card__text { font-size: 14px; color: #2c3140; line-height: 1.9; }
.voice-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #eef0f4;
}
.voice-card__profile strong { display: block; font-size: 14px; }
.voice-card__profile small { font-size: 11px; color: #7a8295; }

/* ===== Price ===== */
.price-block {
  margin-top: 64px;
  padding: 40px;
  background: #fafbfd;
  border: 1px solid #eef0f4;
  border-radius: 20px;
}
.price-block:first-of-type { margin-top: 0; }
.price-block__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #d8dce4;
  flex-wrap: wrap;
}
.price-block__head-text { flex: 1; min-width: 240px; }
.strength-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .02em;
  overflow: hidden;
}
.strength-pill__arrow {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: transform .2s ease, background .2s ease;
}
.strength-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.strength-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -10px rgba(0,0,0,.28);
}
.strength-pill:hover::before { transform: translateX(100%); }
.strength-pill:hover .strength-pill__arrow { background: rgba(255,255,255,.4); transform: translateX(3px); }
.strength-pill--pink {
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  box-shadow: 0 10px 24px -8px rgba(255,122,147,.5);
}
.strength-pill--orange {
  background: linear-gradient(135deg, #ff9a5a, #ffb74d);
  box-shadow: 0 10px 24px -8px rgba(255,154,90,.5);
}
.strength-pill--blue {
  background: linear-gradient(135deg, #5b8def, #8a6bff);
  box-shadow: 0 10px 24px -8px rgba(91,141,239,.5);
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 10px 24px -8px rgba(255,122,147,.4); }
  50% { box-shadow: 0 16px 32px -8px rgba(255,122,147,.7); }
}
.strength-pill--pink { animation: pulse-glow 2.6s ease-in-out infinite; }
.price-block__num {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.price-block__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.price-block__lead {
  font-size: 14px;
  color: #4a5266;
  line-height: 1.8;
}
.price-h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 18px;
  color: #4a5266;
  display: inline-block;
  padding: 6px 16px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #eef0f4;
}
@media (max-width: 720px) {
  .price-h4 { font-size: 14px; padding: 4px 12px; }
}
.price-h4:first-of-type { margin-top: 0; }
.price-h4.price-h4--gap { margin-top: 80px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.price-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px -8px rgba(50, 60, 90, .1);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  transform-style: preserve-3d;
}
.price-card:hover {
  transform: perspective(900px) translateY(-6px) rotateX(2deg) scale(1.01);
  box-shadow: 0 30px 60px -20px rgba(50, 60, 90, .22);
}
.price-card__badge {
  padding: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 720px) { .price-card__badge { font-size: 13px; padding: 12px; } }
.price-card__badge--teal { background: #2ec4b6; }
.price-card__badge--blue { background: #3b82f6; }
.price-card__badge--orange { background: linear-gradient(90deg, #ff9a5a, #ff7a93); }
.price-card__badge--purple { background: linear-gradient(90deg, #5b8def, #8a6bff); }
.price-card--featured {
  position: relative;
}
.price-card--featured::after {
  content: "お得プラン";
  position: absolute;
  top: 14px;
  right: -32px;
  transform: rotate(40deg);
  background: #ffd333;
  color: #161b25;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 36px;
  letter-spacing: .04em;
}
.price-card__body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.price-card__body--wide { padding: 32px 32px 28px; }
.price-card__price {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #161b25;
  line-height: 1.1;
}
.price-card__price--lg { font-size: 42px; }
.price-card__price small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
  color: #4a5266;
}
.price-card__unit {
  font-size: 17px;
  color: #7a8295;
  margin: 6px 0 20px;
}
.price-card__unit--strong {
  font-size: 18px;
  font-weight: 700;
  color: #161b25;
  margin: 12px 0 22px;
}
.price-card__desc {
  font-size: 16px;
  color: #4a5266;
  line-height: 1.9;
  margin-top: auto;
  padding-top: 18px;
}
@media (max-width: 720px) {
  .price-card__unit, .price-card__unit--strong { font-size: 14px; }
  .price-card__desc { font-size: 13px; }
}
.price-features {
  list-style: none;
  padding: 16px 0 0;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
  border-top: 1px dashed #d8dce4;
}
.price-features li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 18px;
  color: #2c3140;
  line-height: 1.7;
}
@media (max-width: 720px) {
  .price-features li { font-size: 14px; padding: 6px 0 6px 22px; }
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2ec4b6 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
}
.price-grid--blue .price-features li::before {
  background-color: #3b82f6;
}
.price-features--purple li::before { background-color: #8a6bff; }
.price-features--yellow li::before { background-color: #ffb74d; }

/* === Inhouse two-column content === */
.inhouse-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin: 24px auto 0;
  text-align: left;
  border-top: 1px dashed #d8dce4;
  padding-top: 24px;
}
.inhouse-content__head {
  font-size: 17px;
  font-weight: 800;
  color: #4a5266;
  margin: 0 0 16px;
  padding: 6px 14px;
  display: inline-block;
  background: #eef0f4;
  border-radius: 6px;
}
@media (max-width: 720px) {
  .inhouse-content__head { font-size: 14px; padding: 4px 10px; }
}
.inhouse-content__head--after {
  background: linear-gradient(90deg, #fff4d6, #ffe3a3);
  color: #8a6900;
}
.inhouse-content .price-features { display: block; border-top: 0; padding-top: 0; }
.inhouse-content .price-features li { padding-left: 22px; }

/* === Strength CTA === */
.strength-cta {
  margin-top: 56px;
  padding: 32px;
  background: linear-gradient(135deg, #fff8f0 0%, #f4f7ff 100%);
  border-radius: 18px;
  text-align: center;
}
.strength-cta__lead {
  font-size: 13px;
  font-weight: 700;
  color: #4a5266;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.strength-cta__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.btn--strength {
  padding: 16px 18px;
  font-size: 13px;
  justify-content: flex-start;
  text-align: left;
  gap: 12px;
  border: 1px solid #eef0f4;
  box-shadow: 0 6px 16px -8px rgba(50, 60, 90, .1);
}
.btn--strength:hover { transform: translateY(-2px); }
.btn--strength .strength-arrow {
  margin-left: auto;
  font-weight: 800;
  font-size: 16px;
}
.strength-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.strength-num--pink { background: linear-gradient(135deg, #ff7a93, #ff9a5a); }
.strength-num--orange { background: linear-gradient(135deg, #ff9a5a, #ffb74d); }
.strength-num--blue { background: linear-gradient(135deg, #5b8def, #8a6bff); }

/* === Modal === */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[aria-hidden="false"] { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 28, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.modal__panel {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.4);
  animation: modal-in .2s ease-out;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.modal__close {
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #e8eaf0;
  padding: 0;
  cursor: pointer;
  transition: background .15s;
}
.modal__close::before,
.modal__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #4a5068;
  border-radius: 1px;
}
.modal__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal__close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.modal__close:hover { background: #d0d3de; }
.modal__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 16px 28px;
  border-bottom: 1px solid #eef0f4;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
  border-radius: 20px 20px 0 0;
}
.modal__header h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.modal__body { padding: 24px 32px 32px; }
.modal__intro {
  font-size: 14px;
  color: #2c3140;
  line-height: 1.9;
  margin-bottom: 24px;
  padding: 16px 18px;
  background: #f6f7fb;
  border-radius: 12px;
}
.modal__h3 {
  font-size: 15px;
  font-weight: 800;
  color: #161b25;
  margin: 22px 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal__bar {
  color: #ff6b8a;
  font-weight: 800;
}
.modal__list { display: grid; gap: 6px; padding-left: 4px; margin: 0; }
.modal__list li {
  font-size: 13.5px;
  color: #2c3140;
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
}
.modal__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #ff6b8a;
  font-weight: 800;
}
.modal__pointer {
  font-size: 13.5px;
  font-weight: 700;
  color: #161b25;
  margin: 8px 0 0;
  padding: 10px 14px;
  background: linear-gradient(90deg, #fff4d6, #ffe3a3);
  border-radius: 8px;
}
.modal__text {
  font-size: 14px;
  color: #2c3140;
  line-height: 1.9;
  margin: 8px 0;
}
.modal__cta {
  margin-top: 28px;
  width: 100%;
}

.option-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  overflow: hidden;
}
.option-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid #eef0f4;
  font-size: 19px;
}
.option-list li strong { margin-left: auto; }
@media (max-width: 720px) {
  .option-list li { font-size: 15px; padding: 16px 20px; }
}
.option-list li:nth-last-child(-n+2) { border-bottom: 0; }
.option-list li:nth-child(odd) { border-right: 1px solid #eef0f4; }
.option-list span { color: #2c3140; }
.option-list strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 2px;
  color: #161b25;
  white-space: nowrap;
  text-align: right;
  margin-left: auto;
  min-width: 200px;
}
.option-list strong em {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -.01em;
}
.option-list strong small { font-size: 14px; font-weight: 600; color: #7a8295; }
@media (max-width: 720px) {
  .option-list strong em { font-size: 18px; }
  .option-list strong small { font-size: 12px; }
}

.price-table {
  width: 100%;
  margin: 12px auto 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px -8px rgba(50, 60, 90, .1);
  font-size: 14px;
}
.price-table th, .price-table td { padding: 16px; text-align: center; }
.price-table thead th { background: #2563eb; color: #fff; font-weight: 700; font-size: 13px; }
.price-table tbody td { border-top: 1px solid #eef0f4; }
.price-note { text-align: center; margin-top: 12px; font-size: 12px; color: #7a8295; }

/* ===== Flow ===== */
.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.flow-step {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 18px 24px;
  text-align: center;
  box-shadow: 0 8px 24px -10px rgba(50, 60, 90, .12);
}
.flow-step--arrow::before {
  content: "›";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #ff9a5a;
  font-weight: 800;
}
.flow-step__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #161b25;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.flow-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 8px auto 16px;
  color: #fff;
}
.flow-step__icon--pink { background: linear-gradient(135deg, #ff7a93, #ff9a5a); }
.flow-step__icon--orange { background: linear-gradient(135deg, #ff9a5a, #ffb74d); }
.flow-step__icon--yellow { background: linear-gradient(135deg, #ffb74d, #ffd333); }
.flow-step__icon--blue { background: linear-gradient(135deg, #5b8def, #2ec4b6); }
.flow-step__icon--purple { background: linear-gradient(135deg, #8a6bff, #c46bff); }
.flow-step__title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #161b25;
}
.flow-step__desc {
  font-size: 13px;
  color: #4a5266;
  line-height: 1.95;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* ===== Contact ===== */
.contact {
  background: linear-gradient(135deg, #161b25 0%, #2c3140 60%, #1f2330 100%);
  color: #fff;
  padding: 100px 0;
}
.contact__title {
  text-align: center;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
@media (max-width: 600px) {
  .contact__title { font-size: 22px; white-space: nowrap; }
}
.contact__lead {
  text-align: center;
  font-size: 15px;
  opacity: .85;
  margin-bottom: 56px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}
.contact__info {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 32px 28px;
}
.contact__info-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.contact__bullets {
  margin: 0 0 28px;
  padding: 0;
}
.contact__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 2;
  opacity: .9;
}
.contact__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
}
.contact__direct {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.contact__direct-label {
  font-size: 11px;
  opacity: .65;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 4px;
  margin-top: 14px;
}
.contact__direct-label:first-of-type { margin-top: 0; }
.contact__phone {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: block;
  letter-spacing: -.01em;
}
.contact__mail {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
  display: block;
}
.contact__hours {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.contact__hours small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: .75;
  margin-top: 2px;
}
.contact__lead-sub {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(255, 154, 90, .15);
  border-radius: 999px;
  color: #ffb487;
}

.contact__form {
  background: #fff;
  color: #161b25;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #2c3140;
  margin-bottom: 6px;
}
.req {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  background: #ff6b8a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: .04em;
}
.opt {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  background: #eef0f4;
  color: #4a5266;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: .04em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8dce4;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fafbfd;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  color: #161b25;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237a8295'><path d='M8 11L3 6h10z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: #ff6b8a;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 107, 138, .15);
}
.field-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #7a8295;
  line-height: 1.6;
}
.field textarea { resize: vertical; min-height: 110px; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  cursor: pointer;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 8px 16px;
  background: #fafbfd;
  border: 1px solid #d8dce4;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #4a5266;
  transition: all .15s ease;
}
.chip input:checked + span {
  background: #ff6b8a;
  border-color: #ff6b8a;
  color: #fff;
}
.field--check { margin-top: 4px; }
.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2c3140;
  cursor: pointer;
}
.check input { width: 16px; height: 16px; accent-color: #ff6b8a; }
.btn--block { width: 100%; margin-top: 8px; }
.contact__note {
  font-size: 11px;
  color: #7a8295;
  text-align: center;
  margin-top: 14px;
  line-height: 1.7;
}
.contact__note strong { color: #2c3140; }

/* ===== Message ===== */
.message {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 154, 90, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(255, 138, 162, .1) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 100%, rgba(91, 141, 239, .08) 0%, transparent 40%),
    #fffdfa;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.message__deco {
  position: absolute;
  width: auto;
  z-index: 0;
  pointer-events: none;
  opacity: .85;
  filter: drop-shadow(0 10px 20px rgba(50, 60, 90, .15));
}
.message__deco--tl { top: 5%; left: 4%; height: 130px; transform: rotate(-8deg); }
.message__deco--tr { top: 8%; right: 5%; height: 120px; transform: rotate(6deg); }
.message__deco--bl { bottom: 10%; left: 3%; height: 140px; transform: rotate(4deg); }
.message__deco--br { bottom: 6%; right: 4%; height: 140px; transform: rotate(-6deg); }
.message > .container { position: relative; z-index: 1; }
@media (max-width: 960px) {
  .message__deco--tl, .message__deco--bl { height: 80px; left: 0; opacity: .7; }
  .message__deco--tr, .message__deco--br { height: 80px; right: 0; opacity: .7; }
}
@media (max-width: 600px) {
  .message__deco--tl { height: 65px; left: 0; top: 2%; }
  .message__deco--tr { height: 65px; right: 0; top: 3%; }
  .message__deco--bl { height: 65px; left: 0; bottom: 3%; }
  .message__deco--br { height: 65px; right: 0; bottom: 2%; }
}
/* Message logo badge */
.message__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 20px 0 8px;
}
.message__logo-ring {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #ff7a93 0%, #ff9a5a 50%, #ffc04d 100%);
  box-shadow:
    0 16px 36px -10px rgba(255, 122, 147, .45),
    0 0 0 6px rgba(255, 154, 90, .12);
  animation: float-y 6s ease-in-out infinite;
}
.message__logo-ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 154, 90, .45);
  pointer-events: none;
}
.message__logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 14px 10px 14px 18px;
  display: block;
}
.message__logo-word img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .message__logo-ring { width: 88px; height: 88px; }
  .message__logo-word img { height: 38px; }
}

.message__dots {
  display: block;
  font-family: "Poppins", sans-serif;
  color: #ffb6a7;
  letter-spacing: .4em;
  font-size: 14px;
  margin: 8px 0 48px;
  opacity: .7;
  text-align: center;
}
.message__body {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
  font-size: 22px;
  line-height: 2;
  color: #2c3140;
  position: relative;
}
@media (max-width: 720px) { .message__body { font-size: 17px; line-height: 1.95; } }
.message__head {
  font-size: 38px;
  line-height: 1.5;
  font-weight: 900;
  color: #161b25;
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  letter-spacing: -.01em;
}
.message__head strong {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(255, 154, 90, .4) 60%);
  padding: 0 6px;
}
.message__body > p { margin: 0 0 20px; }
.message__body em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(255, 200, 130, .4) 65%);
  padding: 0 2px;
}
.message__sign {
  margin-top: 32px !important;
  padding-top: 28px;
  border-top: 1px dashed #f0e6d8;
  font-size: 22px;
  font-weight: 700;
  color: #161b25;
  text-align: center;
  line-height: 1.8;
}
@media (max-width: 720px) {
  .message__head { font-size: 22px; }
  .message__sign { font-size: 16px; }
}

/* === Profile card === */
.profile-card {
  position: relative;
  padding: 32px 36px;
  background: linear-gradient(135deg, #fff8ef 0%, #fff 100%);
  border-left: 4px solid #ff9a5a;
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px -16px rgba(50, 60, 90, .15);
}
.profile-card__label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  color: #ff6b8a;
  margin-bottom: 14px;
}
.profile-card__text {
  font-size: 21px;
  line-height: 1.95;
  color: #2c3140;
}
.profile-card__text strong { font-weight: 800; color: #161b25; }
@media (max-width: 720px) {
  .profile-card { padding: 24px 22px; }
  .profile-card__text { font-size: 15px; }
}

/* ===== Company ===== */
#company { position: relative; overflow: hidden; }
.company__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255, 138, 162, .1) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 100%, rgba(91, 141, 239, .1) 0%, transparent 40%);
}
.company__bg::before, .company__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.company__bg::before {
  width: 320px; height: 320px;
  top: 8%; left: -8%;
  background: rgba(255, 154, 90, .2);
  animation: drift 16s ease-in-out infinite;
}
.company__bg::after {
  width: 260px; height: 260px;
  bottom: 5%; right: -6%;
  background: rgba(138, 107, 255, .2);
  animation: drift 22s ease-in-out infinite reverse;
}
.company-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.company-photo {
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #f4f7ff 100%);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  padding: 0 0 28px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(50, 60, 90, .25);
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  transform-style: preserve-3d;
}
.company-photo:hover { transform: perspective(1000px) rotateY(-4deg) translateY(-4px); }
.company-photo__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(135deg, rgba(255, 122, 147, .18) 0%, rgba(255, 154, 90, .12) 60%, rgba(91, 141, 239, .15) 100%);
}
.company-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 40% 28%;
  display: block;
  position: relative;
  z-index: 1;
  transform: scale(1.35);
  transform-origin: 40% 25%;
}
.company-photo figcaption {
  padding: 24px 24px 8px;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.95) 20%, #fff 100%);
  margin-top: -40px;
}
.company-photo__role {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
  color: #fff;
  background: linear-gradient(135deg, #ff7a93, #ff9a5a);
  padding: 5px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 8px 16px -6px rgba(255, 122, 147, .5);
}
.company-photo figcaption strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #161b25;
  letter-spacing: .02em;
  margin: 0;
  line-height: 1.3;
}
.company-photo figcaption small {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #7a8295;
  letter-spacing: .18em;
  margin-top: 6px;
}

.company-content { display: flex; flex-direction: column; gap: 28px; }
.company-message {
  position: relative;
  margin: 0;
  padding: 44px 44px 36px 48px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #eef0f4;
  box-shadow: 0 20px 50px -22px rgba(50, 60, 90, .18);
  font-size: 16.5px;
  line-height: 2.1;
  color: #2c3140;
  overflow: hidden;
}
.company-message::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #ff7a93 0%, #ff9a5a 50%, #ffb74d 100%);
}
.company-message__quote {
  position: absolute;
  top: 18px;
  right: 32px;
  font-family: "Poppins", serif;
  font-size: 110px;
  line-height: 1;
  color: rgba(255, 138, 162, .15);
  font-weight: 800;
  pointer-events: none;
}
.company-message p { margin: 0 0 14px; }
.company-message p:last-child { margin-bottom: 0; }
.company-message__head { font-size: 22px; line-height: 1.5; color: #161b25; margin-bottom: 22px; font-weight: 800; white-space: nowrap; }
.company-message__head strong { font-weight: 800; }
.company-message__head em { font-weight: 800; }
@media (max-width: 1100px) {
  .company-message__head { font-size: 19px; white-space: normal; }
}
.company-message__head strong { display: inline; font-weight: 800; }
.company-message em {
  font-style: normal;
  background: linear-gradient(transparent 62%, rgba(255, 154, 90, .4) 62%);
  font-weight: 700;
  padding: 0 2px;
}
.company-message__sign {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed #d8dce4;
  font-size: 15.5px;
  font-weight: 600;
  color: #161b25;
  line-height: 1.9;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px -8px rgba(50, 60, 90, .1);
  font-size: 14px;
}
.company-table th, .company-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid #eef0f4;
}
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: 0; }
.company-table th {
  width: 160px;
  background: #f6f7fb;
  font-weight: 700;
  color: #4a5266;
  font-size: 13px;
}

/* ===== CTA ===== */
.cta {
  background: #161b25;
  color: #fff;
  padding: 36px 0;
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta__title { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.cta__lead { font-size: 13px; opacity: .8; }

/* ===== Footer ===== */
.footer {
  padding: 24px 0;
  border-top: 1px solid #eef0f4;
  background: #fff;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
  color: #4a5266;
}
.footer__nav a { white-space: nowrap; }
.footer__nav a:hover { color: #ff6b8a; }
.copyright { font-size: 12px; color: #7a8295; }
@media (max-width: 600px) {
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__nav { gap: 10px 20px; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav, .header__actions { display: none; }
  .hamburger { display: inline-block; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
  }

  .hero { padding: 40px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__visual { width: 100%; height: 540px; max-width: 480px; margin: 0 auto; }
  .phone { width: 46%; max-width: 220px; height: 92%; max-height: 460px; }
  .phone--left { left: 4%; top: 0; transform: rotate(-6deg); }
  .phone--right { right: 4%; top: 30px; transform: rotate(5deg); }
  .floatcard--views { left: 2%; bottom: 8px; }
  .floatcard--creators { right: 2%; bottom: 0; }
  .hero__platforms { gap: 10px; }
  .hero__platforms-label { padding-right: 8px; }
  .platform { padding: 6px 12px 6px 8px; font-size: 11px; }
  .platform-list { gap: 8px; flex-wrap: wrap; }

  .feature-strip { grid-template-columns: repeat(2, 1fr); padding: 18px; }
  .clients { gap: 24px; }
  .clients__list { gap: 22px; font-size: 15px; }

  .section { padding: 70px 0; }
  .service-grid, .service-grid--3 { grid-template-columns: 1fr; }
  .works-grid, .voice-grid { grid-template-columns: 1fr; }
  .client { margin-top: 56px; }
  .client-card { grid-template-columns: 1fr; padding: 24px 22px; gap: 24px; }
  .client-card__logo { order: -1; padding: 24px; min-height: auto; }
  .client-card__logo img { max-height: 180px; }
  .client__head { font-size: 22px; }
  .client-card__name { font-size: 20px; }
  .option-list strong { min-width: auto; }
  .voice-card--featured { transform: none; }
  .voice-card { padding: 26px 22px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-block { padding: 28px 22px; }
  .option-list { grid-template-columns: 1fr; }
  .option-list li,
  .option-list li:nth-child(odd) { border-right: 0; border-bottom: 1px solid #eef0f4; }
  .option-list li:last-child { border-bottom: 0; }
  .service-card__media { aspect-ratio: 16 / 9; }
  .price-card__body { padding: 24px 22px; }
  .price-card--featured::after { display: none; }

  .whyus { padding: 70px 0 80px; }
  .whyus__reasons { grid-template-columns: 1fr; gap: 16px; }
  .reason-card { padding: 26px 22px; }
  .reason-card__big { font-size: 32px; }

  .company-table th, .company-table td { display: block; width: 100%; }
  .company-table th { border-bottom: 0; padding-bottom: 6px; }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
  }
  .company-photo img { height: 320px; object-position: center 25%; }
  .company-message { padding: 28px 22px; }
  .company-message__head { font-size: 17px; }
  .company-message__quote { font-size: 80px; right: 22px; }
  .work-card__meta > div { grid-template-columns: 60px 1fr; }

  .flow-list { grid-template-columns: 1fr; gap: 28px; }
  .flow-step--arrow::before {
    left: 50%;
    top: -18px;
    transform: translateX(-50%) rotate(90deg);
  }
  .contact { padding: 70px 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 24px; }
  .contact__form { padding: 24px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .strength-pill {
    padding: 12px 18px;
    font-size: 12.5px;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .inhouse-content { grid-template-columns: 1fr; gap: 20px; }
  .strength-cta { padding: 24px 18px; margin-top: 40px; }
  .strength-cta__buttons { grid-template-columns: 1fr; }

  .modal { padding: 16px; }
  .modal__panel { max-height: 92vh; }
  .modal__header { padding: 18px 18px 14px 18px; gap: 10px; }
  .modal__header h2 { font-size: 17px; }
  .modal__body { padding: 18px 22px 24px; }
}

@media (max-width: 520px) {
  .hero__visual { height: 360px; }
  .phone { width: 44%; max-width: 180px; max-height: 300px; }
  .floatcard {
    padding: 10px 14px;
    gap: 10px;
  }
  .floatcard__icon { width: 34px; height: 34px; min-width: 34px; }
  .floatcard__value { font-size: 15px; }
  .floatcard__value--sm { font-size: 12px; }
  .floatcard__label { font-size: 10px; }
  .feature-strip { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .hero__title { font-size: clamp(28px, 8.5vw, 38px); }
  .hero__lead { font-size: 14px; line-height: 1.9; }
  .price-card__price { font-size: 30px; }
  .price-card__price--lg { font-size: 34px; }
  .price-block__title { font-size: 18px; }
  .price-block { padding: 24px 16px; }
  .option-list li { padding: 12px 16px; }
  .option-list strong em { font-size: 14px; }
}

@media (min-width: 600px) and (max-width: 960px) {
  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .flow-step--arrow::before { display: none; }
}

@media (max-width: 380px) {
  .hero__visual { height: 320px; }
  .phone--left { left: 2%; }
  .phone--right { right: 2%; }
  .floatcard--views { left: 0; }
  .floatcard--creators { right: 0; }
  .hero__platforms-label { display: none; }
  .platform-list { gap: 6px; }
  .platform { padding: 5px 10px 5px 6px; font-size: 10px; }
  .platform svg { width: 18px; height: 18px; }
}

/* ============================================================
   Scroll Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,.8,.22,1),
              transform  .65s cubic-bezier(.22,.8,.22,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero — page-load entrance */
.hero__title     { animation: fade-up .75s cubic-bezier(.22,.8,.22,1) .05s both; }
.hero__lead      { animation: fade-up .75s cubic-bezier(.22,.8,.22,1) .22s both; }
.hero__cta       { animation: fade-up .75s cubic-bezier(.22,.8,.22,1) .38s both; }
.hero__platforms { animation: fade-up .75s cubic-bezier(.22,.8,.22,1) .52s both; }
.hero__visual    { animation: fade-up .85s cubic-bezier(.22,.8,.22,1) .28s both; }

/* Accessibility: disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__title, .hero__lead, .hero__cta, .hero__platforms, .hero__visual { animation: none; }
}
