:root {
    --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-soft: #F8FAFC;

  --text: #0B0F19;
  --text-soft: #4B5563;
  --border: #E5E7EB;

  --primary: #111827;
  --primary-hover: #000000;

  --bg-soft: rgba(0, 0, 0, 0.04);
  
    --bg-soft: rgba(37, 99, 235, 0.08);

    --text-display-xl: clamp(3rem, 6vw, 4.5rem);
    --text-display-lg: clamp(2.5rem, 5vw, 3.5rem);

    --text-heading-lg: 2rem;
    --text-heading-md: 1.5rem;
    --text-heading-sm: 1.25rem;

    --text-body-lg: 1.125rem;
    --text-body-md: 1rem;
    --text-body-sm: 0.875rem;
    --text-caption: 0.75rem;

    --font-primary: "Open Sans", sans-serif;
    --font-secondary: "Inter", "Google Sans", sans-serif;
    --font-optional: "Montserrat", sans-serif;

    --space-4: 0.25rem;
    --space-8: 0.5rem;
    --space-12: 0.75rem;
    --space-16: 1rem;
    --space-20: 1.25rem;
    --space-24: 1.5rem;
    --space-32: 2rem;
    --space-40: 2.5rem;
    --space-48: 3rem;
    --space-64: 4rem;
    --space-80: 5rem;
    --space-96: 6rem;
    --space-120: 7.5rem;

    --radius-sm: 0.75rem;
    --radius-md: 1.125rem;
    --radius-lg: 1.5rem;
    --radius-xl: 1.75rem;
    --radius-2xl: 2rem;
    --radius-pill: 999rem;

    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
    --shadow-medium: 0 18px 40px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 24px 80px rgba(15, 23, 42, 0.12);

    --motion-fast: 150ms;
    --motion-normal: 250ms;
    --motion-slow: 400ms;

    --container: 75rem;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-secondary);
    font-size: var(--text-body-md);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

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

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

  button,
  input,
  textarea,
  select {
    font: inherit;
  }

  ul,
  ol {
    margin-bottom: 0;
  }

  section {
    position: relative;
    scroll-margin-top: 120px;
  }

  h1,
  h2 {
    font-family: var(--font-optional);
    color: var(--text);
    margin: 0;
  }

  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-secondary);
    color: var(--text);
    margin: 0;
  }

  p,
  li,
  span,
  small {
    font-family: var(--font-primary);
  }

  .display-xl {
    font-size: var(--text-display-xl);
    line-height: 0.92;
    letter-spacing: -0.05em;
  }

  .display-lg {
    font-size: var(--text-display-lg);
    line-height: 0.96;
    letter-spacing: -0.04em;
  }

  .heading-lg {
    font-size: var(--text-heading-lg);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .heading-md {
    font-size: var(--text-heading-md);
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .heading-sm {
    font-size: var(--text-heading-sm);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .body-lg {
    font-size: var(--text-body-lg);
    line-height: 1.8;
    color: var(--text-soft);
  }

  .body-md {
    font-size: var(--text-body-md);
    line-height: 1.75;
    color: var(--text-soft);
  }

  .body-sm {
    font-size: var(--text-body-sm);
    line-height: 1.7;
    color: var(--text-soft);
  }

  .caption {
    font-size: var(--text-caption);
    line-height: 1.5;
    color: var(--text-soft);
  }

  .section-space {
    padding-top: var(--space-96);
    padding-bottom: var(--space-96);
  }

  .section-title {
    margin: 0 0 var(--space-16);
  }

  .section-copy {
    max-width: 46rem;
    margin: 0;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding-inline: var(--space-16);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    color: var(--text-soft);
    font-family: var(--font-secondary);
    font-size: var(--text-caption);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .site-header {
    backdrop-filter: blur(14px);
    background: rgba(247, 247, 245, 0.78);
    border-bottom: 1px solid rgba(19, 34, 56, 0.06);
  }

  .navbar {
    min-height: 5rem;
  }

  .navbar-brand {
    color: var(--text);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .navbar-brand:hover {
    color: var(--text);
  }

  .navbar-nav .nav-link {
    position: relative;
    color: var(--text-soft);
    font-family: var(--font-secondary);
    font-size: var(--text-body-sm);
    font-weight: 500;
    transition: color var(--motion-normal) ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-link.active {
    color: var(--text);
  }
  /*active spy */
  .nav-link {
    color: var(--text-soft);
    text-decoration: none;
    font-size: var(--text-body-sm);
    transition: color var(--motion-normal) ease;
  }
  
  .nav-link:hover {
    color: var(--text);
  }
  
  .navbar-nav .nav-link.active {
    color: var(--text);
    font-weight: 600;
  }
  
  
  /* indicador sutil */
  .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-pill);
  }

  .navbar-toggler {
    padding: 0.4rem 0.55rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--border);
  }

  .navbar-toggler-icon {
    background-image: none;
    width: 1.35rem;
    height: 1.35rem;
    position: relative;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 1.35rem;
    height: 2px;
    background: var(--text);
    border-radius: 999rem;
  }

  .navbar-toggler-icon::before {
    top: 0.35rem;
  }

  .navbar-toggler-icon::after {
    bottom: 0.35rem;
  }

  .btn-primary-soft,
  .btn-secondary-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding-inline: var(--space-24);
    border-radius: var(--radius-pill);
    font-family: var(--font-secondary);
    font-size: var(--text-body-md);
    font-weight: 600;
    text-decoration: none;
    transition:
      background-color var(--motion-normal) ease,
      color var(--motion-normal) ease,
      border-color var(--motion-normal) ease,
      transform var(--motion-fast) ease,
      box-shadow var(--motion-normal) ease;
  }

  .btn-primary-soft {
    background: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    box-shadow: var(--shadow-soft);
  }

  .btn-primary-soft:hover,
  .btn-primary-soft:focus {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-1px);
  }

  .btn-secondary-soft {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
  }

  .btn-secondary-soft:hover,
  .btn-secondary-soft:focus {
    background: var(--surface-soft);
    color: var(--text);
    transform: translateY(-1px);
  }

  .hero-product {
    padding-top: var(--space-96);
    padding-bottom: var(--space-80);
    overflow: hidden;
  }

  .hero-product::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
  radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.08), transparent 26%),
  radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.08), transparent 20%);
    pointer-events: none;
  }

  .hero-product .container {
    position: relative;
    z-index: 1;
  }

  .hero-title {
    max-width: 18ch;
    margin: 0 0 var(--space-24);
    font-weight: 700;
  }

  .hero-text {
    max-width: 40rem;
    margin: 0 0 var(--space-32);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-16);
    margin-bottom: var(--space-24);
  }

  .hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12);
  }

  .hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding-inline: var(--space-16);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    color: var(--text-soft);
    font-family: var(--font-secondary);
    font-size: var(--text-body-sm);
    font-weight: 500;
    box-shadow: 0 1px 0 rgba(19, 34, 56, 0.02);
  }

  .hero-card,
  .surface-card,
  .cta-box,
  .stat-box {
    background: var(--surface);
    border: 1px solid var(--border);
  }

  .hero-card {
    padding: var(--space-32);
    border-radius: var(--radius-2xl);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: var(--shadow-medium);
  }

  .hero-card-label {
    display: inline-block;
    margin-bottom: var(--space-16);
    color: var(--text-soft);
    font-family: var(--font-secondary);
    font-size: var(--text-caption);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .hero-card-title {
    margin: 0 0 var(--space-16);
    font-family: var(--font-optional);
    font-size: var(--text-heading-lg);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .hero-card-text {
    margin: 0 0 var(--space-20);
    font-size: var(--text-body-md);
    line-height: 1.8;
    color: var(--text-soft);
  }

  .hero-card-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-soft);
  }

  .hero-card-list li {
    margin-bottom: var(--space-8);
    line-height: 1.7;
  }

  .hero-card-list li:last-child {
    margin-bottom: 0;
  }

  .surface-card {
    height: 100%;
    padding: var(--space-24);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
  }

  .card-number {
    display: inline-flex;
    margin-bottom: var(--space-16);
    color: var(--text-soft);
    font-family: var(--font-secondary);
    font-size: var(--text-caption);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .stat-box {
    height: 100%;
    padding: var(--space-20);
    border-radius: var(--radius-lg);
  }

  .stat-box span {
    display: block;
    margin-bottom: var(--space-8);
    color: var(--text-soft);
    font-family: var(--font-secondary);
    font-size: var(--text-caption);
    font-weight: 600;
    letter-spacing: 0.03em;
  }

  .stat-box strong {
    display: block;
    font-family: var(--font-secondary);
    font-size: var(--text-body-md);
    line-height: 1.5;
    color: var(--text);
  }

  .about-note {
    height: 100%;
    padding: var(--space-24);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    background: radial-gradient(circle at top right, rgba(165, 61, 255, 0.12), transparent 26%), linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 100%);
    box-shadow: var(--shadow-soft);
  }

  .cta-box {
    padding: var(--space-48);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-medium);
    background:
      radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 26%),
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 100%);
  }

  .cta-title {
    max-width: 100%;
    margin: 0 0 var(--space-16);
  }

  .footer-minimal {
    padding-top: var(--space-24);
    padding-bottom: var(--space-32);
    border-top: 1px solid var(--border);
    color: var(--text-soft);
  }

  .footer-minimal span {
    font-family: var(--font-secondary);
    font-size: var(--text-body-sm);
  }

  /*imagenes*/

  .case-visual {
    margin-top: var(--space-40);
    margin-bottom: var(--space-64);
  }
  
  .case-visual-frame {
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    background: var(--surface);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
  }
  
  .case-visual-header {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-12) var(--space-16);
    border-bottom: 1px solid var(--border);
    background: var(--surface-soft);
  }
  
  .case-visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  
  .dot-red { background: #ff5f57; }
  .dot-yellow { background: #ffbd2e; }
  .dot-green { background: #28c840; }
  
  .case-visual-body {
    padding: var(--space-32);
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.9),
      rgba(255,255,255,0.7)
    );
  }
  .wireframe-auction-app {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 300px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  
  /* BARRA SUPERIOR */
  .wireframe-auction-app::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: #f5f7fa;
    border-bottom: 1px solid #e6e8ec;
  }
  
  
  /* CONTENIDO GENERAL 
  .wireframe-auction-app::after {
    content: "";
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(
      to bottom,
      #e9eef5 0%,
      #e9eef5 60px,
      transparent 60px
    );
    border-radius: 12px;
  }*/
  
  /*SIDEBAR */
  .wireframe-auction-app .wf-sidebar {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 60px;
    bottom: 20px;
    background: transparent;
  }

  /*BLOQUES SIDEBAR 
  .wf-sidebar::before {
    content: "";
    display: block;
    width: 100%;
    height: 12px;
    background: #cfd6df;
    border-radius: 6px;
    margin-bottom: 16px;
  }*/
  
  .wf-sidebar::after {
    content: "";
    display: block;
    width: 100%;
    height: 95%;
    background: repeating-linear-gradient(
      to bottom,
      #cfd6df,
      #cfd6df 10px,
      transparent 10px,
      transparent 24px
    );
  }
  
  /*CONTENIDO CENTRAL */
  .wireframe-auction-app .wf-content {
    position: absolute;
    top: 70px;
    left: 100px;
    right: 20px;
    bottom: 20px;
  }
  
  /*HEADER INTERNO 
  .wf-content::before {
    content: "";
    display: block;
    height: 14px;
    width: 50%;
    background: #5f8ff5;
    border-radius: 6px;
    margin-bottom: 20px;
  }*/
  
  /*CARDS */
  .wf-content::after {
    content: "";
    display: block;
    height: calc(100% - 40px);
    background: repeating-linear-gradient(
      to bottom,
      #dfe5ec,
      #dfe5ec 60px,
      transparent 60px,
      transparent 90px
    );
    border-radius: 10px;
  }
    /*imagenes*/
  
  .case-placeholder {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-xl);
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: var(--text-body-sm);
  }
  


  .case-screens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
    margin-top: var(--space-40);
  }
  
  .case-screen {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: var(--space-16);
  }
  
  .case-screen-frame {
    width: 100%;
    height: 280px;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: var(--text-caption);
  }

  .case-back-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-soft);
    font-family: var(--font-secondary);
    font-size: var(--text-body-sm);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--motion-normal) ease;
  }
  
  .case-back-link:hover {
    color: var(--text);
  }

  .case-compare-media {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-xl);
    border: 1px dashed var(--border);
    overflow: hidden;
    background: var(--surface-soft);
  }
  
  .case-compare-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  /*Wireframe*/
  .wireframe-dashboard {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
  }
  
  .wf-header {
    height: 40px;
    background: var(--surface-soft);
    border-radius: var(--radius-md);
  }
  
  .wf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
  }
  
  .wf-card {
    height: 80px;
    background: var(--surface-soft);
    border-radius: var(--radius-md);
  }
  
  .wf-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .wf-item {
    height: 40px;
    background: var(--surface-soft);
    border-radius: var(--radius-md);
  }

  .wireframe-auction-app {
    width: min(100%, 28rem);
    min-height: 34rem;
    padding: var(--space-24);
    border-radius: var(--radius-2xl);
    background: #f8fafc;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
  }
  
  .wf-app-top,
  .wf-section-head,
  .wf-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
  }
  
  .wf-kicker,
  .wf-title,
  .wf-line,
  .wf-search,
  .wf-button,
  .wf-circle,
  .wf-image,
  .wf-modules span,
  .wf-meta-row span {
    display: block;
    background: #e2e8f0;
  }
  
  .wf-kicker {
    width: 4.5rem;
    height: 0.5rem;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-8);
  }
  
  .wf-title {
    width: 8rem;
    height: 0.85rem;
    border-radius: var(--radius-pill);
  }
  
  .wf-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
  }
  
  .wf-search {
    width: 100%;
    height: 2.75rem;
    border-radius: var(--radius-pill);
    background: #ffffff;
    border: 1px solid var(--border);
  }
  
  .wf-hero-card {
    min-height: 6.5rem;
    padding: var(--space-20);
    border-radius: var(--radius-xl);
    background: #111827;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--space-16);
  }
  
  .wf-hero-card .wf-line,
  .wf-hero-card .wf-button {
    background: rgba(255, 255, 255, 0.72);
  }
  
  .wf-line {
    height: 0.7rem;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-8);
  }
  
  .wf-line-lg { width: 10rem; }
  .wf-line-md { width: 7rem; }
  .wf-line-sm { width: 4.5rem; }
  .wf-line-xs { width: 3rem; }
  
  .wf-button {
    width: 5rem;
    height: 2rem;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
  }
  
  .wf-modules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-12);
  }
  
  .wf-modules span {
    height: 4.5rem;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid var(--border);
  }
  
  .wf-card-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
  }
  
  .wf-auction-card {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: var(--space-12);
    padding: var(--space-12);
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid var(--border);
  }
  
  .wf-image {
    height: 5rem;
    border-radius: var(--radius-md);
  }
  
  .wf-card-copy {
    padding-top: var(--space-8);
  }
  
  .wf-meta-row span {
    width: 4rem;
    height: 0.55rem;
    border-radius: var(--radius-pill);
  }
  
  @media (max-width: 575.98px) {
    .wireframe-auction-app {
      padding: var(--space-16);
      min-height: 30rem;
    }
  
    .wf-auction-card {
      grid-template-columns: 1fr;
    }
  
    .wf-image {
      height: 8rem;
    }
  }
  /*Wireframe*/

  /*Visibilidad del estado del sistema*/
  .hero-top {
    margin-bottom: var(--space-24);
  }
  
  .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-8);
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .breadcrumb-item {
    font-size: var(--text-caption);
    color: var(--text-soft);
    font-family: var(--font-secondary);
  }
  
  .breadcrumb-item a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color var(--motion-normal) ease;
  }
  
  .breadcrumb-item a:hover {
    color: var(--text);
  }
  
  .breadcrumb-item.active {
    color: var(--text);
    font-weight: 500;
  }
  
  /* separador limpio */
  .breadcrumb-item + .breadcrumb-item::before {
    content: "•";
    margin: 0 var(--space-8);
    opacity: 0.4;
  }

    .hero-meta {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    margin-bottom: var(--space-24);
  }

  /*=============================
  caso app subastas
  =============================*/
  .case-mobile-screens {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-32);
    flex-wrap: wrap;
    margin-top: var(--space-40);
  }
  
  .case-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .mobile-frame {
    width: 220px;
    height: 460px;
    padding: 10px;
    border-radius: 34px;
    background: #111827;
    box-shadow: var(--shadow-strong);
  }
  
  .mobile-screen {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    border: 1px dashed var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    color: var(--text-soft);
    font-family: var(--font-secondary);
    font-size: var(--text-caption);
    overflow: hidden;
  }
  
  .mobile-screen span {
    font-family: var(--font-secondary);
  }
  
  .mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 26px;
  }
  @media (min-width: 992px) {
    .case-mobile-item:nth-child(2) {
      transform: translateY(var(--space-32));
    }
  }
  
  @media (max-width: 767.98px) {
    .mobile-frame {
      width: 190px;
      height: 398px;
    }
  }

  /*=============================*/

  @media (max-width: 1199.98px) {
    .hero-title {
      max-width: 11ch;
    }
  }

  @media (max-width: 991.98px) {
    .section-space {
      padding-top: var(--space-80);
      padding-bottom: var(--space-80);
    }

    .hero-product {
      padding-top: var(--space-96);
      padding-bottom: var(--space-64);
    }

    .hero-title,
    .cta-title {
      max-width: 100%;
    }

    .navbar-collapse {
      margin-top: var(--space-16);
      padding-top: var(--space-12);
      border-top: 1px solid var(--border);
    }
  }

  @media (max-width: 767.98px) {
    .section-space {
      padding-top: var(--space-64);
      padding-bottom: var(--space-64);
    }

    .hero-product {
      padding-top: var(--space-64);
      padding-bottom: var(--space-48);
    }

    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .btn-primary-soft,
    .btn-secondary-soft {
      width: 100%;
    }

    .hero-card,
    .surface-card,
    .about-note {
      padding: var(--space-24);
    }

    .cta-box {
      padding: var(--space-32);
    }

    .hero-card-title {
      font-size: var(--text-heading-md);
    }
  }

  @media (max-width: 575.98px) {
    .hero-chip {
        width: 30%;
        justify-content: center;
        font-size: 10px;
        text-align: center;
    }

    .navbar {
      min-height: 4.5rem;
    }
    .case-back-link {
        font-size: var(--text-caption);
      }
  }