/* ===========================
   clever-IoT — Design System
   =========================== */

:root {
  --bg-dark: #06101c;
  --bg-dark-2: #08121f;
  --bg-dark-3: #0d1a2e;
  --bg-light: #f4f7fb;
  --bg-white: #ffffff;
  --accent: #4fc3f7;
  --accent-2: #0080cc;
  --accent-glow: rgba(79, 195, 247, 0.18);
  --text-primary: #1a2b3c;
  --text-secondary: #4a6070;
  --text-muted: #7a8f9e;
  --text-white: #ffffff;
  --text-white-dim: rgba(255,255,255,0.72);
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(26,43,60,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-white);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 16, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo img {
  height: 44px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  color: var(--text-white-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

nav a:hover {
  color: var(--text-white);
  background: var(--border-dark);
}

nav a.nav-cta {
  background: var(--accent-2);
  color: white;
  font-weight: 600;
  margin-left: 8px;
}

nav a.nav-cta:hover {
  background: #0070bb;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 28, 0.72);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 16, 28, 0.96) 0%,
    rgba(6, 16, 28, 0.85) 40%,
    rgba(6, 16, 28, 0.45) 70%,
    rgba(6, 16, 28, 0.2) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeUp 0.8s ease both;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hero-eyebrow span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79, 195, 247, 0.1);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(79, 195, 247, 0.25);
}

.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-white-dim);
  line-height: 1.6;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.25s both;
}

.btn-primary {
  background: var(--accent-2);
  color: white;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: #006dba;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* Hero Flow */
.hero-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.flow-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 110px;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.flow-item:hover {
  background: rgba(79, 195, 247, 0.1);
  border-color: rgba(79, 195, 247, 0.3);
}

.flow-icon-wrap {
  color: var(--accent);
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
}

.flow-label {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.01em;
}

.flow-sub {
  font-size: 11px;
  color: var(--text-white-dim);
  margin-top: 2px;
}

.flow-connector {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  background: rgba(79, 195, 247, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  animation: fadeUp 0.8s ease 0.35s both;
}

/* ===== SHARED SECTION STYLES ===== */
section {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* ===== PROBLEM ===== */
.section-problem {
  background: var(--bg-light);
}

.section-problem h2 {
  max-width: 620px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.problem-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #fff5f5;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e05252;
}

.problem-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.problem-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== SOLUTION ===== */
.section-solution {
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  border-color: rgba(0, 128, 204, 0.25);
  box-shadow: 0 6px 24px rgba(0, 128, 204, 0.07);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  opacity: 0.7;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== BENEFITS ===== */
.section-benefits {
  background: var(--bg-dark-2);
}

.section-benefits .section-label {
  color: var(--accent);
}

.section-benefits h2 {
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: background 0.25s, border-color 0.25s;
}

.benefit-card:hover {
  background: rgba(79, 195, 247, 0.07);
  border-color: rgba(79, 195, 247, 0.2);
}

.benefit-large {
  grid-column: span 1;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(79, 195, 247, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-white-dim);
  line-height: 1.7;
}

.benefit-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79, 195, 247, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 16px;
}

/* ===== DASHBOARD ===== */
.section-dashboard {
  background: var(--bg-light);
  overflow: hidden;
}

.dashboard-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.dashboard-text h2 {
  margin-bottom: 16px;
}

.dashboard-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.dashboard-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.dashboard-features li svg {
  color: var(--accent-2);
  flex-shrink: 0;
}

/* Dashboard Mockup */
.dashboard-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(6, 16, 28, 0.18), 0 4px 16px rgba(6, 16, 28, 0.1);
  border: 1px solid var(--border-light);
}

.mockup-bar {
  background: var(--bg-dark-3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-block;
}

.mockup-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-left: 8px;
}

.mockup-body {
  display: flex;
  background: #0d1826;
  min-height: 280px;
}

.mockup-sidebar {
  width: 130px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  border-right: 1px solid var(--border-dark);
}

.sidebar-item {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 8px 16px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.sidebar-item.active {
  color: var(--accent);
  background: rgba(79, 195, 247, 0.08);
  border-left: 2px solid var(--accent);
}

.sidebar-item:hover:not(.active) {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
}

.mockup-main {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.mockup-table {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 11px;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 0.8fr 1.2fr;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10px;
  border-bottom: 1px solid var(--border-dark);
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 0.8fr 1.2fr;
  padding: 9px 12px;
  color: rgba(255,255,255,0.65);
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: rgba(255,255,255,0.03);
}

.status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status.ok {
  background: rgba(52, 199, 89, 0.15);
  color: #4cd964;
}

.status.warn {
  background: rgba(255, 149, 0, 0.15);
  color: #ff9500;
}

.status.err {
  background: rgba(255, 59, 48, 0.15);
  color: #ff3b30;
}

/* ===== LIFECYCLE ===== */
.section-lifecycle {
  background: white;
}

.lifecycle-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 24px;
  max-width: 600px;
}

.lifecycle-track::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-2), var(--accent));
  opacity: 0.25;
}

.lifecycle-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.lc-dot {
  position: absolute;
  left: -24px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 2px solid white;
  box-shadow: 0 0 0 3px rgba(0, 128, 204, 0.15);
  flex-shrink: 0;
}

.lc-content {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  flex: 1;
}

.lifecycle-item:last-child .lc-content {
  border-bottom: none;
  padding-bottom: 0;
}

.lc-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.lc-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== USE CASES ===== */
.section-usecases {
  background: var(--bg-light);
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.usecase-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.usecase-card:hover {
  border-color: rgba(0, 128, 204, 0.2);
  box-shadow: 0 8px 28px rgba(0, 128, 204, 0.06);
  transform: translateY(-2px);
}

.usecase-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.usecase-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.usecase-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== PILOT ===== */
.section-pilot {
  background: var(--bg-dark-2);
}

.section-pilot .section-label {
  color: var(--accent);
}

.section-pilot h2 {
  color: white;
}

.section-pilot .section-intro {
  color: var(--text-white-dim);
}

.pilot-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 4px;
}

.pilot-card {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px;
}

.pilot-divider {
  display: flex;
  align-items: center;
  color: var(--accent);
  padding: 0 4px;
  flex-shrink: 0;
}

.pilot-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.pilot-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pilot-card p {
  font-size: 14px;
  color: var(--text-white-dim);
  line-height: 1.65;
}

.pilot-cta {
  background: rgba(79, 195, 247, 0.06);
  border: 1px solid rgba(79, 195, 247, 0.18);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.pilot-cta h3 {
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.pilot-cta p {
  font-size: 16px;
  color: var(--text-white-dim);
  margin-bottom: 28px;
}

.btn-large {
  padding: 16px 34px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
}

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

.footer-logo {
  height: 36px;
  margin-bottom: 10px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-mono);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-large {
    grid-column: span 1;
  }

  .dashboard-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dashboard-mockup {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .pilot-divider {
    display: none;
  }

  .pilot-steps {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-flow {
    gap: 6px;
  }

  .flow-item {
    min-width: 80px;
    padding: 10px 12px;
  }

  .flow-sub {
    display: none;
  }

  nav {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .table-header span:nth-child(2),
  .table-row span:nth-child(2) {
    display: none;
  }

  .table-header,
  .table-row {
    grid-template-columns: 2fr 0.8fr 1.2fr;
  }

  .mockup-sidebar {
    display: none;
  }
}
<<<<<<< HEAD
=======

/* ===== LEGAL PAGES ===== */
.legal-page {
  background: var(--bg-light);
  min-height: 100vh;
}

.legal-hero {
  background:
    radial-gradient(circle at top right, rgba(79, 195, 247, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--border-dark);
}

.legal-hero .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.legal-hero h1 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 12px;
}

.legal-hero p {
  max-width: 720px;
  font-size: 17px;
  color: var(--text-white-dim);
}

.legal-content {
  padding: 56px 0 80px;
}

.legal-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(6, 16, 28, 0.08);
  padding: 40px;
}

.legal-card + .legal-card {
  margin-top: 18px;
}

.legal-card h2 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.legal-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 26px 0 10px;
}

.legal-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-card strong {
  color: var(--text-primary);
}

.legal-card ul {
  margin: 8px 0 18px 20px;
}

.legal-card li {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.legal-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.18);
  color: var(--text-primary);
  font-size: 14px;
}

.legal-card a {
  color: var(--accent-2);
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

/* ===== FOOTER: SUBTILE LEGAL LINKS ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-legal a {
  position: relative;
  font-size: 12px;
  color: rgba(255,255,255,0.34);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0 10px;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.78);
}

.footer-legal a + a::before {
  content: "|";
  position: absolute;
  left: -2px;
  color: rgba(255,255,255,0.18);
}

@media (max-width: 900px) {
  .legal-hero {
    padding: 100px 0 44px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-content {
    padding: 36px 0 56px;
  }

  .legal-card {
    padding: 26px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .legal-hero h1 {
    font-size: 31px;
  }

  .legal-hero p,
  .legal-card p,
  .legal-card li {
    font-size: 14px;
  }

  .legal-card h2 {
    font-size: 21px;
  }
}
>>>>>>> 437af4d (Update landingpage content and layout)
