/* =============================================
   OMNICAST STUDIO — Marketing Website Styles
   Dark broadcast theme with teal accent
   ============================================= */

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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-elevated: #1e1e1e;

  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-tertiary: #666666;
  --text-muted: #444444;

  --accent: #14b8a6;
  --accent-hover: #0d9488;
  --accent-subtle: rgba(20, 184, 166, 0.1);
  --accent-glow: rgba(20, 184, 166, 0.25);

  --blue: #3b82f6;
  --blue-subtle: rgba(59, 130, 246, 0.1);

  --border: #222222;
  --border-light: #2a2a2a;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(20, 184, 166, 0.15);

  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
    'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  --nav-height: 64px;
  --container-width: 1200px;
  --container-padding: 24px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}


/* ----- Utility Classes ----- */
.link {
  color: var(--accent);
  transition: color 0.2s;
}

.link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}


/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #fff;
  box-shadow: 0 2px 12px rgba(20, 184, 166, 0.3);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn--secondary:hover {
  background: #252525;
  border-color: #333;
}

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

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

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

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


/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.3s, background 0.3s;
}

.nav--scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 10, 0.95);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav__logo-icon {
  display: flex;
  align-items: center;
}

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

.nav__link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

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

.nav__link--active {
  color: var(--text-primary);
}

.nav__link--cta {
  color: var(--accent);
  font-weight: 600;
}

.nav__link--cta:hover {
  background: var(--accent-subtle);
  color: var(--accent);
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* =============================================
   SECTION COMMON
   ============================================= */
.section__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) var(--container-padding) 60px;
  overflow: hidden;
}

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

.hero__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__title-gradient {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero__note {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* Hero Visual — Monitor Mockup */
.hero__visual {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero__monitor {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: var(--bg-card);
}

.hero__monitor-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.hero__monitor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
}

.hero__monitor-dot:nth-child(1) { background: #ff5f56; }
.hero__monitor-dot:nth-child(2) { background: #ffbd2e; }
.hero__monitor-dot:nth-child(3) { background: #27c93f; }

.hero__monitor-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-right: 42px;
}

.hero__monitor-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0d0d0d;
}

.hero__quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  width: 100%;
  height: 100%;
  padding: 2px;
}

.hero__quad-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.hero__quad-cell span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-mono);
}

.hero__monitor-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
}

.hero__rec-badge,
.hero__live-badge {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.hero__rec-badge {
  background: rgba(239, 68, 68, 0.8);
  color: white;
  animation: rec-pulse 2s ease-in-out infinite;
}

.hero__live-badge {
  background: rgba(20, 184, 166, 0.8);
  color: white;
}

@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 17px;
  font-weight: 650;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid rgba(20, 184, 166, 0.15);
}


/* =============================================
   SCREENSHOTS
   ============================================= */
.screenshots {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.screenshots::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.screenshots__carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.screenshots__track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.screenshots__slide {
  min-width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshots__frame {
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.screenshots__frame::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.9));
  pointer-events: none;
}

.screenshots__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshots__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.screenshots__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

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

.screenshots__btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.screenshots__dots {
  display: flex;
  gap: 8px;
}

.screenshots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s;
  cursor: pointer;
}

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


/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--border-light);
}

.pricing-card--pro {
  border-color: rgba(20, 184, 166, 0.3);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.04) 0%, var(--bg-card) 40%);
  box-shadow: 0 0 50px rgba(20, 184, 166, 0.08);
}

.pricing-card--pro:hover {
  border-color: rgba(20, 184, 166, 0.5);
  box-shadow: 0 0 60px rgba(20, 184, 166, 0.12);
}

.pricing-card__ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: white;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.pricing-card__amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card--pro .pricing-card__amount {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card__period {
  font-size: 16px;
  color: var(--text-secondary);
}

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

.pricing-card__features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.pricing-card__feature svg {
  flex-shrink: 0;
}

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


/* =============================================
   DOWNLOAD
   ============================================= */
.download {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.download__content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.download__content .section__title {
  margin-bottom: 12px;
}

.download__content .section__subtitle {
  margin-bottom: 40px;
}

.download__actions {
  margin-bottom: 28px;
}

.download__dmg-btn {
  margin-bottom: 16px;
  padding: 18px 40px;
  font-size: 18px;
}

.download__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
}

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

.download__license {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 60px 0 40px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 260px;
}

.footer__brand .nav__logo {
  margin-bottom: 12px;
}

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

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

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

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer__copy,
.footer__built {
  font-size: 13px;
  color: var(--text-tertiary);
}


/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__badge,
.hero__title,
.hero__subtitle,
.hero__actions,
.hero__note {
  animation: fade-in-up 0.7s ease-out both;
}

.hero__badge { animation-delay: 0.1s; }
.hero__title { animation-delay: 0.2s; }
.hero__subtitle { animation-delay: 0.35s; }
.hero__actions { animation-delay: 0.5s; }
.hero__note { animation-delay: 0.6s; }
.hero__visual { animation: fade-in-up 0.8s ease-out 0.7s both; }


/* =============================================
   RESPONSIVE — Tablet (768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 32px var(--container-padding);
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__links--open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 18px;
    padding: 14px 16px;
  }

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

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .hero__title {
    font-size: clamp(36px, 8vw, 52px);
  }

  .hero__visual {
    max-width: 100%;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__links {
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}


/* =============================================
   RESPONSIVE — Mobile (480px)
   ============================================= */
@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .feature-card {
    padding: 24px 20px;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .section__title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .pricing-card__amount {
    font-size: 40px;
  }

  .footer__links {
    flex-direction: column;
    gap: 28px;
  }

  .download__dmg-btn {
    width: 100%;
  }

  .download__meta {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__quad-cell span {
    font-size: 11px;
  }

  .screenshots__controls {
    gap: 12px;
  }
}
