/* ==========================================================================
   Hably Website — Nordic Blue Theme
   ========================================================================== */

/* -- Tokens -- */
:root {
  --bg-primary: #111418;
  --bg-secondary: #1a1e24;
  --bg-card: #1a1e24;
  --bg-card-hover: #24282e;
  --bg-input: #0c0e12;

  --text-primary: #e2e6ec;
  --text-secondary: #96a0ae;
  --text-on-accent: #111418;

  --accent: #7e9dba;
  --accent-hover: #94b0c9;
  --accent-dim: rgba(126, 157, 186, 0.15);

  --border: #252a32;
  --border-hover: #384050;

  --shadow: rgba(0, 0, 0, 0.4);
  --shadow-lg: rgba(0, 0, 0, 0.55);

  --danger: #e74c3c;
  --success: #2ecc71;

  --nav-height: 64px;
  --container-width: 1180px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 32px);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* -- Container -- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px rgba(126, 157, 186, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* -- Navigation -- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(17, 20, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s;
}

/* -- Hero -- */
.hero {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(126, 157, 186, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.hero-glow--secondary {
  top: 100px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(94, 155, 213, 0.08) 0%, transparent 70%);
  filter: blur(80px);
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(126, 157, 186, 0.2);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.text-accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-screenshot {
  margin-top: 64px;
  position: relative;
}

.hero-screenshot-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 16px 64px var(--shadow-lg);
}

.feature-screenshot-img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* -- Hero Carousel -- */
.hero-carousel {
  margin-top: 64px;
  position: relative;
}

.carousel-track {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-slide {
  display: none;
  animation: carouselFadeIn 0.4s ease;
}

.carousel-slide.active {
  display: block;
}

@keyframes carouselFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* -- Screenshot Placeholders -- */
.screenshot-placeholder {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.screenshot-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(126, 157, 186, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.screenshot-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.screenshot-placeholder-inner span {
  font-size: 14px;
  font-weight: 500;
}

.screenshot-placeholder--sm {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
}

.ai-screenshot img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* -- Metrics -- */
.metrics {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* -- Section Headers -- */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* -- Features Grid -- */
.features {
  padding: 96px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow);
}

.feature-card--large {
  grid-column: span 1;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.feature-card--large .feature-screenshot {
  margin-top: auto;
  padding-top: 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

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

/* -- AI Section -- */
.ai-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ai-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.ai-content > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

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

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

/* -- Showcase -- */
.showcase {
  padding: 48px 0 96px;
}

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

.showcase-item {
  transition: transform 0.25s ease;
}

.showcase-item:hover {
  transform: translateY(-4px);
}

/* -- Privacy -- */
.privacy-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

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

.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  transition: all 0.25s ease;
}

.privacy-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow);
}

.privacy-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.privacy-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* -- Platforms -- */
.platforms {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.platforms-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.platform-card {
  transition: transform 0.25s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
}

.mobile-screenshots {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.mobile-screenshots a {
  width: 0;
  flex: 1 1 0;
  min-width: 0;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.mobile-screenshots a:hover {
  transform: scale(1.03);
}

.mobile-screenshots img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* -- Lightbox -- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  animation: lightboxFadeIn 0.25s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-img {
  max-height: 90vh;
  max-width: 90vw;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  cursor: default;
  animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 32px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

/* -- Waitlist -- */
.waitlist {
  padding: 96px 0;
}

.waitlist-inner {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
}

.waitlist-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(126, 157, 186, 0.1) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.waitlist-inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.waitlist-inner > p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.waitlist-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.waitlist-form input:focus {
  border-color: var(--accent);
}

.waitlist-message {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}

.waitlist-message.success {
  color: var(--success);
}

.waitlist-message.error {
  color: var(--danger);
}

.waitlist-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.6;
}

/* -- Footer -- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

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

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

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

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* -- Pricing Page -- */
.pricing-hero {
  padding: 160px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.pricing {
  padding: 32px 0 96px;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(126, 157, 186, 0.06) 0%, var(--bg-card) 40%);
}

.pricing-card--featured:hover {
  border-color: var(--accent-hover);
  box-shadow: 0 8px 40px rgba(126, 157, 186, 0.15);
}

.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-on-accent);
  background: var(--accent);
}

.pricing-card-header {
  margin-bottom: 32px;
}

.pricing-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}

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

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

.pricing-features-includes {
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
}

.pricing-asterisk {
  color: var(--accent);
  font-weight: 700;
}

.btn-pricing {
  width: 100%;
  text-align: center;
}

.pricing-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 40px;
}

.pricing-cta {
  padding: 0 0 96px;
}

/* -- Manifesto Page -- */
.manifesto-hero {
  padding: 160px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.manifesto {
  padding: 32px 0 96px;
}

.manifesto-content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.manifesto-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all 0.25s ease;
}

.manifesto-block:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px var(--shadow);
}

.manifesto-block h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--accent);
}

.manifesto-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.manifesto-commandments-subtitle {
  font-style: italic;
  margin-bottom: 24px !important;
  opacity: 0.7;
}

.manifesto-list {
  list-style: none;
  counter-reset: commandment;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.manifesto-list li {
  counter-increment: commandment;
  display: flex;
  gap: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  align-items: baseline;
}

.manifesto-list li::before {
  content: counter(commandment);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.manifesto-cta {
  padding: 0 0 96px;
}

/* -- Scroll Animations -- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--large {
    grid-row: span 1;
  }

  .ai-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid .showcase-item:last-child {
    grid-column: span 2;
    max-width: 60%;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(17, 20, 24, 0.97);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav .btn-sm {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 140px 0 60px;
  }

  .hero h1 {
    letter-spacing: -0.8px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid .showcase-item:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .platforms-row {
    grid-template-columns: 1fr;
  }

  .mobile-screenshots {
    gap: 8px;
  }

  .mobile-screenshots img {
    border-radius: var(--radius);
  }

  .waitlist-inner {
    padding: 56px 24px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

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

  .pricing-hero {
    padding: 130px 0 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-cta .waitlist-inner {
    padding: 56px 24px;
  }

  .manifesto-hero {
    padding: 130px 0 32px;
  }

  .manifesto-block {
    padding: 28px 20px;
  }

  .manifesto-cta .waitlist-inner {
    padding: 56px 24px;
  }
}
