/* CrownStrike — Level 1 */

:root {
  --charcoal: #0B0C10;
  --slate: #1F2025;
  --steel: #3C4F65;
  --molten: #FF5E1A;
  --gold: #FFB300;
  --text: #f0f0f0;
  --muted: #9ca3af;
}

body.light-mode {
  --charcoal: #eef0f2;
  --slate: #ffffff;
  --steel: #c9cfd6;
  --molten: #e04d10;
  --gold: #d49700;
  --text: #1a1a1a;
  --muted: #5f6773;
}

body.light-mode .stat-card,
body.light-mode .shop-card,
body.light-mode .shop-cta-section,
body.light-mode .profile-stat-box,
body.light-mode .idle-plan {
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid var(--steel);
}

body.light-mode .home-title {
  color: var(--text);
}

body.light-mode .btn-submit {
  color: #ffffff;
}

body.light-mode .btn-skip {
  color: #15803d;
}

body.light-mode .stat-unaccounted {
  color: #15803d;
}

body.light-mode .btn-sport-cta {
  color: #1a1a1a;
}

body.light-mode .btn-rating[data-rating="3"] .rating-num {
  color: #6b7280;
}

body.light-mode .theme-slider::before {
  background: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--charcoal);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Live clock bar ── */
.clock-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 0;
  text-align: center;
  background: var(--slate);
  border-bottom: 1px solid var(--steel);
  z-index: 100;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

/* ── Nav ── */
.nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: var(--slate);
  border-top: 1px solid var(--steel);
  z-index: 100;
}

.nav-btn {
  flex: 1;
  padding: 14px 0;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-btn.active {
  color: var(--gold);
}

/* ── Views ── */
.view {
  display: none;
  flex: 1;
  padding: 3rem 1.25rem 5.5rem;
}

.view.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── Logo ── */
.logo {
  display: block;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}

.logo-hero {
  width: 260px;
  height: 260px;
  margin-bottom: 1.5rem;
}

.logo-lg {
  width: 200px;
  height: 200px;
}

.logo-sm {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

/* ── Home screen ── */
.home-container {
  text-align: center;
}

.home-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* ── Date label ── */
.date-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ── Main check-in ── */
.checkin-container {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.hour-label {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.prompt-text {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  letter-spacing: 0.03em;
}

.btn:active {
  transform: scale(0.96);
}

.btn-yes {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-no {
  background: var(--steel);
  color: var(--text);
}

/* ── Skip link ── */
.skip-row {
  margin-top: 1.25rem;
  text-align: center;
}

.btn-skip {
  color: #39FF14;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.btn-skip:hover {
  opacity: 0.7;
}

/* ── Rating buttons ── */
.rating-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px;
  min-width: 64px;
  border: 2px solid var(--steel);
  border-radius: 10px;
  background: var(--slate);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}

.btn-rating:hover {
  border-color: var(--gold);
}

.btn-rating:active {
  transform: scale(0.95);
}

.btn-rating .rating-num {
  font-size: 1.5rem;
  font-weight: 700;
}

.btn-rating .rating-label {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-rating[data-rating="1"] .rating-num { color: #ef4444; }
.btn-rating[data-rating="2"] .rating-num { color: var(--molten); }
.btn-rating[data-rating="3"] .rating-num { color: var(--muted); }
.btn-rating[data-rating="4"] .rating-num { color: var(--gold); }
.btn-rating[data-rating="5"] .rating-num { color: #22c55e; }

/* ── Plan input ── */
.plan-section {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.plan-label {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.plan-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--steel);
  border-radius: 8px;
  background: var(--slate);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
  margin-bottom: 1rem;
}

.plan-input:focus {
  outline: none;
  border-color: var(--gold);
}

.btn-submit {
  background: var(--molten);
  color: #fff;
  width: 100%;
}

/* ── Done state ── */
.done-section {
  text-align: center;
  max-width: 420px;
}

.done-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.done-text {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Idle state ── */
.idle-section {
  text-align: center;
  max-width: 420px;
}

.idle-text {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.idle-plan {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--slate);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.idle-plan-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.idle-plan-text {
  font-size: 1rem;
  color: var(--text);
}

.idle-plan-hint {
  font-size: 0.65rem;
  color: var(--steel);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* ── Stats view ── */
.stats-container {
  max-width: 480px;
  width: 100%;
}

.stats-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.stat-card {
  background: var(--slate);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.stat-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.stat-bar {
  width: 100%;
  height: 6px;
  background: var(--charcoal);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.stat-bar-fill.high { background: var(--gold); }
.stat-bar-fill.mid { background: var(--molten); }
.stat-bar-fill.low { background: var(--steel); }

.stat-unaccounted {
  font-size: 0.75rem;
  color: #39FF14;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.stat-empty {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ── Stats sub-tabs ── */
.stats-subtabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--steel);
  width: 100%;
}

.stats-subtab {
  flex: 1;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.stats-subtab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.stats-panel {
  display: none;
  width: 100%;
}

.stats-panel.active {
  display: block;
}

/* ── Chart grid ── */
.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 400px) {
  .chart-grid { grid-template-columns: 1fr; }
}

/* ── Ring gauges ── */
.ring-card {
  background: var(--slate);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.ring-card-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.ring-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.ring-center {
  position: absolute;
  inset: 12px;
  background: var(--slate);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-pct {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.ring-sub {
  font-size: 0.6rem;
  color: var(--muted);
}

.ring-detail {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ── Pie charts ── */
.pie-card {
  background: var(--slate);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.pie-card-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.pie-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.pie-legend {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.pie-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: var(--muted);
}

.pie-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Heatmap ── */
.heatmap-header {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.heatmap-grid-wrap {
  display: flex;
  gap: 4px;
}

.heatmap-day-labels {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 0;
}

.heatmap-day-label {
  width: 24px;
  height: 16px;
  font-size: 0.55rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4px;
}

.heatmap-columns {
  display: flex;
  gap: 2px;
  overflow-x: auto;
}

.heatmap-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.heatmap-cell {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--slate);
}

.heatmap-cell.empty {
  opacity: 0;
}

.heatmap-cell.level-0 { background: var(--slate); }
.heatmap-cell.level-1 { background: #5c4a00; }
.heatmap-cell.level-2 { background: #8c7000; }
.heatmap-cell.level-3 { background: #b89200; }
.heatmap-cell.level-4 { background: var(--gold); }

body.light-mode .heatmap-cell.level-1 { background: #ffeab3; }
body.light-mode .heatmap-cell.level-2 { background: #ffd666; }
body.light-mode .heatmap-cell.level-3 { background: #ffc21a; }
body.light-mode .heatmap-cell.level-4 { background: var(--gold); }

.heatmap-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 0.75rem;
  font-size: 0.6rem;
  color: var(--muted);
}

.heatmap-legend-cell {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

/* ── Insights ── */
.insight-value {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.insight-list {
  list-style: none;
  padding: 0;
}

.insight-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 1px solid var(--charcoal);
  line-height: 1.4;
}

.insight-list li:last-child {
  border-bottom: none;
}

/* ── Updates ── */
.update-list {
  list-style: none;
  padding: 0;
}

.update-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 4px 0 4px 12px;
  position: relative;
  line-height: 1.4;
}

.update-list li::before {
  content: '\2022';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ── Clickable logo ── */
.logo-link {
  cursor: pointer;
}

/* ── Home sub-tabs ── */
.home-subtabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--steel);
  width: 100%;
  max-width: 480px;
}

.home-subtab {
  flex: 1;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.home-subtab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.home-panel {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-panel.active {
  display: flex;
}

/* ── Home greeting ── */
.home-greeting {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ── Profile ── */
.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--steel);
  color: var(--gold);
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.profile-since {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.profile-stat-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.profile-stat-box {
  background: var(--slate);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-align: center;
  flex: 1;
  max-width: 140px;
}

.profile-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.profile-stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rename-form {
  margin-top: 1rem;
}

/* ── Settings ── */
.settings-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--steel);
  text-align: left;
}

.settings-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.settings-row {
  margin-bottom: 1.25rem;
}

.settings-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.settings-hint {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.settings-sleep-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.settings-sleep-to {
  font-size: 0.85rem;
  color: var(--muted);
}

.settings-select {
  flex: 1;
  padding: 10px 12px;
  border: 2px solid var(--steel);
  border-radius: 8px;
  background: var(--slate);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.settings-select:focus {
  outline: none;
  border-color: var(--gold);
}

.settings-saved {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── Theme toggle ── */
.theme-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-slider {
  position: absolute;
  inset: 0;
  background: var(--steel);
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.3s;
}

.theme-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--text);
  border-radius: 50%;
  transition: transform 0.3s;
}

.theme-switch input:checked + .theme-slider {
  background: var(--gold);
}

.theme-switch input:checked + .theme-slider::before {
  transform: translateX(22px);
}

/* ── Shop ── */
.shop-category {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.5rem 0 0.75rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.shop-card {
  background: var(--slate);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
}

.shop-img-placeholder {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.shop-item-name {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.shop-item-desc {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.shop-item-price {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.btn-shop {
  padding: 8px 16px;
  font-size: 0.75rem;
  background: var(--steel);
  color: var(--muted);
  border: none;
  border-radius: 6px;
  cursor: not-allowed;
}

.shop-cta-section {
  margin-top: 2.5rem;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--slate);
  border-radius: 12px;
  border: 1px solid var(--steel);
}

.shop-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.btn-sport-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: transform 0.15s;
}

.btn-sport-cta:active {
  transform: scale(0.96);
}

.sport-cta-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ── Responsive ── */
@media (min-width: 600px) {
  .prompt-text { font-size: 2rem; }
  .btn { padding: 16px 52px; font-size: 1.2rem; }
  .btn-rating { min-width: 80px; padding: 16px 14px; }
}

@media (max-width: 400px) {
  .shop-grid { grid-template-columns: 1fr; }
  .nav-btn { font-size: 0.65rem; padding: 12px 0; }
}

/* ── Landing / Sales Page ── */
.landing-view {
  min-height: 100vh;
  background: var(--charcoal);
  color: var(--text);
  overflow-y: auto;
  padding: 0;
}

.landing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 3rem 2rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at center bottom, rgba(255,179,0,0.08) 0%, transparent 60%);
}

.landing-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  animation: landingFadeUp 0.8s ease both;
}

.landing-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 0.75rem;
  animation: landingFadeUp 1s ease both;
}

.landing-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
  animation: landingFadeUp 1.2s ease both;
}

/* Features grid */
.landing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.landing-feature {
  background: var(--slate);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--steel);
  transition: border-color 0.3s, transform 0.2s;
}

.landing-feature:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Proof stats row */
.landing-proof {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 2rem;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  max-width: 600px;
  margin: 0 auto;
}

.proof-stat {
  text-align: center;
}

.proof-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA section */
.landing-cta-section {
  text-align: center;
  padding: 4rem 2rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.landing-cta-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.landing-cta-btn {
  display: inline-block;
  padding: 18px 56px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.3s;
}

.landing-cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255, 179, 0, 0.3);
}

.landing-cta-btn:active {
  transform: scale(0.97);
}

.landing-cta-hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--steel);
  letter-spacing: 0.03em;
}

.landing-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.7rem;
  color: var(--steel);
  letter-spacing: 0.03em;
}

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

@media (max-width: 480px) {
  .landing-logo { width: 160px; height: 160px; }
  .landing-title { font-size: 2.25rem; }
  .landing-subtitle { font-size: 1.05rem; }
  .landing-features { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .landing-proof { gap: 1.5rem; }
  .proof-number { font-size: 2rem; }
  .landing-cta-btn { padding: 16px 40px; font-size: 1.05rem; }
}
