@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #2d3436;
  --cream: #ffe8d6;
  --blush: #fff0ea;
  --muted: #555;
  --pink: #ff90e8;
  --lilac: #e4a8e6;
  --gold: #ffc900;
  --mint: #00ff94;
  --footer: #e5e7eb;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
}

button,
input,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

.landing-page {
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  padding-bottom: calc(84px + env(safe-area-inset-bottom));
  padding-top: 56px;
  position: relative;
  text-align: center;
}

.bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #ff90e8 50%, #ffc900 0);
  bottom: 0;
  left: -50%;
  opacity: 0.12;
  pointer-events: none;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}

.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
  background-image: linear-gradient(-60deg, #ffc900 50%, #00ff94 0);
}

.bg3 {
  animation-duration: 5s;
  background-image: linear-gradient(-60deg, #00ff94 50%, #ff90e8 0);
}

@keyframes slide {
  0% { transform: translateX(-25%); }
  to { transform: translateX(25%); }
}

@keyframes shimmer {
  0% { background-position: 0 50%; }
  to { background-position: 300% 50%; }
}

@keyframes pulse {
  0%, to { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Nav */
.top-navbar {
  align-items: center;
  background: var(--blush);
  border-bottom: 2px solid var(--ink);
  display: flex;
  height: 56px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.navbar-content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 2rem;
  width: 100%;
}

.navbar-logo,
.navbar-logo h1 {
  align-items: center;
  display: flex;
}

.navbar-logo h1 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.logo-button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo-button:hover { opacity: 0.7; }

.navbar-links {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  margin: 0 auto;
}

.navbar-link {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.25rem 0;
  position: relative;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.navbar-link::after {
  background: var(--ink);
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.2s ease;
  width: 0;
}

.navbar-link:hover::after { width: 100%; }

.navbar-buttons {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
}

.nav-button {
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-button:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.nav-button.primary {
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--cream);
}

.nav-button.primary:hover {
  box-shadow: 6px 6px 0 var(--ink);
}

.sticky-header {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  left: 0;
  opacity: 0;
  padding: 0.75rem 2rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
}

.sticky-header.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 1rem;
}

.sticky-logo h1 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

/* Hero */
.hero {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 4rem 2rem 3rem;
  position: relative;
}

.hero-content {
  background: linear-gradient(135deg, #ff90e826, #ffc9001f 40%, #00ff9414);
  border: 3px solid var(--ink);
  border-radius: 4px;
  box-shadow: 8px 8px 0 var(--ink);
  max-width: 800px;
  overflow: hidden;
  padding: 3.5rem 3rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.hero-content::before {
  background:
    radial-gradient(circle at 10% 20%, #ff90e833 0, transparent 50%),
    radial-gradient(circle at 90% 80%, #ffc90026 0, transparent 50%),
    radial-gradient(circle at 50% 50%, #00ff9414 0, transparent 60%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-title {
  color: var(--ink);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 auto 2rem;
  max-width: 600px;
  position: relative;
}

.hero-features {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 1.75rem;
  max-width: 640px;
  position: relative;
}

.hero-feature {
  align-items: center;
  background: var(--blush);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: center;
  padding: 1rem 0.7rem;
}

.hero-feature-icon {
  font-size: 1.7rem;
  line-height: 1;
}

.hero-feature-text {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-cta {
  margin-top: 0.25rem;
}

.hero-ask-form {
  display: flex;
  gap: 0.6rem;
  margin: 0 auto 1.5rem;
  max-width: 520px;
  position: relative;
}

.hero-ask-input {
  background: var(--blush);
  border: 3px solid var(--ink);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  flex: 1;
  font-size: 1rem;
  outline: none;
  padding: 0.85rem 1.1rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-ask-input:focus {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-1px, -1px);
}

.hero-ask-input::placeholder {
  color: #aaa;
  font-style: italic;
}

.hero-ask-btn {
  background: linear-gradient(135deg, #e4a8e6, #ff90e8);
  border: 3px solid var(--ink);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.5rem;
  text-transform: uppercase;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hero-ask-btn:hover:not(:disabled) {
  box-shadow: 6px 6px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.hero-ask-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.hero-how-it-works {
  background: #2d34360a;
  border: 1px solid #2d34361a;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.65rem auto 1rem;
  max-width: 600px;
  padding: 0.6rem 0.9rem;
  position: relative;
  text-align: left;
}

.hero-how-it-works strong {
  color: var(--ink);
  margin-right: 0.25rem;
}

.hero-divider {
  align-items: center;
  color: #888;
  display: flex;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 0.75rem;
  letter-spacing: 0.06em;
  margin: 0.5rem auto 1.25rem;
  max-width: 520px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.hero-divider::before,
.hero-divider::after {
  background: #2d34361f;
  content: "";
  flex: 1;
  height: 2px;
}

.language-switcher {
  backdrop-filter: blur(4px);
  background: #ffffff73;
  border: 2px solid #2d34362e;
  border-radius: 12px;
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  position: relative;
}

.language-switcher-title {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
}

.language-switcher-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.language-switcher-link {
  align-items: center;
  background: var(--blush);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  display: flex;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.55rem 0.65rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.language-switcher-link:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(-1px, -1px);
}

.language-switcher-flag { font-size: 1.1rem; line-height: 1; }

.hero-phone-box {
  backdrop-filter: blur(4px);
  background: #ffffff59;
  border: 2px solid #2d34362e;
  border-radius: 12px;
  margin-top: 0.5rem;
  padding: 1.5rem 2rem;
  position: relative;
}

.hero-phone-label {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero-badge {
  background: var(--blush);
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
}

.hero-cta,
.cta-button {
  background: linear-gradient(135deg, #e4a8e6, #ff90e8);
  border: 3px solid var(--ink);
  border-radius: 4px;
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 1.1rem 2.5rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.cta-button {
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.hero-cta:hover,
.cta-button:hover {
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.hero-price {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0.75rem;
}

.hero-info-box {
  backdrop-filter: blur(4px);
  background: #ffffff73;
  border: 2px solid #2d34362e;
  border-radius: 12px;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  position: relative;
  text-align: left;
}

.hero-info-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-info-link {
  align-items: center;
  border-radius: 8px;
  padding: 0.15rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-info-link:hover {
  background: #ffffff59;
  transform: translate(-1px, -1px);
}

.hero-info-title {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

.hero-info-text {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}

.hero-info-text a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

.hero-info-youtube-icon {
  align-items: center;
  background: #f03;
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
  color: #fff;
  display: inline-flex;
  height: 2.25rem;
  justify-content: center;
  margin: 0 auto;
  width: 2.25rem;
}

.hero-info-youtube-icon svg {
  fill: currentColor;
  height: 1.35rem;
  width: 1.35rem;
}

.hero-learn-more {
  font-size: 0.95rem;
  margin: 1.25rem 0 0;
  position: relative;
}

.hero-learn-more a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
}

.hero-learn-more a:hover { color: #e4a8e6; }

.social-proof-strip { padding: 0 2rem; }

.proof-inner {
  align-items: center;
  border-bottom: 2px solid #2d34361a;
  border-top: 2px solid #2d34361a;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 1rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
  padding: 1rem 1.5rem;
}

.proof-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-right: 0.25rem;
}

.proof-item {
  align-items: center;
  display: flex;
  gap: 0.3rem;
}

.proof-divider {
  color: #ccc;
  font-size: 1.2rem;
}

.seo-links {
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
}

.seo-links-title {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.seo-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  justify-content: center;
  list-style: none;
  margin: 0 auto;
  max-width: 820px;
  padding: 0;
}

.seo-links-list a {
  border-bottom: 2px solid transparent;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.seo-links-list a:hover { border-bottom-color: var(--ink); }

/* Footer */
.footer {
  background: var(--ink);
  padding: 2rem 1.5rem;
}

.footer-content {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}

.footer-nav {
  color: var(--footer);
  font-size: 0.85rem;
  margin: 0 auto 1.25rem;
}

.footer-nav .footer-link { font-weight: 500; opacity: 0.9; }

.footer-languages,
.footer-meanings-nav {
  color: var(--footer);
  opacity: 0.95;
}

.footer-languages {
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0 auto 1.25rem;
  max-width: 760px;
}

.footer-languages span { font-weight: 600; }

.footer-link {
  background: none;
  border: 0;
  color: var(--footer);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.footer-link:hover { opacity: 1; }

.disclaimer {
  color: var(--footer);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0 auto 1rem;
  max-width: 800px;
  opacity: 0.9;
}

.copyright {
  color: var(--footer);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* How it works */
.hiw-intro {
  margin: 0 auto;
  max-width: 760px;
  padding: 4rem 2rem 1rem;
  position: relative;
  text-align: center;
}

.hiw-intro h1 {
  color: var(--ink);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hiw-intro p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 auto 2rem;
  max-width: 620px;
}

.section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.section h2 {
  color: var(--ink);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
}

.how-it-works {
  background: linear-gradient(135deg, #fff0ea, #00ff9414 50%, #ffc9001a);
}

.features-grid,
.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1100px;
}

.feature-card,
.testimonial-card,
.accuracy-card,
.why-ai-card {
  background: var(--blush);
  border: 3px solid var(--ink);
  border-radius: 4px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.feature-card:hover,
.testimonial-card:hover,
.accuracy-card:hover,
.why-ai-card:hover {
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.step-number {
  align-items: center;
  background: linear-gradient(135deg, #ff90e8, #ffc900);
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 1.3rem;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  margin: 0 auto 1rem;
  width: 44px;
}

.feature-card h3,
.accuracy-card h3,
.why-ai-card h3 {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p,
.accuracy-card p,
.why-ai-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.accuracy-section {
  background: linear-gradient(135deg, #00ff9414, #ffc9001a 50%, #ff90e814);
}

.accuracy-content,
.why-ai-content {
  margin: 0 auto;
  max-width: 1100px;
}

.accuracy-lead {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 700;
  margin: -1.5rem auto 2.5rem;
  text-align: center;
}

.accuracy-grid,
.why-ai-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.accuracy-icon,
.why-ai-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-ai-section {
  background: linear-gradient(135deg, #e4a8e61a, #ffc90014 50%, #ff90e80f);
}

.why-ai-lead {
  color: var(--ink);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  margin: -1.5rem auto 2.5rem;
  max-width: 600px;
  text-align: center;
}

.testimonials {
  background: linear-gradient(135deg, #ffc9001a, #ff90e81a 50%, #00ff940f);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  color: var(--ink);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.testimonial-card cite {
  color: var(--ink);
  display: block;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 700;
}

.card-pull-section {
  background: linear-gradient(180deg, #ffe8d6, #fff0ea 30%, #e4a8e626 60%, #ffc9001a) !important;
  overflow: hidden;
  position: relative;
}

.card-pull-section::before {
  animation: shimmer 4s linear infinite;
  background: linear-gradient(90deg, #ff90e8, #ffc900, #00ff94, #ff90e8);
  background-size: 300% 100%;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: -2px;
}

.quick-reading {
  padding: 3rem 2rem 4rem;
  text-align: center;
}

.quick-reading h2 {
  color: var(--ink);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.quick-reading-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 auto 2rem;
  max-width: 500px;
}

.card-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

.reading-card-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.reading-card {
  cursor: pointer;
  height: 205px;
  perspective: 1000px;
  width: 120px;
}

.reading-card-inner {
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  width: 100%;
}

.reading-card.flipped .reading-card-inner {
  transform: rotateY(180deg);
}

.reading-card:not(.flipped):hover .reading-card-inner {
  transform: rotateY(8deg) scale(1.03);
}

.reading-card-back,
.reading-card-front {
  backface-visibility: hidden;
  border: 3px solid var(--ink);
  border-radius: 6px;
  box-shadow: 5px 5px 0 var(--ink);
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.reading-card-back {
  align-items: center;
  background: linear-gradient(145deg, #e4a8e6, #b06ab3, #8e44ad, #6c3483);
  display: flex;
  justify-content: center;
}

.card-back-design {
  align-items: center;
  background: linear-gradient(135deg, #ffffff0d, #ffffff1a 50%, #ffffff0d);
  border: 2px solid #ffffff4d;
  border-radius: 4px;
  display: flex;
  height: 80%;
  justify-content: center;
  width: 80%;
}

.card-back-symbol {
  color: #fff9;
  font-size: 2rem;
  text-shadow: 0 0 10px #ffffff4d;
}

.reading-card-front {
  align-items: center;
  background: var(--blush);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.6rem;
  transform: rotateY(180deg);
}

.reading-card-front .card-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.reading-card-front .card-glyph {
  font-size: 1.8rem;
  margin: 0.35rem 0;
}

.reading-card-front .card-name {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

.position-label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0.75rem;
  text-transform: uppercase;
}

.tap-hint {
  color: #888;
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 0.5rem;
}

.reading-results {
  animation: fadeIn 0.4s ease;
  margin: 1.5rem auto 0;
  max-width: 640px;
  text-align: left;
}

.reading-results.hidden { display: none; }

.result-card {
  background: #ffffff73;
  border: 2px solid #2d34362e;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  padding: 1rem 1.15rem;
}

.result-card h4 {
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.result-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq {
  background: linear-gradient(135deg, #fff0ea, #e4a8e614 50%, #ffe8d6);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 900px;
}

.faq-item {
  background: var(--blush);
  border: 3px solid var(--ink);
  border-radius: 4px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 1.75rem;
  text-align: left;
  transition: all 0.2s ease;
}

.faq-item:hover {
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.faq-item h3 {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.free-tarot-link {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 2.5rem;
  text-align: center;
}

.free-tarot-link a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
}

.free-tarot-link a:hover { color: #e4a8e6; }

.section-cta-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

/* Reading / spread views */
.page-view {
  animation: fadeIn 0.35s ease;
  padding: 3rem 1.5rem 4rem;
  position: relative;
}

.page-view.hidden { display: none; }

.page-inner {
  margin: 0 auto;
  max-width: 860px;
}

.page-kicker {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.page-inner h1 {
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto 2rem;
  max-width: 620px;
}

.spread-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  margin: 1.5rem auto;
  max-width: 720px;
}

.spread-grid .reading-card {
  height: 148px;
  width: 100%;
}

.ask-panel {
  background: linear-gradient(135deg, #ff90e826, #ffc9001f 40%, #00ff9414);
  border: 3px solid var(--ink);
  border-radius: 4px;
  box-shadow: 8px 8px 0 var(--ink);
  margin: 0 auto;
  max-width: 640px;
  padding: 2rem 1.5rem;
  position: relative;
}

.interp-box {
  background: #ffffff73;
  border: 2px solid #2d34362e;
  border-radius: 12px;
  margin: 1.5rem auto 0;
  max-width: 700px;
  padding: 1.5rem;
  text-align: left;
}

.interp-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.interp-box p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.interp-box p:last-child { margin-bottom: 0; }

.legal-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
  text-align: left;
}

.legal-body h2 {
  color: var(--ink);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.6rem;
  text-transform: none;
}

.legal-body p { margin-bottom: 0.85rem; }

/* Auth */
.auth-modal {
  align-items: center;
  background: #00000080;
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
}

.auth-modal.open { display: flex; }

.auth-modal-content {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
  max-width: 400px;
  padding: 2rem;
  position: relative;
  text-align: left;
  width: 100%;
}

.auth-close {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  right: 0.85rem;
  top: 0.55rem;
}

.auth-modal h2 {
  color: var(--ink);
  margin-bottom: 0.5rem;
  text-align: center;
}

.auth-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  text-align: center;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 1rem;
  padding: 0.75rem;
  width: 100%;
}

.auth-button {
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 4px;
  color: var(--cream);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  padding: 0.75rem;
  transition: all 0.2s ease;
  width: 100%;
}

.auth-button:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.auth-error {
  color: #e74c3c;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.auth-switch {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

.auth-switch button {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
}

/* Chat */
.chat-widget {
  bottom: 24px;
  position: fixed;
  right: 24px;
  z-index: 9999;
}

.chat-toggle {
  align-items: center;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px #8b5cf666;
  cursor: pointer;
  display: flex;
  height: 60px;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  width: 60px;
}

.chat-toggle:hover {
  box-shadow: 0 6px 25px #8b5cf680;
  transform: scale(1.05);
}

.chat-toggle.open {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.chat-toggle svg {
  color: #fff;
  height: 28px;
  width: 28px;
}

.chat-bubble-label {
  background: #1a1a2e;
  border-radius: 999px;
  box-shadow: 0 4px 16px #00000040;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  min-width: 74px;
  padding: 6px 10px;
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

.chat-window {
  animation: slideUp 0.3s ease;
  background: #1a1a2e;
  border-radius: 16px;
  bottom: 76px;
  box-shadow: 0 10px 40px #0000004d;
  display: none;
  flex-direction: column;
  height: 480px;
  max-height: calc(100vh - 120px);
  max-width: calc(100vw - 48px);
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 360px;
}

.chat-window.open { display: flex; }

.chat-header {
  align-items: center;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.chat-status {
  align-items: center;
  color: #ffffffe6;
  display: flex;
  font-size: 12px;
  gap: 6px;
}

.chat-status::before {
  background: #34d399;
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.chat-messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 16px;
}

.chat-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 85%;
}

.chat-message.sent { align-self: flex-end; }
.chat-message.received { align-self: flex-start; }

.chat-message.sent .message-content {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-bottom-right-radius: 4px;
  color: #fff;
}

.chat-message.received .message-content {
  background: #2d2d44;
  border-bottom-left-radius: 4px;
  color: #e0e0e0;
}

.message-content {
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  padding: 10px 12px;
}

.chat-input-container {
  align-items: flex-end;
  background: #16162a;
  border-top: 1px solid #2d2d44;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
}

.chat-input {
  background: #2d2d44;
  border: 1px solid #3d3d54;
  border-radius: 12px;
  color: #e0e0e0;
  flex: 1;
  font-size: 14px;
  max-height: 100px;
  outline: none;
  padding: 10px 14px;
  resize: none;
}

.chat-input:focus { border-color: #8b5cf6; }

.chat-send {
  align-items: center;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.chat-send svg {
  color: #fff;
  height: 20px;
  width: 20px;
}

.toast {
  background: var(--ink);
  border-radius: 8px;
  bottom: 96px;
  box-shadow: 4px 4px 0 var(--pink);
  color: var(--cream);
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  left: 50%;
  padding: 0.75rem 1.1rem;
  position: fixed;
  transform: translateX(-50%);
  z-index: 3000;
}

.toast.show { display: block; animation: slideUp 0.25s ease; }

.sticky-dl {
  background: var(--blush);
  border-top: 3px solid var(--ink);
  bottom: 0;
  box-shadow: 0 -4px 0 var(--ink);
  left: 50%;
  max-width: 640px;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1100;
}

.sticky-dl .hero-cta {
  display: flex;
  font-size: 1.05rem;
  justify-content: center;
  margin: 0;
  padding: 0.85rem 1.25rem;
  width: 100%;
}

.chat-widget { bottom: 96px; }

@media (min-width: 1400px) {
  .faq-grid,
  .features-grid,
  .hero-content,
  .sticky-content,
  .testimonials-grid { max-width: 1200px; }
  .hero-title { font-size: 3.8rem; }
  .section h2 { font-size: 2.75rem; }
}

@media (max-width: 1024px) {
  .hero-content { padding: 2.5rem 2rem; }
  .hero-title { font-size: 2.8rem; }
}

@media (max-width: 900px) {
  .navbar-links { display: none; }
  .navbar-content { padding: 0 1rem; }
  .navbar-logo h1 { font-size: 0.9rem; }
  .nav-button {
    font-size: 0.85rem;
    min-width: 72px;
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 768px) {
  .landing-page { padding-top: 48px; }
  .top-navbar { height: 48px; }
  .hero { padding: 2rem 1rem; }
  .hero-content { padding: 2rem 1.5rem; }
  .hero-title { font-size: 2.3rem; }
  .hero-subtitle { font-size: 1.05rem; margin-bottom: 1.5rem; }
  .hero-features { grid-template-columns: 1fr; gap: 0.65rem; }
  .hero-feature { flex-direction: row; justify-content: flex-start; padding: 0.75rem 1rem; text-align: left; }
  .hero-phone-box { padding: 1.25rem 1rem; }
  .hero-badges { gap: 0.5rem; margin-bottom: 1rem; }
  .hero-badge { font-size: 0.78rem; padding: 0.35rem 0.65rem; }
  .proof-divider { display: none; }
  .proof-inner { flex-direction: column; font-size: 0.8rem; gap: 0.25rem; }
  .sticky-header { padding: 0.5rem 1rem; }
  .sticky-logo h1 { font-size: 0.9rem; }
  .section { padding: 3.5rem 1rem; }
  .section h2 { font-size: 2rem; margin-bottom: 2rem; }
  .hiw-intro h1 { font-size: 2.1rem; }
  .features-grid,
  .testimonials-grid,
  .accuracy-grid,
  .why-ai-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  .faq-item,
  .feature-card,
  .testimonial-card,
  .why-ai-card,
  .accuracy-card { padding: 1.5rem; }
  .quick-reading h2 { font-size: 2rem; }
  .card-row { gap: 1rem; }
  .reading-card { height: 162px; width: 95px; }
  .footer { padding: 1.5rem 1rem; }
  .page-inner h1 { font-size: 1.85rem; }
}

@media (max-width: 600px) {
  .language-switcher-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-info-box { gap: 1rem; grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ask-form { flex-direction: column; }
  .hero-ask-btn { width: 100%; }
  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-content { padding: 1.5rem 1.25rem; }
  .hero-cta { font-size: 1rem; padding: 0.9rem 1.5rem; }
  .section h2 { font-size: 1.6rem; }
  .quick-reading { padding: 2.5rem 1rem 3rem; }
  .quick-reading h2 { font-size: 1.6rem; }
  .card-row { gap: 0.75rem; }
  .reading-card { height: 145px; width: 85px; }
  .chat-widget { bottom: 88px; right: 16px; }
  .chat-toggle { height: 54px; width: 54px; }
  .chat-window {
    bottom: 70px;
    height: calc(100vh - 100px);
    max-height: 500px;
    width: calc(100vw - 32px);
  }
}

@media (max-width: 380px) {
  .navbar-logo h1 { font-size: 0.82rem; }
  .nav-button { font-size: 0.8rem; min-width: 68px; padding: 0.3rem 0.75rem; }
}
