:root {
  --bg: #1f4a3a;
  --bg-alt: #244f3f;
  --line: #5d8f79;
  --pill: #8bc63f;
  --pill-text: #1d2f1c;
  --text: #f3f5ee;
  --accent: #a4d65e;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@font-face {
  font-family: 'Bukra';
  src: url('fonts/29LT Bukra-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bukra';
  src: url('fonts/29LT Bukra-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bukra';
  src: url('fonts/29LT Bukra-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bukra';
  src: url('fonts/29LT Bukra-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bukra';
  src: url('fonts/29LT Bukra-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: 'Bukra', 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  background: radial-gradient(circle at 20% 20%, #285643 0%, #1c4535 40%, #143328 100%);
  color: var(--text);
  padding: 24px 18px;
}

.card {
  position: relative;
  width: min(500px, 92vw);
  padding: 46px 38px 52px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card::before,
.card::after {
  content: '';
  position: absolute;
  border-top: 1px solid var(--line);
  opacity: 0.5;
}

.card::before {
  width: 160%;
  top: 20px;
  left: -60%;
  transform: rotate(22deg);
}

.card::after {
  width: 180%;
  bottom: 12px;
  right: -70%;
  transform: rotate(28deg);
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.logo-svg {
  width: 160px;
  max-width: 78%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.headline {
  margin: 14px 0 22px;
  text-align: center;
}

.lead {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
}

.accent {
  color: var(--accent);
}

.name {
  margin: 8px 0 4px;
  font-size: 1.8rem;
  font-weight: 600;
}

.title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--pill);
  color: var(--pill-text);
  text-decoration: none;
  font-weight: 400;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.12s ease, filter 0.12s ease;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.pill-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.pill-label,
.pill-note {
  display: block;
}

.pill-label {
  font-size: 1.05rem;
  line-height: 1.2;
}

.pill-note {
  font-size: 0.9rem;
  line-height: 1.2;
  opacity: 0.8;
}

.pill-end {
  margin-left: auto;
}

.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-duo {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.icon-duo .icon {
  width: 20px;
  height: 20px;
}

.icon-fill {
  stroke: none;
  fill: #fff;
}

.pill:hover,
.pill:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  outline: none;
}

.pill:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.ghost:hover,
.ghost:focus-visible {
  filter: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  body { padding: 18px 16px; }
  .card { width: min(520px, 94vw); padding: 40px 30px 44px; }
  .logo-svg { width: 150px; }
  .lead { font-size: 1.45rem; }
  .name { font-size: 1.7rem; }
  .title { font-size: 1.2rem; }
}

@media (max-width: 640px) {
  body { padding: 16px 12px; }
  .card { width: 94vw; padding: 34px 24px 38px; }
  .actions { gap: 10px; }
  .pill { padding: 13px 14px; font-size: 1rem; }
  .icon { width: 21px; height: 21px; }
}

@media (max-width: 480px) {
  .card { width: 96vw; padding: 30px 18px 34px; }
  .logo-svg { width: 140px; }
  .lead { font-size: 1.32rem; }
  .name { font-size: 1.55rem; }
  .title { font-size: 1.08rem; }
  .pill { font-size: 0.98rem; gap: 12px; }
  .icon { width: 20px; height: 20px; }
}
