:root {
  color-scheme: light;
  --ink: #121826;
  --muted: #526071;
  --line: #d9e1ea;
  --paper: #f6f8fb;
  --white: #ffffff;
  --green: #1f7a4d;
  --green-dark: #105638;
  --blue: #2455a6;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(31, 122, 77, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(36, 85, 166, 0.1), transparent 42%),
    var(--paper);
}

a {
  color: var(--green-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.page-shell {
  width: min(1240px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 32px;
  padding: 48px 0;
}

.intro {
  padding: 52px 0;
}

.company-panel {
  padding: 28px 0 28px 32px;
  border-left: 1px solid var(--line);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-mark {
  width: 96px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, var(--green), var(--blue));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 36px rgba(18, 24, 38, 0.16);
}

.brand-mark span {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 4.75rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.45;
}

.lead strong {
  color: var(--ink);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  border-color: var(--green-dark);
  color: var(--white);
  background: var(--green-dark);
}

.company-panel h2 {
  margin-bottom: 22px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apps-section {
  margin-top: 34px;
}

.app-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.app-list span,
.app-list small {
  display: block;
}

.app-list span {
  font-weight: 800;
}

.app-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

dl {
  margin: 0;
}

dl div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.document-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.document-shell h1 {
  margin: 18px 0 6px;
  font-size: 3.2rem;
}

.document-shell h2 {
  margin: 30px 0 10px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-shell p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.updated {
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.back-link {
  display: inline-flex;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .page-shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    padding: 20px 0;
  }

  .brand-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro {
    padding: 32px 0 8px;
  }

  .company-panel {
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .brand-mark {
    width: 82px;
  }

  .brand-mark span {
    font-size: 2.35rem;
  }

  h1 {
    font-size: 3.05rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .document-shell {
    padding: 32px 0;
  }

  .document-shell h1 {
    font-size: 2.55rem;
  }

  .actions,
  .button {
    width: 100%;
  }
}
