.h01-hero { padding: 0; min-height: 88vh; }
      .h01-grid {
        display: grid; grid-template-columns: 1fr 1fr;
        align-items: stretch; min-height: 88vh;
      }
      @media (max-width: 1100px) {
        .h01-grid { grid-template-columns: 1fr; min-height: 0; }
        .h01-hero { min-height: 0; }
      }

      
      .h01-text {
        display: flex; flex-direction: column; gap: 32px; align-items: center; text-align: center;
        justify-content: center;
        padding: 80px 48px 80px max(24px, calc((100vw - 1440px) / 2));
        max-width: none;
      }
      @media (max-width: 880px) {
        .h01-text { padding: 56px 24px 24px; }
      }
      .h01-eyebrow-row {
        font-family: var(--font-mono);
        font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
        color: var(--ink-500); font-weight: 600;
        display: flex; align-items: center; justify-content: center; gap: 12px;
      }
      .h01-eyebrow-row::after {
        content: ''; flex: 1; height: 1px; background: var(--ink-200);
        max-width: 80px;
      }
      .h01-h1 {
        font-family: var(--font-sans); font-weight: 700;
        font-size: clamp(38px, 4.2vw, 60px); line-height: 1.05;
        letter-spacing: -0.022em; color: var(--ink-900);
        margin: 0; max-width: 18ch;
      }
      .h01-h1 em {
        font-family: var(--font-sans); font-weight: 300; font-style: normal; letter-spacing: -0.06em;
        font-weight: 400; color: var(--accent-500);
      }
      .h01-body {
        font-family: var(--font-sans); font-size: 16px; line-height: 1.55;
        color: var(--ink-700); max-width: 38ch; margin: 0;
      }
      .h01-cta {
        display: inline-flex; align-items: center; gap: 12px;
        padding: 14px 8px 14px 24px; border: 1px solid var(--ink-300);
        border-radius: 9999px; font-family: var(--font-sans); font-weight: 500;
        font-size: 15px; color: var(--ink-900); text-decoration: none;
        transition: background .2s var(--motion-ease-out), color .2s var(--motion-ease-out), border-color .2s var(--motion-ease-out), transform .2s var(--motion-ease-out);
        width: fit-content;
      }
      .h01-cta:hover {
        background: var(--ink-900); color: var(--paper-10); border-color: var(--ink-900);
        transform: translateY(-1px);
      }
      .h01-cta .arr {
        display: inline-flex; align-items: center; justify-content: center;
        width: 32px; height: 32px; border-radius: 50%;
        background: var(--accent-500); color: var(--ink-900);
        transition: background .2s var(--motion-ease-out);
      }
      .h01-cta:hover .arr { background: var(--paper-10); }

      
      .h01-visual {
        position: relative;
        background: linear-gradient(180deg, #14181C 0%, #1A1F26 100%);
        overflow: visible;
        display: flex; align-items: center; justify-content: center;
        padding: 88px 56px 56px 56px;
        min-height: 88vh;
      }
      @media (max-width: 1100px) {
        .h01-visual { min-height: 60vh; aspect-ratio: 4/3; padding: 80px 24px 24px; }
      }
      @media (max-width: 880px) { .h01-visual { padding: 64px 16px 16px; min-height: 50vh; } }
      .h01-visual::before {
        content: ''; position: absolute; inset: 0;
        background-image:
          linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
      }
      .h01-visual__caption {
        position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
        font-family: var(--font-mono);
        font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
        color: rgba(255,255,255,0.6); font-weight: 600; white-space: nowrap;
        z-index: 3;
      }
      .h01-visual__photo {
        position: relative; width: 100%; max-width: 720px; aspect-ratio: 4/3;
        background: var(--paper-10); border-radius: 4px;
        box-shadow: 0 32px 72px -16px rgba(0,0,0,0.5), 0 12px 24px rgba(0,0,0,0.22);
        overflow: hidden; z-index: 2;
      }
      .h01-visual__photo img {
        width: 100%; height: 100%; object-fit: cover; display: block;
      }
      .h01-visual__photo::after {
        content: ''; position: absolute; inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(74,55,44,0.35) 100%);
        pointer-events: none;
      }

      
      .h01-mockup {
        position: absolute; top: 14%; right: 2%;
        width: 34%; max-width: 340px;
        background: var(--paper-10); border-radius: 18px;
        box-shadow: 0 40px 80px -16px rgba(0,0,0,0.5), 0 12px 28px rgba(0,0,0,0.24);
        padding: 22px 22px 18px;
        z-index: 4;
        font-family: var(--font-sans);
      }
      @media (max-width: 1100px) {
        .h01-mockup { top: 10%; right: 4%; width: 44%; max-width: 280px; }
      }
      @media (max-width: 880px) {
        .h01-mockup { right: 0; width: 56%; }
      }
      .h01-mockup__head {
        display: flex; align-items: center; justify-content: space-between;
        margin-bottom: 14px;
      }
      .h01-mockup__star {
        width: 14px; height: 14px; color: var(--accent-500);
      }
      .h01-mockup__dot {
        width: 22px; height: 22px; border-radius: 50%; background: #C9A96E;
      }
      .h01-mockup__greeting {
        font-size: 14px; font-weight: 600; color: var(--ink-900); margin: 0 0 4px 0;
      }
      .h01-mockup__sub {
        font-size: 12px; color: var(--ink-500); margin: 0 0 16px 0;
      }
      .h01-mockup__item {
        display: flex; gap: 10px; padding: 8px 0; align-items: flex-start;
      }
      .h01-mockup__icon {
        width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0;
        display: flex; align-items: center; justify-content: center;
        font-size: 12px; color: #fff; font-weight: 700;
      }
      .h01-mockup__icon--green { background: #1A7A47; }
      .h01-mockup__icon--gold { background: var(--accent-500); color: var(--ink-900); }
      .h01-mockup__item-title {
        font-size: 11px; font-weight: 600; color: var(--ink-900); margin: 0 0 2px 0;
      }
      .h01-mockup__item-sub {
        font-size: 10px; color: var(--ink-500); margin: 0; line-height: 1.35;
      }
      .h01-mockup__chip {
        display: inline-flex; align-items: center; gap: 6px;
        padding: 5px 9px 5px 5px; background: var(--paper-20); border-radius: 9999px;
        font-size: 10px; color: var(--ink-700); margin: 10px 0 8px 0;
      }
      .h01-mockup__chip-num {
        width: 16px; height: 16px; border-radius: 50%; background: #2F6FD9; color: #fff;
        font-size: 9px; font-weight: 700;
        display: inline-flex; align-items: center; justify-content: center;
      }
      .h01-mockup__input {
        font-size: 11px; color: var(--ink-500); padding: 8px 10px;
        border: 1px solid var(--ink-200); border-radius: 8px;
        margin-bottom: 10px;
      }
      .h01-mockup__tabs {
        display: flex; gap: 8px; padding-top: 8px; border-top: 1px solid var(--ink-200);
        font-size: 10px; font-weight: 500;
      }
      .h01-mockup__tab { padding: 4px 8px; color: var(--ink-500); border-radius: 6px; }
      .h01-mockup__tab--active { background: var(--paper-20); color: var(--ink-900); font-weight: 600; }

      
      .h01-strip {
        padding: 32px 48px;
        border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200);
        display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 56px;
      }
      @media (max-width: 880px) { .h01-strip { padding: 32px 24px; } }
      .h01-strip span {
        font-family: var(--font-sans); font-weight: 300; font-style: normal; letter-spacing: -0.06em;
        font-size: 17px; color: var(--ink-700);
      }
      .h01-strip .sep { color: var(--ink-300); font-style: normal; }
