/*
Theme Name: The Ultimate Rizz
Theme URI: https://sharedevtech.com
Description: Official marketing theme for The Ultimate Rizz — AI-powered rizz assistant app by ShareDev Technologies, LLC.
Version: 1.0.0
Author: ShareDev Technologies, LLC
Author URI: https://sharedevtech.com
License: Proprietary
Text Domain: ultimate-rizz
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --purple-deep: #3B0764;
  --purple-mid: #4C0A82;
  --purple-light: #7C3AED;
  --purple-card: rgba(92, 14, 165, 0.4);
  --gold: #FFD700;
  --gold-light: #FFE55C;
  --gold-dark: #B8860B;
  --white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.72);
  --border-gold: rgba(255, 215, 0, 0.35);
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--purple-deep);
  color: var(--white);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
p { margin-bottom: 1rem; }
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 20px; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--purple-deep);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  text-decoration: none;
}
/* Space between any preceding block/element and a button */
* + .btn-primary,
* + .btn-secondary,
p + .wp-block-buttons,
.wp-block-paragraph + .wp-block-buttons,
.wp-block-heading + .wp-block-buttons,
.wp-block-group + .wp-block-buttons,
* + .wp-block-buttons {
  margin-top: 1.25rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
  color: var(--purple-deep);
  -webkit-text-fill-color: var(--purple-deep);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 35px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--purple-deep);
  -webkit-text-fill-color: var(--purple-deep);
  transform: translateY(-2px);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.08em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes crownBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  25% { transform: translateY(-20px) rotate(8deg) scale(1.1); }
  50% { transform: translateY(-10px) rotate(-3deg); }
  75% { transform: translateY(-16px) rotate(5deg); }
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.7); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   HEADER ANNOUNCEMENT BAR
   ============================================ */
.header-announcement-bar {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--purple-deep);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
}
.header-announcement-bar a { color: var(--purple-deep); text-decoration: underline; }
.header-announcement-bar p { margin: 0; color: var(--purple-deep); text-transform: none; letter-spacing: 0; font-weight: 600; }
.header-announcement-widget { width: 100%; }

/* ============================================
   NAVIGATION
   ============================================ */
.rizz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  background: rgba(59, 7, 100, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
}
.rizz-nav.scrolled {
  padding: 16px 0;
  background: rgba(59, 7, 100, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li {
  position: relative;
}
.nav-links li a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  padding: 8px 0;
  display: block;
}
.nav-links li a:hover { color: var(--gold); }

/* ---- Dropdown submenu ---- */
.nav-links > li > ul.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 200px;
  background: rgba(59, 7, 100, 0.98);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  list-style: none;
  margin: 0;
  flex-direction: column;
  gap: 0;
}
.nav-links > li:hover > ul.sub-menu,
.nav-links > li:focus-within > ul.sub-menu {
  display: flex;
}
.nav-links > li > ul.sub-menu li a {
  padding: 10px 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-links > li > ul.sub-menu li:last-child a {
  border-bottom: none;
}
.nav-links > li > ul.sub-menu li a:hover {
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold);
}
/* Arrow indicator on parent item */
.nav-links > li:has(> ul.sub-menu) > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--purple-deep) !important;
  -webkit-text-fill-color: var(--purple-deep) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.5) 0%, var(--purple-deep) 70%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.crown-animate {
  font-size: clamp(3rem, 8vw, 6rem);
  display: block;
  animation: crownBounce 2.5s ease-in-out infinite;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}
.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.8;
  text-transform: none;
  letter-spacing: 0;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.btn-store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition);
  min-width: 200px;
  height: 64px;
  box-sizing: border-box;
}
/* Smaller equal-width store buttons inside How It Works steps */
.steps-container .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.steps-container .wp-block-button.btn-store {
  flex: 1 1 0;
  min-width: 0;
}
.steps-container .wp-block-button.btn-store .wp-block-button__link {
  width: 100%;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.82rem;
}

/* Gutenberg wraps btn-store in a div — make the inner link fill it */
.wp-block-button.btn-store {
  height: 64px;
  display: flex;
  align-items: stretch;
}
.wp-block-button.btn-store .wp-block-button__link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
}
.apple-btn {
  background: #000;
  color: #fff;
  border: 2px solid #333;
}
.apple-btn:hover { background: #1a1a1a; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); color: #fff; -webkit-text-fill-color: #fff; }
.google-btn {
  background: #01875f;
  color: #fff;
  border: 2px solid #00a876;
}
.google-btn:hover { background: #019a6e; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(1, 135, 95, 0.4); color: #fff; -webkit-text-fill-color: #fff; }
.store-icon { font-size: 1.8rem; }
.store-text { display: flex; flex-direction: column; text-align: left; }
.store-text small { font-size: 0.7rem; opacity: 0.85; letter-spacing: 0.05em; }
.store-text strong { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; }
.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  font-size: 1.5rem;
  color: var(--gold);
  animation: fadeInUp 1s ease 1s both, pulse 2s ease-in-out infinite 2s;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section { background: linear-gradient(180deg, var(--purple-deep) 0%, rgba(76, 10, 130, 0.3) 100%); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.features-grid > .wp-block-group:not(.feature-card) {
  display: contents;
}
.features-grid > .wp-block-spacer {
  display: none;
}
.feature-card {
  background: var(--purple-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  background: rgba(92, 14, 165, 0.6);
}
.feature-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; text-transform: none; letter-spacing: 0; font-weight: 400; margin: 0; }

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */
.screenshots-section { background: rgba(76, 10, 130, 0.2); }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
.phone-mockup {
  width: 100%;
  background: var(--purple-card);
  border-radius: 30px;
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.phone-mockup img,
.phone-mockup .wp-block-image img {
  max-height: 420px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 8px;
  background: var(--border-gold);
  border-radius: 4px;
  z-index: 1;
}
.featured-phone {
  width: 100%;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: none;
}
.phone-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  padding: 40px 15px 20px;
}
.phone-screen span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0.8;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
}
/* Override Gutenberg's inline flex-basis on each column so all three are equal */
.pricing-grid > .wp-block-column {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.pricing-card {
  background: var(--purple-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  flex: 1 !important;
  height: 100%;
}
.pricing-card .price-features {
  flex: 1;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card h3 { font-size: 1.2rem; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.price-amount { font-size: 3rem; font-weight: 900; color: var(--white); margin-bottom: 0.5rem; }
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.price-desc { font-size: 0.85rem; color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; margin-bottom: 1.5rem; }
.price-features { text-align: left; margin-bottom: 2rem; }
.price-features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; border-bottom: 1px solid rgba(255,255,255,0.05); }
.price-features li:last-child { border-bottom: none; }
.pro-card {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  background: rgba(124, 58, 237, 0.4);
}
.pro-card:hover { transform: translateY(-4px); }
.pro-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--purple-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pro-col { color: var(--gold) !important; font-weight: 700; }

/* Comparison table */
.comparison-table-wrap { overflow-x: auto; margin-top: 3.5rem; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table thead th {
  background: var(--purple-mid);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  text-align: center;
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.comparison-table tbody td:first-child { text-align: left; color: var(--white); font-weight: 600; }
.comparison-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }
.comparison-table tbody tr:hover { background: rgba(255, 215, 0, 0.05); }

/* ============================================
   TOKEN SECTION
   ============================================ */
.token-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}
.token-box h2 { color: var(--gold); font-size: 1.4rem; margin-bottom: 1rem; }
.token-box p { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 1rem; max-width: 640px; margin: 0 auto 1.5rem; }

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
  padding: 140px 20px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
}
.page-banner h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.75rem; position: relative; }
.page-banner p { color: var(--text-muted); font-size: 1.1rem; text-transform: none; letter-spacing: 0.02em; font-weight: 400; position: relative; }

/* ============================================
   FEATURES DETAIL PAGE
   ============================================ */
.features-detail-grid { display: grid; gap: 2rem; }
.feature-detail-card {
  background: var(--purple-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
}
.feature-detail-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.feature-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.feature-emoji { font-size: 2.5rem; flex-shrink: 0; }
.feature-header h2 { font-size: 1.2rem; color: var(--gold); margin: 0; }
.feature-detail-card p { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.95rem; margin: 0 0 1rem; }
.feature-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.feature-tags span {
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 28px;
}
.steps-container::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(255,215,0,0.1) 100%);
}
.step-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--purple-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.step-number {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--purple-deep);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
.step-content h2 { font-size: 1.2rem; color: var(--gold); margin-bottom: 0.75rem; }
.step-content p { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.95rem; margin: 0; }
.step-content ul { margin: 0.5rem 0 0; padding-left: 1.2rem; color: var(--text-muted); font-size: 0.95rem; }
.step-content ul li { margin-bottom: 0.4rem; text-transform: none; letter-spacing: 0; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { max-width: 860px; }
.legal-content h2 { font-size: 1.1rem; color: var(--gold); margin: 2rem 0 0.75rem; border-bottom: 1px solid var(--border-gold); padding-bottom: 0.5rem; }
.legal-content p, .legal-content ul, .legal-content li { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.95rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { list-style: disc; margin-bottom: 0.4rem; }
.legal-content a { color: var(--gold); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; }
.contact-email { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.contact-icon { font-size: 1.5rem; }
.contact-email a { color: var(--gold); font-weight: 700; font-size: 1rem; }
.contact-topics h3 { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.contact-topics ul li { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; padding: 0.3rem 0; }
.contact-form-wrap {
  background: var(--purple-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(59, 7, 100, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1); }
.form-group textarea { resize: vertical; }
.form-consent { margin-bottom: 1.5rem; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-label a { color: var(--gold); text-decoration: underline; }
.consent-label a:hover { color: var(--gold-light); }
.form-success { background: rgba(1, 135, 95, 0.2); border: 1px solid #01875f; border-radius: 8px; padding: 12px 16px; color: #00d4a0; font-size: 0.9rem; text-transform: none; letter-spacing: 0; }
.form-error { background: rgba(220, 38, 38, 0.15); border: 1px solid rgba(220, 38, 38, 0.5); border-radius: 8px; padding: 12px 16px; color: #fca5a5; font-size: 0.9rem; text-transform: none; letter-spacing: 0; }

/* ============================================
   FOOTER
   ============================================ */
.rizz-footer {
  background: var(--purple-mid);
  border-top: 1px solid var(--border-gold);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { font-size: 1.3rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.9rem; }
.footer-company { font-size: 0.78rem !important; margin-top: 0.5rem; }
.footer-links h4, .footer-legal h4 { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1rem; }
.footer-links ul li, .footer-legal ul li { margin-bottom: 0.5rem; }
.footer-links ul li a, .footer-legal ul li a { color: var(--text-muted); font-size: 0.9rem; text-transform: none; font-weight: 400; transition: var(--transition); }
.footer-links ul li a:hover, .footer-legal ul li a:hover { color: var(--gold); }
.footer-contact { margin-top: 1.5rem; }
.footer-contact a { color: var(--gold); font-size: 0.9rem; font-weight: 600; }
.footer-badges { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.store-badge-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 64px;
  box-sizing: border-box;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}
.store-badge-btn.apple { background: #000; color: #fff; }
.store-badge-btn.google { background: #01875f; color: #fff; }
.store-badge-btn:hover { transform: translateY(-2px); opacity: 0.9; -webkit-text-fill-color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding: 20px;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; text-transform: none; letter-spacing: 0.02em; font-weight: 400; margin: 0; }

/* ============================================
   LIGHTBOX
   ============================================ */
.rizz-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.rizz-lightbox.open {
  display: flex;
}
.rizz-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 20px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.25);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }

/* Make phone mockup images show a pointer to hint they're clickable */
.phone-mockup { cursor: zoom-in; }

/* ============================================
   COOKIE BAR
   ============================================ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--purple-mid);
  border-top: 1px solid var(--border-gold);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 9999;
  flex-wrap: wrap;
}
.cookie-bar p { margin: 0; font-size: 0.85rem; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.cookie-bar a { color: var(--gold); }

/* ============================================
   DOWNLOAD CTA SECTION
   ============================================ */
.download-cta-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(59, 7, 100, 0.8));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 60px 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(59, 7, 100, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 0;
    gap: 0;
    display: none;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .btn-nav-cta { margin: 8px 16px; border-radius: 50px !important; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-store { width: 100%; max-width: 280px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-wrap: wrap !important; }
  .pricing-grid > .wp-block-column { flex: 1 1 100% !important; }
  .pro-card { transform: none; }
  .pro-card:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-badges { flex-direction: row; }
  .step-card { flex-direction: column; gap: 1rem; }
  .steps-container::before { display: none; }
  .steps-container { padding-left: 0; }
  .screenshots-grid { grid-template-columns: 1fr 1fr; }
  .featured-phone { transform: none; }
  .featured-phone { transform: none; }
  .token-box { padding: 2rem 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
