/* ══════════════════════════════════════════════════════════════
   SPOTS SECTION STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Announcement Bar ────────────────────────────────────────── */
.announcement-bar {
  background-color: var(--color-espresso-light);
  border-bottom: 1px solid var(--color-espresso-border);
  color: var(--color-cream-dark);
  text-align: center;
  padding: 10px var(--container-padding);
  font-size: var(--size-xs);
  font-family: var(--font-mono);
}

.announcement-bar a {
  color: var(--color-gold);
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 600;
}

.announcement-bar a:hover {
  color: var(--color-cream);
}

/* ── Header Navigation ───────────────────────────────────────── */
.nav-header {
  background-color: var(--color-espresso);
  border-bottom: 1px solid var(--color-espresso-border);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo em {
  color: var(--color-gold);
  font-style: normal;
}

.nav-links {
  display: none;
  gap: var(--space-6);
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  color: var(--color-cream-dark);
  text-decoration: none;
  font-size: var(--size-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-gold);
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  background-color: var(--color-espresso);
  padding-top: var(--space-16);
  padding-bottom: var(--space-20);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12; /* Warm, luxury overlay blending with espresso-dark */
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Asymmetrical Hero Columns */
.hero .grid-2-col {
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-eyebrow {
  margin-bottom: var(--space-4);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--size-h1);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: inherit;
}

.hero-subtext {
  font-size: var(--size-lg);
  color: var(--color-cream-dark);
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--size-xs);
  color: var(--color-cocoa);
}

/* Live System Console Mockup */
.hero-console {
  background-color: rgba(42, 32, 26, 0.4);
  border: 1px solid var(--color-espresso-border);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  font-family: var(--font-mono);
  box-shadow: var(--shadow-lg);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-espresso-border);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--size-xs);
  color: var(--color-cocoa);
}

.console-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-pistachio);
  border-radius: var(--radius-full);
  animation: pulse-green 2s infinite;
}

.console-ticker-area {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--size-xs);
  min-height: 170px;
}

.console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background-color: rgba(28, 20, 16, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(251, 247, 240, 0.03);
}

.console-label {
  color: var(--color-cream-dark);
}

.console-arrow {
  color: var(--color-cocoa);
  margin: 0 8px;
}

.console-value {
  color: var(--color-gold);
}

.console-reservation {
  border: 1px dashed rgba(184, 130, 61, 0.3);
  background-color: rgba(184, 130, 61, 0.03);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-top: var(--space-2);
}

.reservation-title {
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.reservation-timer {
  color: #3ca27b;
  display: inline-block;
  font-weight: 700;
}

/* ── Proof Strip ────────────────────────────────────────────── */
.proof-strip {
  background-color: var(--color-cream-mid);
  border-top: 1px solid var(--color-cream-dark);
  border-bottom: 1px solid var(--color-cream-dark);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.proof-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 860px) {
  .proof-container {
    flex-direction: row;
  }
}

.proof-momentum {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: 600;
  color: var(--color-espresso);
  text-align: center;
}

@media (min-width: 860px) {
  .proof-momentum {
    text-align: left;
    max-width: 450px;
  }
}

.proof-logos {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.proof-logo-pill {
  background-color: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--size-xs);
  font-weight: 600;
  color: var(--color-cocoa);
}

/* ── Problem & Value ────────────────────────────────────────── */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.problem-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.problem-icon {
  background-color: rgba(184, 130, 61, 0.08);
  border: 1px solid rgba(184, 130, 61, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-item-text h4 {
  font-family: var(--font-body);
  font-size: var(--size-base);
  font-weight: 700;
  color: var(--color-espresso);
  margin-bottom: var(--space-1);
}

.problem-item-text p {
  font-size: var(--size-sm);
  color: var(--color-cocoa);
  line-height: 1.5;
}

/* Problem Card (Dashboard Mockup) */
.problem-card-wrap {
  display: flex;
  justify-content: center;
}

.dashboard-mockup {
  width: 100%;
  max-width: 480px;
  background-color: var(--color-espresso);
  color: var(--color-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-espresso-border);
  padding: var(--space-6);
  font-family: var(--font-mono);
  box-shadow: var(--shadow-md);
}

.mockup-header {
  font-size: var(--size-xs);
  color: var(--color-cocoa);
  border-bottom: 1px solid var(--color-espresso-border);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--size-xs);
}

.mockup-item {
  background-color: var(--color-espresso-light);
  border: 1px solid var(--color-espresso-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.mockup-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  color: var(--color-cream-dark);
}

.mockup-bar-bg {
  height: 6px;
  background-color: var(--color-espresso-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.mockup-bar-fill {
  height: 100%;
  background-color: var(--color-gold);
  border-radius: var(--radius-full);
}

/* ── Features Grid ──────────────────────────────────────────── */
.features-grid {
  margin-top: var(--space-10);
}

.featured-feature-card {
  grid-column: 1 / -1;
  background-color: var(--color-espresso);
  color: var(--color-cream);
  border: 1px solid var(--color-espresso-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 860px) {
  .featured-feature-card {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.featured-content {
  max-width: 500px;
}

.featured-content h3 {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.featured-content p {
  color: var(--color-cream-dark);
  opacity: 0.8;
  font-size: var(--size-sm);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.featured-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.featured-visual {
  background-color: var(--color-espresso-light);
  border: 1px solid var(--color-espresso-border);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--size-xs);
}

.featured-visual-title {
  color: var(--color-cocoa);
  border-bottom: 1px solid var(--color-espresso-border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.featured-table {
  width: 100%;
  border-collapse: collapse;
}

.featured-table th,
.featured-table td {
  text-align: left;
  padding: 8px 4px;
}

.featured-table th {
  color: var(--color-cocoa);
  font-weight: normal;
  border-bottom: 1px solid var(--color-espresso-border);
}

.featured-table td {
  color: var(--color-cream);
}

/* Feature grid small cards */
.feature-card {
  padding: var(--space-6);
}

.feature-card-icon {
  background-color: rgba(184, 130, 61, 0.06);
  border: 1px solid rgba(184, 130, 61, 0.12);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--size-sm);
  color: var(--color-cocoa);
  line-height: 1.6;
}

/* ── How It Works ────────────────────────────────────────────── */
.how-it-works {
  background-color: var(--color-cream-mid);
}

.hiw-nav-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-12);
}

/* Sync Layout column containers */
.hiw-pane {
  display: none;
}

.hiw-pane.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 860px) {
  .hiw-pane.is-active {
    grid-template-columns: 1.2fr 1fr;
    align-items: flex-start;
  }
}

.hiw-steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hiw-step-accordion {
  border: 1px solid var(--color-cream-dark);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hiw-step-accordion.is-active {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.hiw-step-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hiw-step-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--color-cream-mid);
  border: 1.5px solid var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-espresso);
  font-size: var(--size-sm);
  transition: all var(--transition-normal);
}

.hiw-step-accordion.is-active .hiw-step-number {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-espresso);
}

.hiw-step-header h3 {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-espresso);
}

.hiw-step-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 48px;
  transition: max-height var(--transition-normal), opacity var(--transition-normal), margin-top var(--transition-normal);
}

.hiw-step-accordion.is-active .hiw-step-body {
  max-height: 200px;
  opacity: 1;
  margin-top: var(--space-3);
}

.hiw-step-body p {
  font-size: var(--size-sm);
  color: var(--color-cocoa);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.hiw-step-insights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.hiw-step-insight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--size-xs);
  color: var(--color-espresso);
  background: rgba(184, 130, 61, 0.05);
  padding: 6px 10px;
  border-radius: var(--radius-xs);
}

.hiw-step-insight svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Right Sticky visual screen */
.hiw-screen-container {
  position: sticky;
  top: 100px;
  margin-top: 1.5rem;
}

.hiw-screen {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  border: 1px solid var(--color-espresso-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  font-family: var(--font-mono);
  box-shadow: var(--shadow-md);
}

.hiw-screen-header {
  font-size: var(--size-xs);
  color: var(--color-cocoa);
  border-bottom: 1px solid var(--color-espresso-border);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hiw-screen-title {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.hiw-screen-desc {
  font-size: var(--size-xs);
  color: var(--color-cream-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.hiw-screen-graphic {
  background-color: var(--color-espresso-light);
  border: 1px solid var(--color-espresso-border);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  font-size: 11px;
}

/* ── Testimonials (Early Partner Spotlight) ────────────────── */
.testimonials {
  background-color: var(--color-espresso);
  color: var(--color-cream);
}

.partner-invite-card {
  grid-column: 1 / -1;
  background-color: var(--color-espresso-light);
  border: 1px solid var(--color-espresso-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  text-align: center;
}

.partner-invite-inner {
  max-width: 680px;
  margin: 0 auto;
}

.partner-invite-inner h3 {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  margin-bottom: var(--space-4);
}

.partner-invite-inner p {
  color: var(--color-cream-dark);
  font-size: var(--size-base);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

/* Testimonial Quote structure for partners */
.testimonials-row {
  margin-top: var(--space-12);
}

.testimonial-card {
  padding: var(--space-6);
}

.star-rating {
  color: var(--color-gold);
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-3);
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: var(--size-base);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-cream-dark);
  margin-bottom: var(--space-4);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 36px;
  height: 36px;
  background-color: var(--color-espresso-border);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gold);
  font-size: var(--size-sm);
}

.author-meta h4 {
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--color-cream);
}

.author-meta span {
  font-size: var(--size-xs);
  color: var(--color-cocoa);
}

/* ── Pricing Section ────────────────────────────────────────── */
.pricing-grid {
  margin-top: var(--space-8);
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--color-gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .pricing-card.popular {
    transform: none;
  }
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--color-espresso);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.price-wrapper {
  margin-bottom: var(--space-4);
}

.price {
  font-family: var(--font-mono);
  font-size: var(--size-h2);
  font-weight: 700;
  color: var(--color-espresso);
}

.price-wrapper span {
  font-size: var(--size-xs);
  color: var(--color-cocoa);
}

.pricing-desc {
  font-size: var(--size-sm);
  color: var(--color-cocoa);
  line-height: 1.5;
  margin-bottom: var(--space-6);
  flex-grow: 0;
}

.price-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  flex-grow: 1;
}

.price-features-list li {
  font-size: var(--size-sm);
  color: var(--color-espresso);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-features-list li svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-footer-note {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--size-sm);
  color: var(--color-cocoa);
}

/* ── Developer Waitlist ─────────────────────────────────────── */
.dev-cta-card {
  background-color: var(--color-espresso-light);
  border: 1px solid var(--color-espresso-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}

@media (min-width: 860px) {
  .dev-cta-card {
    padding: var(--space-12);
  }
}

.dev-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 860px) {
  .dev-cta-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.dev-cta-content h2 {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  margin-bottom: var(--space-4);
  color: var(--color-cream);
}

.dev-cta-content h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.dev-cta-content p {
  color: var(--color-cream-dark);
  opacity: 0.85;
  font-size: var(--size-base);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.dev-perks {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.dev-perk {
  background-color: rgba(251, 247, 240, 0.05);
  border: 1px solid rgba(251, 247, 240, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-cream-dark);
}

.dev-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.dev-stat-box {
  background-color: var(--color-espresso);
  border: 1px solid var(--color-espresso-border);
  border-radius: var(--radius-sm);
  padding: var(--space-6);
  text-align: center;
}

.dev-stat-number {
  font-family: var(--font-mono);
  font-size: var(--size-h2);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.dev-stat-label {
  font-size: var(--size-xs);
  color: var(--color-cocoa);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Final CTA ──────────────────────────────────────────────── */
.final-cta {
  background-color: var(--color-cream-mid);
  text-align: center;
  border-top: 1px solid var(--color-cream-dark);
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.final-cta-inner h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.final-cta-inner p {
  font-size: var(--size-base);
  color: var(--color-cocoa);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.final-cta-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.final-cta-guarantee {
  font-size: var(--size-xs);
  color: var(--color-cocoa);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background-color: var(--color-espresso);
  border-top: 1px solid var(--color-espresso-border);
  color: var(--color-cocoa);
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  font-size: var(--size-xs);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: var(--size-base);
  color: var(--color-cream);
  margin-bottom: var(--space-3);
}

.footer-brand p {
  line-height: 1.6;
  max-width: 250px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: var(--size-sm);
  color: var(--color-cream);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links-list a {
  color: var(--color-cocoa);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-espresso-border);
  padding-top: var(--space-6);
  margin-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
