:root {
  --page-bg: #f6f8f7;
  --surface: #ffffff;
  --surface-soft: #eef4f1;
  --surface-strong: #13211d;
  --text: #12201b;
  --muted: #5b6b64;
  --line: #d7e1dc;
  --line-strong: #adc1b8;
  --primary: #146d63;
  --primary-strong: #0f5a52;
  --accent: #2f9f6d;
  --accent-soft: #def0e6;
  --warning: #d3a449;
  --shadow-soft: 0 24px 50px rgba(18, 32, 27, 0.08);
  --shadow-card: 0 16px 36px rgba(18, 32, 27, 0.08);
  --radius-card: 8px;
  --radius-pill: 999px;
  --content-width: 1180px;
  --font-family: "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.6;
}

body.has-nav-open {
  overflow: hidden;
}

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

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

button,
a.button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 248, 247, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(173, 193, 184, 0.6);
  box-shadow: 0 10px 24px rgba(18, 32, 27, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark,
.sidebar-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #f7fbf9;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #f7fbf9;
  box-shadow: 0 14px 28px rgba(20, 109, 99, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-strong);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.button-large {
  min-height: 50px;
  padding: 0 24px;
  font-size: 15px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  margin-left: auto;
  flex: 0 0 auto;
  border: 1px solid rgba(20, 109, 99, 0.34);
  border-radius: 8px;
  background: rgba(20, 109, 99, 0.16);
  box-shadow: 0 10px 20px rgba(18, 32, 27, 0.08);
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 9px;
  width: 22px;
  height: 2px;
  background: var(--primary-strong);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 13px;
}

.nav-toggle span:nth-child(2) {
  top: 20px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

.nav-toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 64px;
  border-bottom: 1px solid rgba(173, 193, 184, 0.35);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 24, 20, 0.9) 0%, rgba(13, 24, 20, 0.72) 42%, rgba(13, 24, 20, 0.4) 100%),
    linear-gradient(180deg, rgba(13, 24, 20, 0.28) 0%, rgba(13, 24, 20, 0.52) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 22px;
  padding: 52px 0 14px;
  color: #f7fbf9;
}

.hero-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(247, 251, 249, 0.18);
  background: rgba(247, 251, 249, 0.08);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 640px;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0;
  max-width: 620px;
  font-size: 17px;
  color: rgba(247, 251, 249, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.signal-item {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(247, 251, 249, 0.16);
  border-radius: 8px;
  background: rgba(247, 251, 249, 0.08);
  backdrop-filter: blur(10px);
}

.signal-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.signal-item span {
  display: block;
  font-size: 13px;
  color: rgba(247, 251, 249, 0.78);
}

.product-frame {
  margin: 0;
  background: rgba(247, 251, 249, 0.92);
  border: 1px solid rgba(247, 251, 249, 0.24);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(7, 15, 12, 0.26);
}

.frame-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(173, 193, 184, 0.5);
  background: rgba(227, 236, 232, 0.95);
}

.frame-dots {
  display: inline-flex;
  gap: 8px;
}

.frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(18, 32, 27, 0.18);
}

.frame-dots span:nth-child(1) {
  background: rgba(215, 95, 91, 0.75);
}

.frame-dots span:nth-child(2) {
  background: rgba(211, 164, 73, 0.8);
}

.frame-dots span:nth-child(3) {
  background: rgba(47, 159, 109, 0.85);
}

.frame-title {
  font-size: 13px;
  font-weight: 600;
}

.frame-pill,
.toolbar-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(20, 109, 99, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.frame-body {
  display: grid;
  grid-template-columns: 198px minmax(0, 1fr);
  min-height: 430px;
}

.frame-sidebar {
  padding: 22px 18px;
  background: linear-gradient(180deg, #14231f 0%, #101b18 100%);
  color: rgba(247, 251, 249, 0.82);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.sidebar-brand strong,
.sidebar-brand span {
  display: block;
}

.sidebar-brand strong {
  font-size: 14px;
}

.sidebar-brand span {
  font-size: 12px;
  color: rgba(247, 251, 249, 0.55);
}

.sidebar-item {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(247, 251, 249, 0.7);
}

.sidebar-item.is-active {
  background: rgba(20, 109, 99, 0.26);
  color: #f7fbf9;
}

.frame-main {
  padding: 22px;
  background: linear-gradient(180deg, rgba(247, 251, 249, 0.98) 0%, rgba(238, 244, 241, 0.92) 100%);
}

.frame-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
}

.workspace-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(173, 193, 184, 0.42);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(18, 32, 27, 0.06);
}

.workspace-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.workspace-panel header h2 {
  margin: 0;
  font-size: 16px;
}

.workspace-panel header span {
  font-size: 12px;
  color: var(--muted);
}

.workspace-panel header button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: #f7fbf9;
  font-size: 13px;
  font-weight: 600;
}

.env-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(173, 193, 184, 0.34);
}

.env-row:last-child {
  border-bottom: 0;
}

.env-row strong,
.env-row span {
  display: block;
}

.env-row strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.env-row span {
  font-size: 12px;
  color: var(--muted);
}

.workspace-chat {
  display: grid;
  align-content: start;
}

.chat-bubble {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.chat-bubble.user {
  margin-left: auto;
  background: rgba(20, 109, 99, 0.14);
  color: var(--text);
}

.chat-bubble.assistant {
  background: rgba(18, 32, 27, 0.08);
  color: var(--text);
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.chat-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(20, 109, 99, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(238, 244, 241, 0.66) 0%, rgba(246, 248, 247, 1) 100%);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  max-width: 840px;
  font-size: 38px;
  line-height: 1.16;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.section-kicker {
  color: var(--primary);
  border-color: rgba(20, 109, 99, 0.16);
  background: rgba(20, 109, 99, 0.08);
}

.capability-grid,
.pricing-grid,
.download-secondary-grid {
  display: grid;
  gap: 16px;
}

.capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-card,
.download-tile,
.pricing-card,
.faq-item {
  border: 1px solid rgba(173, 193, 184, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.capability-card {
  padding: 22px;
}

.capability-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 32px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: var(--radius-pill);
  background: rgba(20, 109, 99, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.capability-card h3,
.workflow-step h3,
.download-copy h2,
.pricing-card h3,
.faq-item summary {
  margin: 0;
}

.capability-card h3 {
  font-size: 20px;
  line-height: 1.28;
}

.capability-card p {
  margin: 14px 0 18px;
  font-size: 14px;
  color: var(--muted);
}

.capability-card ul,
.plan-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-card li,
.plan-features li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text);
}

.capability-card li + li,
.plan-features li + li {
  margin-top: 10px;
}

.capability-card li::before,
.plan-features li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.workflow-layout,
.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: start;
}

.workflow-copy {
  display: grid;
  gap: 18px;
}

.workflow-copy h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(173, 193, 184, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.workflow-step span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(20, 109, 99, 0.12);
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}

.workflow-step h3 {
  font-size: 18px;
}

.workflow-step p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.workflow-media,
.download-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(173, 193, 184, 0.48);
  box-shadow: var(--shadow-soft);
}

.workflow-media img,
.download-media img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.workflow-media figcaption,
.download-media figcaption {
  padding: 16px 18px 18px;
  font-size: 14px;
  color: var(--muted);
}

.billing-switch {
  display: inline-flex;
  padding: 4px;
  margin-bottom: 12px;
  border: 1px solid rgba(173, 193, 184, 0.54);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.billing-switch button {
  min-width: 108px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.billing-switch button.is-active {
  background: var(--primary);
  color: #f7fbf9;
}

.pricing-note {
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
}

.pricing-card.is-highlighted {
  border-color: rgba(20, 109, 99, 0.48);
  box-shadow: 0 20px 36px rgba(20, 109, 99, 0.14);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(20, 109, 99, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 22px;
}

.plan-price {
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
}

.plan-period {
  margin-top: -8px;
  font-size: 14px;
  color: var(--muted);
}

.plan-meta {
  display: grid;
  gap: 8px;
}

.plan-meta span {
  font-size: 13px;
  color: var(--muted);
}

.plan-features {
  display: grid;
  gap: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(173, 193, 184, 0.4);
}

.download-copy {
  display: grid;
  gap: 18px;
}

.download-copy h2 {
  font-size: 40px;
  line-height: 1.12;
}

.download-copy p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.download-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(173, 193, 184, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.download-primary strong,
.download-primary span {
  display: block;
}

.download-primary strong {
  font-size: 20px;
  margin-bottom: 6px;
}

.download-primary span {
  font-size: 14px;
  color: var(--muted);
}

.download-secondary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-tile {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.download-tile strong {
  font-size: 18px;
}

.download-tile span {
  font-size: 14px;
  color: var(--muted);
}

.download-tile.is-muted {
  background: rgba(238, 244, 241, 0.72);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 24px;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--muted);
}

.public-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(173, 193, 184, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.public-cta-copy {
  max-width: 660px;
}

.public-cta-copy h2 {
  margin: 12px 0 10px;
  font-size: 34px;
  line-height: 1.14;
}

.public-cta-copy p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.public-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 28px 0 36px;
  background: #121d19;
  color: rgba(247, 251, 249, 0.86);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(247, 251, 249, 0.62);
}

.site-footer .brand-copy span {
  color: rgba(247, 251, 249, 0.62);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 14px;
  color: #f7fbf9;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(247, 251, 249, 0.68);
}

.footer-bottom {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(247, 251, 249, 0.08);
  font-size: 13px;
  color: rgba(247, 251, 249, 0.48);
}

@media (max-width: 1160px) {
  .hero-inner,
  .workflow-layout,
  .download-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero-signals,
  .capability-grid,
  .pricing-grid,
  .download-secondary-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .public-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav.is-open {
    position: fixed;
    inset: 80px 20px auto;
    display: grid;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(173, 193, 184, 0.72);
    border-radius: 8px;
    box-shadow: 0 24px 48px rgba(18, 32, 27, 0.14);
  }

  .hero-copy h1,
  .workflow-copy h2,
  .download-copy h2 {
    font-size: 44px;
  }

  .hero-signals,
  .capability-grid,
  .pricing-grid,
  .download-secondary-grid {
    grid-template-columns: 1fr;
  }

  .frame-body,
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .frame-sidebar {
    padding-bottom: 14px;
  }

  .workflow-media img,
  .download-media img {
    aspect-ratio: 1.3;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--content-width));
  }

  .header-inner {
    min-height: 72px;
  }

  .hero {
    padding: 26px 0 48px;
  }

  .hero-copy {
    gap: 18px;
    padding-top: 26px;
  }

  .hero-copy h1,
  .workflow-copy h2,
  .download-copy h2,
  .section-heading h2,
  .public-cta-copy h2 {
    font-size: 32px;
  }

  .hero-lead,
  .section-heading p,
  .download-copy p {
    font-size: 15px;
  }

  .hero-actions,
  .download-primary,
  .public-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .frame-topbar {
    grid-template-columns: auto 1fr;
  }

  .frame-pill {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .frame-main,
  .workspace-panel,
  .capability-card,
  .pricing-card {
    padding: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 16px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 16px;
  }

  .hero-copy h1,
  .workflow-copy h2,
  .download-copy h2,
  .section-heading h2,
  .public-cta-copy h2 {
    font-size: 28px;
  }

  .hero-signals {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .hero-signals::-webkit-scrollbar {
    display: none;
  }

  .signal-item {
    min-width: 214px;
    min-height: auto;
    padding: 12px;
  }

  .signal-item strong {
    margin-bottom: 4px;
  }

  .signal-item span {
    font-size: 12px;
  }

  .product-frame {
    display: none;
  }

  .section-kicker,
  .hero-eyebrow {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }

  .workflow-step {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }

  .workflow-step span:first-child {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .workflow-step h3,
  .download-primary strong,
  .pricing-card h3 {
    font-size: 18px;
  }

  .plan-price {
    font-size: 34px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
