.asnn-page {
  --paper: #ffffff;
  --paper-dim: #f9fafb;
  --ink: #3c3c3c;
  --ink-soft: #374151;
  --muted: #6b7280;
  --line: #f3f4f6;
  --copper: #f97316;
  --copper-deep: #ea580c;
  --signal: #16a34a;
  --signal-bright: #22c55e;
  --panel-dark: #111827;
  --panel-dark-2: #1f2937;
  --radius: 12px;
  --mono: ui-monospace, "IBM Plex Mono", monospace;
  --grotesk: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-height: 60px;
  font-family: var(--sans);
  font-size: 17px;
  background: #ffffff;
  color: var(--ink-soft);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) {
  .asnn-page {
    font-size: 18px;
  }
}

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

.asnn-page .wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .asnn-page .wrap {
    padding: 0 3rem;
  }
}

.asnn-page section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-height) + 8px);
}

@media (min-width: 768px) {
  .asnn-page section {
    padding: 4.5rem 0;
  }
}

.asnn-page h1,
.asnn-page h2,
.asnn-page h3,
.asnn-page h4 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.032em;
  color: var(--ink);
}

.asnn-page h2 {
  font-size: clamp(2rem, 3.6vw, 2.875rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.asnn-page .kicker {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
  display: block;
}

.asnn-page .kicker::before {
  display: none;
}

.asnn-page .lede {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 43.75rem;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .asnn-page .lede {
    font-size: 1.1875rem;
  }
}

.asnn-page .reveal {
  opacity: 1;
  transform: none;
}

.asnn-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.75rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  text-decoration: none;
  border-radius: var(--radius);
}

.asnn-page .btn-primary {
  background: var(--copper);
  color: #fff;
}

.asnn-page .btn-primary:hover {
  background: var(--copper-deep);
}

.asnn-page .btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.asnn-page .btn-outline:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: #fff7ed;
}

/* Hero */
.asnn-page .hero {
  padding: calc(var(--nav-height) + 2rem) 0 3rem;
  border-bottom: 1px solid var(--line);
}

.asnn-page .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 940px) {
  .asnn-page .hero-grid {
    grid-template-columns: 1fr;
  }
}

.asnn-page .hero-copy {
  padding-bottom: 0;
}

.asnn-page .hero h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 1.125rem;
}

.asnn-page .hero h1 span {
  color: var(--copper);
}

.asnn-page .hero .subtitle {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.asnn-page .hero p.desc {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 36rem;
  margin-bottom: 0.875rem;
  line-height: 1.75;
}

.asnn-page .spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 32px;
}

.asnn-page .spec-cell {
  padding: 1.15rem 1.35rem;
  background: var(--paper);
  border: 1px solid #edeff2;
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 6px 16px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.asnn-page .spec-cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(17, 24, 39, 0.06), 0 12px 26px rgba(17, 24, 39, 0.1);
}

.asnn-page .spec-cell .num {
  font-family: var(--sans);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1.1;
}

.asnn-page .spec-cell .lbl {
  font-family: var(--sans);
  font-size: 0.6875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.4rem;
  white-space: nowrap;
}

.asnn-page .hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.asnn-page .hero-visual {
  background: var(--panel-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  align-self: start;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 940px) {
  .asnn-page .hero-visual {
    margin-top: 0;
  }
}

.asnn-page .hero-visual .label-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid #2A323C;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: #8A9299;
  letter-spacing: 0.04em;
}

.asnn-page .hero-visual .label-bar .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-bright);
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 6px var(--signal-bright);
}

.asnn-page .hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Why */
.asnn-page .why-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: 2.5rem;
  border-top: 1px solid var(--line);
}

.asnn-page .why-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

@media (max-width: 720px) {
  .asnn-page .why-table {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    column-gap: 0;
  }

  .asnn-page .why-row {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 640px) {
  .asnn-page .why-row {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }
}

.asnn-page .why-row .tag {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.asnn-page .why-row h4 {
  font-size: 1.125rem;
  margin: 0.15rem 0 0.35rem;
}

.asnn-page .why-row p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.65;
}

/* Features */
.asnn-page .spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

@media (max-width: 860px) {
  .asnn-page .spec-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .asnn-page .spec-list {
    grid-template-columns: 1fr;
  }
}

.asnn-page .spec-item {
  padding: 1.125rem 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: baseline;
  line-height: 1.5;
}

.asnn-page .spec-item::before {
  content: '›';
  color: var(--copper);
  font-weight: 700;
}

/* Applications */
.asnn-page .apps {
  background: #ffffff;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.asnn-page .apps h2,
.asnn-page .apps .lede {
  color: var(--ink);
}

.asnn-page .apps .lede {
  color: var(--muted);
}

.asnn-page .apps .kicker {
  color: var(--copper);
}

.asnn-page .app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: transparent;
  border: none;
}

@media (max-width: 1024px) {
  .asnn-page .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .asnn-page .app-grid {
    grid-template-columns: 1fr;
  }
}

.asnn-page .app-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.asnn-page .app-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.asnn-page .app-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.asnn-page .app-card .card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.asnn-page .app-card h3 {
  color: var(--ink);
  font-size: 1.1875rem;
  margin: 0.5rem 0 0.625rem;
  font-weight: 700;
}

.asnn-page .app-card > p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.125rem;
  line-height: 1.65;
}

.asnn-page .use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.asnn-page .use-list li {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.45rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #f9fafb;
}

/* Workflow */
.asnn-page .steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.asnn-page .step {
  min-width: 0;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.asnn-page .step:hover {
  transform: translateY(-4px);
  border-color: #fed7aa;
  box-shadow: 0 14px 30px rgba(17, 21, 27, 0.08);
}

.asnn-page .step-head {
  display: flex;
  align-items: center;
  margin-bottom: 0.875rem;
}

.asnn-page .step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: var(--copper);
}

.asnn-page .step-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.asnn-page .step h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.asnn-page .step p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Components */
.asnn-page .comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .asnn-page .comp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .asnn-page .comp-grid {
    grid-template-columns: 1fr;
  }
}

.asnn-page .comp-card {
  padding: 1.75rem 1.5rem;
  background: var(--paper);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.asnn-page .comp-card:hover {
  border-color: var(--copper);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.asnn-page .comp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7ed;
  color: var(--copper);
  margin-bottom: 1rem;
}

.asnn-page .comp-icon svg {
  width: 22px;
  height: 22px;
}

.asnn-page .comp-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.asnn-page .comp-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Benefits */
.asnn-page .benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 860px) {
  .asnn-page .benefits-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.asnn-page .check-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.asnn-page .check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}

.asnn-page .check-list li::before {
  content: 'OK';
  font-family: var(--sans);
  font-size: 0.6875rem;
  color: var(--signal);
  border: 1px solid var(--signal);
  padding: 2px 5px;
  flex: none;
}

.asnn-page .workload-panel {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
}

.asnn-page .workload-panel h3 {
  color: var(--ink);
  font-size: 0.9375rem;
  margin-bottom: 1.125rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.asnn-page .workload-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
  align-content: space-between;
}

.asnn-page .workload-tags span {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--copper);
  border: 1px solid #fed7aa;
  background: #fff7ed;
  padding: 0.65rem 0.95rem;
  border-radius: 6px;
  flex: 1 1 auto;
  text-align: center;
}

.asnn-page .markets {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.asnn-page .markets h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
}

.asnn-page .market-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.asnn-page .market-item {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--ink-soft);
  background: #fff;
  flex: 1 1 auto;
  text-align: center;
}

/* Developer */
.asnn-page .dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .asnn-page .dev-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.asnn-page .dev-copy p {
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 0.875rem;
  line-height: 1.75;
}

.asnn-page .dev-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.asnn-page .dev-stack span {
  font-family: var(--sans);
  font-size: 0.875rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.asnn-page .code-panel {
  background: var(--panel-dark);
  padding: 1.375rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.asnn-page .code-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: #6E777E;
}

.asnn-page .code-panel pre {
  font-family: var(--mono);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #C6CDD0;
  overflow-x: auto;
}

.asnn-page .code-panel .kw {
  color: var(--signal-bright);
}

.asnn-page .code-panel .fn {
  color: #E3A15C;
}

.asnn-page .code-panel .str {
  color: #9FC98C;
}

.asnn-page .code-panel .cm {
  color: #62696F;
}

.asnn-page .code-panel .type-caret {
  display: inline-block;
  width: 0.55ch;
  height: 1.05em;
  margin-left: 1px;
  vertical-align: text-bottom;
  background: var(--signal-bright, #E3A15C);
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(227, 161, 92, 0.55);
  animation: asnnCaretBlink 1.05s steps(1, end) infinite;
}

/* Solid caret while characters are streaming in, blink only when idle. */
.asnn-page .code-panel.is-typing .type-caret {
  animation: none;
  opacity: 1;
}

@keyframes asnnCaretBlink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .asnn-page .code-panel .type-caret {
    animation: none;
  }
}

/* CTA */
.asnn-page .cta {
  text-align: left;
  padding: 3rem 0 4rem;
  border-bottom: none;
  background: #ffffff;
}

.asnn-page .cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.asnn-page .cta h2 {
  max-width: 560px;
}

.asnn-page .cta p {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 28rem;
  margin-bottom: 0;
  line-height: 1.75;
}

.asnn-page .float-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  padding: 0.85rem 1.5rem;
  background: var(--copper);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.asnn-page .float-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .asnn-page .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .asnn-page .float-cta {
    transition: none;
  }
}

/* Workflow steps: wrap on smaller screens instead of horizontal scroll */
@media (max-width: 860px) {
  .asnn-page .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .asnn-page .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .asnn-page .steps {
    grid-template-columns: 1fr;
  }
}

/* Mobile polish */
@media (max-width: 640px) {
  .asnn-page section {
    padding: 2.75rem 0;
  }

  .asnn-page .hero {
    padding: calc(var(--nav-height) + 1.25rem) 0 2rem;
  }

  .asnn-page .hero-ctas .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .asnn-page .spec-row {
    gap: 10px;
  }

  .asnn-page .spec-cell {
    padding: 0.85rem 0.75rem;
  }

  .asnn-page .spec-cell .num {
    font-size: 1.125rem;
  }

  .asnn-page .spec-cell .lbl {
    font-size: 0.625rem;
    white-space: normal;
    line-height: 1.3;
  }
}

@media (max-width: 400px) {
  .asnn-page .use-list li {
    font-size: 0.8125rem;
    padding: 0.4rem 0.6rem;
  }
}

/* Small-phone polish */
@media (max-width: 480px) {
  .asnn-page .wrap {
    padding: 0 1.15rem;
  }

  .asnn-page .hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.25rem);
    line-height: 1.12;
  }

  .asnn-page .hero p.desc,
  .asnn-page .lede {
    font-size: 1rem;
  }

  .asnn-page .hero-visual .label-bar {
    font-size: 0.6875rem;
    padding: 0.75rem 0.9rem;
    gap: 8px;
  }

  .asnn-page .why-row .tag {
    font-size: 0.75rem;
  }

  .asnn-page .why-row h4,
  .asnn-page .comp-card h4,
  .asnn-page .app-card h3 {
    font-size: 1.0625rem;
  }

  .asnn-page .markets h3 {
    font-size: 1.125rem;
  }

  /* Code sample must never overflow the viewport */
  .asnn-page .code-panel {
    padding: 1.1rem 1rem;
  }

  .asnn-page .code-panel pre {
    font-size: 0.8125rem;
    line-height: 1.65;
  }

  .asnn-page .dev-stack span,
  .asnn-page .workload-tags span,
  .asnn-page .market-item {
    font-size: 0.8125rem;
  }
}

/* ── Viewport-fit: fill one screen, clear navbar, compact when short ── */
@media (min-width: 1024px) and (min-height: 720px) {
  .asnn-page #applications,
  .asnn-page #benefits {
    min-height: 100svh;
    padding-top: calc(var(--nav-height, 60px) + 12px);
    display: flex;
    align-items: center;
  }

  .asnn-page #applications > .wrap,
  .asnn-page #benefits > .wrap {
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-height: 920px) {
  .asnn-page #why,
  .asnn-page #features,
  .asnn-page #applications,
  .asnn-page #benefits {
    padding-top: calc(var(--nav-height, 60px) + 12px);
    padding-bottom: 1.5rem;
  }

  .asnn-page #why h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
  }

  .asnn-page #why .lede {
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .asnn-page #why .why-row {
    padding: 1rem 0;
  }

  .asnn-page #why .why-row h4 {
    font-size: 1rem;
  }

  .asnn-page #why .why-row p {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .asnn-page #features h2,
  .asnn-page #applications h2,
  .asnn-page #benefits h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  }

  .asnn-page #features .lede,
  .asnn-page #applications .lede,
  .asnn-page #benefits .lede {
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .asnn-page #features .spec-item {
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
  }

  .asnn-page #applications .app-card {
    padding: 1.15rem 1.25rem;
  }

  .asnn-page #applications .app-card h3 {
    font-size: 1.0625rem;
  }

  .asnn-page #applications .app-card > p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .asnn-page #applications .use-list li {
    font-size: 0.75rem;
    padding: 0.3rem 0.55rem;
  }

  .asnn-page #applications .app-grid {
    gap: 0.75rem;
  }

  .asnn-page #benefits .check-list li,
  .asnn-page #benefits .workload-tags span,
  .asnn-page #benefits .market-item {
    font-size: 0.8125rem;
  }

  .asnn-page #benefits .markets {
    margin-top: 1.25rem;
  }
}

@media (min-width: 1024px) and (max-height: 780px) {
  .asnn-page #features h2,
  .asnn-page #applications h2,
  .asnn-page #benefits h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  }

  .asnn-page #features .spec-item {
    padding: 0.55rem 0.9rem;
    font-size: 0.8125rem;
  }

  .asnn-page #applications .app-card {
    padding: 0.9rem 1rem;
  }

  .asnn-page #applications .use-list li {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (min-width: 1024px) and (max-height: 680px) {
  .asnn-page #why,
  .asnn-page #features,
  .asnn-page #applications,
  .asnn-page #benefits {
    min-height: 0;
    padding-top: 3rem;
    display: block;
  }
}
