:root {
      --bg: #111111;
      --panel: #181818;
      --panel-soft: #202020;
      --accent: #f2a000;
      --accent-soft: #ffb321;
      --text: #f7f7f7;
      --muted: rgba(255,255,255,0.72);
      --line: rgba(242,160,0,0.28);
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      min-height: 100vh;
      font-family: Arial, Helvetica, sans-serif;
      background: #e5e5e5;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    body {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

	h1 {
		color: var(--accent);
	}
	
	a {
		text-decoration: none;
	}
    .viewport {
      width: min(100%, 800px);
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 26px;
      background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
      border: 1px solid rgba(242,160,0,0.18);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(24px, 4vw, 42px);
      isolation: isolate;
    }

    

    .card::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.04);
      pointer-events: none;
      z-index: 0;
    }

    .content {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 790px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 48px;
      align-items: center;
    }

    .left,
    .right {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .left {
      min-height: 100%;
    }

    .logo-wrap {
      width: 100%;
      max-width: 320px;
      margin-bottom: 28px;
    }

    .logo-wrap img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .logo-fallback {
      display: none;
      font-size: 4.4rem;
      font-weight: 900;
      letter-spacing: 0.04em;
      color: var(--accent);
    }

    .company {
      margin: 0;
      font-size: clamp(1.65rem, 3vw, 2.35rem);
      line-height: 1.08;
      font-weight: 800;
      color: var(--text);
      max-width: 12ch;
    }

    .company em {
      font-style: normal;
      color: var(--accent);
    }

    .subtitle {
      margin: 14px 0 0;
      font-size: 0.98rem;
      line-height: 1.55;
      color: var(--muted);
      max-width: 34ch;
    }

    .right {
      align-items: stretch;
    }

    .info-panel {
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      border: 1px solid rgba(242,160,0,0.22);
      border-radius: 20px;
      padding: 24px 24px 22px;
      backdrop-filter: blur(6px);
    }

    .info-title {
      margin: 0 0 14px;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .item {
      padding: 12px 0;
      border-bottom: 1px solid rgba(242,160,0,0.14);
    }

    .item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .label {
      margin-bottom: 5px;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.54);
    }

    .value,
    .value a {
      font-size: 1.02rem;
      line-height: 1.45;
      color: var(--text);
      text-decoration: none;
      font-weight: 700;
      word-break: break-word;
    }

    .value a:hover {
      color: var(--accent-soft);
    }

    .footer-note {
      margin-top: 16px;
      font-size: 0.76rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
    }

    .legal {
      position: absolute;
      bottom: 14px;
      left: 18px;
      right: 18px;
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
    }

    .legal a {
      color: inherit;
      text-decoration: none;
    }

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

    @media (max-width: 800px) {
      .viewport {
        aspect-ratio: auto;
      }

      .card {
        min-height: 600px;
      }

      .content {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 520px;
      }

      .left,
      .right {
        align-items: center;
        text-align: center;
      }

      .company,
      .subtitle {
        max-width: none;
      }

      .info-panel {
        width: 100%;
        text-align: left;
      }
    }