:root {
  --bg: #000000;
  --text: #ffffff;
  --green: #77b829;
  --muted: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 5vw, 72px);
}

.brand {
  width: min(660px, 78vw);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.content {
  width: min(900px, 100%);
  margin-top: auto;
  padding-top: 72px;
  padding-bottom: clamp(28px, 3vw, 48px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--green);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(48px, 7vw, 86px);
  padding-right: clamp(0px, 13vw, 200px);
}

.info-block {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 19px);
  font-style: normal;
  line-height: 1.65;
}

.info-block strong {
  color: var(--green);
  font-weight: 700;
}

.info-block a {
  color: var(--text);
  text-decoration: none;
  text-underline-offset: 4px;
}

.info-block a:hover,
.info-block a:focus-visible {
  color: var(--green);
  text-decoration: underline;
}

.corner-mark {
  position: fixed;
  right: clamp(-180px, -8vw, -70px);
  bottom: clamp(-180px, -10vw, -80px);
  z-index: 1;
  width: clamp(430px, 48vw, 820px);
  height: auto;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 850px) {
  .page-shell {
    padding: 28px;
  }

  .brand {
    width: min(520px, 94vw);
  }

  .content {
    padding-top: 92px;
  }

  h1 {
    line-height: 0.95;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 54px;
    padding-right: 0;
    max-width: 520px;
  }

  .corner-mark {
    right: -190px;
    bottom: -180px;
    width: 520px;
    opacity: 0.9;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 22px;
  }

  .brand {
    width: 100%;
  }

  .content {
    padding-top: 86px;
    padding-bottom: 210px;
  }

  h1 {
    font-size: clamp(46px, 16vw, 72px);
  }

  .corner-mark {
    right: -165px;
    bottom: -165px;
    width: 430px;
  }
}
