    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      font-family: Arial, Helvetica, sans-serif;
      background: #ffffff;
      color: #111111;
      text-align: center;
    }
    .wrap { width: min(680px, 100%); }
    .logo {
      width: min(240px, 58vw);
      height: auto;
      margin: 0 auto 30px;
      display: block;
    }
    .brand-lockup {
      margin: -6px auto 30px;
      display: grid;
      justify-items: center;
      gap: 5px;
    }

    .brand-name {
      font-size: clamp(25px, 4.5vw, 34px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.035em;
      color: #111111;
    }

    .brand-tagline {
      font-size: 14px;
      line-height: 1.4;
      font-weight: 600;
      letter-spacing: 0.025em;
      color: #555555;
    }

    .status {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #777777;
      margin-bottom: 14px;
    }
    h1 {
      font-size: clamp(38px, 7vw, 60px);
      line-height: 1.05;
      margin-bottom: 18px;
      letter-spacing: -0.04em;
    }
    p {
      max-width: 540px;
      margin: 0 auto 30px;
      color: #6f6f6f;
      font-size: 18px;
      line-height: 1.7;
    }
    .line {
      width: 70px;
      height: 1px;
      background: #e5e5e5;
      margin: 0 auto 26px;
    }
    .tagline {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .visitor-counter {
      margin-top: 24px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border: 1px solid #e5e5e5;
      border-radius: 999px;
      font-size: 13px;
      color: #666666;
      background: #fafafa;
    }

    .visitor-counter strong {
      color: #111111;
      font-size: 15px;
    }

    footer {
      margin-top: 46px;
      font-size: 12px;
      color: #aaaaaa;
    }