* {
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: #a6a6a6;
  --line: #2a2a2a;
  --green: #69d17d;
  --red: #e47a7a;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
}


/* HEADER */

.site-header {
  background: #ffffff;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  padding: 14px 56px;
}

.logo {
  display: block;
  width: min(320px, 52vw);
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}


/* MAIN TWO-COLUMN LAYOUT */

.site-layout {
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  height: calc(100vh - 92px);
  min-height: 650px;
}


/* LEFT IMAGE */

.visual-panel {
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* RIGHT CONTENT */

.page {
  height: 100%;
  overflow-y: auto;

  padding: 24px 56px 28px;

  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(255,255,255,.04),
      transparent 30%
    ),
    #000000;

  display: flex;
  align-items: center;
}

.content {
  width: min(1080px, 100%);
  margin: auto;
}


/* HERO */

.hero {
  text-align: center;
  padding: 0 0 24px;
}

.check {
  width: 58px;
  height: 58px;

  margin: 0 auto 12px;

  border: 3px solid var(--green);
  border-radius: 50%;

  display: grid;
  place-items: center;

  color: var(--green);

  font-size: 30px;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 10px;

  color: var(--muted);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: .32em;
  text-transform: uppercase;
}

.eyebrow.success {
  color: var(--green);
}

.eyebrow.error {
  color: var(--red);
}

h1 {
  margin: 0;

  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.04;

  font-weight: 300;

  letter-spacing: -0.04em;
}

.lead {
  max-width: 760px;

  margin: 14px auto 0;

  color: #b7b7b7;

  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.45;
}


/* DATA */

.data-card {
  border: 1px solid #303030;
  border-radius: 8px;

  background: rgba(255,255,255,.015);

  padding: 0 30px;
}

.row {
  display: grid;

  grid-template-columns: 180px 1fr;

  gap: 28px;

  align-items: center;

  min-height: 70px;

  border-bottom: 1px solid var(--line);
}

.row:last-child {
  border-bottom: none;
}

.label {
  color: var(--muted);

  font-size: 15px;
}

.value {
  color: #ffffff;

  font-size: clamp(18px, 1.6vw, 24px);

  font-weight: 600;

  line-height: 1.25;
}


/* BOTTOM */

.bottom {
  margin-top: 22px;

  padding-top: 20px;

  border-top: 1px solid var(--line);

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 36px;

  align-items: start;
}

.note-block {
  display: grid;

  grid-template-columns: 42px 1fr;

  gap: 18px;

  align-items: start;
}

.shield {
  width: 34px;
  height: 40px;

  border: 1px solid #777;

  display: grid;
  place-items: center;

  color: var(--green);

  clip-path:
    polygon(
      50% 0,
      90% 16%,
      90% 62%,
      50% 100%,
      10% 62%,
      10% 16%
    );
}

.note {
  margin: 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.45;
}

.codebox {
  padding-left: 34px;

  border-left: 1px solid var(--line);
}

.code-label {
  display: block;

  color: var(--muted);

  font-size: 14px;

  margin-bottom: 10px;
}

code {
  display: block;

  color: #ffffff;

  font-family: Consolas, Monaco, monospace;

  font-size: 13px;

  line-height: 1.5;

  word-break: break-all;
}


/* SMALLER DESKTOP HEIGHT */

@media (min-width: 761px) and (max-height: 850px) {

  .header-inner {
    height: 78px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo {
    max-height: 54px;
  }

  .site-layout {
    height: calc(100vh - 78px);
    min-height: 580px;
  }

  .page {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .hero {
    padding-bottom: 18px;
  }

  .check {
    width: 50px;
    height: 50px;

    margin-bottom: 9px;

    font-size: 27px;
  }

  .eyebrow {
    margin-bottom: 7px;

    font-size: 12px;
  }

  h1 {
    font-size: clamp(34px, 3.6vw, 50px);
  }

  .lead {
    margin-top: 10px;

    font-size: 16px;
  }

  .row {
    min-height: 62px;
  }

  .bottom {
    margin-top: 16px;
    padding-top: 15px;
  }

}


/* MOBILE */

@media (max-width: 760px) {

  .header-inner {
    height: 96px;

    padding: 18px 22px;
  }

  .logo {
    width: min(280px, 72vw);

    max-height: 62px;
  }


  .site-layout {
    display: block;

    height: auto;

    min-height: calc(100vh - 96px);
  }


  .visual-panel {
    height: 260px;

    background-position: center;
  }


  .page {
    height: auto;

    overflow: visible;

    padding: 38px 20px 42px;

    display: block;
  }


  .hero {
    padding-bottom: 32px;
  }


  .check {
    width: 64px;
    height: 64px;

    font-size: 32px;
  }


  h1 {
    font-size: 42px;
  }


  .lead {
    font-size: 17px;
  }


  .data-card {
    padding: 0 20px;
  }


  .row {
    grid-template-columns: 1fr;

    gap: 7px;

    min-height: 0;

    padding: 22px 0;
  }


  .value {
    font-size: 22px;
  }


  .bottom {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .codebox {
    padding-left: 0;

    padding-top: 24px;

    border-left: none;

    border-top: 1px solid var(--line);
  }

}