:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --green: #2f8060;
  --green-dark: #184d3a;
  --bg: #f7faf8;
  --line: #d9e5df;
  --text: #15261f;
}

* { box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; margin: 0; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); }

.app-frame {
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
}

.app-frame iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: calc(100dvh + 34px);
  border: 0;
  transform: translateY(-34px);
}

.select-page {
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

h1 {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.25;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  display: block;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  padding: 14px 16px;
  font-weight: 800;
  text-decoration: none;
}

.link-list a:hover {
  border-color: var(--green);
}
