*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg-dark: #1a1a2e;
      --bg-dark2: #23242e;
      --bg-light: #ededee;
      --bg-white: #ffffff;
      --accent: #6750F4;
      --accent-hover: #4634B1;
      --accent2: #8b7cf8;
      --accent-muted: rgba(103,80,244,0.07);
      --accent-border: rgba(103,80,244,0.2);
      --text-primary: #1a1a2e;
      --text-secondary: #4f535c;
      --text-white: #ffffff;
      --text-muted: #999;
      --border: #e5e5e5;
      --border-dark: #2a2a3e;
      --section-pad-v: 100px;
      --section-pad-h: 48px;
      --font-jp: 'Noto Sans JP', sans-serif;
      --font-en: 'Inter', sans-serif;
      --font-heading: 'Manrope', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-jp);
      background: var(--bg-light);
      background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
      background-size: 20px 20px;
      color: var(--text-primary);
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }

    ::selection {
      background: #4634B1;
      color: #fff;
    }

    h2 {
      font-size: clamp(26px, 2.8vw, 36px);
      font-weight: 800;
      line-height: 1.6;
      letter-spacing: -0.02em;
      color: var(--text-primary);
    }

    h3 {
      font-size: clamp(16px, 1.6vw, 22px);
      font-weight: 800;
      line-height: 1.6;
      letter-spacing: -0.01em;
      color: var(--text-primary);
    }

    /* ── NAV ─────────────────────────────────── */
    nav {
      position: fixed;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 28px;
      height: 60px;
      width: calc(100% - 48px);
      max-width: 1240px;
      background: rgba(237,237,238,0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 18px;
      box-shadow: 0 4px 20px rgba(26,26,46,0.08);
      transition:
        top 0.35s cubic-bezier(0.22,1,0.36,1),
        border-radius 0.35s cubic-bezier(0.22,1,0.36,1),
        width 0.35s cubic-bezier(0.22,1,0.36,1),
        max-width 0.35s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.35s ease;
    }

    nav.scrolled {
      top: 0;
      width: 100%;
      max-width: 100%;
      border-radius: 0;
      background: rgba(237,237,238,0.92);
      border-top: none;
      border-left: none;
      border-right: none;
      border-bottom: 1px solid rgba(26,26,46,0.08);
      box-shadow: 0 2px 12px rgba(26,26,46,0.06);
      padding: 0 48px;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    .nav-logo-img {
      height: 28px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-primary);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--accent); }

    .nav-cta {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn-ghost {
      padding: 10px 24px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-primary);
      background: transparent;
      border: 2px solid var(--text-primary);
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-ghost:hover { background: var(--text-primary); color: #fff; }

    .btn-primary {
      padding: 10px 24px;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      background: var(--accent);
      border: 2px solid var(--accent);
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(103,80,244,0.3); }

    /* ── HERO ────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 60px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 0% 18%, rgba(36,37,46,0.55) 0, rgba(36,37,46,0.22) 18%, rgba(36,37,46,0) 40%),
        radial-gradient(circle at 8% 84%, rgba(50,52,60,0.42) 0, rgba(50,52,60,0.15) 16%, rgba(50,52,60,0) 38%),
        linear-gradient(100deg, #c8c8cc 0%, #d8d8dc 24%, #e4e4e8 48%, #ebebee 68%, #ededee 100%);
      padding: 140px 48px 80px;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 78% 20%, rgba(255,255,255,0.3) 0, rgba(255,255,255,0) 22%);
      pointer-events: none;
    }

    .hero-layout {
      width: min(1200px, 100%);
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: visible;
    }

    .hero-mockup {
      width: 140%;
      max-width: none;
      height: auto;
      filter: drop-shadow(0 24px 60px rgba(26,26,46,0.18));
    }

    .hero-h1 {
      font-size: clamp(28px, 3.2vw, 44px);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.4;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }

    .hero-sub {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-secondary);
      max-width: 460px;
      line-height: 1.9;
      margin: 0 0 40px;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 40px;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      background: var(--accent);
      border: 2px solid var(--accent);
      border-radius: 50px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .btn-hero-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .btn-hero-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(103,80,244,0.3); }
    .btn-hero-primary:hover::after { transform: translateX(100%); }

    /* ── HERO BADGE + STATS ──────────────────── */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px 6px 10px;
      background: rgba(103,80,244,0.08);
      border: 1px solid rgba(103,80,244,0.22);
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.03em;
      margin-bottom: 24px;
    }

    .hero-badge-dot {
      width: 7px; height: 7px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(103,80,244,0.2);
      animation: pulse-dot 2s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes pulse-dot {
      0%, 100% { box-shadow: 0 0 0 3px rgba(103,80,244,0.2); }
      50%       { box-shadow: 0 0 0 5px rgba(103,80,244,0.08); }
    }

    .hero-stats {
      display: inline-flex;
      align-items: center;
      gap: 0;
      margin-top: 44px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.75);
      border-radius: 14px;
      padding: 18px 32px;
      box-shadow: 0 4px 20px rgba(26,26,46,0.07);
    }

    .hero-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 0 28px;
    }

    .hero-stat-num {
      font-family: var(--font-heading);
      font-size: 26px;
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .hero-stat-unit {
      font-size: 16px;
      font-weight: 700;
      color: var(--accent);
    }

    .hero-stat-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--text-secondary);
      letter-spacing: 0.02em;
    }

    .hero-stat-divider {
      width: 1px;
      height: 36px;
      background: rgba(26,26,46,0.1);
      flex-shrink: 0;
    }

    /* ── SECTION COMMONS ─────────────────────── */
    section { padding: var(--section-pad-v) var(--section-pad-h); }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-family: var(--font-en);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 12px;
    }

    .section-h2 {
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 800;
      line-height: 1.6;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .section-desc {
      font-size: 15px;
      color: var(--text-secondary);
      max-width: 600px;
      line-height: 2;
    }

    .section-header { margin-bottom: 60px; }

    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity 0.75s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }

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

    /* ── SECTION 1: CAN-DO ───────────────────── */
    #cando {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 150% 100% at 25% 50%, rgba(103, 80, 244, 0.25) 0%, transparent 52%),
        radial-gradient(ellipse 110% 80% at 80% 60%, rgba(70, 52, 177, 0.3) 0%, transparent 50%),
        linear-gradient(145deg, #1a1a2e 0%, #23242e 50%, #1a1a2e 100%);
      padding: var(--section-pad-v) var(--section-pad-h);
    }

    #cando::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 30%, rgba(103, 80, 244, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(70, 52, 177, 0.08) 0%, transparent 45%);
      pointer-events: none;
    }

    .cando-layout {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .cando-left {}

    .cando-heading {
      font-size: clamp(34px, 3.8vw, 52px);
      font-weight: 800;
      color: #fff;
      line-height: 1.4;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
    }

    .cando-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      line-height: 1.9;
      max-width: 440px;
    }

    /* rotating card */
    .cando-right {
      position: relative;
      padding: 24px 20px;
      margin: -24px -20px;
    }

    .usecase-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 36px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.32);
      position: relative;
      min-height: 280px;
    }

    .usecase-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .usecase-badge {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: var(--font-en);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--accent);
    }

    .usecase-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
    }

    .usecase-logo {
      width: 36px;
      height: 36px;
      background: var(--accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 7px;
      flex-shrink: 0;
    }

    .usecase-logo-img {
      height: 100%;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
    }

    /* usecase list */
    .usecase-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .usecase-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 11px 14px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      color: #b0b0cc;
      line-height: 1.55;
      transition: background 0.35s, color 0.35s, font-weight 0.2s;
      cursor: default;
    }

    .usecase-item.active {
      background: var(--accent-muted);
      color: var(--text-primary);
      font-weight: 800;
    }

    .item-bullet {
      flex-shrink: 0;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      border: 2px solid #d0d0e8;
      margin-top: 6px;
      transition: background 0.3s, border-color 0.3s;
    }

    .usecase-item.active .item-bullet {
      background: var(--accent);
      border-color: var(--accent);
    }

    .item-cursor {
      display: inline-block;
      width: 2px;
      height: 1em;
      background: var(--accent);
      margin-left: 2px;
      vertical-align: text-bottom;
      animation: blink 0.9s infinite;
      opacity: 0;
    }

    .usecase-item.active .item-cursor { opacity: 1; }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0; }
    }

    /* progress bar */
    .usecase-progress {
      position: absolute;
      bottom: 0; left: 0;
      height: 3px;
      background: var(--accent);
      border-radius: 0 0 0 20px;
      width: 0%;
      transition: width linear;
    }

    /* ── CASE STUDY CAROUSEL ────────────── */
    .cases-carousel { position: relative; }
    .cases-track {
      display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr;
      border-radius: 18px; overflow: hidden;
    }
    .case-card {
      grid-column: 1; grid-row: 1;
      opacity: 0; transition: opacity 0.45s ease; pointer-events: none;
    }
    .case-card.active { opacity: 1; pointer-events: auto; }

    .case-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 18px;
      box-shadow: 0 20px 60px rgba(26,26,46,0.18);
    }

    .cases-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
    .cases-dot { width: 8px; height: 8px; border-radius: 4px; border: none; background: rgba(26,26,46,0.15); cursor: pointer; transition: background 0.2s, width 0.2s; padding: 0; }
    .cases-dot.active { background: var(--accent); width: 22px; }

    /* ── SECTION 2: WHAT IS ──────────────────── */
    #whatis {
      background:
        radial-gradient(ellipse 140% 90% at 20% 45%, rgba(103, 80, 244, 0.22) 0%, transparent 52%),
        radial-gradient(ellipse 120% 80% at 75% 65%, rgba(70, 52, 177, 0.28) 0%, transparent 50%),
        linear-gradient(150deg, #23242e 0%, #1a1a2e 50%, #23242e 100%);
      color: var(--text-white);
    }

    #whatis .section-label { color: rgba(255,255,255,0.45); }
    #whatis .section-h2 { color: var(--text-white); }
    #whatis .section-desc { color: #9999bb; max-width: 680px; }

    .whatis-top {
      max-width: 760px;
      margin-bottom: 72px;
    }

    .whatis-headline {
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 800;
      color: #fff;
      line-height: 1.6;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .whatis-lead {
      font-size: 17px;
      color: rgba(255,255,255,0.55);
      line-height: 1.85;
    }

    .whatis-axes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    .axis-col {
      padding: 48px 40px;
      border-right: 1px solid rgba(255,255,255,0.12);
    }

    .axis-col:last-child { border-right: none; }

    .axis-num {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.3);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .axis-title {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: -0.3px;
    }

    .axis-body {
      font-size: 14px;
      color: rgba(255,255,255,0.62);
      line-height: 1.8;
    }

    .skills-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }

    .skill-tag {
      padding: 5px 12px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      font-family: var(--font-en);
    }

    /* ── SECTION 3: SERVICES ─────────────────── */
    #services {
      background: var(--bg-white);
      padding: var(--section-pad-v) 0;
    }

    .services-header {
      max-width: 1200px;
      margin: 0 auto 48px;
      padding: 0 48px;
    }

    .services-body-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .services-cases-col {
      display: flex;
      flex-direction: column;
    }

    .services-subheader {
      margin-bottom: 20px;
    }

    .services-sub-label {
      font-family: var(--font-en);
      font-size: 11px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: rgba(26,26,46,0.38); margin-bottom: 6px;
    }

    .services-sub-h3 {
      font-size: 20px; font-weight: 800;
      color: var(--text-primary); letter-spacing: -0.02em;
      margin-bottom: 4px;
    }

    /* Right column: service items as clean grid rows */
    .services-lineup-col .services-cols {
      display: flex;
      flex-direction: column;
      border-top: none;
    }

    .services-lineup-col .service-col {
      display: grid;
      grid-template-columns: 26px 1fr 72px;
      grid-template-rows: auto auto;
      column-gap: 12px;
      row-gap: 3px;
      padding: 15px 0;
      border-right: none !important;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      align-items: start;
      background: none !important;
    }

    .services-lineup-col .service-col:last-child { border-bottom: none; }

    .services-lineup-col .service-col-icon {
      grid-column: 1; grid-row: 1 / 3;
      width: 22px; height: 22px;
      margin: 3px 0 0; opacity: 0.5;
      flex-shrink: 0;
    }

    .services-lineup-col .service-col-icon path,
    .services-lineup-col .service-col-icon circle,
    .services-lineup-col .service-col-icon line,
    .services-lineup-col .service-col-icon rect {
      stroke: rgba(26,26,46,0.6);
    }

    .services-lineup-col .service-col-title {
      grid-column: 2; grid-row: 1;
      font-size: 13.5px; font-weight: 800;
      color: var(--text-primary); line-height: 1.35;
      margin-bottom: 0;
    }

    .services-lineup-col .service-col-body {
      grid-column: 2; grid-row: 2;
      font-size: 11.5px; color: rgba(26,26,46,0.52);
      line-height: 1.65; margin-bottom: 0;
    }

    .services-lineup-col .service-tools {
      grid-column: 3; grid-row: 1 / 3;
      align-self: center;
      display: grid;
      grid-template-columns: repeat(2, 26px);
      gap: 5px;
      border: none; padding: 0; margin: 0;
    }

    .services-lineup-col .tool-logo {
      width: 26px; height: 26px;
    }

    .services-label {
      font-family: var(--font-en);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(26,26,46,0.45);
      margin-bottom: 12px;
      margin-top: 0;
    }

    .services-h2 {
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -0.02em;
      line-height: 1.6;
    }

    .services-cols {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border-top: 1px solid rgba(0,0,0,0.1);
    }

    .service-col {
      padding: 44px 36px;
      border-right: 1px solid rgba(0,0,0,0.1);
      transition: background 0.25s;
    }

    .service-col:last-child { border-right: none; }
    .service-col:hover { background: rgba(0,0,0,0.03); }

    .service-col-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 24px;
      opacity: 0.7;
    }

    .service-col-icon path,
    .service-col-icon circle,
    .service-col-icon line,
    .service-col-icon rect {
      stroke: rgba(26,26,46,0.6);
    }

    .service-col-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .service-col-body {
      font-size: 13px;
      color: rgba(26,26,46,0.6);
      line-height: 1.8;
    }

    /* ── SERVICE TOOL LOGOS ──────────────────── */
    .service-tools {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid rgba(0,0,0,0.1);
    }

    .tool-logo {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid rgba(0,0,0,0.1);
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }

    .tool-logo svg {
      width: 18px;
      height: 18px;
    }

    /* ── SECTION 4: DESIGNERS ────────────────── */
    #designers {
      background: var(--bg-light);
      padding: var(--section-pad-v) var(--section-pad-h);
      border-top: 1px solid var(--border);
    }

    .designers-layout {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    /* platform UI screenshot */
    .platform-img-wrap {
      position: relative;
    }

    .platform-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 16px;
      box-shadow:
        0 32px 80px rgba(26,26,46,0.18),
        0 8px 24px rgba(26,26,46,0.10);
    }

    /* designers right text */
    .designers-text {}

    .designers-h2 {
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.6;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .designers-body {
      font-size: 15px;
      color: rgba(26,26,46,0.65);
      line-height: 1.9;
    }

    /* ── SECTION 5: HOW IT WORKS ─────────────── */
    #flow {
      background: var(--bg-light);
      border-top: 1px solid var(--border);
    }

    .flow-speed-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(103,80,244,0.07);
      border: 1px solid rgba(103,80,244,0.2);
      border-radius: 100px;
      font-size: 14px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 48px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      position: relative;
    }

    /* steps horizontal connector removed */

    .step {
      text-align: center;
      padding: 36px 28px;
      position: relative;
      z-index: 1;
      background: var(--bg-white);
      border-radius: 16px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    }

    .step-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      margin: 0 auto 20px;
      position: relative;
      z-index: 2;
    }

    .step-circle::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px solid rgba(103,80,244,0.25);
    }

    .step-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-primary);
    }

    .step-body {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.8;
    }

    /* ── SECTION 6: EVENTS ───────────────────── */
    #events {
      position: relative;
      overflow: hidden;
      background: var(--bg-white);
      padding: var(--section-pad-v) var(--section-pad-h);
      border-top: 1px solid var(--border);
    }

    .events-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .events-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: flex-end;
      gap: 40px;
      margin-bottom: 64px;
    }

    .events-title-big {
      font-family: var(--font-heading);
      font-size: clamp(64px, 8vw, 108px);
      font-weight: 900;
      color: var(--text-primary);
      line-height: 0.95;
      letter-spacing: -0.04em;
    }

    .events-header-right {}

    .events-header-sub {
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .events-header-desc {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.8;
    }

    .events-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .event-row {
      display: grid;
      grid-template-columns: 100px 320px 1fr;
      gap: 36px;
      align-items: center;
      padding: 36px 0;
      border-top: 1px solid #e0ddd8;
      transition: background 0.2s;
    }

    .event-row:last-child { border-bottom: 1px solid #e0ddd8; }

    .event-date {
      font-family: var(--font-en);
      font-size: 13px;
      font-weight: 600;
      color: #999;
      letter-spacing: 0.3px;
    }

    .event-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      background: var(--accent);
    }

    .event-thumb-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 800;
      color: rgba(255,255,255,0.9);
      letter-spacing: -0.02em;
      position: relative;
    }

    .event-thumb-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
    }

    .event-thumb.dojo { background: var(--bg-dark); }

    .event-thumb-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .event-content {}

    .event-name {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .event-name span { color: var(--accent); }

    .event-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 16px;
      max-width: 560px;
    }

    .event-tag {
      display: inline-block;
      padding: 4px 14px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary);
    }

    .event-tag.blue {
      background: var(--accent-muted);
      border-color: var(--accent-border);
      color: var(--accent);
    }

    /* ── SECTION: LOGO BAR ──────────────────── */
    #logos {
      background: var(--bg-white);
      padding: 100px 32px 120px;
      border-top: 1px solid var(--border);
    }

    .logobar-inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .logobar-heading {
      font-size: clamp(22px, 2.4vw, 30px);
      font-weight: 800;
      line-height: 1.6;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .logobar-count {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.6;
    }

    .logobar-num {
      font-family: var(--font-heading);
      font-size: 52px;
      font-weight: 800;
      line-height: 1;
      margin: 0 8px;
      vertical-align: middle;
      color: var(--text-primary);
    }

    .logobar-grid {
      margin-top: 56px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px 56px;
    }

    .logobar-item {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 160px;
      height: 56px;
      cursor: default;
      transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
    }

    .logobar-item:hover { transform: scale(1.08); }

    .logobar-item img {
      max-height: 56px;
      width: auto;
      object-fit: contain;
      filter: grayscale(0.15);
    }

    /* ── SECTION: VOICES (marquee) ───────────── */
    #voices {
      background: var(--accent);
      padding: 80px 0 100px;
      overflow: hidden;
    }

    .voices-heading-wrap {
      text-align: center;
      margin-bottom: 48px;
      padding: 0 32px;
    }

    .voices-h2 {
      font-size: clamp(24px, 2.8vw, 36px);
      font-weight: 800;
      color: #fff;
      line-height: 1.6;
      letter-spacing: -0.01em;
    }

    .voices-marquee-wrap {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, rgba(0,0,0,0) 100%);
      mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, rgba(0,0,0,0) 100%);
    }

    .voices-marquee-wrap:hover .voices-marquee-track {
      animation-play-state: paused;
    }

    .voices-marquee-track {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: marquee 30s linear infinite;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .voice-card {
      width: 340px;
      flex-shrink: 0;
      background: #f7f7f7;
      border: 1px solid #eaeaea;
      border-radius: 12px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .voice-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .voice-quote {
      font-size: 14px;
      font-weight: 700;
      color: #1c1f21;
      line-height: 1.5;
    }

    .voice-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .voice-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .voice-company {
      font-size: 12px;
      color: #23242e;
      margin-bottom: 2px;
    }

    .voice-name {
      font-size: 13px;
      font-weight: 700;
      color: #23242e;
    }

    .voice-title {
      font-size: 10px;
      font-weight: 400;
      color: #23242e;
      margin-left: 6px;
    }

    /* ── CTA ─────────────────────────────────── */
    #cta {
      background:
        radial-gradient(ellipse 130% 75% at 25% 40%, rgba(103, 80, 244, 0.18) 0%, transparent 52%),
        radial-gradient(ellipse 100% 80% at 78% 65%, rgba(70, 52, 177, 0.2) 0%, transparent 48%),
        linear-gradient(150deg, #1a1a2e 0%, #23242e 50%, #1a1a2e 100%);
      padding: var(--section-pad-v) var(--section-pad-h) 0;
      text-align: center;
    }

    .cta-inner {
      max-width: 720px;
      margin: 0 auto;
      padding-bottom: 60px;
    }

    .cta-label {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      margin-bottom: 14px;
      letter-spacing: 0.3px;
    }

    .cta-h2 {
      font-size: clamp(34px, 4.5vw, 56px);
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }

    .cta-desc {
      font-size: 15px;
      color: rgba(255,255,255,0.65);
      line-height: 1.9;
    }

    /* form card (two-column, jooi-hp ContactForm style) */
    .cta-form-card {
      max-width: 1100px;
      margin: 0 auto;
      background: #fff;
      color: var(--text-primary);
      border-radius: 32px;
      padding: 64px 72px;
      display: flex;
      gap: 72px;
      align-items: flex-start;
      text-align: left;
      position: relative;
      z-index: 2;
      margin-bottom: -120px;
    }

    .cta-form-left {
      width: 260px;
      flex-shrink: 0;
    }

    .cta-form-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.35;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }

    .cta-form-subdesc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .cta-merit-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cta-merit-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-primary);
    }

    .cta-merit-list li::before {
      content: '';
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: contain;
    }

    .cta-form-right {
      flex: 1;
      min-width: 0;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .form-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .form-label span {
      color: var(--accent);
      margin-left: 4px;
    }

    .form-input,
    .form-textarea {
      padding: 12px 16px;
      border: 1.5px solid transparent;
      border-radius: 8px;
      font-size: 14px;
      font-family: var(--font-jp);
      color: var(--text-primary);
      background: #f0f0f0;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #aaa;
    }

    .form-input:focus,
    .form-textarea:focus {
      background: #fff;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(103,80,244,0.1);
    }

    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-privacy {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 20px;
      cursor: pointer;
      line-height: 1.5;
    }

    .form-privacy input[type="checkbox"] {
      margin-top: 2px;
      flex-shrink: 0;
      accent-color: var(--accent);
    }

    .form-submit-dark {
      width: 100%;
      padding: 16px;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      background: #23242e;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s;
      font-family: var(--font-jp);
    }

    .form-submit-dark:hover {
      background: var(--accent);
      box-shadow: 0 8px 24px rgba(103,80,244,0.3);
      transform: translateY(-1px);
    }

    .form-note {
      font-size: 12px;
      color: #aaa;
      margin-top: 12px;
      text-align: center;
    }

    /* ── FOOTER ──────────────────────────────── */
    footer {
      background: var(--bg-dark);
      padding: 180px 60px 0;
      position: relative;
      z-index: 1;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }


    /* Mid: company + recruit */
    .footer-mid {
      display: flex;
      justify-content: space-between;
      gap: 48px;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .footer-company-name {
      font-family: var(--font-heading);
      font-size: 32px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .footer-company-sub,
    .footer-company-addr {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
    }

    .footer-company-email {
      display: inline-block;
      margin-top: 6px;
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }

    .footer-company-email:hover { color: #fff; }

    .footer-recruit { max-width: 480px; }

    .footer-recruit-label {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 12px;
    }

    .footer-recruit-body {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .footer-recruit-btn {
      display: inline-block;
      padding: 12px 32px;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px;
      background: rgba(255,255,255,0.05);
      font-size: 13px;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: all 0.2s;
    }

    .footer-recruit-btn:hover {
      border-color: rgba(255,255,255,0.6);
      color: #fff;
    }

    /* Big decorative text */
    .footer-bigtext {
      font-family: var(--font-heading);
      font-size: clamp(36px, 7vw, 96px);
      font-weight: 900;
      color: rgba(255,255,255,0.06);
      letter-spacing: 0.12em;
      line-height: 1;
      margin-top: 80px;
      overflow: hidden;
      white-space: nowrap;
      transform-origin: left center;
    }

    .footer-hr {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 40px;
    }

    /* Bottom bar */
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 28px 0;
      flex-wrap: wrap;
    }

    .footer-bottom-left {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      flex-wrap: wrap;
    }

    .footer-bottom-left a {
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom-left a:hover { color: rgba(255,255,255,0.7); }

    .footer-sep { color: rgba(255,255,255,0.15); }

    .footer-bottom-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .footer-social-link {
      display: flex;
      align-items: center;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .footer-social-link:hover { color: rgba(255,255,255,0.7); }

    /* ── HERO DESIGNER CARDS ─────────────────── */
    .hero-designers {
      width: min(1120px, 100%);
      margin: 0 auto;
      display: grid;
      gap: 0;
      position: relative;
      z-index: 1;
      justify-items: center;
    }

    .hero-proof-row {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      align-items: stretch;
      justify-items: center;
    }

    .hero-avatar-band {
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(255,255,255,0.8);
      box-shadow:
        0 24px 60px rgba(36,36,48,0.12),
        inset 0 1px 0 rgba(255,255,255,0.9);
    }

    .hero-avatar-band {
      border-radius: 36px;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      width: min(100%, 1040px);
      position: relative;
      overflow: hidden;
    }

    .hero-avatar-strip {
      position: absolute;
      height: 125px;
      width: auto;
      top: 50%;
      transform: translateX(-130px) translateY(-50%);
      display: block;
      flex-shrink: 0;
    }

    .hero-avatar-label,
    .hero-avatar-count {
      flex-shrink: 0;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.96);
      color: var(--text-primary);
      white-space: nowrap;
      border-radius: 100px;
    }

    .hero-avatar-label {
      height: 50px;
      padding: 0 18px 0 14px;
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .hero-avatar-count {
      height: 50px;
      min-width: 80px;
      justify-content: center;
      padding: 0 16px;
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 700;
      color: rgba(26,26,46,0.42);
    }

    .hero-avatar-scroll-inner {
      flex: 1;
      overflow: hidden;
      height: 72px;
      margin: 0 10px;
      position: relative;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 65%, transparent 78%);
      mask-image: linear-gradient(to right, transparent 0%, black 5%, black 65%, transparent 78%);
    }


    .hero-avatar-strip-fallback {
      width: 100%;
      min-height: 80px;
      border-radius: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 20px;
      font-size: 14px;
      font-weight: 600;
      color: rgba(26,26,46,0.52);
      background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(250,250,252,0.9));
    }

    /* ── INTERACTIVE ENHANCEMENTS ───────────── */
    .usecase-card {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .usecase-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 32px 72px rgba(0,0,0,0.38);
    }

    .axis-col {
      transition: background 0.25s ease;
    }
    .axis-col:hover {
      background: rgba(255,255,255,0.04);
    }

    .event-row {
      transition: background 0.2s ease;
    }
    .event-row:hover {
      background: rgba(0,0,0,0.02);
    }

    .step {
      transition: transform 0.2s ease;
    }
    .step:hover {
      transform: translateY(-3px);
    }

    .step-circle {
      transition: box-shadow 0.2s ease;
    }
    .step:hover .step-circle {
      box-shadow: 0 8px 24px rgba(103,80,244,0.35);
    }

    /* ── RESPONSIVE: 980px ───────────────────── */
    @media (max-width: 980px) {
      :root {
        --section-pad-v: 72px;
        --section-pad-h: 32px;
      }

      nav {
        padding: 0 24px;
      }

      .nav-links,
      .nav-cta .btn-ghost {
        display: none;
      }

      #hero {
        padding: 120px 24px 64px;
        gap: 48px;
      }

      .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-text { align-items: center; text-align: center; }
      .hero-sub { margin: 0 auto 40px; max-width: 560px; }
      .hero-stats { align-self: center; }
      .hero-visual { justify-content: center; }
      .hero-mockup { width: 100%; max-width: 520px; }

      .hero-proof-row {
        grid-template-columns: 1fr;
      }

      .hero-avatar-band {
        padding: 16px 18px;
      }

      .hero-avatar-label { font-size: 16px; }
      .hero-avatar-count { min-width: 76px; font-size: 16px; }

      /* cando */
      .cando-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .cando-desc { max-width: 100%; }

      /* whatis */
      .whatis-axes {
        grid-template-columns: 1fr;
      }
      .axis-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding: 32px 0;
      }
      .axis-col:last-child { border-bottom: none; }

      /* voices */
      .logobar-grid { gap: 24px 32px; }
      .logobar-item { width: 120px; height: 44px; }
      .voice-card { width: 280px; }

      /* services */
      .services-body-grid {
        grid-template-columns: 1fr;
        padding: 0 32px;
        gap: 32px;
      }
      .services-header {
        padding: 0 32px;
      }

      /* designers */
      .designers-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .platform-img-wrap {
        max-width: 520px;
        margin: 0 auto;
      }

      /* flow */
      .steps {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
        margin: 0 auto;
      }

      /* events */
      .events-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
      }
      .event-row {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        gap: 16px 20px;
      }
      .event-date { grid-column: 1; grid-row: 1; }
      .event-thumb { grid-column: 2; grid-row: 1; max-width: 240px; }
      .event-content { grid-column: 1 / -1; grid-row: 2; }

      /* footer */
      .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .footer-links {
        grid-template-columns: repeat(2, 1fr);
      }

      /* CTA form card */
      .cta-form-card {
        flex-direction: column;
        gap: 40px;
        padding: 48px 40px;
        border-radius: 24px;
        margin-bottom: -100px;
      }
      .cta-form-left { width: 100%; }

      /* form */
      .form-row {
        grid-template-columns: 1fr;
      }

      /* footer */
      footer { padding: 160px 40px 0; }
      .footer-mid { flex-direction: column; gap: 40px; }
    }

    /* ── RESPONSIVE: 640px ───────────────────── */
    @media (max-width: 640px) {
      :root {
        --section-pad-v: 56px;
        --section-pad-h: 20px;
      }

      nav {
        padding: 0 16px;
      }

      .btn-primary {
        padding: 9px 16px;
        font-size: 13px;
      }

      #hero {
        min-height: auto;
        padding: 112px 20px 48px;
        gap: 40px;
      }

      .hero-layout { gap: 36px; }
      .hero-visual { display: none; }

      .hero-h1 {
        font-size: 30px;
        line-height: 1.25;
      }

      .hero-sub {
        font-size: 15px;
        margin-bottom: 28px;
      }

      .btn-hero-primary {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 14px 24px;
      }

      .hero-stats {
        padding: 14px 8px;
        align-self: stretch;
      }
      .hero-stat {
        padding: 0 14px;
      }
      .hero-stat-num {
        font-size: 20px;
      }
      .hero-designers { margin-top: 48px; }
      .hero-avatar-band { padding: 14px; border-radius: 28px; }
      .hero-avatar-label { height: 40px; padding: 0 12px 0 10px; font-size: 12px; }
      .hero-avatar-count { height: 40px; min-width: 64px; padding: 0 4px 0 12px; font-size: 12px; }

      /* services */
      #services { padding: var(--section-pad-v) 0; }
      .services-header { padding: 0 20px; }
      .services-body-grid { padding: 0 20px; }
      .services-cols { grid-template-columns: 1fr; }
      .services-lineup-col .service-col { border-bottom: 1px solid rgba(0,0,0,0.07); }

      /* cando */
      .cando-heading { font-size: 30px; }

      /* whatis */
      .whatis-top { margin-bottom: 48px; }
      .whatis-headline { font-size: 26px; }

      /* events */
      .events-title-big { font-size: 56px; letter-spacing: -2px; }
      .event-row {
        grid-template-columns: 1fr;
        padding: 28px 0;
      }
      .event-date { grid-column: 1; grid-row: 1; }
      .event-thumb { grid-column: 1; grid-row: 2; max-width: 100%; }
      .event-content { grid-column: 1; grid-row: 3; }

      /* CTA */
      .cta-h2 { font-size: 32px; letter-spacing: -1px; }
      .cta-form-card {
        padding: 36px 24px;
        gap: 32px;
        border-radius: 20px;
        margin-bottom: -80px;
      }
      .cta-form-title { font-size: 22px; }

      /* footer */
      footer { padding: 120px 24px 0; }
      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
      .footer-bottom-left { justify-content: center; }
      .footer-bigtext { letter-spacing: 0.06em; }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* ── UTILITY: ACCENT TEXT ────────────────── */
    .text-accent { color: var(--accent); }

    /* ── GRADIENT TEXT (jooi-hp style) ───────── */
    .gradient-text {
      background: linear-gradient(90deg, #6750F4 0%, #8b7cf8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }