:root {
  --bg: #f2efe8;
  --surface: rgba(255, 252, 246, 0.84);
  --surface-strong: #fffaf0;
  --text: #1f1d1a;
  --muted: #6f665c;
  --line: rgba(31, 29, 26, 0.1);
  --accent: #bf4f24;
  --accent-dark: #8c3414;
  --ok: #157347;
  --warn: #a63f1e;
  --shadow: 0 30px 80px rgba(46, 31, 19, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 166, 114, 0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(95, 182, 167, 0.22), transparent 28%),
    linear-gradient(135deg, #f6f0e7 0%, #ebe5da 100%);
  min-height: 100vh;
}

.landing-body,
.dashboard-body {
  display: flex;
  justify-content: center;
}

.hero-shell,
.dashboard-shell {
  width: min(1120px, calc(100% - 32px));
  padding: 32px 0 48px;
}

.hero-card,
.panel {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 56px;
  margin-top: 64px;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.96;
}

h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.lead,
.muted {
  color: var(--muted);
}

.lead {
  font-size: 19px;
  line-height: 1.65;
  max-width: 620px;
  margin: 20px 0 0;
}

.price-line {
  margin: 28px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.price {
  font-size: 44px;
  font-weight: 800;
}

.price-note {
  color: var(--muted);
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.primary-button {
  background: var(--accent);
  color: #fff;
  border: none;
}

.secondary-button {
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--line);
}

.ghost-button {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.notice-box {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(191, 79, 36, 0.1);
  color: var(--accent-dark);
}

.dashboard-shell {
  display: grid;
  gap: 20px;
}

.panel {
  padding: 28px;
}

.profile-head,
.button-row,
.toggle-form {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.metric-card,
.link-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 29, 26, 0.08);
  border-radius: 20px;
  padding: 18px;
}

.metric-card span,
.link-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

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

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

.links-panel {
  display: grid;
  gap: 14px;
}

code {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

@media (max-width: 720px) {
  .hero-card,
  .panel {
    padding: 22px;
    border-radius: 22px;
  }

  h1 {
    font-size: 44px;
  }
}
