/* ============================================
   Camm Studios — Clean, Premium Light Y2K Tech
   ============================================ */

:root {
  /* Colors - Clean Light Theme */
  --bg-main: #f5f6f8;
  /* Very light grey-blue background */
  --bg-panel: #ffffff;
  /* Pure white for panels */

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-hover: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(220, 225, 232, 0.8);

  /* Text */
  --text-dark: #111418;
  /* Near black for primary text */
  --text-muted: #5e6a78;
  /* Professional grey-blue for secondary text */
  --text-accent: #0f172a;
  /* Deep slate */

  /* Shadows */
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.08);

  /* Radii */
  --radius-pill: 100px;
  --radius-blob: 40px;
  --radius-card: 24px;

  --max-width: 1100px;
  --font-sans: 'Inter', 'Outfit', system-ui, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Very subtle background blur/gradient */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, var(--bg-main) 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: #e2e8f0;
  top: -200px;
  left: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: #f8fafc;
  bottom: -100px;
  right: -100px;
}

/* Typography / Text Effects */
.premium-text {
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--text-dark);
}

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

/* Glassmorphism & Panels */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.3s ease;
}

.white-panel {
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.pill {
  border-radius: var(--radius-pill);
}

.biomorphic {
  border-radius: var(--radius-card);
}

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

/* Nav */
.nav-wrapper {
  position: sticky;
  top: 24px;
  z-index: 100;
  padding-top: 24px;
  margin-bottom: 60px;
}

.nav {
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-dark);
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.app-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.nav-action .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  padding-top: 40px;
  padding-bottom: 100px;
}

.main-hero {
  padding: 80px 40px;
  border-radius: var(--radius-blob);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  background: white;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}

.main-hero p {
  font-size: 1.25rem;
  max-width: 500px;
  margin-bottom: 40px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-text-area {
  flex: 1;
}

.hero-visual-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-animated-showcase {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.showcase-core {
  position: relative;
  width: 280px;
  height: 380px;
  transform-style: preserve-3d;
  animation: float-showcase 8s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Shimmer effect inside the card */
.floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: shimmer 6s infinite;
}

.card-back {
  transform: translateZ(-80px) rotateY(-10deg) rotateX(5deg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: float-card-back 7s ease-in-out infinite alternate;
}

.card-mid {
  transform: translateZ(-30px) rotateY(-5deg) rotateX(2deg);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: float-card-mid 6s ease-in-out infinite alternate-reverse;
}

.card-front {
  transform: translateZ(40px) rotateY(5deg) scale(1.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: float-card-front 8s ease-in-out infinite alternate;
  background: rgba(255, 255, 255, 0.65);
}

.card-front::after {
  content: 'MANIFEST';
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  opacity: 0.7;
  transform: translateZ(20px);
}

.card-icon {
  width: 96px;
  height: 96px;
  background: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--glass-border);
  transform: translateZ(50px);
}

.card-icon img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

@keyframes float-showcase {

  0%,
  100% {
    transform: translateY(0) rotateX(5deg) rotateY(-15deg);
  }

  50% {
    transform: translateY(-15px) rotateX(10deg) rotateY(-5deg);
  }
}

@keyframes float-card-back {

  0%,
  100% {
    transform: translateZ(-80px) rotateY(-10deg) rotateX(5deg) translateY(0);
  }

  50% {
    transform: translateZ(-80px) rotateY(-8deg) rotateX(3deg) translateY(-10px);
  }
}

@keyframes float-card-mid {

  0%,
  100% {
    transform: translateZ(-30px) rotateY(-5deg) rotateX(2deg) translateY(0);
  }

  50% {
    transform: translateZ(-30px) rotateY(-7deg) rotateX(5deg) translateY(12px);
  }
}

@keyframes float-card-front {

  0%,
  100% {
    transform: translateZ(40px) rotateY(5deg) scale(1.05) translateY(0);
  }

  50% {
    transform: translateZ(50px) rotateY(2deg) scale(1.05) translateY(-5px);
  }
}

@keyframes shimmer {
  0% {
    left: -150%;
  }

  20%,
  100% {
    left: 200%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-black {
  background: var(--text-dark);
  color: white;
  border-radius: var(--radius-pill);
}

.btn-black:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: white;
  color: var(--text-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
}

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

/* Apps Section */
.apps-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
  gap: 32px;
}

.app-card {
  display: block;
  text-decoration: none;
  min-height: 380px;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.app-card-inner {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #f8fafc;
  border: 1px solid var(--glass-border);
}

.app-feature-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.app-info {
  margin-top: 40px;
}

.app-info h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.app-info p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.app-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.meta-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: white;
  transition: background 0.2s;
}

.meta-link:hover {
  background: #f8fafc;
}

/* Dashboard Style Card (Thermio inspired) */
.dash-card {
  grid-column: 1 / -1;
  /* Spans full width */
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-radius: var(--radius-blob);
}

.dash-widget {
  background: linear-gradient(135deg, #e2e2e2 0%, #ffffff 100%);
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  padding: 40px;
  box-shadow:
    -10px -10px 30px rgba(255, 255, 255, 0.8),
    10px 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.dash-screen {
  background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
  border-radius: 12px;
  padding: 40px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dash-temp {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  font-family: var(--font-display);
}

.dash-controls {
  display: flex;
  gap: 12px;
}

.dash-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f0f0;
  border: none;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-muted);
  cursor: pointer;
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 1), inset -2px -2px 5px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
  margin-top: 80px;
  padding-bottom: 40px;
}

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

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
}

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

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

/* Pages Header */
.page-header {
  padding-top: 80px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  font-weight: 500;
}

.page-header .subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* Legal and Support */
.legal-content {
  background: white;
  border-radius: var(--radius-card);
  padding: 60px;
  border: 1px solid var(--glass-border);
  margin-bottom: 80px;
  max-width: 800px;
}

.legal-content h2,
.legal-content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 600;
}

.legal-content h2 {
  font-size: 1.75rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 16px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.legal-content ul {
  padding-left: 24px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.support-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-card);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}

.support-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  background: #f8fafc;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.support-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.support-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.faq-section {
  background: white;
  padding: 60px;
  border-radius: var(--radius-card);
  border: 1px solid var(--glass-border);
  margin-bottom: 80px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.faq-item summary {
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-muted);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin-top: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* App Landing Page */
.app-landing-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 60px;
}

.app-landing-content {
  flex: 1;
}

.app-landing-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.app-landing-visual {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
}

.app-screenshot-placeholder {
  width: 260px;
  height: 520px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Features Grid */
.features-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 20px;
}

.feature-card {
  padding: 32px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

.legal-content a {
  color: var(--text-dark);
  text-decoration: underline;
}

/* ============================================
   Responsive — Tablet (768px)
   ============================================ */

@media (max-width: 768px) {

  /* Nav — show hamburger, hide links by default */
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hover);
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
    z-index: 200;
  }

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

  .nav-links li a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    background: #f8fafc;
  }

  .nav-wrapper {
    top: 12px;
    padding-top: 12px;
    margin-bottom: 32px;
  }

  .nav {
    padding: 12px 20px;
  }

  /* Hero */
  .hero {
    padding-top: 20px;
    padding-bottom: 48px;
  }

  .main-hero {
    padding: 40px 24px;
    border-radius: var(--radius-card);
  }

  .hero-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero-text {
    font-size: 2.25rem;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

  .main-hero p {
    margin: 0 auto 32px;
    font-size: 1.05rem;
  }

  .hero-visual-area {
    flex: none;
  }

  .hero-product-shot {
    max-width: 240px;
    aspect-ratio: 1;
  }

  /* Apps Section */
  .apps-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .apps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .app-card {
    min-height: auto;
  }

  .app-card-inner {
    padding: 28px;
  }

  .app-info {
    margin-top: 24px;
  }

  .app-info h3 {
    font-size: 1.35rem;
  }

  /* Page Header */
  .page-header {
    padding-top: 40px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header .subtitle {
    font-size: 1rem;
  }

  /* Legal Content */
  .legal-content {
    padding: 28px;
    margin-bottom: 40px;
  }

  .legal-content h2 {
    font-size: 1.35rem;
    margin-top: 32px;
  }

  .legal-content p,
  .legal-content ul {
    font-size: 0.95rem;
  }

  /* Support */
  .support-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .support-card {
    padding: 24px;
  }

  /* FAQ */
  .faq-section {
    padding: 28px;
    margin-bottom: 40px;
  }

  .faq-item summary {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    margin-top: 40px;
    padding-bottom: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-card);
  }

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

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer p {
    font-size: 0.8rem;
  }

  /* App Landing Page */
  .app-landing-hero {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .app-landing-visual {
    flex: none;
    width: 200px;
  }

  .app-screenshot-placeholder {
    width: 200px;
    height: 400px;
  }

  .app-landing-links {
    justify-content: center;
  }

  .app-landing-content .hero-text {
    font-size: 2.25rem;
  }

  /* Features */
  .features-section {
    padding-top: 32px;
    padding-bottom: 48px;
  }

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

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 0.825rem;
  }

  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}

/* ============================================
   Responsive — Small Mobile (480px)
   ============================================ */

@media (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 12px;
    padding-bottom: 32px;
  }

  .main-hero {
    padding: 32px 20px;
  }

  .hero-text {
    font-size: 1.85rem;
  }

  .main-hero p {
    font-size: 0.95rem;
  }

  .hero-product-shot {
    max-width: 180px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .app-card-inner {
    padding: 24px;
  }

  .app-info h3 {
    font-size: 1.2rem;
  }

  .page-header h1 {
    font-size: 1.65rem;
  }

  .legal-content {
    padding: 20px;
  }

  .legal-content h2 {
    font-size: 1.2rem;
  }

  .faq-section {
    padding: 20px;
  }

  .support-card {
    padding: 20px;
  }

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

  .app-landing-hero {
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .app-landing-content .hero-text {
    font-size: 1.85rem;
  }

  .app-landing-visual {
    width: 160px;
  }

  .app-screenshot-placeholder {
    width: 160px;
    height: 320px;
  }

  .app-landing-links {
    gap: 8px;
  }

  .meta-link {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: 100%;
  }

  .btn-outline {
    width: auto;
  }

  .footer-inner {
    padding: 20px 16px;
  }

  .footer-links {
    gap: 12px;
  }
}