:root {
  --bauhaus-bg: #F0F0F0;
  --bauhaus-fg: #121212;
  --bauhaus-red: #D02020;
  --bauhaus-blue: #1040C0;
  --bauhaus-yellow: #F0C020;
  --bauhaus-white: #FFFFFF;
  --bauhaus-muted: #E0E0E0;

  --font-sans: 'Outfit', system-ui, sans-serif;

  --shadow-sm: 4px 4px 0px 0px #121212;
  --shadow-md: 6px 6px 0px 0px #121212;
  --shadow-lg: 8px 8px 0px 0px #121212;

  --border-thick: 4px solid #121212;
  --border-med: 2px solid #121212;

  --radius-none: 0px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease-out;
  --transition-slow: 0.3s ease-out;
}

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

body {
  background: var(--bauhaus-bg);
  color: var(--bauhaus-fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ========== NOTIFICATION BAR ========== */
.notification-bar {
  background: var(--bauhaus-red);
  color: var(--bauhaus-white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: var(--border-med);
}

.notification-bar a {
  color: var(--bauhaus-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 4px 16px;
  border: var(--border-med);
  background: var(--bauhaus-fg);
  font-size: 12px;
  transition: var(--transition-fast);
}

.notification-bar a:hover {
  background: var(--bauhaus-bg);
  color: var(--bauhaus-fg);
}

/* ========== HEADER / NAV ========== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bauhaus-white);
  border-bottom: var(--border-med);
}

.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(--bauhaus-fg);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-shapes {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-circle {
  width: 16px;
  height: 16px;
  background: var(--bauhaus-red);
  border-radius: var(--radius-full);
  border: var(--border-med);
}

.logo-square {
  width: 16px;
  height: 16px;
  background: var(--bauhaus-blue);
  border: var(--border-med);
}

.logo-triangle {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid var(--bauhaus-yellow);
  filter: drop-shadow(2px 2px 0px #121212);
}

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bauhaus-fg);
  text-decoration: none;
  padding: 8px 0;
  transition: var(--transition-fast);
  border-bottom: 2px solid transparent;
}

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

.btn-nav-download {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bauhaus-yellow);
  color: var(--bauhaus-fg);
  padding: 10px 20px;
  border: var(--border-med);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  line-height: 1;
  transition: var(--transition-fast);
}

.btn-nav-download:hover {
  background: var(--bauhaus-bg);
  box-shadow: var(--shadow-md);
}

.btn-nav-download:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

/* ========== HERO ========== */
.hero {
  padding: 80px 0 0 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--bauhaus-yellow);
  color: var(--bauhaus-fg);
  padding: 6px 14px;
  border: var(--border-med);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--bauhaus-fg);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--bauhaus-red);
}

.hero p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bauhaus-fg);
  max-width: 480px;
  margin-bottom: 32px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bauhaus-red);
  color: var(--bauhaus-white);
  padding: 16px 32px;
  border: var(--border-med);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  background: #b01a1a;
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bauhaus-white);
  color: var(--bauhaus-fg);
  padding: 16px 32px;
  border: var(--border-med);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--bauhaus-muted);
  box-shadow: var(--shadow-md);
}

.btn-secondary:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

/* Hero Right - Blue Geometric Panel */
.hero-right {
  position: relative;
  background: var(--bauhaus-blue);
  min-height: 460px;
  border: var(--border-thick);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-geo-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-full);
  background: var(--bauhaus-yellow);
  border: var(--border-thick);
  top: -40px;
  right: -40px;
  opacity: 0.9;
}

.hero-geo-square {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--bauhaus-red);
  border: var(--border-thick);
  bottom: 60px;
  left: -30px;
  transform: rotate(45deg);
  opacity: 0.85;
}

.hero-geo-triangle-wrapper {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
}

.hero-geo-triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid var(--bauhaus-yellow);
  filter: drop-shadow(4px 4px 0px #121212);
}

/* Mockup inside hero-right */
.hero-mockup-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.browser-frame {
  width: 100%;
  height: 100%;
  background: var(--bauhaus-white);
  border: var(--border-med);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.browser-header {
  background: var(--bauhaus-bg);
  height: 40px;
  border-bottom: var(--border-med);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
  flex-shrink: 0;
}

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

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--bauhaus-red);
  border: var(--border-med);
}

.browser-dot:nth-child(2) {
  background: var(--bauhaus-yellow);
}

.browser-dot:nth-child(3) {
  background: #2ecc40;
}

.browser-url-bar {
  flex: 1;
  background: var(--bauhaus-white);
  height: 24px;
  border: var(--border-med);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(0,0,0,0.6);
  font-family: var(--font-sans);
  max-width: 400px;
  gap: 4px;
}

.browser-tabs {
  display: flex;
  gap: 2px;
  border: var(--border-med);
  padding: 2px;
  font-size: 10px;
}

.browser-tab-btn {
  border: none;
  background: none;
  padding: 3px 10px;
  cursor: pointer;
  color: var(--bauhaus-fg);
  font-size: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

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

.browser-content {
  flex: 1;
  background: #111;
  display: flex;
  position: relative;
  min-height: 0;
}

/* Meet UI inside browser 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: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: #3c4043;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-sans);
}

.gmeet-caption {
  font-size: 11px;
  color: #9ca3af;
  background: rgba(0,0,0,0.4);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 500;
}

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

.gmeet-ctrl-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  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 Panel */
.mock-hud-panel,
.mock-chat-panel {
  position: absolute;
  right: 12px;
  top: 12px;
  bottom: 12px;
  width: 220px;
  background: #1e1f20;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  text-align: left;
  font-family: var(--font-sans);
}

.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: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

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

.mock-hud-count {
  font-size: 9px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

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

.mock-hud-btn {
  height: 34px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  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: 8px 14px;
  font-size: 8.5px;
  color: #9ca3af;
}

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

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

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

.mock-chat-close {
  font-size: 16px !important;
  color: #9aa0a6;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

.mock-chat-toggle {
  width: 26px;
  height: 14px;
  background: #3c4043;
  border-radius: 7px;
  position: relative;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

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

.mock-chat-banner {
  background: #2d2f31;
  border-radius: 6px;
  padding: 8px 10px;
  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: 6px;
  color: #e8eaed;
}

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

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

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

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

.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: 5px 8px;
  font-size: 10px;
  line-height: 1.4;
  max-width: 85%;
  color: #fff;
}

.mock-msg-bubble.grey {
  background: #2e3033;
  border-radius: 2px 10px 10px 10px;
}

.mock-msg-bubble.dark-blue {
  background: #0e5a6a;
  border-radius: 10px 10px 2px 10px;
}

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

.mock-msg-badge {
  background: #fff;
  color: #1a73e8;
  border: 1px solid #1a73e8;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

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

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

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

/* Instruction banner */
.mockup-instruction-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bauhaus-yellow);
  border: var(--border-med);
  box-shadow: var(--shadow-sm);
  padding: 12px 24px;
  margin: 32px auto 0 auto;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  line-height: 1.3;
  position: relative;
  z-index: 3;
}

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

.instruction-text strong {
  text-transform: uppercase;
}

/* ========== STATS STRIP ========== */
.stats-strip {
  background: var(--bauhaus-yellow);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  border-right: var(--border-med);
}

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

.stat-number {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--bauhaus-fg);
  text-transform: uppercase;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--bauhaus-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== FEATURES SECTION ========== */
.features {
  padding: 96px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--bauhaus-fg);
  margin-bottom: 16px;
}

.section-header h2 span {
  color: var(--bauhaus-blue);
}

.section-header p {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--bauhaus-fg);
  max-width: 560px;
  margin: 0 auto;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bauhaus-white);
  border: var(--border-thick);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 0px 0px #121212;
}

.feature-geo {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
}

.feature-geo:nth-child(1) { background: var(--bauhaus-red); }
.feature-geo:nth-child(2) { background: var(--bauhaus-blue); border-radius: var(--radius-full); }
.feature-geo:nth-child(3) { background: var(--bauhaus-yellow); }

.feature-card h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--bauhaus-fg);
}

.feature-card p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bauhaus-fg);
  opacity: 0.8;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-med);
  background: var(--bauhaus-bg);
  font-size: 24px;
  color: var(--bauhaus-fg);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 96px 0;
  border-top: var(--border-thick);
}

.faq-container {
  max-width: 780px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bauhaus-white);
  border: var(--border-thick);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: var(--bauhaus-fg);
  user-select: none;
  transition: var(--transition-fast);
  background: var(--bauhaus-white);
}

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

.faq-icon {
  font-size: 20px !important;
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
  background: #FFF9C4;
  border-top: var(--border-thick);
}

.faq-answer-content {
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bauhaus-fg);
}

/* ========== DOWNLOAD SECTION ========== */
.download-hub {
  padding: 96px 0;
  background: var(--bauhaus-red);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
}

.download-hub .section-header h2 {
  color: var(--bauhaus-white);
}

.download-hub .section-header h2 span {
  color: var(--bauhaus-yellow);
}

.download-hub .section-header p {
  color: rgba(255,255,255,0.85);
}

.downloads-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.store-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bauhaus-white);
  border: var(--border-thick);
  box-shadow: var(--shadow-sm);
  padding: 16px 24px;
  transition: var(--transition-fast);
  flex-wrap: wrap;
  gap: 16px;
  text-decoration: none;
}

.store-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.store-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-med);
  background: var(--bauhaus-bg);
}

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

.store-name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--bauhaus-fg);
}

.store-meta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--bauhaus-fg);
  opacity: 0.7;
}

.get-store-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bauhaus-yellow);
  color: var(--bauhaus-fg);
  padding: 10px 20px;
  border: var(--border-med);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  line-height: 1;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.get-store-btn:hover {
  box-shadow: var(--shadow-md);
  background: var(--bauhaus-bg);
}

.get-store-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.coming-soon-badge {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bauhaus-bg);
  color: var(--bauhaus-fg);
  padding: 10px 20px;
  border: var(--border-med);
}

/* ========== FOOTER ========== */
footer {
  background: var(--bauhaus-fg);
  padding: 48px 0;
  text-align: center;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.7);
  border-top: var(--border-thick);
  border-color: var(--bauhaus-yellow);
}

footer p {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

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

.footer-link {
  color: var(--bauhaus-white);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--bauhaus-yellow);
}

/* ========== REVEAL ANIMATIONS ========== */
.feature-card,
.store-row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out,
              transform 0.8s ease-out;
}

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

.faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out,
              transform 0.6s ease-out;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 30px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-right {
    min-height: 360px;
  }
  .grid-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 0 0 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-left {
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-right {
    min-height: 340px;
  }
  .hero-geo-circle {
    width: 140px;
    height: 140px;
    top: -30px;
    right: -30px;
  }
  .hero-geo-square {
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: -20px;
  }
  .hero-geo-triangle-wrapper {
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
  }
  .hero-geo-triangle {
    border-left-width: 35px;
    border-right-width: 35px;
    border-bottom-width: 60px;
  }
  .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: var(--border-med);
  }
  .stat-number {
    font-size: 36px;
  }
  .features {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .grid-features {
    grid-template-columns: 1fr;
  }
  .faq-section {
    padding: 60px 0;
  }
  .download-hub {
    padding: 60px 0;
  }
  .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: 20px;
    flex-wrap: wrap;
  }
  .mock-hud-panel,
  .mock-chat-panel {
    width: 140px;
    right: 6px;
    top: 6px;
    bottom: 6px;
    border-radius: 6px;
  }
  .mock-hud-header,
  .mock-chat-header {
    padding: 6px 8px;
  }
  .mock-hud-title,
  .mock-chat-title {
    font-size: 10px;
  }
  .mock-hud-body {
    padding: 8px;
    gap: 6px;
  }
  .mock-hud-btn {
    height: 28px;
    font-size: 9px;
  }
  .mock-hud-footer {
    padding: 4px 8px;
    font-size: 7px;
  }
  .mock-chat-body {
    padding: 6px;
    gap: 6px;
  }
  .mock-chat-banner {
    padding: 6px;
  }
  .mock-chat-list {
    gap: 6px;
  }
  .mock-msg-bubble {
    padding: 4px 6px;
    font-size: 8.5px;
  }
  .mock-chat-footer {
    height: 26px;
    border-radius: 13px;
    padding: 0 8px;
    margin: 4px 6px 6px 6px;
  }
}

@media (max-width: 600px) {
  .nav-links .nav-link {
    display: none;
  }
  .nav-links {
    gap: 12px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 14px;
  }
  .hero-right {
    min-height: 280px;
  }
  .browser-content {
    min-height: 200px;
  }
  .gmeet-avatar {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  .gmeet-controls-bar {
    height: 32px;
    padding: 0 8px;
    gap: 6px;
  }
  .gmeet-ctrl-btn {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    padding: 16px;
  }
  .stat-item:not(:last-child) {
    border-bottom: var(--border-med);
  }
  .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero h1 {
    font-size: 22px;
  }
  .hero p {
    font-size: 13px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .feature-card {
    padding: 24px;
  }
  .notification-bar {
    font-size: 12px;
    padding: 8px 16px;
  }
  footer {
    padding: 32px 0;
  }
}
