/*
  Responsive stylesheet for viewport-specific adjustments.
  Use this file for media queries and layout refinements across device sizes.
  Do not store customer data, CRM data, emails, secrets, or private company records here.
*/

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero,
  .split,
  .field-band,
  .experience-section,
  .technical-intro,
  .status-section,
  .preorder-section,
  .newsletter-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .workflow-grid,
  .technical-grid,
  .audience-grid,
  .cred-grid,
  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    gap: 10px;
    padding: 12px 14px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-actions .button.ghost {
    display: none;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    gap: 24px;
    padding: 34px 18px 52px;
  }

  .hero > picture {
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }

  .hero-inner {
    grid-column: auto;
    grid-row: auto;
    order: 1;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 2.85rem;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .price-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .price-strip > div {
    min-height: 70px;
    padding: 12px;
  }

  .price-strip strong {
    font-size: 1.25rem;
  }

  .price-strip p,
  .hero-status {
    font-size: 0.78rem;
  }

  .proof-band,
  .feature-grid,
  .workflow-grid,
  .technical-grid,
  .technical-highlights,
  .audience-grid,
  .cred-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card:not(:last-child)::after {
    display: none;
  }

  .proof-band {
    padding-bottom: 48px;
  }

  .proof-item {
    min-height: 96px;
  }

  .technical-card,
  .technical-card:nth-child(odd),
  .technical-card:nth-child(even) {
    display: block;
    padding: 24px 0;
    border-right: 0;
  }

  .technical-card .check-list {
    margin-top: 16px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .header-actions .button {
    width: 100%;
  }

  .preorder-actions .button,
  .newsletter-form .button {
    width: 100%;
  }

  .hero-actions,
  .preorder-actions {
    width: 100%;
  }
}
