@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

:root {
  font-family: "Inter", "Helvetica Neue", system-ui, -apple-system, sans-serif;
}

/* Dark Theme (default) */
:root,
[data-theme="dark"] {
  color-scheme: dark;

  /* Colors */
  --primary: #4A90E2;
  --primary-hover: #357ABD;
  --background: #1A1A1A;
  --surface: #252525;
  --surface-border: #333333;
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-tertiary: #9ca3af;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

  /* Effects */
  --glow-primary: rgba(74, 144, 226, 0.2);
  --overlay: rgba(255, 255, 255, 0.05);
}

/* Light Theme */
[data-theme="light"] {
  color-scheme: light;

  /* Colors */
  --primary: #357ABD;
  --primary-hover: #2c5f99;
  --background: #f5f5f7;
  --surface: #fafafa;
  --surface-border: #e5e5e7;
  --text-primary: #1a1a1a;
  --text-secondary: #3d3d3d;
  --text-tertiary: #6b6b6b;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.1);

  /* Effects */
  --glow-primary: rgba(53, 122, 189, 0.15);
  --overlay: rgba(0, 0, 0, 0.02);
}

:root {
  background-color: var(--background);
  color: var(--text-secondary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

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

body {
  min-height: 100vh;
  background: var(--background);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Page Structure */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.page::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at top right, rgba(74, 144, 226, 0.12), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .header {
  background: rgba(26, 26, 26, 0.9);
}

[data-theme="light"] .header {
  background: rgba(250, 250, 250, 0.9);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-weight: 500;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.header-cta {
  display: flex;
  gap: 12px;
}

main {
  flex: 1;
}

.footer-old {
  padding: 32px 64px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  background: #1f1f1f;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.logo-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary);
  border-radius: 50%;
  border-right-color: transparent;
  transform: rotate(-45deg) scale(1.1);
  animation: logo-spin 3s linear infinite;
}

@keyframes logo-spin {
  from {
    transform: rotate(-45deg) scale(1.1);
  }
  to {
    transform: rotate(315deg) scale(1.1);
  }
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.pricing-section {
  text-align: center;
}

.pricing-heading {
  max-width: 720px;
  margin: 0 auto 48px;
}

.pricing-heading h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  margin: 16px 0;
}

.pricing-heading .muted {
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
  text-align: left;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  padding: 28px;
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
}

[data-theme="dark"] .pricing-card:hover {
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .pricing-card:hover {
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.pricing-card.featured {
  border-color: var(--primary);
}

[data-theme="dark"] .pricing-card.featured {
  box-shadow: 0 0 0 1px rgba(74, 144, 226, 0.3);
}

[data-theme="light"] .pricing-card.featured {
  box-shadow: 0 0 0 1px rgba(53, 122, 189, 0.2);
}

.pricing-badge {
  position: absolute;
  top: 12px;
  left: 24px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.pricing-card__header {
  display: grid;
  gap: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-period {
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

.pricing-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-features {
  display: grid;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  margin-top: 2px;
}

.pricing-button {
  width: 100%;
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--text-primary);
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .header {
    position: static;
    top: auto;
    background-color: var(--background);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  }

  [data-theme="dark"] .header,
  [data-theme="light"] .header {
    background-color: var(--background);
  }

  [data-theme="light"] .header {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .header-container {
    align-items: flex-start;
    row-gap: 0.75rem;
  }

  .logo-wrapper {
    order: 1;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 0.75rem 0 0.25rem;
    border-top: 1px solid var(--surface-border);
  }
}

.status-indicator {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  .status-indicator {
    display: flex;
  }
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  transition: all 0.3s ease;
}

.status-dot.online {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.status-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.status-dot.checking {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.status-text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.button.primary {
  background: var(--primary);
  color: var(--text-primary);
  box-shadow: 0 1px 2px 0 rgba(74, 144, 226, 0.2), 0 0 20px rgba(74, 144, 226, 0.15);
}

.button.primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 12px 0 rgba(74, 144, 226, 0.3), 0 0 30px rgba(74, 144, 226, 0.2);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: #202020;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #2a2a2a;
}

/* Hero Section */
.hero {
  padding: 4rem 1.5rem 3rem;
  position: relative;
}

@media (min-width: 640px) {
  .hero {
    padding: 6rem 1.5rem 4rem;
  }
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.landing {
  min-height: 100vh;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
}

.landing-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #32d583;
  display: inline-block;
  transition: all 0.3s ease;
}

.status-dot.online {
  background: #32d583;
  box-shadow: 0 0 8px rgba(50, 213, 131, 0.6);
}

.status-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.status-dot.checking {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: var(--surface);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--text-tertiary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-button.active {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 0 10px var(--glow-primary);
}

.lang-button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.toggle-icon {
  color: var(--text-secondary);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.toggle-track {
  width: 40px;
  height: 20px;
  background: var(--surface);
  border-radius: 999px;
  position: relative;
  border: 1px solid var(--surface-border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--glow-primary);
  transform: translateX(20px);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.logo-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary);
  border-radius: 50%;
  border-right-color: transparent;
  transform: rotate(-45deg) scale(1.1);
  animation: logo-spin 3s linear infinite;
}

@keyframes logo-spin {
  from {
    transform: rotate(-45deg) scale(1.1);
  }
  to {
    transform: rotate(315deg) scale(1.1);
  }
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--text-primary);
}

.nav a:hover::after {
  width: 100%;
}

.logo-motion__ring {
  stroke-linecap: round;
  stroke-dasharray: 180 100;
  transform-origin: center;
  animation: logo-spin 4s linear infinite;
}

.hero-card ul {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.status-indicator {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  .status-indicator {
    display: flex;
  }
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  transition: all 0.3s ease;
}

.status-dot.online {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.status-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.status-dot.checking {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.status-text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.button.primary {
  background: var(--primary);
  color: var(--text-primary);
  box-shadow: 0 1px 2px 0 rgba(74, 144, 226, 0.2), 0 0 20px rgba(74, 144, 226, 0.15);
}

.button.primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 12px 0 rgba(74, 144, 226, 0.3), 0 0 30px rgba(74, 144, 226, 0.2);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Main Content */
main {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  padding: 4rem 1.5rem 3rem;
  position: relative;
}

@media (min-width: 640px) {
  .hero {
    padding: 6rem 1.5rem 4rem;
  }
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.subtext {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 1rem;
}

/* Hero Card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  transition: background 0.5s;
}

.hero-card:hover::before {
  background: rgba(74, 144, 226, 0.2);
}

.hero-card h3 {
  position: relative;
  z-index: 10;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-card ul {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 24px;
}

.card:hover {
  border-color: rgba(74, 144, 226, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 0 20px rgba(74, 144, 226, 0.1);
}

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-card .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Section */
.section {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section.highlight {
  background: rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .section {
    padding: 5rem 1.5rem;
  }
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}

.stat-grid {
  margin: 28px 0 32px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-tertiary);
}

.section-heading p {
  font-size: 1.125rem;
  color: var(--text-tertiary);
  max-width: 42rem;
  margin: 0 auto;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
  border-color: rgba(74, 144, 226, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 0 20px rgba(74, 144, 226, 0.1);
}

.card .icon-wrapper {
  height: 2.5rem;
  width: 2.5rem;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.card:hover .icon-wrapper {
  background: rgba(74, 144, 226, 0.2);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-tertiary);
}

/* CTA Strip */
.cta-strip {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cta-strip:hover {
  border-color: rgba(74, 144, 226, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(74, 144, 226, 0.1);
}

.full-width {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-strip {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem;
  }
}

.cta-strip h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cta-strip p {
  color: var(--text-tertiary);
  max-width: 32rem;
}

.cta-strip .button {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(74, 144, 226, 0.2);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--surface-border);
  padding: 3rem 1.5rem;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .footer {
  background: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .footer {
  background: rgba(255, 255, 255, 0.5);
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}

.footer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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