:root {
  --bg: #f7f3ec;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #2d5016;
  --accent-hover: #3d6b1f;
  --border: #e5e0d6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  min-height: 100vh;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 28px 32px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.tagline {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
  font-style: italic;
}

.save-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 28px;
  min-height: 52px;
  transition: background 0.15s ease;
  letter-spacing: 0.2px;
}

.save-btn:hover,
.save-btn:focus {
  background: var(--accent-hover);
}

.save-btn:active {
  transform: translateY(1px);
}

.info {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.info li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.info li:last-child {
  border-bottom: none;
}

.info .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  font-weight: 600;
}

.info a {
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  word-break: break-word;
}

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

@media (max-width: 380px) {
  .card {
    padding: 32px 20px 24px;
  }
  .logo {
    width: 140px;
  }
}
