/* KodaYam landing styles — palette mirrors src/constants/theme.ts */
:root {
  --oat: #f5e8d0;
  --cream: #f8f6f4;
  --milk: #ffffff;
  --espresso: #3a3029;
  --espresso-muted: rgba(58, 48, 41, 0.55);
  --espresso-border: rgba(58, 48, 41, 0.18);
  --romesco: #e8563a;
  --romesco-dark: #ce5037;
  --basil: #669c5a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--oat);
  color: var(--espresso);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shell {
  width: 100%;
  max-width: 420px;
  background: var(--cream);
  border: 1px solid var(--espresso-border);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(58, 48, 41, 0.1);
}

.logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
}

.title {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: 40px;
  margin: 16px 0 4px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--espresso-muted);
  margin: 0 0 6px;
}

.tagline {
  font-size: 16px;
  line-height: 1.5;
  color: var(--espresso-muted);
  margin: 0 0 28px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 23px;
  background: var(--romesco);
  color: var(--milk);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cta:hover,
.cta:active {
  background: var(--romesco-dark);
}

.stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 18px;
  border: 1px solid var(--espresso-border);
  background: var(--milk);
  color: var(--espresso);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.store-btn--disabled {
  color: var(--espresso-muted);
  cursor: default;
}

.footer {
  margin-top: 28px;
  font-size: 13px;
  color: var(--espresso-muted);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer a {
  color: var(--espresso-muted);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
