:root {
  --white: #FFFFFF;
  --black: #000000;
  --muted: #F5F5F5;
  --muted-fg: #525252;
  --border-light: #E5E5E5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  --line-texture: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    #000 1px,
    #000 2px
  );
}

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

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NOTIFICATION BAR ========== */
.notification-bar {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--white);
  letter-spacing: 0.02em;
}

.notification-bar a {
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  background: var(--white);
  border: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.1s, color 0.1s;
}

.notification-bar a:hover {
  background: transparent;
  color: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ========== HEADER ========== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--black);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-fg);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.1s, border-color 0.1s;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}

.btn-nav-download {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  line-height: 1;
  transition: background 0.1s, color 0.1s;
}

.btn-nav-download:hover {
  background: var(--white);
  color: var(--black);
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

/* ========== HERO ========== */
.hero {
  padding: 100px 0 80px 0;
  position: relative;
  border-bottom: 4px solid var(--black);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--line-texture);
  opacity: 0.015;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-fg);
  margin-bottom: 24px;
  display: block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.hero h1 .word-large {
  font-size: 128px;
  display: block;
}

.hero-decorative {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}

.hero-decorative .rule {
  flex: 1;
  height: 4px;
  background: var(--black);
  border: none;
}

.hero-decorative .square {
  width: 12px;
  height: 12px;
  border: 2px solid var(--black);
  flex-shrink: 0;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-fg);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--black);
  color: var(--white);
  padding: 16px 36px;
  border: none;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.1s, color 0.1s;
}

.btn-primary:hover {
  background: var(--white);
  color: var(--black);
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.btn-primary .arrow {
  font-family: var(--font-mono);
  font-size: 14px;
}

.btn-secondary {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: transparent;
  color: var(--black);
  padding: 16px 36px;
  border: 2px solid var(--black);
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* Mockup Section */
.hero-mockup-area {
  margin-top: 80px;
  border: 2px solid var(--black);
  position: relative;
  background: var(--white);
}

.hero-mockup-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--line-texture);
  opacity: 0.01;
  pointer-events: none;
}

.browser-frame {
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.browser-header {
  background: var(--muted);
  height: 44px;
  border-bottom: 2px solid var(--black);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  flex-shrink: 0;
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  background: var(--black);
  border: 1px solid var(--black);
}

.browser-url-bar {
  flex: 1;
  background: var(--white);
  height: 26px;
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 11px;
  color: var(--muted-fg);
  font-family: var(--font-mono);
  max-width: 460px;
  gap: 6px;
}

.browser-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--black);
  font-size: 10px;
}

.browser-tab-btn {
  border: none;
  background: none;
  padding: 5px 12px;
  cursor: pointer;
  color: var(--muted-fg);
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.1s, color 0.1s;
}

.browser-tab-btn.active {
  background: var(--black);
  color: var(--white);
}

.browser-content {
  height: 480px;
  background: #111;
  display: flex;
  position: relative;
}

/* Meet UI inside mockup */
.gmeet-main {
  flex: 1;
  background: radial-gradient(circle, #22252a 0%, #121316 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gmeet-avatar-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gmeet-avatar {
  width: 80px;
  height: 80px;
  background: #3c4043;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-body);
  border-radius: 0 !important;
}

.gmeet-caption {
  font-size: 12px;
  color: #9ca3af;
  background: rgba(0,0,0,0.4);
  padding: 4px 12px;
  font-family: var(--font-body);
  font-weight: 400;
}

.gmeet-controls-bar {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #202124;
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.gmeet-ctrl-btn {
  width: 28px;
  height: 28px;
  background: #3c4043;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.gmeet-ctrl-btn.active {
  background: #ea4335;
}

/* Mock HUD/Chat Panels */
.mock-hud-panel,
.mock-chat-panel {
  position: absolute;
  right: 16px;
  top: 16px;
  bottom: 16px;
  width: 240px;
  background: #1e1f20;
  border: 1px solid rgba(255,255,255,0.08);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  text-align: left;
  font-family: var(--font-body);
}

.mock-hud-panel.active,
.mock-chat-panel.active {
  display: flex;
}

.mock-hud-header {
  background: #28292a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.mock-hud-title {
  font-size: 13px;
  font-weight: 700;
}

.mock-hud-count {
  font-size: 10px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 2px 8px;
  font-weight: 600;
}

.mock-hud-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-hud-btn {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  gap: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.mock-hud-btn.save {
  background: #c4eed0;
  color: #072212;
}

.mock-hud-btn.restore {
  background: #c2e7ff;
  color: #001d35;
  position: relative;
}

.nudge-shake {
  animation: button-wiggle 0.5s ease-in-out 2 alternate;
}

@keyframes button-wiggle {
  0%, 100% { transform: scale(1) translateX(0); }
  15% { transform: scale(1.01) translateX(-4px); }
  45% { transform: scale(1.01) translateX(4px); }
  75% { transform: scale(1.005) translateX(-2px); }
}

.mock-hud-btn.clear {
  background: #fce8e6;
  color: #601410;
}

.mock-hud-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 16px;
  font-size: 9px;
  color: #9ca3af;
}

.mock-hud-brand {
  color: #6b7280;
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mock-chat-header {
  background: #1e1f20;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.mock-chat-title {
  font-size: 13px;
  font-weight: 600;
  color: #e8eaed;
}

.mock-chat-close {
  font-size: 18px !important;
  color: #9aa0a6;
  cursor: pointer;
  transition: color 0.1s;
}

.mock-chat-close:hover {
  color: #fff;
}

.mock-chat-settings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mock-chat-settings-text {
  font-size: 11px;
  color: #bdc1c6;
}

.mock-chat-toggle {
  width: 28px;
  height: 14px;
  background: #3c4043;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.mock-chat-toggle.active {
  background: #8ab4f8;
}

.mock-chat-toggle-handle {
  width: 10px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
}

.mock-chat-toggle.active .mock-chat-toggle-handle {
  transform: translateX(14px);
}

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

.mock-chat-banner {
  background: #2d2f31;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.04);
}

.mock-chat-banner-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8eaed;
}

.mock-chat-banner-title {
  font-size: 11px;
  font-weight: 600;
}

.mock-chat-banner-desc {
  font-size: 9.5px;
  color: #9aa0a6;
  line-height: 1.4;
}

.mock-chat-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 9px;
  color: #9aa0a6;
  margin: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
}

.mock-chat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-msg-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mock-msg-row.right {
  align-items: flex-end;
}

.mock-msg-row.left {
  align-items: flex-start;
}

.mock-msg-bubble {
  padding: 6px 10px;
  font-size: 11.5px;
  line-height: 1.4;
  max-width: 85%;
  color: #fff;
}

.mock-msg-bubble.grey {
  background: #2e3033;
}

.mock-msg-bubble.dark-blue {
  background: #0e5a6a;
}

.mock-msg-meta {
  font-size: 8.5px;
  color: #9aa0a6;
  margin-top: 3px;
}

.mock-msg-badge {
  background: #fff;
  color: #1a73e8;
  border: 1px solid #1a73e8;
  padding: 1px 4px;
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.mock-msg-sender {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.mock-sender-name {
  font-size: 10.5px;
  font-weight: 600;
  color: #e8eaed;
}

.mock-sender-time {
  font-size: 8.5px;
  color: #9aa0a6;
}

.mock-chat-footer {
  background: #2d2f31;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  margin: 8px 12px 12px 12px;
  border: 1px solid rgba(255,255,255,0.04);
}

.mock-chat-placeholder {
  font-size: 11px;
  color: #9aa0a6;
}

.mockup-instruction-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 0 0 16px 0;
  font-size: 14px;
  font-style: italic;
  color: var(--muted-fg);
  font-family: var(--font-body);
  border-bottom: 1px solid var(--border-light);
}

.instruction-pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--black);
  display: inline-block;
  flex-shrink: 0;
}

.instruction-text strong {
  font-style: normal;
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========== STATS STRIP ========== */
.stats-strip {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
  border-bottom: 4px solid var(--black);
  position: relative;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 1px,
    #fff 1px,
    #fff 2px
  );
  background-size: 4px 100%;
  opacity: 0.03;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

/* ========== FEATURES ========== */
.features {
  padding: 120px 0;
  position: relative;
  border-bottom: 4px solid var(--black);
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--line-texture);
  opacity: 0.01;
  pointer-events: none;
}

.section-header {
  margin-bottom: 80px;
  position: relative;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 600px;
}

.section-header p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-fg);
  max-width: 500px;
}

.section-header .section-rule {
  width: 60px;
  height: 4px;
  background: var(--black);
  margin-bottom: 24px;
  border: none;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.feature-card {
  background: var(--white);
  border: none;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  transition: background 0.1s, color 0.1s;
  cursor: default;
}

.feature-card:hover {
  background: var(--black);
}

.feature-card:hover .feature-icon-wrapper,
.feature-card:hover h3,
.feature-card:hover p {
  color: var(--white);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 8px;
  transition: color 0.1s, border-color 0.1s;
}

.feature-card:hover .feature-icon-wrapper {
  border-color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  transition: color 0.1s;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted-fg);
  transition: color 0.1s;
}

.feature-card:hover p {
  color: rgba(255,255,255,0.7);
}

/* ========== FAQ ========== */
.faq-section {
  padding: 120px 0;
  position: relative;
  border-bottom: 4px solid var(--black);
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--black);
}

.faq-item {
  border-bottom: 1px solid var(--black);
  background: var(--white);
  transition: background 0.1s, color 0.1s;
}

.faq-question {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  user-select: none;
  transition: color 0.1s;
}

.faq-item.active .faq-question {
  color: var(--white);
}

.faq-item.active {
  background: var(--black);
}

.faq-item.active .faq-question {
  color: var(--white);
}

.faq-icon {
  font-size: 20px !important;
  transition: transform 0.1s;
  flex-shrink: 0;
  margin-left: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-answer-content {
  padding: 0 0 24px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* ========== DOWNLOAD ========== */
.download-section {
  padding: 120px 0;
  position: relative;
  border-bottom: 4px solid var(--black);
  background: var(--muted);
}

.download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--line-texture);
  opacity: 0.01;
  pointer-events: none;
}

.downloads-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.downloads-wrapper h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.downloads-wrapper > p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-fg);
  margin-bottom: 40px;
}

.store-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--black);
  padding: 16px 24px;
  transition: background 0.1s, color 0.1s;
  flex-wrap: wrap;
  gap: 16px;
  text-decoration: none;
}

.store-row:hover {
  background: var(--black);
}

.store-info {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.store-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--black);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-details {
  display: flex;
  flex-direction: column;
}

.store-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  transition: color 0.1s;
}

.store-row:hover .store-name {
  color: var(--white);
}

.store-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.1s;
}

.store-row:hover .store-meta {
  color: rgba(255,255,255,0.6);
}

.get-store-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--black);
  color: var(--white);
  padding: 10px 24px;
  border: none;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}

.store-row:hover .get-store-btn {
  background: var(--white);
  color: var(--black);
}

.coming-soon-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--muted);
  color: var(--muted-fg);
  padding: 10px 24px;
  border: 1px solid var(--border-light);
}

/* ========== FOOTER ========== */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0;
  text-align: center;
  font-family: var(--font-body);
}

footer p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.1s, color 0.1s;
}

.footer-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ========== REVEAL ANIMATIONS ========== */
.feature-card,
.store-row {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease,
              transform 0.6s ease,
              background 0.1s,
              color 0.1s;
}

.feature-card.visible,
.store-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease,
              transform 0.5s ease,
              background 0.1s;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 64px;
  }
  .hero h1 .word-large {
    font-size: 80px;
  }
  .stat-number {
    font-size: 40px;
  }
  .grid-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero h1 .word-large {
    font-size: 64px;
  }
  .hero-description {
    font-size: 18px;
  }
  .stats-strip {
    padding: 48px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .stat-number {
    font-size: 36px;
  }
  .features {
    padding: 80px 0;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .grid-features {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 36px 32px;
  }
  .faq-section {
    padding: 80px 0;
  }
  .download-section {
    padding: 80px 0;
  }
  .downloads-wrapper {
    padding: 32px 24px;
  }
  .store-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }
  .store-info {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-links {
    gap: 24px;
    flex-wrap: wrap;
  }
  .browser-content {
    height: 360px;
  }
  .mock-hud-panel,
  .mock-chat-panel {
    width: 160px;
    right: 8px;
    top: 8px;
    bottom: 8px;
  }
  .mock-hud-header,
  .mock-chat-header {
    padding: 8px 10px;
  }
  .mock-hud-title,
  .mock-chat-title {
    font-size: 11px;
  }
  .mock-hud-body {
    padding: 10px;
    gap: 8px;
  }
  .mock-hud-btn {
    height: 32px;
    font-size: 10px;
  }
  .mock-chat-body {
    padding: 8px;
    gap: 8px;
  }
  .mock-msg-bubble {
    font-size: 10px;
  }
  .mock-chat-footer {
    height: 30px;
    margin: 6px 8px 8px 8px;
  }
}

@media (max-width: 600px) {
  .nav-links .nav-link {
    display: none;
  }
  .nav-links {
    gap: 12px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero h1 .word-large {
    font-size: 48px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
  }
  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero h1 .word-large {
    font-size: 40px;
  }
  .hero-description {
    font-size: 16px;
  }
  .notification-bar {
    font-size: 12px;
    padding: 10px 16px;
  }
  footer {
    padding: 40px 0;
  }
  .feature-card {
    padding: 28px 24px;
  }
  .downloads-wrapper {
    padding: 24px 16px;
  }
  .downloads-wrapper h2 {
    font-size: 24px;
  }
}
