@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------
   PROTOCOL MODERN DESIGN SYSTEM - CORE STYLES
   Sole Source of Truth: DESIGN.md
   -------------------------------------------------- */

:root {
  /* Colors */
  --background: #f9f9fd;
  --surface-card: #ffffff;
  --surface-dim: #f3f3f7;
  --surface-container: #ededf1;
  --surface-container-high: #e8e8ec;
  --surface-container-highest: #e2e2e6;
  
  --on-surface: #1a1c1f;
  --on-surface-variant: #3f484b;
  --on-surface-muted: #3c494c;
  
  /* Accent Colors */
  --primary: #004e5a;
  --primary-container: #006877;
  --on-primary: #ffffff;
  
  --secondary: #994700;
  --secondary-container: #ff9650;
  
  --tertiary: #00531e;
  --tertiary-container: #006e2a;
  
  --error: #ba1a1a;
  
  /* Outlines & Borders */
  --outline-thin: #bbc9cc;
  --outline-variant: #bec8cb;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Font */
  --font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Shadows (limited per DESIGN.md elevation rules) */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* RESET & BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--background);
  color: var(--on-surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--on-surface);
}

.display-sm {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.headline-md {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.body-lg {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.body-sm {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.label-caps {
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-micro {
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* UTILITIES */
.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  border-bottom: 1px solid var(--outline-thin);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-dot {
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
}

.badge-status {
  background-color: var(--surface-dim);
  color: var(--primary-container);
  border: 1px solid var(--outline-thin);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--tertiary-container);
  border-radius: var(--radius-full);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* HERO SECTION */
.hero {
  padding: 64px 0 48px 0;
  text-align: center;
  background: radial-gradient(circle at top, rgba(0, 104, 119, 0.03) 0%, transparent 70%);
}

.hero-label {
  color: var(--secondary);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto 20px auto;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--on-surface-variant);
  max-width: 620px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

/* NEWSLETTER SIGNUP INPUT */
.newsletter-form-wrapper {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  background: var(--surface-card);
  border: 1px solid var(--outline-thin);
  border-radius: var(--radius-md);
  padding: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 78, 90, 0.1);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 8px 12px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--on-surface);
}

.newsletter-input::placeholder {
  color: #8fa0a3;
}

.newsletter-btn {
  background-color: var(--primary);
  color: var(--on-primary);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background-color: var(--primary-container);
}

.newsletter-btn:active {
  transform: scale(0.98);
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 4px 10px;
  background-color: rgba(153, 71, 0, 0.06);
  border: 1px dashed rgba(153, 71, 0, 0.25);
  border-radius: var(--radius-sm);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 600;
}

/* SUCCESS TOAST */
.success-toast {
  display: none;
  align-items: center;
  gap: 8px;
  background-color: #eaf6ec;
  border: 1px solid #b7e1c1;
  color: var(--tertiary);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  animation: slide-down 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MAIN GRID LAYOUT */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
  align-items: start;
}

@media (max-width: 960px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* LEFT COLUMN: FEATURES */
.features-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.intro-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-card h2 {
  font-size: 26px;
  color: var(--primary);
}

.intro-card p {
  font-size: 15px;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  background: var(--surface-card);
  border: 1px solid var(--outline-thin);
  border-radius: var(--radius-lg);
  display: flex;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.color-bar {
  width: 6px;
  flex-shrink: 0;
}

.color-bar.primary { background-color: var(--primary); }
.color-bar.secondary { background-color: var(--secondary); }
.color-bar.tertiary { background-color: var(--tertiary); }
.color-bar.muted { background-color: var(--on-surface-muted); }

.feature-content {
  padding: 18px 20px;
}

.feature-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.feature-title-row h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--on-surface);
}

.ai-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.ai-pill.primary { background-color: rgba(0, 78, 90, 0.08); color: var(--primary); border: 1px solid rgba(0, 78, 90, 0.15); }
.ai-pill.secondary { background-color: rgba(153, 71, 0, 0.08); color: var(--secondary); border: 1px solid rgba(153, 71, 0, 0.15); }
.ai-pill.tertiary { background-color: rgba(0, 83, 30, 0.08); color: var(--tertiary); border: 1px solid rgba(0, 83, 30, 0.15); }
.ai-pill.muted { background-color: rgba(60, 73, 76, 0.08); color: var(--on-surface-muted); border: 1px solid rgba(60, 73, 76, 0.15); }

.feature-text {
  font-size: 13.5px;
  color: var(--on-surface-variant);
  line-height: 1.5;
}

.feature-text strong {
  color: var(--on-surface);
}

.feature-bullets {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--on-surface-variant);
  line-height: 1.5;
  list-style: none !important;
  list-style-type: none !important;
}

.feature-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.75;
}

.feature-bullets ul {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 18px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-bullets ul li {
  padding-left: 14px;
  list-style: none !important;
  list-style-type: none !important;
}

.feature-bullets ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background-color: var(--outline-variant);
  opacity: 0.9;
}

/* RIGHT COLUMN: APP MOCKUP */
.mockup-col {
  position: sticky;
  top: 80px;
}

.mockup-frame {
  background: var(--surface-card);
  border: 1px solid var(--outline-thin);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

/* Simulated App Shell */
.app-header {
  background: var(--surface-card);
  border-bottom: 1px solid var(--outline-thin);
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  padding: 4px;
}

.hamburger-line {
  width: 14px;
  height: 1.5px;
  background-color: var(--on-surface-variant);
  border-radius: 1px;
}

.app-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-surface);
  display: flex;
  align-items: center;
  gap: 4px;
}

.app-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-date {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
}

.icon-button {
  background: transparent;
  border: none;
  color: var(--on-surface-variant);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  position: relative;
}

.icon-dot {
  width: 5px;
  height: 5px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
  position: absolute;
  top: 2px;
  right: 2px;
}

/* AI AGENT AVATAR IN MOCKUP HEADER */
.maxtor-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 104, 119, 0.06);
  border: 1px solid rgba(0, 104, 119, 0.2);
  border-radius: var(--radius-sm);
  padding: 3px 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.maxtor-trigger:hover {
  background: rgba(0, 104, 119, 0.1);
}

.maxtor-avatar-circle {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background-color: var(--primary-container);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0.5px solid var(--outline-thin);
}

.maxtor-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maxtor-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary-container);
  text-transform: uppercase;
}

/* Mockup Content Panels */
.app-content {
  background: var(--surface-dim);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Dashboard Module Card */
.mockup-module {
  background: var(--surface-card);
  border: 1px solid var(--outline-thin);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.module-header {
  border-bottom: 1px solid var(--outline-thin);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-card);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.module-header:hover {
  background-color: var(--surface-dim);
}

.module-title-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.module-title-wrap h4 {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-title-wrap h4.cal-title { color: var(--primary); }
.module-title-wrap h4.board-title { color: var(--secondary); }
.module-title-wrap h4.chat-title { color: var(--primary); }
.module-title-wrap h4.news-title { color: var(--tertiary); }

.module-chevron {
  display: flex;
  align-items: center;
  color: var(--on-surface-muted);
  transition: transform 0.3s ease;
}

.mockup-module.collapsed .module-chevron {
  transform: rotate(180deg);
}

.module-body {
  padding: 10px 12px;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-module.collapsed .module-body {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#modLists .module-body {
  padding: 8px 10px;
}

#modChat .module-body {
  padding: 8px;
}

/* Mockup: Calendar Grid */
.mini-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-cell {
  background-color: var(--surface-dim);
  border: 1px solid var(--outline-thin);
  border-radius: var(--radius-sm);
  padding: 4px 2px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cal-day-cell:hover {
  background-color: var(--surface-container);
  border-color: var(--primary);
}

.cal-day-label {
  font-size: 8px;
  font-weight: 700;
  color: var(--on-surface-muted);
  margin-bottom: 2px;
}

.cal-day-number {
  font-size: 11px;
  font-weight: 700;
}

.cal-day-cell.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

.cal-day-cell.active .cal-day-label {
  color: rgba(255,255,255,0.7);
}

.cal-event-preview {
  margin-top: 8px;
  background-color: var(--surface-card);
  border: 1px solid var(--outline-thin);
  border-radius: var(--radius-sm);
  display: flex;
  overflow: hidden;
}

.cal-event-sidebar {
  width: 4px;
  background-color: var(--primary);
}

.cal-event-details {
  padding: 6px 10px;
}

.cal-event-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--on-surface);
}

.cal-event-meta {
  font-size: 9px;
  color: var(--on-surface-variant);
  margin-top: 2px;
  display: flex;
  gap: 8px;
}

/* Mockup: 2-column modules */
.mockup-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Mockup: Lists Card */
.mockup-list-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-list-item {
  border-bottom: 1px solid var(--outline-thin);
  padding-bottom: 8px;
}

.mockup-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.list-header {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 2px 0;
  transition: opacity 0.2s ease;
}

.list-header:hover {
  opacity: 0.8;
}

.list-chevron {
  display: flex;
  align-items: center;
  color: var(--on-surface-muted);
  transition: transform 0.25s ease;
}

.mockup-list-item.collapsed .list-chevron {
  transform: rotate(180deg);
}

.list-count-badge {
  font-size: 8px;
  background-color: var(--surface-container);
  color: var(--on-surface-variant);
  padding: 1px 4px;
  border-radius: 3px;
}

.list-preview-items {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 2px;
  max-height: 180px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.mockup-list-item.collapsed .list-preview-items {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.list-preview-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: var(--on-surface-variant);
  cursor: pointer;
  padding: 2px 0;
}

.list-checkbox {
  width: 9px;
  height: 9px;
  border: 1px solid var(--outline-thin);
  border-radius: 2px;
  flex-shrink: 0;
  background: var(--surface-card);
}

.list-checkbox.checked {
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  position: relative;
}

.list-checkbox.checked::after {
  content: '';
  position: absolute;
  top: 0.5px;
  left: 2px;
  width: 2.5px;
  height: 4.5px;
  border: solid white;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.list-item-text {
  transition: all 0.2s ease;
}

.list-item-text.completed {
  text-decoration: line-through;
  color: var(--on-surface-muted);
}

/* Mockup: Chat Messages */
.mockup-chat-log {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 90px;
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 90%;
  padding: 6px 10px;
  border-radius: var(--radius-md);
  font-size: 10.5px;
  line-height: 1.4;
}

.chat-bubble.received {
  background-color: var(--surface-dim);
  border: 1px solid var(--outline-thin);
  color: var(--on-surface);
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.chat-bubble.sent {
  background-color: var(--primary);
  color: var(--on-primary);
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.chat-sender {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.chat-sender.maxtor {
  color: var(--primary-container);
}

.chat-bubble.received.ai-proposal {
  border-color: var(--secondary-container);
  background-color: rgba(255, 150, 80, 0.05);
}

.chat-proposal-actions {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.chat-action-btn {
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  border-radius: 3px;
  border: 1px solid var(--outline-thin);
  background: var(--surface-card);
  cursor: pointer;
}

.chat-action-btn.confirm {
  background-color: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}

/* Mockup: Chat Drawer Overlay */
.mockup-chat-drawer {
  position: absolute;
  top: 48px; /* Below app-header */
  right: 0;
  bottom: 0;
  width: 250px;
  background: var(--surface-card);
  border-left: 1px solid var(--outline-thin);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.03);
}

.mockup-chat-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  border-bottom: 1px solid var(--outline-thin);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-card);
}

.drawer-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--on-surface-muted);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close:hover {
  color: var(--error);
}

.drawer-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  background: var(--surface-dim);
}

.drawer-input-area {
  border-top: 1px solid var(--outline-thin);
  padding: 10px 12px;
  background-color: var(--surface-card);
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-icon-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: var(--on-surface-variant);
}

.input-icon-btn:hover {
  background-color: var(--surface-dim);
  border-color: var(--outline-thin);
}

.drawer-chat-input {
  flex: 1;
  height: 32px;
  border: 1px solid var(--primary-container);
  border-radius: var(--radius-sm);
  padding: 0 10px;
  font-family: var(--font-family);
  font-size: 11px;
  outline: none;
  background-color: var(--surface-card);
  color: var(--on-surface);
  transition: border-color 0.2s ease;
}

.drawer-chat-input:focus {
  border-color: var(--primary);
}

.drawer-chat-input::placeholder {
  color: #8fa0a3;
}

.drawer-submit-btn {
  width: 32px;
  height: 32px;
  background-color: var(--primary-container);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.drawer-submit-btn:hover {
  background-color: var(--primary);
}

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

/* Mockup: News feed */
.news-item-mock {
  display: flex;
  gap: 8px;
}

.news-accent-bar {
  width: 2.5px;
  background-color: var(--tertiary);
  border-radius: 2px;
  flex-shrink: 0;
}

.news-mock-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--on-surface);
}

.news-mock-desc {
  font-size: 10px;
  color: var(--on-surface-variant);
  margin-top: 2px;
  line-height: 1.4;
}

/* SLICKAI MANDATE */
.mandate-section {
  padding: 48px 0;
  background-color: var(--surface-dim);
  border-top: 1px solid var(--outline-thin);
  border-bottom: 1px solid var(--outline-thin);
  text-align: center;
}

.mandate-content {
  max-width: 680px;
  margin: 0 auto;
}

.mandate-content h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.mandate-content p {
  font-size: 15px;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* BOTTOM CONVERSION CARD */
.bottom-cta {
  padding: 64px 0;
  text-align: center;
}

.cta-card {
  background: var(--surface-card);
  border: 1px solid var(--outline-thin);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-card h2 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 15px;
  color: var(--on-surface-variant);
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* FOOTER */
footer {
  margin-top: auto;
  border-top: 1px solid var(--outline-thin);
  background-color: var(--surface-card);
  padding: 32px 0;
  font-size: 12.5px;
  color: var(--on-surface-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--on-surface-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

/* SCROLL ANIMATIONS (Progressive Enhancement) */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fade-in-up {
      from {
        opacity: 0;
        transform: translateY(32px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .scroll-reveal {
      animation: fade-in-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
  }
}

/* JS Fallback Reveal style */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
