  :root {
    --coral:       #FF545E;
    --coral-light: #FFBDBD;
    --coral-pale:  #FFF2F2;
    --mint:        #6EC2B1;
    --mint-light:  #95E3BB;
    --mint-pale:   #EDF8F4;
    --gray:        #55667D;
    --gray-light:  #DBE2E8;
    --gray-pale:   #F4F6F8;
    --ink:         #151E2B;
    --ink-mid:     #3D4E63;
    --white:       #FFFFFF;
    --off-white:   #FDFCFB;

    --grad-coral: linear-gradient(135deg, #f58f92 0%, #FF545E 100%);
    --grad-mint:  linear-gradient(135deg, #95E3BB 0%, #589EA5 100%);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', 'Noto Sans JP', sans-serif;
    background: var(--off-white);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(253,252,251,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(219,226,232,0.5);
    height: 62px;
    display: flex; align-items: center;
    padding: 0 72px;
    gap: 40px;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
  }

  .logo-wordmark { display: flex; flex-direction: column; line-height: 1; }

  .logo-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 9px; font-weight: 300;
    color: var(--gray); letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex; align-items: center; gap: 28px; flex: 1;
  }

  .nav-links a {
    font-size: 13.5px; font-weight: 600;
    color: var(--gray); text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover { color: var(--coral); }

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

  .lang-toggle {
    display: flex; background: var(--gray-pale);
    border-radius: 20px; padding: 3px;
  }

  .lang-btn {
    background: none; border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 11px; font-weight: 800;
    color: var(--gray); padding: 4px 13px;
    border-radius: 15px; cursor: pointer;
    letter-spacing: 0.07em; transition: all 0.18s;
  }

  .lang-btn.active {
    background: var(--white); color: var(--coral);
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  }

  .btn-contact {
    background: var(--ink); color: var(--white);
    border: none; padding: 9px 22px;
    border-radius: 22px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.2s;
  }

  .btn-contact:hover {
    background: var(--coral);
    box-shadow: 0 6px 20px rgba(255,84,94,0.35);
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding: 140px 72px 100px;
    display: flex; flex-direction: column;
    justify-content: center;
    position: relative; overflow: hidden;
    background: var(--off-white);
  }

  .hero-circle {
    position: absolute;
    width: 700px; height: 700px;
    right: -180px; top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, #C9D1DA 0%, #DBE2E8 60%, transparent 100%);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
  }

  .hero-eyebrow span { color: var(--gray); font-weight: 600; letter-spacing: 0.1em; }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 6.5vw, 96px);
    font-weight: 800; line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 900px;
    margin-bottom: 32px;
    position: relative; z-index: 1;
  }

  .hero h1 em { font-style: italic; color: var(--coral); }

  .hero h1 .u {
    position: relative; display: inline-block; color: var(--ink);
  }

  .hero h1 .u::after {
    content: '';
    position: absolute;
    left: 0; bottom: 4px; right: 0;
    height: 4px;
    background: var(--coral-light);
    border-radius: 2px; z-index: -1;
  }

  .hero-statement {
    font-size: 20px; font-weight: 400;
    color: var(--ink-mid); line-height: 1.7;
    max-width: 620px; margin-bottom: 48px;
    position: relative; z-index: 1;
  }

  .hero-links {
    display: flex; align-items: center; gap: 14px;
    position: relative; z-index: 1;
  }

  .hero-body {
    display: flex; align-items: center; gap: 48px;
    position: relative; z-index: 1; flex: 1;
  }

  .hero-text { flex: 1; min-width: 0; }

  .hero-mascot {
    position: absolute; right: -320px; bottom: 40px;
    width: 680px; max-width: 56vw;
    pointer-events: none;
  }
  .hero-mascot img {
    width: 100%; height: auto; display: block;
    transform: rotate(-14deg);
    transform-origin: bottom center;
    filter: drop-shadow(-10px 0 40px rgba(255,84,94,0.3));
  }

  .btn-primary {
    background: var(--grad-coral); color: var(--white);
    border: none; padding: 15px 32px; border-radius: 30px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 24px rgba(255,84,94,0.35);
    transition: all 0.2s;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,84,94,0.45);
  }

  .btn-text {
    background: none; border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--ink-mid); cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 15px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
  }

  .btn-text:hover { color: var(--coral); border-bottom-color: var(--coral-light); }

  .hero-stats {
    display: flex; align-items: center; gap: 48px;
    margin-top: 72px; padding-top: 40px;
    border-top: 1px solid var(--gray-light);
    position: relative; z-index: 1;
  }

  .hstat { display: flex; flex-direction: column; gap: 4px; }

  .hstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 800;
    color: var(--ink); line-height: 1;
  }

  .hstat-num sup { font-size: 16px; color: var(--coral); vertical-align: super; }

  .hstat-label {
    font-size: 12px; font-weight: 600;
    color: var(--gray); line-height: 1.4; max-width: 120px;
  }

  .hstat-div { width: 1px; height: 44px; background: var(--gray-light); align-self: center; }

  /* ── MARQUEE ── */
  .marquee-wrap { overflow: hidden; background: var(--ink); padding: 16px 0; }

  .marquee-track {
    display: flex; white-space: nowrap;
    animation: marquee 24s linear infinite;
    width: max-content;
  }

  .marquee-item {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    padding: 0 40px;
    display: inline-flex; align-items: center; gap: 40px;
  }

  .marquee-item::after { content: '✦'; color: var(--coral-light); opacity: 0.5; font-size: 10px; }

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

  /* ── SHARED ── */
  .section-label {
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gray-light); margin-bottom: 20px;
    display: flex; align-items: center; gap: 14px;
  }

  .section-label::before {
    content: ''; display: inline-block;
    width: 32px; height: 2px;
    background: var(--gray-light); border-radius: 2px;
  }

  .section-label.coral { color: var(--coral); }
  .section-label.coral::before { background: var(--coral); }
  .section-label.mint { color: var(--mint); }
  .section-label.mint::before { background: var(--mint); }

  .section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -0.025em; color: var(--ink); margin-bottom: 20px;
  }

  .section-h2 em { font-style: italic; color: var(--coral); }
  .section-h2 b  { font-style: normal; font-weight: 800; color: var(--mint); }

  .section-body {
    font-size: 17px; font-weight: 400;
    color: var(--ink-mid); line-height: 1.75; max-width: 640px;
  }

  /* ── PROBLEM ── */
  .problem-section {
    background: var(--ink);
    padding: 120px 72px;
    position: relative; overflow: hidden;
  }

  .problem-section::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
  }

  .problem-section .section-label { color: rgba(255,255,255,0.25); }
  .problem-section .section-label::before { background: rgba(255,255,255,0.2); }
  .problem-section .section-h2 { color: var(--white); }
  .problem-section .section-h2 em { color: var(--coral-light); }

  .problem-intro {
    font-size: 20px; font-weight: 400;
    color: rgba(255,255,255,0.5); line-height: 1.7;
    max-width: 680px; margin-bottom: 80px;
    position: relative; z-index: 1;
  }

  .problem-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(255,255,255,0.06);
    border-radius: 20px; overflow: hidden;
    position: relative; z-index: 1;
  }

  .prob-cell {
    background: rgba(255,255,255,0.02);
    padding: 44px 36px; transition: background 0.2s;
  }

  .prob-cell:hover { background: rgba(255,84,94,0.06); }

  .prob-num {
    font-family: 'Playfair Display', serif;
    font-size: 64px; font-weight: 800;
    color: var(--white); line-height: 1; margin-bottom: 12px;
  }

  .prob-num sup { font-size: 26px; color: var(--coral-light); vertical-align: super; }

  .prob-label {
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.38); line-height: 1.55;
  }

  .problem-quote {
    margin-top: 72px; padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative; z-index: 1;
  }

  .problem-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.8vw, 36px);
    font-style: italic; font-weight: 700;
    color: var(--white); line-height: 1.45;
    max-width: 820px; padding-left: 36px;
    border-left: 3px solid var(--coral);
  }

  /* ── BELIEF ── */
  .belief-section { background: var(--off-white); padding: 120px 72px; }

  .belief-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: start; margin-top: 60px;
  }

  .belief-left p {
    font-size: 16px; color: var(--ink-mid);
    line-height: 1.82; margin-bottom: 22px;
  }

  .belief-left p strong { color: var(--ink); font-weight: 700; }

  .belief-left p em {
    font-style: normal;
    background: linear-gradient(transparent 60%, var(--coral-light) 60%);
  }

  .belief-right { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }

  .belief-card {
    padding: 28px 28px 28px 24px;
    border-left: 3px solid var(--gray-light);
    transition: border-color 0.2s;
  }

  .belief-card:hover { border-left-color: var(--coral); }

  .belief-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 800;
    color: var(--ink); margin-bottom: 8px;
  }

  .belief-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.68; }

  /* ── PILLARS ── */
  .pillars-section { background: var(--off-white); padding: 120px 72px; }

  .pillars-header { max-width: 820px; margin-bottom: 80px; }

  .pillar-hero {
    background: var(--ink); border-radius: 28px;
    padding: 64px;
    display: grid; grid-template-columns: 1fr 280px;
    gap: 60px; align-items: center;
    margin-bottom: 28px;
    position: relative; overflow: hidden;
  }

  .pillar-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
  }

  .pillar-hero-label {
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--mint-light); margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }

  .pillar-hero-label::before {
    content: ''; width: 24px; height: 2px;
    background: var(--mint); border-radius: 2px;
  }

  .pillar-hero-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px); font-weight: 800;
    color: var(--white); line-height: 1.1;
    margin-bottom: 18px; letter-spacing: -0.02em;
  }

  .pillar-hero-text p {
    font-size: 15px; color: rgba(255,255,255,0.45);
    line-height: 1.78; position: relative; z-index: 1;
  }

  .pillar-hero-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
  }

  .ai-node-map { position: relative; width: 260px; height: 260px; }

  .ai-lines { position: absolute; inset: 0; width: 100%; height: 100%; }

  .ai-node {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 10px 14px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    font-size: 20px; transition: all 0.2s;
  }

  .ai-node span {
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  .ai-node:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,189,189,0.3);
    transform: scale(1.05);
  }

  .node-center {
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(255,84,94,0.15); border-color: rgba(255,84,94,0.3);
  }

  .node-center span { color: var(--coral-light); }
  .node-1 { top: 4px; left: 50%; transform: translateX(-50%); }
  .node-2 { top: 50%; right: 4px; transform: translateY(-50%); }
  .node-3 { bottom: 4px; left: 50%; transform: translateX(-50%); }
  .node-4 { top: 50%; left: 4px; transform: translateY(-50%); }

  .pillars-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }

  .pg-pillar {
    border-radius: 24px; padding: 44px;
    border: 1.5px solid transparent;
    transition: all 0.22s; position: relative; overflow: hidden;
  }

  .pg-pillar::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; opacity: 0; transition: opacity 0.22s;
  }

  .pg-pillar:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.08); }
  .pg-pillar:hover::after { opacity: 1; }

  .coral-pillar { background: var(--white); border-color: var(--gray-light); }
  .coral-pillar::after { background: var(--grad-coral); }

  .mint-pillar { background: var(--mint-pale); border-color: rgba(110,194,177,0.25); }
  .mint-pillar::after { background: var(--grad-mint); }

  .dark-pillar { background: var(--ink); border-color: transparent; }
  .dark-pillar h3 { color: var(--white); }
  .dark-pillar p { color: rgba(255,255,255,0.72); }
  .dark-pillar::after { background: var(--grad-mint); }
  .dark-pillar .pg-num { color: rgba(255,255,255,0.12); }

  .full-width-pillar {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #FFF0F0 0%, #FFF5F5 50%, #F4F6F8 100%);
    border-color: var(--coral-light);
  }

  .full-width-pillar::after { background: var(--grad-coral); }

  .pw-inner {
    display: grid; grid-template-columns: auto 1fr;
    grid-template-rows: auto auto; column-gap: 36px;
  }

  .full-width-pillar .pg-top { grid-column: 1; grid-row: 1; }
  .pw-text { grid-column: 2; grid-row: 1; }
  .pw-stat-row { grid-column: 1 / -1; grid-row: 2; }

  .pg-top {
    display: flex; align-items: flex-start;
    justify-content: space-between; margin-bottom: 20px;
  }

  .full-width-pillar .pg-top {
    flex-direction: column; gap: 6px; justify-content: flex-start;
  }

  .pg-ico { font-size: 36px; display: block; }

  .pg-num {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 800;
    color: rgba(0,0,0,0.05); line-height: 1; align-self: flex-start;
  }

  .pg-pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 800;
    color: var(--ink); margin-bottom: 12px; line-height: 1.2;
  }

  .pg-pillar p { font-size: 14.5px; color: var(--ink-mid); line-height: 1.72; }

  .pw-text h3 { margin-top: 4px; }

  .pw-stat-row {
    display: flex; align-items: center; gap: 0;
    margin-top: 40px; padding-top: 36px;
    border-top: 1px solid rgba(255,84,94,0.15);
  }

  .pw-stat { flex: 1; padding: 0 36px 0 0; }

  .pw-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px; font-weight: 800;
    color: var(--coral); line-height: 1; margin-bottom: 8px;
  }

  .pw-stat-num sup { font-size: 20px; vertical-align: super; }

  .pw-stat-label { font-size: 13px; font-weight: 500; color: var(--ink-mid); line-height: 1.5; }

  .pw-stat-div {
    width: 1px; height: 60px; background: rgba(255,84,94,0.2);
    flex-shrink: 0; margin: 0 36px 0 0; align-self: center;
  }

  /* ── PRODUCT ── */
  .product-mention {
    background: linear-gradient(160deg, #FFF5F5 0%, #FCEAEC 40%, #F4F6F8 100%);
    padding: 100px 72px;
  }

  .product-inner {
    display: grid; grid-template-columns: 1fr 480px;
    gap: 80px; align-items: center;
  }

  .product-desc { font-size: 16px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 32px; }

  .product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }

  .product-tag {
    background: var(--white); border: 1.5px solid var(--gray-light);
    border-radius: 20px; padding: 6px 16px;
    font-size: 12px; font-weight: 700; color: var(--gray); letter-spacing: 0.04em;
  }

  .btn-product {
    background: var(--white); color: var(--coral);
    border: 2px solid var(--coral-light);
    padding: 14px 28px; border-radius: 28px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(255,84,94,0.12);
  }

  .btn-product:hover {
    background: var(--coral); color: var(--white);
    border-color: var(--coral); transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,84,94,0.3);
  }

  .product-card {
    background: var(--ink); border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(21,30,43,0.22), 0 8px 24px rgba(21,30,43,0.1);
  }

  .pc-chrome {
    background: #1a2231; padding: 10px 16px;
    display: flex; align-items: center; gap: 7px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .pc-dot { width: 10px; height: 10px; border-radius: 50%; }

  .pc-url {
    flex: 1; margin: 0 10px;
    background: rgba(255,255,255,0.05); border-radius: 4px;
    padding: 3px 10px; font-size: 10px; font-weight: 500;
    color: rgba(255,255,255,0.25);
  }

  .pc-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; }

  .pc-topbar { display: flex; justify-content: space-between; align-items: center; }

  .pc-game-name { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; }

  .pc-stats { display: flex; gap: 12px; }

  .pc-stat { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 4px; }
  .pc-stat .v { color: var(--coral-light); }

  .pc-scene {
    background: linear-gradient(180deg, #192840 0%, #0f1a28 100%);
    border-radius: 12px; padding: 24px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }

  .pc-char {
    width: 64px; height: 64px; background: var(--grad-coral);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: 0 0 32px rgba(255,84,94,0.35);
    animation: pcFloat 3s ease-in-out infinite alternate;
  }

  @keyframes pcFloat {
    from { transform: translateY(0px); }
    to   { transform: translateY(-6px); }
  }

  .pc-bubble {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; padding: 10px 14px;
    font-size: 11px; color: rgba(255,255,255,0.7);
    text-align: center; line-height: 1.45; font-weight: 500;
  }

  .pc-scores { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  .pc-score-tile {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px; padding: 10px 12px;
  }

  .pc-score-label { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }

  .pc-score-val { font-size: 22px; font-weight: 900; font-family: 'Nunito', sans-serif; line-height: 1; }

  .pc-bar { height: 3px; border-radius: 2px; margin-top: 6px; overflow: hidden; background: rgba(255,255,255,0.08); }
  .pc-bar-fill { height: 100%; border-radius: 2px; }

  .pc-xp {
    background: var(--grad-coral); color: var(--white);
    font-size: 13px; font-weight: 900; font-family: 'Nunito', sans-serif;
    padding: 7px 16px; border-radius: 8px; text-align: center;
    box-shadow: 0 4px 16px rgba(255,84,94,0.45);
    animation: xpPop 1.2s ease-in-out infinite alternate;
  }

  @keyframes xpPop {
    from { transform: scale(1) rotate(-1deg); }
    to   { transform: scale(1.04) rotate(1deg); }
  }

  /* ── TRACTION ── */
  .traction-section { background: var(--white); padding: 100px 72px; }

  .traction-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1.5px solid var(--gray-light);
    border-radius: 20px; overflow: hidden; margin-top: 60px;
  }

  .tr-cell {
    padding: 48px 36px;
    border-right: 1.5px solid var(--gray-light);
    transition: background 0.2s;
  }

  .tr-cell:last-child { border-right: none; }
  .tr-cell:hover { background: var(--coral-pale); }

  .tr-num {
    font-family: 'Playfair Display', serif;
    font-size: 54px; font-weight: 800;
    color: var(--ink); line-height: 1; margin-bottom: 10px;
  }

  .tr-num sup { font-size: 22px; color: var(--coral); vertical-align: super; }
  .tr-label { font-size: 14px; font-weight: 500; color: var(--ink-mid); line-height: 1.5; }

  /* ── TEAM ── */
  .team-section { background: var(--white); padding: 100px 72px; }

  .team-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; max-width: 960px; margin-top: 60px;
  }

  .team-card {
    background: var(--off-white); border: 1.5px solid var(--gray-light);
    border-radius: 24px; padding: 44px;
    transition: all 0.22s; position: relative; overflow: hidden;
  }

  .team-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--grad-coral);
    opacity: 0; transition: opacity 0.22s;
  }

  .team-card:hover {
    border-color: var(--coral-light); transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(255,84,94,0.09);
  }

  .team-card:hover::after { opacity: 1; }

  .team-ava {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--grad-coral);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255,84,94,0.25);
  }

  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 800; color: var(--ink); margin-bottom: 4px;
  }

  .team-role {
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 18px;
  }

  .team-bio { font-size: 14.5px; color: var(--ink-mid); line-height: 1.72; margin-bottom: 22px; }

  .team-hls { display: flex; flex-direction: column; gap: 10px; }

  .team-hl {
    font-size: 13px; color: var(--ink-mid); font-weight: 600;
    display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
  }

  .team-hl::before { content: '→'; color: var(--mint); flex-shrink: 0; }

  /* ── CTA ── */
  .cta-section {
    background: var(--ink); padding: 120px 72px;
    position: relative; overflow: hidden;
  }

  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
  }

  .cta-section .section-label { color: rgba(255,255,255,0.2); }
  .cta-section .section-label::before { background: rgba(255,255,255,0.15); }
  .cta-section .section-h2 { color: var(--white); max-width: 780px; }

  .cta-paths {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 64px; position: relative; z-index: 1;
  }

  .cta-path {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px; padding: 36px 32px;
    display: flex; flex-direction: column; gap: 14px;
    transition: all 0.22s; text-decoration: none;
  }

  .cta-path:hover {
    background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18);
    transform: translateY(-4px);
  }

  .cta-path-ico { font-size: 32px; display: block; }

  .cta-path h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.2;
  }

  .cta-path p { font-size: 13.5px; color: rgba(255,255,255,0.38); line-height: 1.65; flex: 1; }

  .cta-path-link {
    font-size: 13px; font-weight: 700; color: var(--coral-light);
    display: flex; align-items: center; gap: 6px; margin-top: 8px;
    transition: gap 0.2s;
  }

  .cta-path:hover .cta-path-link { gap: 10px; }

  /* ── CONTACT ── */
  .contact-section { background: var(--white); padding: 100px 72px; }

  .contact-layout {
    display: grid; grid-template-columns: 1fr 400px;
    gap: 80px; margin-top: 60px; align-items: start;
  }

  .contact-info { display: flex; flex-direction: column; gap: 20px; }

  .contact-card {
    background: var(--gray-pale); border-radius: 16px;
    padding: 24px 28px; border: 1.5px solid var(--gray-light);
  }

  .contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px;
  }

  .contact-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
  .contact-card a { color: var(--coral); text-decoration: none; font-weight: 600; }

  /* ── FOOTER ── */
  .footer {
    background: #0d1520; padding: 36px 72px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-brand { display: flex; align-items: center; gap: 12px; }

  .footer-kk {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px; font-weight: 300;
    color: rgba(255,255,255,0.15); letter-spacing: 0.1em; margin-left: 2px;
  }

  .footer-links { display: flex; gap: 24px; align-items: center; }

  .footer-links a {
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.18s;
  }

  .footer-links a:hover { color: rgba(255,255,255,0.6); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .nav { padding: 0 24px; gap: 16px; }
    .nav-links { display: none; }
    .hero { padding: 120px 32px 80px; }
    .hero-mascot { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 28px; }
    .hstat-div { display: none; }
    .problem-section { padding: 60px 32px; }
    .belief-section { padding: 60px 32px; }
    .pillars-section { padding: 60px 32px; }
    .product-mention { padding: 60px 32px; }
    .traction-section { padding: 60px 32px; }
    .team-section { padding: 60px 32px; }
    .cta-section { padding: 60px 32px; }
    .contact-section { padding: 60px 32px; }
    .problem-grid { grid-template-columns: 1fr 1fr; }
    .belief-layout { grid-template-columns: 1fr; gap: 48px; }
    .pillar-hero { grid-template-columns: 1fr; padding: 40px; }
    .pillar-hero-visual { display: none; }
    .pillars-grid { grid-template-columns: 1fr; }
    .full-width-pillar { grid-column: auto; }
    .pw-inner { grid-template-columns: 1fr; }
    .pw-stat-row { flex-wrap: wrap; gap: 28px; }
    .product-inner { grid-template-columns: 1fr; }
    .product-card { display: none; }
    .traction-bar { grid-template-columns: 1fr 1fr; }
    .tr-cell { border-bottom: 1.5px solid var(--gray-light); }
    .team-layout { grid-template-columns: 1fr; max-width: 100%; }
    .cta-paths { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer { padding: 32px; flex-direction: column; gap: 20px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

  /* ── COOKIE BANNER ── */
  #cookie-banner {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 9999; width: calc(100% - 48px); max-width: 720px;
    background: var(--ink); border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.28);
    padding: 20px 24px; display: none;
    align-items: center; gap: 20px; flex-wrap: wrap;
  }
  .cookie-text { flex: 1; min-width: 200px; }
  .cookie-text strong { font-size: 14px; font-weight: 800; color: var(--white); display: block; margin-bottom: 4px; }
  .cookie-text p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
  .cookie-text a { color: var(--coral-light); }
  .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-accept {
    background: var(--grad-coral); color: var(--white); border: none;
    padding: 9px 22px; border-radius: 22px; font-family: 'Nunito', sans-serif;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: opacity 0.18s;
  }
  .cookie-accept:hover { opacity: 0.85; }
  .cookie-decline {
    background: none; border: 1.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.45);
    padding: 9px 22px; border-radius: 22px; font-family: 'Nunito', sans-serif;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.18s;
  }
  .cookie-decline:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.7); }
