/* TIGERY AI WALLPAPERS — marketing site
   Dark cinematic wildlife, matching the app's real brand tokens. */

:root {
  --bg: #0a0a0b;
  --bg-elevated: #141416;
  --surface: #1b1b1e;
  --surface-2: #232326;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f1ea;
  --text-2: rgba(245, 241, 234, 0.68);
  --text-3: rgba(245, 241, 234, 0.42);
  --accent: #ff7a1a;
  --accent-2: #e8b34a;
  --accent-soft: rgba(255, 122, 26, 0.16);
  --success: #3fc17b;
  --danger: #ff5d5d;
  --on-accent: #171310;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #f7f5f2;
    --bg-elevated: #ffffff;
    --surface: #ffffff;
    --surface-2: #f0ede8;
    --border: rgba(20, 18, 15, 0.08);
    --border-strong: rgba(20, 18, 15, 0.16);
    --text: #18140f;
    --text-2: rgba(24, 20, 15, 0.65);
    --text-3: rgba(24, 20, 15, 0.4);
    --accent: #ff7a1a;
    --accent-2: #b87f1f;
    --accent-soft: rgba(255, 122, 26, 0.12);
    --success: #1f9a57;
    --danger: #d93a3a;
    --on-accent: #171310;
    --shadow: 0 20px 50px rgba(24, 20, 15, 0.12);
  }
}

:root[data-theme="light"] {
  --bg: #f7f5f2;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-2: #f0ede8;
  --border: rgba(20, 18, 15, 0.08);
  --border-strong: rgba(20, 18, 15, 0.16);
  --text: #18140f;
  --text-2: rgba(24, 20, 15, 0.65);
  --text-3: rgba(24, 20, 15, 0.4);
  --accent: #ff7a1a;
  --accent-2: #b87f1f;
  --accent-soft: rgba(255, 122, 26, 0.12);
  --success: #1f9a57;
  --danger: #d93a3a;
  --on-accent: #171310;
  --shadow: 0 20px 50px rgba(24, 20, 15, 0.12);
}

:root[data-theme="dark"] {
  --bg: #0a0a0b;
  --bg-elevated: #141416;
  --surface: #1b1b1e;
  --surface-2: #232326;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f1ea;
  --text-2: rgba(245, 241, 234, 0.68);
  --text-3: rgba(245, 241, 234, 0.42);
  --accent: #ff7a1a;
  --accent-2: #e8b34a;
  --accent-soft: rgba(255, 122, 26, 0.16);
  --success: #3fc17b;
  --danger: #ff5d5d;
  --on-accent: #171310;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-inline: 24px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  text-wrap: balance;
  margin: 0;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.container {
  max-width: 1120px;
  margin-inline: auto;
}

.reading {
  max-width: 680px;
  margin-inline: auto;
}

/* ---- Nav ---- */

.site-nav {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-nav__inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
}

.wordmark span {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .cta-small {
  color: var(--on-accent);
  background: var(--accent);
  padding: 9px 18px;
  border-radius: 999px;
}

.nav-links .cta-small:hover {
  color: var(--on-accent);
}

@media (max-width: 640px) {
  .site-nav__inner {
    padding-block: 12px;
  }
  .wordmark {
    font-size: 17px;
  }
  .wordmark span {
    display: none;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links li:not(:last-child) {
    display: none;
  }
  .nav-links .cta-small {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

/* ---- Footer ---- */

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 96px;
  padding-block: 40px;
}

.site-footer__inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-3);
}

.site-footer a {
  color: var(--text-2);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
