/* Premium Design System for SpeakSimple Marketing */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Slate Premium Color Palette */
  --bg-main: #0b0f19;
  --bg-card: rgba(23, 29, 43, 0.6);
  --bg-card-hover: rgba(30, 39, 57, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --primary: #0ea5e9;
  --primary-glow: rgba(14, 165, 233, 0.25);
  --brand-gradient: linear-gradient(135deg, #00f5d4, #0ea5e9, #8b5cf6);
  --warning: #fbbf24;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

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

/* --- Premium Glass Cards --- */
.glass-premium {
  background: radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 100%), var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-premium:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 12px 30px -10px rgba(14, 165, 233, 0.15);
  background: var(--bg-card-hover);
}

/* --- Sticky Navigation Bar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: white;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

/* --- Hero Section --- */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 36px auto;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

/* --- App Mockup / Screenshot Frame --- */
.mockup-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.mockup-frame {
  background: #1e293b;
  border: 8px solid #334155;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.mockup-screen {
  width: 100%;
  height: auto;
  background: #0b0f19;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  height: 44px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.mockup-title {
  margin: 0 auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Render static visual replica of app grids */
.mockup-body {
  width: 100%;
  aspect-ratio: 1024 / 769;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #000;
  position: relative;
  overflow: hidden;
}

.mockup-speech-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  background: #111827;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-height: 52px;
}

.mockup-speech-tokens {
  flex: 1;
  display: flex;
  gap: 6px;
}

.m-token {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.m-action-btns {
  display: flex;
  gap: 6px;
}

.m-action-btn {
  background: #1f2937;
  border: none;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.m-speak-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 32px;
  background: #fbbf24;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: default;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 8px;
  flex: 1;
}

.mockup-card {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 0.6rem;
  font-weight: 800;
  cursor: default;
  transition: none;
  border-width: 2px;
  border-style: solid;
}

.mockup-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 4px;
  stroke-width: 2.2;
}

/* Folder specific style */
.mockup-card.folder {
  background: rgba(23, 29, 43, 0.9);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.mockup-card.folder svg {
  color: #fbbf24;
}

.mockup-nav-tabs {
  height: 44px;
  background: #111827;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 -16px -16px -16px;
}

.m-nav-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.m-nav-tab.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  border: 1px solid var(--border-color);
}

/* --- Section Formatting --- */
.section {
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 54px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- About Grid --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  padding: 32px;
  text-align: left;
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

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

.about-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* --- Instructions Flow --- */
.steps-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 36px;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 15px;
  width: 2px;
  height: calc(100% - 16px);
  background: var(--border-color);
}

.step-item {
  position: relative;
  margin-bottom: 40px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-badge {
  position: absolute;
  top: 4px;
  left: -36px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0f172a;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
}

.step-card {
  padding: 24px;
}

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

.step-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* --- FAQ Accordion --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease;
}

.faq-trigger:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-arrow {
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-content {
  border-top: 1px solid var(--border-color);
}

.faq-content-inner {
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-content-inner p {
  margin-bottom: 12px;
}

.faq-content-inner p:last-child {
  margin-bottom: 0;
}

/* --- Pricing Section --- */
.pricing-wrapper {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

.pricing-card {
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-gradient);
}

.price-tag {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 20px 0;
}

.price-tag span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

/* --- Footer --- */
.footer {
  padding: 48px 0;
  background: #05070c;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-logo {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-logo span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* --- Media Queries --- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

/* --- Hamburger Button --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
  z-index: 1100;
}

.hamburger:hover {
  background: rgba(255,255,255,0.08);
}

.hamburger svg {
  display: block;
  color: var(--text-primary);
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-color);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 88px 28px 40px;
  gap: 4px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s;
}

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

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .mobile-nav-cta {
  margin-top: 20px;
  display: block;
  text-align: center;
  background: var(--primary);
  color: white !important;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  border-bottom: none !important;
  letter-spacing: 0.04em;
}

.mobile-nav .mobile-nav-cta:hover {
  opacity: 0.9;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  pointer-events: none;
}

.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
  }


  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-title {
    font-size: 2.1rem;
  }
}

/* --- Instructions Main Tabs --- */
.instruction-main-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.instruction-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.instruction-tab-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.instruction-tab-btn.active {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
}

.instruction-content {
  display: none;
}

.instruction-content.active {
  display: block;
}

/* --- Install Simulator --- */
.install-simulator-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
}

.simulator-device-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.sim-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sim-tab-btn:hover,
.sim-tab-btn.active {
  background: var(--text-primary);
  color: var(--bg-main);
  border-color: var(--text-primary);
}

.simulator-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.simulator-device-col {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}

.sim-device {
  display: none;
  width: 100%;
}

.sim-device.active {
  display: block;
}

/* Device Mockups */
.phone-frame {
  width: 250px;
  height: 520px;
  border: 10px solid #1e293b;
  border-radius: 32px;
  background: #000;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  margin: 0 auto;
}

.phone-speaker {
  width: 50px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

.tablet-frame {
  width: 520px;
  height: 390px;
  border: 12px solid #1e293b;
  border-radius: 20px;
  background: #000;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  margin: 0 auto;
}

.tablet-camera {
  width: 5px;
  height: 5px;
  background: #334155;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.tablet-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

.sim-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Pulse Dot */
.sim-pulse-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  background: #0ea5e9;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 0 0 rgba(14, 165, 233, 0.4);
  animation: pulse-dot-anim 1.5s infinite;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

@keyframes pulse-dot-anim {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.8);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(14, 165, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

/* Steps Column */
.simulator-steps-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.simulator-os-toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: 8px;
  gap: 4px;
}

.os-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.os-btn:hover {
  color: var(--text-primary);
}

.os-btn.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  border: 1px solid var(--border-color);
}

.sim-steps-list {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.sim-steps-list.active {
  display: flex;
}

.sim-step {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.25s ease;
}

.sim-step:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

.sim-step.active {
  background: rgba(14, 165, 233, 0.06);
  border-color: rgba(14, 165, 233, 0.2);
}

.sim-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.sim-step.active .step-num {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.sim-step .step-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
  transition: color 0.25s ease;
}

.sim-step.active .step-text h4 {
  color: var(--primary);
}

.sim-step .step-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.badge-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 900px) {
  .simulator-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .simulator-device-col {
    min-height: auto;
  }
}

