  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  em, i { font-style: normal; }
  html {
    scroll-behavior: smooth;
    overflow-x: clip;
  }

  /* Scroll offset for sticky header */
  #service, #works, #pricing, #products, #profile, #about, #news, #blog, #contact, #statement {
    scroll-margin-top: 88px;
  }
  body {
    font-family: "Noto Sans JP", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--bg);
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ========== HERO ========== */
  .hero {
    position: relative;
    padding: 56px 0 90px;
    overflow: hidden;
    isolation: isolate;
  }
  .hero .container { position: relative; z-index: 2; }

  /* ---- Hero animated background — Code in Motion ---- */

  /* Layer 1 — Tech grid (drifting) */
  .hero-tech-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(91,140,255,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(91,140,255,0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 100% at 50% 50%, #000 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 90% 100% at 50% 50%, #000 30%, transparent 90%);
    animation: heroGridDrift 60s linear infinite;
    pointer-events: none;
    z-index: 0;
  }
  @keyframes heroGridDrift {
    from { background-position: 0 0; }
    to   { background-position: 64px 64px; }
  }

  /* Layer 2 — Floating code symbols */
  .hero-symbols {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .hero-sym {
    position: absolute;
    font-family: "JetBrains Mono", monospace;
    color: rgba(42,95,239, 0.18);
    font-weight: 600;
    user-select: none;
    white-space: nowrap;
    will-change: transform;
  }
  .hero-sym.sa { font-size: 38px; top: 6%;  left: 5%;  animation: symFloatA 24s ease-in-out infinite; }
  .hero-sym.sb { font-size: 24px; top: 22%; left: 28%; animation: symFloatB 30s ease-in-out infinite; animation-delay: -4s; }
  .hero-sym.sc { font-size: 32px; top: 64%; left: 12%; animation: symFloatA 28s ease-in-out infinite; animation-delay: -8s; }
  .hero-sym.sd { font-size: 22px; top: 40%; left: 4%;  animation: symFloatB 22s ease-in-out infinite; animation-delay: -2s; }
  .hero-sym.se { font-size: 28px; top: 84%; left: 30%; animation: symFloatA 26s ease-in-out infinite; animation-delay: -6s; }
  .hero-sym.sf { font-size: 30px; top: 12%; left: 44%; animation: symFloatB 32s ease-in-out infinite; animation-delay: -3s; color: rgba(42,95,239, 0.13); }
  .hero-sym.sg { font-size: 18px; top: 78%; left: 5%;  animation: symFloatA 20s ease-in-out infinite; animation-delay: -5s; color: rgba(42,95,239, 0.13); }
  @keyframes symFloatA {
    0%, 100% { transform: translate(0, 0) rotate(0deg);   opacity: 0.7; }
    50%      { transform: translate(30px, 20px) rotate(6deg);  opacity: 1; }
  }
  @keyframes symFloatB {
    0%, 100% { transform: translate(0, 0) rotate(0deg);   opacity: 0.6; }
    50%      { transform: translate(-25px, 30px) rotate(-5deg); opacity: 1; }
  }

  /* Layer 3 — Binary streams (vertical) */
  .hero-binary {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .binary-col {
    position: absolute;
    bottom: -50%;
    top: auto;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    line-height: 1.85;
    color: rgba(42,95,239, 0.20);
    letter-spacing: 0.1em;
    white-space: pre-line;
    animation: binaryFall linear infinite;
    will-change: transform;
    text-align: center;
    font-feature-settings: "tnum";
  }
  .binary-col.bc1 { left: 6%;  animation-duration: 22s; animation-delay: 0s; }
  .binary-col.bc2 { left: 17%; animation-duration: 28s; animation-delay: -6s; color: rgba(42,95,239, 0.14); }
  .binary-col.bc3 { left: 38%; animation-duration: 26s; animation-delay: -12s; }
  .binary-col.bc4 { left: 8%;  animation-duration: 32s; animation-delay: -3s;  color: rgba(42,95,239, 0.12); }
  @keyframes binaryFall {
    0%   { transform: translateY(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-180vh); opacity: 0; }
  }

  /* Layer 4 — Scan line (horizontal) */
  .hero-scan {
    position: absolute;
    left: -10%;
    left: 0;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(91,140,255, 0) 20%,
      rgba(42,95,239, 0.55) 50%,
      rgba(91,140,255, 0) 80%,
      transparent 100%);
    filter: blur(1px);
    pointer-events: none;
    z-index: 0;
    animation: heroScan 14s linear infinite;
    will-change: transform, opacity;
  }
  @keyframes heroScan {
    0%   { top: 100%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 0%;   opacity: 0; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .hero-tech-grid,
    .hero-sym,
    .binary-col,
    .hero-scan,
    .hero-art-svg * {
      animation: none !important;
    }
  }

  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
    position: relative;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 12px; letter-spacing: 0.22em; font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .eyebrow::before {
    content: ""; width: 28px; height: 1px; background: currentColor;
  }
  .eyebrow .jp {
    color: var(--gray-700);
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.04em;
    text-transform: none;
    font-size: 13px;
  }
  .hero-name {
    font-size: 17px; font-weight: 500; color: var(--gray-700);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
  }
  .hero-name span {
    font-family: "Manrope", sans-serif; color: var(--gray-500); margin-left: 6px;
    font-weight: 500;
  }
  .hero-headline {
    font-family: "Manrope", sans-serif;
    font-weight: 200;
    font-size: clamp(56px, 8vw, 124px);
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 36px;
    background: linear-gradient(
      135deg,
      var(--blue-deep)  0%,
      var(--blue)      14%,
      #5b8cff          28%,
      #93c5fd          42%,
      #ffffff          50%,
      #93c5fd          58%,
      #5b8cff          72%,
      var(--blue)      86%,
      var(--blue-deep) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleColorFlow 18s linear infinite;
    display: inline-block;
    will-change: background-position;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-headline { animation: none; }
  }
  .hero-headline .accent {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 200;
  }
  .hero-headline .dot { }

  .hero-lead {
    font-size: 15px; color: var(--gray-700); line-height: 2.1;
    max-width: 480px;
    margin: 0 0 44px;
  }
  .hero-lead em {
    font-style: normal; color: var(--ink); font-weight: 600;
  }

  .hero-cta { display: flex; align-items: center; gap: 28px; }

  .btn-text {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: gap .2s;
  }
  .btn-text:hover { gap: 14px; }

  /* Hero illustration */
  .hero-art {
    position: relative;
    width: 100%; aspect-ratio: 1/1;
    max-width: 560px;
    margin-left: auto;
  }
  .hero-art svg { width: 100%; height: 100%; display: block; }

  /* ---- Hero-art tech visualization animations ---- */
  .ha-line {
    fill: none;
    stroke: rgba(42,95,239, 0.5);
    stroke-width: 1.4;
    stroke-dasharray: 4 6;
    animation: haDataFlow 3s linear infinite;
  }
  .ha-line.l2 { animation-duration: 4s;   animation-delay: -1s; }
  .ha-line.l3 { animation-duration: 3.5s; animation-delay: -2s; }
  .ha-line.l4 { animation-duration: 5s;   animation-delay: -1.5s; }
  @keyframes haDataFlow {
    from { stroke-dashoffset: 0; }
    to   { stroke-dashoffset: -30; }
  }

  /* Code lines fade in sequentially */
  .ha-code-line {
    opacity: 0;
    animation: haCodeIn 8s ease-in-out infinite;
  }
  .ha-code-line.cl1 { animation-delay: 0s; }
  .ha-code-line.cl2 { animation-delay: 0.4s; }
  .ha-code-line.cl3 { animation-delay: 0.8s; }
  .ha-code-line.cl4 { animation-delay: 1.2s; }
  .ha-code-line.cl5 { animation-delay: 1.6s; }
  .ha-code-line.cl6 { animation-delay: 2.0s; }
  .ha-code-line.cl7 { animation-delay: 2.4s; }
  @keyframes haCodeIn {
    0%   { opacity: 0; transform: translateX(-6px); }
    8%   { opacity: 1; transform: translateX(0); }
    78%  { opacity: 1; }
    85%  { opacity: 0; }
    100% { opacity: 0; }
  }

  /* Blinking cursor */
  .ha-cursor {
    animation: haCursorBlink 1s step-end infinite;
  }
  @keyframes haCursorBlink {
    0%, 50%   { opacity: 1; }
    51%, 100% { opacity: 0; }
  }

  /* Pulsing endpoints */
  .ha-pulse {
    transform-origin: center;
    transform-box: fill-box;
    animation: haPulse 3s ease-in-out infinite;
  }
  .ha-pulse.p2 { animation-delay: 0.6s; }
  .ha-pulse.p3 { animation-delay: 1.2s; }
  .ha-pulse.p4 { animation-delay: 1.8s; }
  @keyframes haPulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
  }
  .ha-ring {
    fill: none;
    stroke: rgba(42,95,239, 0.6);
    stroke-width: 1.2;
    transform-origin: center;
    transform-box: fill-box;
    animation: haRing 3s ease-out infinite;
  }
  .ha-ring.r2 { animation-delay: 1s; }
  .ha-ring.r3 { animation-delay: 2s; }
  @keyframes haRing {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0;   transform: scale(3.5); }
  }

  /* Subtle rotation for outer ring */
  .ha-orbit {
    transform-origin: center;
    transform-box: fill-box;
    animation: haOrbit 60s linear infinite;
  }
  @keyframes haOrbit {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  /* Bar chart growing */
  .ha-bar {
    transform-origin: bottom;
    transform-box: fill-box;
    animation: haBarGrow 4s ease-in-out infinite;
  }
  .ha-bar.b2 { animation-delay: 0.3s; }
  .ha-bar.b3 { animation-delay: 0.6s; }
  .ha-bar.b4 { animation-delay: 0.9s; }
  @keyframes haBarGrow {
    0%, 100% { transform: scaleY(0.6); }
    50%      { transform: scaleY(1); }
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute; right: 32px; bottom: 12px;
    display: flex; align-items: center; gap: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 10px; letter-spacing: 0.32em;
    color: var(--gray-400);
  }
  .scroll-indicator::before { content: ""; width: 28px; height: 1px; background: var(--gray-300); }

  /* ========== STATS BAR ========== */
  .stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
    background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
  }
  .stats-inner {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 48px; align-items: center;
  }
  .stats-label {
    font-family: "Manrope", sans-serif;
    font-size: 11px; letter-spacing: 0.32em; font-weight: 600;
    color: var(--gray-500);
    display: flex; align-items: center; gap: 14px;
  }
  .stats-label::before { content: ""; width: 24px; height: 1px; background: var(--gray-400); }
  .stats-text { font-size: 14px; color: var(--gray-700); max-width: 540px; line-height: 1.9; }
  .stats-numbers { display: flex; gap: 56px; }
  .stat { text-align: left; }
  .stat-num {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .stat-num .unit {
    font-size: 12px; font-weight: 500; color: var(--gray-500);
    margin-left: 4px;
  }
  .stat-num .dash { color: var(--gray-300); margin-left: 6px; }
  .stat-label {
    font-family: "Manrope", sans-serif;
    font-size: 10px; letter-spacing: 0.28em; font-weight: 600;
    color: var(--gray-500);
    margin-top: 8px;
  }

  /* ========== SECTIONS ========== */
  .section { padding: 110px 0; position: relative; overflow: hidden; }

  /* Common decorative typography (top-left of each section) */
  .section-deco {
    position: absolute;
    top: -40px;
    left: -24px;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: clamp(140px, 18vw, 260px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(91, 140, 255, 0.045);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
    text-transform: uppercase;
  }
  .section-deco.dark { color: rgba(91, 140, 255, 0.06); }

  /* ========== NEWS / お知らせ ========== */
  .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
  }
  a.news-item {
    text-decoration: none;
    color: inherit;
  }
  .news-item {
    display: grid;
    grid-template-columns: 120px 96px 1fr 36px;
    gap: 32px;
    align-items: center;
    padding: 24px 4px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: padding .3s ease, background .3s ease;
    position: relative;
  }
  .news-item:hover {
    padding-left: 16px;
    background: linear-gradient(90deg, rgba(42,95,239,0.025) 0%, transparent 80%);
  }
  .news-date {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.06em;
  }
  .news-cat {
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 5px 8px;
    border-radius: 999px;
    justify-self: start;
    line-height: 1.4;
  }
  .news-cat-product { background: rgba(42,95,239,0.1);  color: var(--blue); }
  .news-cat-company { background: rgba(16,185,129,0.12); color: #047857; }
  .news-cat-press   { background: rgba(168,85,247,0.12); color: #7c3aed; }
  .news-cat-recruit { background: rgba(245,158,11,0.14); color: #b45309; }
  .news-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.01em;
    transition: color .2s;
  }
  .news-item:hover .news-title { color: var(--blue); }
  .news-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    display: grid; place-items: center;
    color: var(--gray-500);
    transition: all .25s;
    justify-self: end;
  }
  .news-item:hover .news-arrow {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: rotate(-45deg);
  }

  /* ========== STATEMENT / ブランドステートメント ========== */
  .statement-section {
    padding: 160px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .statement-section .container { position: relative; z-index: 2; }

  /* ---- Animated background layers ---- */

  /* Layer 1 — Aurora blobs (float around) */
  .statement-aurora {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .statement-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    mix-blend-mode: screen;
    will-change: transform;
  }
  .statement-blob.b1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(91,140,255,0.55) 0%, transparent 70%);
    top: -140px; left: -120px;
    animation: floatBlob1 22s ease-in-out infinite;
  }
  .statement-blob.b2 {
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(42,95,239,0.5) 0%, transparent 70%);
    bottom: -160px; right: -140px;
    animation: floatBlob2 26s ease-in-out infinite;
  }
  .statement-blob.b3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.32) 0%, transparent 70%);
    top: 35%; left: 38%;
    animation: floatBlob3 30s ease-in-out infinite;
  }
  .statement-blob.b4 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(34,211,238,0.22) 0%, transparent 70%);
    top: 18%; right: 15%;
    animation: floatBlob4 24s ease-in-out infinite;
  }

  @keyframes floatBlob1 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(180px, 140px) scale(1.15); }
    66%  { transform: translate(60px, 220px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
  }
  @keyframes floatBlob2 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(-200px, -120px) scale(0.92); }
    66%  { transform: translate(-80px, -200px) scale(1.12); }
    100% { transform: translate(0, 0) scale(1); }
  }
  @keyframes floatBlob3 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(120px, -80px) scale(1.25); }
    100% { transform: translate(0, 0) scale(1); }
  }
  @keyframes floatBlob4 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-160px, 100px) scale(0.85); }
    100% { transform: translate(0, 0) scale(1); }
  }

  /* Layer 2 — Drifting grid */
  .statement-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(91,140,255,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(91,140,255,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
    animation: gridDrift 40s linear infinite;
    pointer-events: none;
    z-index: 1;
  }
  @keyframes gridDrift {
    from { background-position: 0 0; }
    to   { background-position: 60px 60px; }
  }

  /* Layer 3 — Floating particles (rise from bottom) */
  .statement-particles {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }
  .statement-particle {
    position: absolute;
    bottom: -20px;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 0 8px rgba(91,140,255,0.85);
    animation: floatUp linear infinite;
    will-change: transform, opacity;
  }
  .statement-particle.s2 { width: 3px; height: 3px; background: rgba(91,140,255,0.85); }
  .statement-particle.s3 { width: 2px; height: 2px; background: rgba(255,255,255,0.7); box-shadow: none; }
  .statement-particle.p1  { left: 8%;   animation-duration: 14s; animation-delay: 0s; }
  .statement-particle.p2  { left: 18%;  animation-duration: 16s; animation-delay: 2s; }
  .statement-particle.p3  { left: 26%;  animation-duration: 12s; animation-delay: 4s; }
  .statement-particle.p4  { left: 35%;  animation-duration: 18s; animation-delay: 1s; }
  .statement-particle.p5  { left: 44%;  animation-duration: 15s; animation-delay: 6s; }
  .statement-particle.p6  { left: 53%;  animation-duration: 13s; animation-delay: 3s; }
  .statement-particle.p7  { left: 62%;  animation-duration: 17s; animation-delay: 5s; }
  .statement-particle.p8  { left: 70%;  animation-duration: 14s; animation-delay: 7s; }
  .statement-particle.p9  { left: 80%;  animation-duration: 16s; animation-delay: 2.5s; }
  .statement-particle.p10 { left: 90%;  animation-duration: 19s; animation-delay: 4.5s; }
  .statement-particle.p11 { left: 12%;  animation-duration: 21s; animation-delay: 8s; }
  .statement-particle.p12 { left: 75%;  animation-duration: 20s; animation-delay: 10s; }

  @keyframes floatUp {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    50%  { transform: translateY(-50vh) translateX(20px) scale(1); }
    90%  { opacity: 1; }
    100% { transform: translateY(-110vh) translateX(-30px) scale(0.4); opacity: 0; }
  }

  /* Reduced motion: disable animations */
  @media (prefers-reduced-motion: reduce) {
    .statement-blob,
    .statement-grid,
    .statement-particle {
      animation: none;
    }
    .statement-particle { opacity: 0.6; }
  }

  .statement-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    letter-spacing: 0.42em;
    font-weight: 700;
    color: #5b8cff;
    margin: 0 0 40px;
    text-transform: uppercase;
  }
  .statement-eyebrow::before,
  .statement-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
  }

  .statement-logo {
    font-family: "Manrope", sans-serif;
    font-weight: 200;
    font-size: clamp(72px, 14vw, 200px);
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 40px;
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.85)  0%,
      #ffffff                14%,
      rgba(147,197,253,0.95) 28%,
      #5b8cff                42%,
      var(--blue-deep)       50%,
      #5b8cff                58%,
      rgba(147,197,253,0.95) 72%,
      #ffffff                86%,
      rgba(255,255,255,0.85) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: statementShimmer 18s linear infinite;
    display: block;
    will-change: background-position;
  }
  @keyframes statementShimmer {
    from { background-position: 100% 100%; }
    to   { background-position: -200% -200%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .statement-logo { animation: none; }
  }

  .statement-tagline {
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 400;
    margin: 0 0 36px;
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.95);
  }
  .statement-tagline em {
    /* font-family: "Instrument Serif", serif; */
    /* font-style: italic; */
    color: #5b8cff;
    font-weight: 400;
    font-size: 1.08em;
  }

  .statement-desc {
    font-size: 14.5px;
    color: rgba(255,255,255,0.72);
    line-height: 2.15;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Soft variant — light blue gradient background */
  .section.is-soft {
    background: linear-gradient(180deg, #fafbff 0%, #f3f6fd 100%);
  }

  /* Dark variant — navy gradient background, white text, dark-mode service cards */
  .section.is-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .section.is-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 90% 0%, rgba(91,140,255,0.16) 0%, transparent 50%),
      radial-gradient(circle at 10% 100%, rgba(42,95,239,0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
  }

  /* ---- Services animated background layers ---- */

  /* Layer 1 — Drifting dot pattern */
  .service-bg-dots {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(91,140,255,0.18) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: linear-gradient(135deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(135deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
    animation: dotsDrift 50s linear infinite;
    pointer-events: none;
    z-index: 0;
  }
  @keyframes dotsDrift {
    from { background-position: 0 0; }
    to   { background-position: 64px 64px; }
  }

  /* Layer 2 — Diagonal sweep beam */
  .service-bg-beam {
    position: absolute;
    top: -10%; bottom: -10%;
    width: 240px;
    left: -260px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(91,140,255,0.04) 30%,
      rgba(91,140,255,0.16) 50%,
      rgba(91,140,255,0.04) 70%,
      transparent 100%);
    transform: skewX(-20deg);
    animation: beamSweep 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
  }
  @keyframes beamSweep {
    0%   { transform: skewX(-20deg) translateX(0);    opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: skewX(-20deg) translateX(120vw); opacity: 0; }
  }

  /* Layer 3 — SVG Network Mesh */
  .service-bg-network {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
  }
  .net-line {
    fill: none;
    stroke: rgba(91,140,255,0.32);
    stroke-width: 1;
    stroke-dasharray: 4 8;
    animation: dataFlow 4s linear infinite;
  }
  .net-line.lA { animation-duration: 4s;  animation-delay: 0s; }
  .net-line.lB { animation-duration: 5s;  animation-delay: -1s; }
  .net-line.lC { animation-duration: 6s;  animation-delay: -2s; }
  .net-line.lD { animation-duration: 4.5s;animation-delay: -0.5s; }
  .net-line.lE { animation-duration: 5.5s;animation-delay: -3s; }
  .net-line.lF { animation-duration: 7s;  animation-delay: -1.5s; }
  .net-line.lG { animation-duration: 4s;  animation-delay: -2.5s; stroke: rgba(91,140,255,0.22); }
  .net-line.lH { animation-duration: 6s;  animation-delay: -4s; stroke: rgba(91,140,255,0.22); }
  @keyframes dataFlow {
    from { stroke-dashoffset: 0; }
    to   { stroke-dashoffset: -36; }
  }

  .net-node {
    fill: #5b8cff;
    filter: drop-shadow(0 0 6px rgba(91,140,255,0.85));
    animation: nodePulse 3s ease-in-out infinite;
  }
  .net-node.n1 { animation-delay: 0s; }
  .net-node.n2 { animation-delay: 0.4s; }
  .net-node.n3 { animation-delay: 0.8s; }
  .net-node.n4 { animation-delay: 1.2s; }
  .net-node.n5 { animation-delay: 0.2s; }
  .net-node.n6 { animation-delay: 1.6s; }
  .net-node.n7 { animation-delay: 1.0s; }
  .net-node.n8 { animation-delay: 0.6s; }
  @keyframes nodePulse {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
  }

  .net-node-ring {
    fill: none;
    stroke: rgba(91,140,255,0.6);
    stroke-width: 1.2;
    transform-origin: center;
    transform-box: fill-box;
    animation: nodeRing 3s ease-out infinite;
  }
  .net-node-ring.r1 { animation-delay: 0s; }
  .net-node-ring.r2 { animation-delay: 1s; }
  .net-node-ring.r3 { animation-delay: 2s; }
  @keyframes nodeRing {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0;   transform: scale(4); }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .service-bg-dots,
    .service-bg-beam,
    .net-line,
    .net-node,
    .net-node-ring {
      animation: none;
    }
  }

  .section.is-dark .container { position: relative; z-index: 2; }
  .section.is-dark .section-title { color: #fff; }
  .section.is-dark .section-desc { color: rgba(255,255,255,0.72); }
  .section.is-dark .section-eyebrow { color: #5b8cff; }
  .section.is-dark .btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,0.25);
    color: #fff;
  }
  .section.is-dark .btn-outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: #fff;
  }
  /* Services grid in dark mode */
  .section.is-dark .services-grid {
    border-top-color: rgba(255,255,255,0.12);
  }
  .section.is-dark .service-card {
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.12);
    border-right-color: rgba(255,255,255,0.12);
  }
  .section.is-dark .service-card:hover {
    background: rgba(255,255,255,0.04);
  }
  .section.is-dark .service-num { color: rgba(255,255,255,0.4); }
  .section.is-dark .service-cat { color: #5b8cff; }
  .section.is-dark .service-name { color: #fff; }
  .section.is-dark .service-desc { color: rgba(255,255,255,0.72); }
  .section.is-dark .tag {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
  }
  .section.is-dark .service-link { color: #fff; }
  .section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 56px;
    gap: 40px; flex-wrap: wrap;
  }
  .section-head .left {
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 11px; letter-spacing: 0.3em; font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .section-eyebrow::before {
    content: ""; width: 24px; height: 1px; background: currentColor;
  }
  .section-title {
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: 0.01em;
    line-height: 1.4;
  }

  /* Display variant — large headline with diagonal flowing color animation */
  .section-title.is-display {
    font-family: "Manrope", sans-serif;
    font-size: clamp(64px, 11vw, 156px);
    font-weight: 200;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0 0 28px;
    background: linear-gradient(
      135deg,
      var(--blue-deep)  0%,
      var(--blue)      14%,
      #5b8cff          28%,
      #93c5fd          42%,
      #ffffff          50%,
      #93c5fd          58%,
      #5b8cff          72%,
      var(--blue)      86%,
      var(--blue-deep) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleColorFlow 18s linear infinite;
    display: inline-block;
    will-change: background-position;
  }
  @keyframes titleColorFlow {
    from { background-position: 100% 100%; }
    to   { background-position: -200% -200%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .section-title.is-display { animation: none; }
  }
  .section-desc {
    color: var(--gray-700); font-size: 14px; line-height: 2;
    margin: 0;
  }

  .section-title.is-display.is-contact { 
    font-size: clamp(64px, 8vw, 156px);
  }

  /* ========== SERVICES ========== */
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .service-card {
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 36px 30px 40px;
    background: #fff;
    position: relative;
    transition: background .25s;
    display: flex; flex-direction: column;
    min-height: 340px;
  }
  .service-card:nth-child(3n) { border-right: none; }

  /* Brand CTA card (closing tile) */
  .service-card.is-cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 60%, var(--navy-2) 100%);
    color: #fff;
    overflow: hidden;
    border-color: transparent;
  }
  .service-card.is-cta::before {
    content: "";
    position: absolute;
    right: -90px; top: -90px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
  }
  .service-card.is-cta::after {
    content: "";
    position: absolute;
    right: -40px; bottom: -120px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
  }
  .service-card.is-cta:hover { background: linear-gradient(135deg, var(--blue-deep) 0%, var(--navy-2) 100%); }
  .service-card.is-cta .service-num { color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
  .service-card.is-cta .service-cat { color: #fff; opacity: 0.9; position: relative; z-index: 1; }
  .cta-headline {
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 4px 0 18px;
    position: relative; z-index: 1;
  }
  .cta-headline em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
  }
  .cta-desc {
    font-size: 13px;
    line-height: 1.95;
    color: rgba(255,255,255,0.9);
    margin: 0 0 26px;
    flex: 1;
    position: relative; z-index: 1;
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 14px 12px 22px;
    border-radius: 999px;
    background: #fff;
    color: var(--blue);
    font-size: 13px; font-weight: 700;
    align-self: flex-start;
    transition: transform .2s;
    position: relative; z-index: 1;
  }
  .cta-btn:hover { transform: translateX(4px); }
  .cta-btn .arr {
    width: 24px; height: 24px; border-radius: 999px;
    background: var(--blue);
    display: grid; place-items: center; color: #fff;
  }
  .service-card:hover { background: #fafbff; }
  .service-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 28px;
  }
  .service-num {
    font-family: "Manrope", sans-serif;
    font-size: 12px; color: var(--gray-400); letter-spacing: 0.16em;
  }
  .service-cat {
    font-family: "Manrope", sans-serif;
    font-size: 10px; letter-spacing: 0.28em; font-weight: 700;
    color: var(--blue);
  }
  .service-name {
    font-size: 22px; font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: 0.01em;
  }
  .service-name .en {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    margin-right: 6px;
  }
  .service-desc {
    font-size: 13.5px; color: var(--gray-700); line-height: 1.95;
    margin: 0 0 24px;
    flex: 1;
  }
  .service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
  .tag {
    font-family: "Manrope", sans-serif;
    font-size: 10.5px; letter-spacing: 0.12em; font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-100);
    padding: 5px 11px;
    border-radius: 4px;
    text-transform: uppercase;
  }
  .service-link {
    font-size: 12.5px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--ink);
  }
  .service-link .arr { transition: transform .2s; }
  .service-card:hover .service-link .arr { transform: translateX(4px); }

  /* ========== WORKS / 開発実績 ========== */
  .works-section {
    padding: 110px 0;
    background: #fff;
    position: relative;
  }
  .works-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(42,95,239,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(42,95,239,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  }
  .works-section .container { position: relative; z-index: 1; }
  .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .work-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex; flex-direction: column;
    position: relative;
  }
  .work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.09);
    border-color: transparent;
  }
  .work-mockup {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }
  .work-mockup svg { width: 100%; height: 100%; display: block; }
  .work-body {
    padding: 28px 28px 30px;
    display: flex; flex-direction: column;
    flex: 1;
  }
  .work-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px;
  }
  .work-num {
    font-family: "Manrope", sans-serif;
    font-size: 12px; color: var(--gray-400); letter-spacing: 0.18em;
    font-weight: 600;
  }
  .work-status {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 10px; letter-spacing: 0.22em; font-weight: 700;
    color: #047857;
    text-transform: uppercase;
    padding: 5px 10px 5px 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 999px;
  }
  .work-status::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
    animation: workPulse 2.4s ease-in-out infinite;
  }
  @keyframes workPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
  }
  .work-name {
    font-size: 22px; font-weight: 700;
    margin: 0 0 4px;
    letter-spacing: 0.01em;
    line-height: 1.3;
    font-family: "Manrope", sans-serif;
  }
  .work-name-jp {
    font-size: 12px; color: var(--gray-500);
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  .work-desc {
    font-size: 13px; color: var(--gray-700); line-height: 1.95;
    margin: 0 0 22px;
    flex: 1;
  }
  .work-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
  .work-link {
    display: inline-flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 13px 14px 13px 22px;
    border-radius: 999px;
    background: var(--gray-100);
    font-size: 12.5px; font-weight: 600;
    color: var(--ink);
    transition: all .25s;
  }
  .work-link:hover { background: var(--ink); color: #fff; }
  .work-link:hover .arr { background: var(--blue); }
  .work-link .arr {
    width: 26px; height: 26px; border-radius: 999px;
    background: var(--ink);
    display: grid; place-items: center; color: #fff;
    transition: background .25s;
  }
  .work-link:hover { color: #fff; }
  .work-link:hover .arr { background: var(--blue); }

  /* ========== BLOG ========== */
  .blog-section { padding: 110px 0; background: #fff; }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 32px;
  }
  .blog-card {
    display: flex; flex-direction: column;
    cursor: pointer;
    transition: transform .25s;
  }
  .blog-card:hover { transform: translateY(-4px); }
  .blog-card:hover .blog-title { color: var(--blue); }
  .blog-img {
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #eef2ff, #fff);
    position: relative;
  }
  .blog-img img { width: 100%; height: 100%; object-fit: cover; }
  .blog-cat {
    position: absolute;
    top: 12px; left: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
  }
  .blog-title {
    font-size: 13px; line-height: 1.7; font-weight: 600;
    color: var(--ink);
    margin: 0 0 14px;
    transition: color .2s;
  }
  .blog-meta {
    display: flex; align-items: center; gap: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 10.5px; letter-spacing: 0.16em; font-weight: 600;
    color: var(--gray-400);
    margin-top: auto;
  }
  .blog-meta .dot { color: var(--gray-300); }
  .blog-meta .read {
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }

  /* ========== RECRUIT (dark) ========== */
  .recruit {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .recruit::before {
    content: "";
    position: absolute;
    right: -180px; top: 50%;
    transform: translateY(-50%);
    width: 720px; height: 720px;
    background: radial-gradient(circle, rgba(91,140,255,0.08) 0%, transparent 60%);
  }
  .recruit-decor {
    position: absolute; right: 8%; top: 50%;
    transform: translateY(-50%);
    width: 380px; opacity: 0.5;
    pointer-events: none;
  }
  .recruit-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    position: relative; z-index: 2;
  }
  .recruit .section-eyebrow { color: var(--blue); }
  .recruit .section-eyebrow::before { background: currentColor; }
  .recruit-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700; line-height: 1.25;
    margin: 0 0 32px;
    letter-spacing: 0.01em;
  }
  .recruit-title .blue { color: #5b8cff; }
  .recruit-desc {
    color: rgba(255,255,255,0.7);
    line-height: 2; font-size: 14px;
    max-width: 480px;
    margin: 0 0 40px;
  }
  .btn-light-pill {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 14px 18px 14px 26px;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 13px; font-weight: 700;
    transition: all .2s;
  }
  .btn-light-pill:hover { background: var(--blue); color: #fff; }
  .btn-light-pill .arrow {
    width: 28px; height: 28px; border-radius: 999px;
    background: var(--ink);
    display: grid; place-items: center; color: #fff;
  }
  .recruit-list { display: flex; flex-direction: column; gap: 0; }
  .recruit-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    transition: padding .25s;
  }
  .recruit-item:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
  .recruit-item:hover { padding-left: 12px; }
  .recruit-item .name { font-size: 17px; font-weight: 600; }
  .recruit-item .en {
    font-family: "Manrope", sans-serif;
    font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.28em; font-weight: 600;
    margin-top: 6px;
    text-transform: uppercase;
  }
  .recruit-item .arr {
    width: 36px; height: 36px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    display: grid; place-items: center;
    transition: all .2s;
  }
  .recruit-item:hover .arr { background: var(--blue); border-color: var(--blue); }

  /* ========== ABOUT ========== */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
    align-items: flex-start;
  }
  .about-title {
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 32px;
    letter-spacing: 0.01em;
  }
  .about-title .blue { color: var(--blue); }
  .about-text { color: var(--gray-700); font-size: 13.5px; line-height: 2.1; margin: 0; }
  /* About: media (photos + map) */
  .about-media {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-photo {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    position: relative;
    cursor: zoom-in;
  }
  .about-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
  }
  .about-photo:hover img { transform: scale(1.05); }
  .about-photo figcaption {
    position: absolute;
    left: 16px; bottom: 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--ink);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.04em;
  }
  .about-map {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 21/8;
    background: var(--gray-100);
  }
  .about-map iframe {
    width: 100%; height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.95);
  }
  .map-card {
    position: absolute;
    top: 24px; left: 24px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
    max-width: 290px;
    display: flex; align-items: flex-start; gap: 14px;
    z-index: 2;
  }
  .map-card-content { flex: 1; min-width: 0; }
  .map-card-title {
    font-size: 13px; font-weight: 700;
    margin: 0 0 6px;
    color: var(--ink);
    letter-spacing: 0.02em;
  }
  .map-card-addr {
    font-size: 11px;
    color: var(--gray-700);
    line-height: 1.65;
    margin: 0;
  }
  .map-card-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .map-card-btn {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--ink);
    transition: all .2s;
  }
  .map-card-btn:hover { background: var(--gray-200); }
  .map-card-btn.primary {
    background: var(--blue);
    color: #fff;
  }
  .map-card-btn.primary:hover { background: var(--blue-deep); }

  /* ========== OPERATING SERVICES / 運営サービス ========== */
  .operating-section {
    padding: 110px 0;
    background: #fff;
    position: relative;
  }
  .operating-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .operating-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
  }
  .operating-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.10);
    border-color: transparent;
  }
  .op-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #fff;
  }
  .op-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .operating-card:hover .op-photo img { transform: scale(1.06); }
  .op-photo::after {
    content: "";
    position: absolute; inset: 0;
    /* background: linear-gradient(180deg, transparent 50%, rgba(10, 15, 31, 0.18) 100%); */
    pointer-events: none;
  }
  .op-photo-cat {
    display: inline-flex; align-items: center; gap: 8px;
    align-self: flex-start;
    margin-bottom: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 10px; letter-spacing: 0.22em; font-weight: 700;
    color: #7c3aed;
    text-transform: uppercase;
    padding: 5px 10px 5px 8px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 999px;
  }
  .op-photo-cat::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    animation: workPulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
  }
  .op-content {
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .op-name {
    font-size: 19px; font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0.01em;
    line-height: 1.45;
  }
  .op-name .en {
    font-family: "Manrope", sans-serif;
    margin-right: 6px;
  }
  .op-desc {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.9;
    margin: 0 0 22px;
    flex: 1;
  }
  .op-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.04em;
    align-self: flex-start;
  }
  .op-link .arr { transition: transform .2s; }
  .operating-card:hover .op-link .arr { transform: translateX(4px); }

  /* ========== PRICING / 料金 ========== */
  .pricing-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #fafbff 0%, #f3f6fd 100%);
    position: relative;
  }
  .pricing-section::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 10%, rgba(91,140,255,0.07) 0%, transparent 45%),
      radial-gradient(circle at 80% 90%, rgba(91,140,255,0.05) 0%, transparent 45%);
    pointer-events: none;
  }
  .pricing-section .container { position: relative; z-index: 1; }
  .pricing-stack { display: flex; flex-direction: column; gap: 18px; }
  .pricing-cat {
    background: #fff;
    border-radius: 22px;
    padding: 40px 44px 36px;
    border: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  }
  .pricing-cat-head {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .pricing-cat-num {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--blue);
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: 0.06em;
    flex-shrink: 0;
  }
  .pricing-cat-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.4;
  }
  .pricing-cat-en {
    font-family: "Manrope", sans-serif;
    font-size: 11px; letter-spacing: 0.2em; font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-left: auto;
    flex-shrink: 0;
  }

  /* Pricing rows */
  .pricing-rows { display: flex; flex-direction: column; gap: 0; }
  .pricing-row {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: padding .25s;
  }
  .pricing-row:last-child { border-bottom: none; padding-bottom: 4px; }
  .pricing-row:first-child { padding-top: 4px; }
  .pricing-row:hover { padding-left: 8px; }
  .pricing-no {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.2em;
    align-self: flex-start;
    padding-top: 4px;
  }
  .pricing-info { min-width: 0; }
  .pricing-name {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.5;
    margin: 0 0 6px;
    letter-spacing: 0.01em;
  }
  .pricing-features {
    font-size: 12.5px;
    color: var(--gray-500);
    line-height: 1.75;
    margin: 0;
  }
  /* Tag-style feature list (used when content is split into spans) */
  .pricing-features.is-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.4;
    margin-top: 4px;
  }
  .pricing-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--blue-deep);
    background: var(--blue-soft);
    border: 1px solid rgba(29, 78, 216, 0.12);
    border-radius: 999px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: all .2s;
  }
  .pricing-tag:hover {
    background: #dde7ff;
    border-color: rgba(29, 78, 216, 0.25);
    color: var(--blue-deep);
  }
  .pricing-tag.is-more {
    background: transparent;
    border: 1px dashed var(--gray-300);
    color: var(--gray-500);
    font-weight: 600;
  }
  .pricing-price {
    text-align: right;
    align-self: flex-start;
    padding-top: 2px;
    flex-shrink: 0;
  }
  .pricing-amount {
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
  }
  .pricing-amount .prefix {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 700;
    margin-right: 8px;
    letter-spacing: 0.12em;
    vertical-align: 4px;
  }
  .pricing-amount .yen {
    font-size: 14px;
    margin-left: 2px;
    font-weight: 600;
    color: var(--gray-700);
  }
  .pricing-amount .from {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
    margin-left: 4px;
    letter-spacing: 0.06em;
  }
  .pricing-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px dashed var(--gray-200);
    line-height: 1.7;
  }
  .pricing-note strong { color: var(--ink); font-weight: 700; }

  /* ========== PROFILE / 代表プロフィール ========== */
  .profile-section {
    padding: 110px 0 130px;
    background: linear-gradient(180deg, #fafbff 0%, #f3f6fd 100%);
    position: relative;
    overflow: hidden;
  }
  /* .profile-section::before {
    content: "Y";
    position: absolute;
    right: -40px;
    right: 0px; 
    top: 40px;
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 480px;
    line-height: 1;
    color: var(--blue);
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
  } */
  .profile-section .container { position: relative; z-index: 1; }
  .profile-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    grid-template-columns: 4fr 8fr;
    gap: 64px;
    align-items: flex-start;
  }
  .profile-portrait {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #1e293b 0%, #0a1530 100%);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
  }
  .profile-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .profile-portrait:hover img { transform: scale(1.04); }
  .profile-portrait::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 21, 48, 0.55) 100%);
    pointer-events: none;
  }
  .profile-portrait-tag {
    position: absolute;
    left: 20px; bottom: 20px;
    display: flex; align-items: center; gap: 10px;
    z-index: 2;
  }
  .profile-portrait-tag .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #5b8cff;
    box-shadow: 0 0 0 4px rgba(91, 140, 255, 0.3);
  }
  .profile-portrait-tag .role {
    font-family: "Manrope", sans-serif;
    font-size: 11px; font-weight: 700;
    color: #fff;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .profile-meta {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 20px;
  }
  .profile-meta-item {
    font-family: "Manrope", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--gray-700);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
  }
  .profile-name {
    font-size: clamp(36px, 2vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin: 0 0 8px;
  }
  .profile-name-en {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.16em;
    margin-bottom: 28px;
  }
  .profile-bio {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 2.05;
    margin: 0 0 40px;
    max-width: 560px;
  }

  .profile-block {
    margin-top: 36px;
  }
  .profile-block-title {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    margin: 0 0 22px;
  }
  .profile-block-title::before {
    content: ""; width: 24px; height: 1px; background: currentColor;
  }
  .profile-block-title .jp {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--gray-700);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 600;
  }

  /* Career timeline */
  .career-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
  }
  .career-timeline::before {
    content: "";
    position: absolute;
    left: 64px; top: 8px; bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--gray-200) 100%);
  }
  .career-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: flex-start;
    gap: 24px;
    padding: 14px 0;
    position: relative;
  }
  .career-year {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.01em;
    line-height: 1.4;
  }
  .career-text {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
  }
  .career-text::before {
    content: "";
    position: absolute;
    left: -4px; top: 9px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--blue);
    box-sizing: border-box;
  }
  .career-item.is-now .career-text::before {
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(42,95,239,0.18);
  }
  .career-item.is-now .career-text { color: var(--ink); font-weight: 600; }

  /* Works/achievements list */
  .achievement-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    transition: padding-left .25s;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink);
  }
  .achievement-item:hover { padding-left: 12px; }
  .achievement-num {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.16em;
    flex-shrink: 0;
    padding-top: 4px;
    width: 28px;
  }
  .achievement-text {
    flex: 1;
  }
  .achievement-text .hl {
    color: var(--blue);
    font-weight: 700;
  }

  /* ========== CONTACT BLOCK ========== */
  .contact-block {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .contact-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 10% 0%, rgba(91,140,255,0.18) 0%, transparent 50%),
      radial-gradient(circle at 90% 100%, rgba(42,95,239,0.14) 0%, transparent 50%);
    pointer-events: none;
  }
  .contact-block .container { position: relative; z-index: 2; }
  .contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: flex-start;
  }

  /* LEFT: Info */
  .contact-info {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-info .section-eyebrow { color: rgba(255,255,255,0.85); }
  .contact-info .section-eyebrow::before { background: rgba(255,255,255,0.85); }
  .contact-title {
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: 0.01em;
    color: #fff;
  }
  .contact-title em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
  }
  .contact-lead {
    font-size: 14.5px;
    color: rgba(255,255,255,0.88);
    line-height: 2;
    margin: 0 0 40px;
    max-width: 420px;
  }
  .contact-channels {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .contact-channel {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .contact-channel:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .contact-channel-icon {
    width: 42px; height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    display: grid; place-items: center;
    color: #fff;
    flex-shrink: 0;
  }
  .contact-channel-content {
    display: flex; flex-direction: column;
    line-height: 1.4;
  }
  .contact-channel-label {
    font-family: "Manrope", sans-serif;
    font-size: 10px; letter-spacing: 0.24em; font-weight: 700;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .contact-channel-value {
    font-size: 15px; font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
  }

  /* RIGHT: Form Card */
  .contact-form-card {
    background: #fff;
    color: var(--ink);
    border-radius: 22px;
    padding: 44px 44px 40px;
    box-shadow: 0 30px 80px rgba(10, 21, 48, 0.18);
  }
  .contact-form-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--ink);
    display: flex; align-items: center; gap: 10px;
  }
  .contact-form-title::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(42,95,239,0.18);
  }
  .contact-form-sub {
    font-size: 12.5px;
    color: var(--gray-500);
    margin: 0 0 28px 16px;
    line-height: 1.6;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  .form-field { display: flex; flex-direction: column; }
  .form-field.is-full { grid-column: 1 / -1; }
  .form-field p { margin: 0;}

  .form-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
  }
  .form-label .req {
    font-family: "Manrope", sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    background: var(--blue);
    color: #fff;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.08em;
  }
  .form-label .opt {
    font-family: "Manrope", sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
    padding: 1px 6px;
    border-radius: 4px;
    letter-spacing: 0.08em;
  }
  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    transition: border-color .2s, background .2s, box-shadow .2s;
    line-height: 1.5;
  }
  .form-input:hover,
  .form-select:hover,
  .form-textarea:hover {
    background: #fff;
    border-color: var(--gray-300);
  }
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(42, 95, 239, 0.12);
  }
  .form-input::placeholder,
  .form-textarea::placeholder { color: var(--gray-400); }
  .form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
  }
  .form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
  }
  .form-consent {
    display: flex; align-items: flex-start; gap: 10px;
    margin: 18px 0 24px;
    font-size: 12.5px;
    color: var(--gray-700);
    line-height: 1.6;
    cursor: pointer;
    user-select: none;
  }
  .form-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border: 1.5px solid var(--gray-300);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: all .2s;
  }
  .form-consent input[type="checkbox"]:hover { border-color: var(--blue); }
  .form-consent input[type="checkbox"]:checked {
    background: var(--blue);
    border-color: var(--blue);
  }
  .form-consent input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px; top: 1px;
    width: 5px; height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .form-consent a {
    color: var(--blue);
    border-bottom: 1px solid currentColor;
    font-weight: 600;
  }
  .form-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%;
    padding: 16px 22px;
    border-radius: 999px;
    background: var(--btn-gradient);
    color: #fff;
    font-size: 14px; font-weight: 700;
    border: 0;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 18px rgba(29,78,216,0.32);
  }
  .form-submit:hover {
    background: var(--btn-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(30,58,138,0.45);
  }
  .form-submit .arr {
    width: 26px; height: 26px; border-radius: 999px;
    background: rgba(255,255,255,0.18);
    display: grid; place-items: center;
    transition: transform .2s;
  }
  .form-submit:hover .arr { transform: translateX(3px); }

  /* CF7: hidden fieldset のデフォルト枠線を消す */
  .wpcf7 .hidden-fields-container { border: none; margin: 0; padding: 0; }


  /* ========== Tablet & Mobile (≤960px) ========== */
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-art { max-width: 380px; margin: 0 auto; }
    .hero-headline { font-size: clamp(52px, 10vw, 96px); }
    .stats-inner { grid-template-columns: 1fr; gap: 24px; }
    .stats-numbers { gap: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; }
    .works-grid { grid-template-columns: repeat(2, 1fr); }
    .operating-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-cat { padding: 32px 24px 28px; }
    .pricing-cat-head { gap: 14px; flex-wrap: wrap; }
    .pricing-cat-en { margin-left: 0; width: 100%; }
    .pricing-row { grid-template-columns: 28px 1fr; }
    .pricing-price { grid-column: 2; text-align: left; padding-top: 8px; }
    .pricing-amount { font-size: 22px; }
    .news-item {
      grid-template-columns: 1fr 32px;
      gap: 12px 16px;
      padding: 20px 4px;
    }
    .news-date { grid-column: 1; font-size: 12px; }
    .news-cat { grid-column: 1; grid-row: 1; justify-self: end; }
    .news-title { grid-column: 1 / -1; grid-row: 2; font-size: 14px; }
    .news-arrow { grid-column: 2; grid-row: 1; }
    .ebook-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .recruit-grid { grid-template-columns: 1fr; gap: 56px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-media { margin-top: 48px; }
    .about-map { aspect-ratio: 16/10; }
    .map-card { top: 16px; left: 16px; max-width: calc(100% - 32px); padding: 14px 16px; }
    .profile-grid { grid-template-columns: 1fr; gap: 48px; }
    .profile-portrait { max-width: 420px; aspect-ratio: 4/4.4; }
    .profile-section::before { font-size: 280px; right: -20px; }
    .cta-grid { grid-template-columns: 1fr; padding: 60px 0; }
    .cta-divider { width: 100%; height: 1px; min-height: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-card { padding: 32px 24px 28px; border-radius: 18px; }
    .form-row { grid-template-columns: 1fr; gap: 14px; }
    .scroll-indicator { display: none; }
    .section-title.is-display { font-size: clamp(56px, 10vw, 110px); }
    .section-deco { font-size: clamp(110px, 16vw, 200px); top: -30px; left: -16px; }
  }

  /* ========== Tablet portrait & Large mobile (≤768px) ========== */
  @media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 84px 0; }
    .works-grid { grid-template-columns: 1fr; }
    .operating-grid { grid-template-columns: 1fr; }
    .ebook-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .hero-headline { font-size: clamp(48px, 12vw, 84px); }
    .section-title.is-display { font-size: clamp(48px, 12vw, 88px); }
    .section-deco { font-size: clamp(88px, 18vw, 160px); top: -22px; }
    .statement-logo { font-size: clamp(64px, 16vw, 140px); }
    .statement-tagline { font-size: clamp(18px, 3vw, 26px); }
    .pricing-cat-jp { font-size: 22px; }
    .stats-numbers .num { font-size: 56px; }
  }

  /* ========== Mobile (≤560px) ========== */
  @media (max-width: 560px) {
    .container { padding: 0 18px; }
    .hero { padding: 28px 0 56px; }
    .hero-cta { flex-direction: column; align-items: flex-start; gap: 18px; }
    .hero-headline { font-size: clamp(42px, 13vw, 72px); margin-bottom: 28px; }
    .hero-lead { font-size: 14px; }
    .ebook-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .statement-section { padding: 90px 0; }
    .statement-eyebrow { margin-bottom: 24px; font-size: 10px; letter-spacing: 0.32em; }
    .statement-tagline { margin-bottom: 24px; font-size: clamp(16px, 4.4vw, 22px); }
    .statement-desc { font-size: 13.5px; }
    .statement-logo { font-size: clamp(56px, 18vw, 110px); margin-bottom: 28px; }
    .profile-section { padding: 60px 0 70px; }
    .operating-section { padding: 64px 0; }
    .pricing-section { padding: 64px 0; }
    .contact-block { padding: 72px 0; }
    .ebook-section { padding: 64px 0; }
    .blog-section { padding: 64px 0; }
    .section-head { margin-bottom: 40px; gap: 24px; }
    .section-title { font-size: 24px; }
    .section-title.is-display { font-size: clamp(38px, 14vw, 64px); margin-bottom: 20px; }
    .section-eyebrow { font-size: 10px; letter-spacing: 0.28em; }
    .section-deco { font-size: clamp(72px, 22vw, 130px); top: -16px; left: 0px; }
    .section-desc { font-size: 13px; line-height: 1.85; }
    .stats { padding: 32px 0; }
    .stats-numbers { gap: 24px; flex-wrap: wrap; justify-content: flex-start; }
    .stats-numbers .num { font-size: 44px; }
    .stats-numbers .lbl { font-size: 11px; }
    .pricing-cat { padding: 26px 18px 22px; }
    .pricing-cat-jp { font-size: 18px; }
    .pricing-cat-en { font-size: 11px; }
    .pricing-name { font-size: 14px; }
    .pricing-features { font-size: 12px; }
    .pricing-amount { font-size: 18px; }
    .pricing-unit { font-size: 11px; }
    .pricing-tag { font-size: 11px; padding: 3px 9px; }
    .news-title { font-size: 13px; line-height: 1.6; }
    .blog-card { padding: 18px; }
    .blog-card-title { font-size: 15px; }
    .about-title { font-size: 22px; }
    .about-text { font-size: 13px; }
    .map-card { padding: 12px 14px; font-size: 11px; }
    .map-card .place { font-size: 13px; }
    .profile-portrait { aspect-ratio: 4/4.6; }
    .profile-section::before { font-size: 220px; right: 0px; top: 30px; }
    .profile-name { font-size: 22px; }
    .profile-name-en { font-size: 12px; }
    .profile-bio { font-size: 13px; }
    .profile-meta-list li { font-size: 12px; padding: 10px 0; }
    .timeline-year { font-size: 14px; }
    .timeline-text { font-size: 13px; }
    .achievements li { font-size: 12.5px; padding: 9px 0 9px 26px; }
    .contact-block .container { padding: 0 18px; }
    .contact-form-card { padding: 26px 20px 24px; border-radius: 16px; }
    .contact-lead { font-size: 14px; }
    .contact-channels-item { padding: 14px 0; }
    .contact-channel-name { font-size: 12px; }
    .contact-channel-value { font-size: 14px; }
    .form-input, .form-textarea, .form-select { font-size: 14px; padding: 12px 14px; }
    .form-label { font-size: 12px; }
    .form-submit { font-size: 13px; padding: 14px 18px; }
    .form-textarea { min-height: 110px; }
    .about-photos { grid-template-columns: 1fr; }
  }

  /* Reveal animation */
  .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity .9s ease, transform .9s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }