:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --text: #111827;
  --muted: #5d6470;
  --line: #e1e5ea;
  --gold: #806000;
  --gold-bright: #facc15;
  --gold-soft: #fff8d9;
  --blue: #0757ff;
  --blue-soft: #eef4ff;
  --radius: 22px;
  --radius-sm: 16px;
  --shadow: 0 20px 48px rgba(17, 24, 39, 0.07);
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 94px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

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

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

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

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid rgba(7, 87, 255, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  height: 78px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
}

.brand-symbol {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 46px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
}

.brand-symbol img {
  position: absolute;
  top: 0;
  left: -3px;
  width: 52px;
  height: 46px;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
}

.brand strong {
  position: relative;
}

.brand strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold-bright));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="location"] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a[aria-current="location"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.page-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px 42px;
  align-items: center;
  padding: 112px 0 38px;
  overflow: hidden;
}

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

.hero-content {
  max-width: 960px;
}

.hero-content h1,
.section-heading h2,
.contact-intro h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.04em;
}

.hero-content h1 {
  max-width: 15ch;
  font-size: clamp(3.15rem, 4.6vw, 4.15rem);
  line-height: 0.99;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.14);
}

.primary:hover,
.primary:focus-visible {
  background: #2a3342;
}

.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.secondary:hover {
  border-color: #aeb6c2;
}

.feature-list,
.deliverables {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.deliverables li {
  position: relative;
  margin-top: 7px;
  padding-left: 22px;
}

.feature-list li::before,
.deliverables li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #765700;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(118, 87, 0, 0.28);
  text-underline-offset: 4px;
}

.inline-link:hover {
  color: #4f3b00;
  text-decoration-color: currentColor;
}

.section {
  padding: 42px 0;
  scroll-margin-top: 88px;
}

.section-compact {
  padding-block: 32px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2,
.contact-intro h2 {
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  line-height: 1.08;
}

.section-heading h2::after,
.contact-intro h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 5px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--gold-bright);
}

.section-heading > p:last-child,
.contact-intro > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.case-card,
.panel,
.process-step,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-top: 4px solid var(--gold-bright);
  box-shadow: none;
}

.service-card--api {
  border-top-color: var(--blue);
}

.service-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 11px;
  background: var(--gold-soft);
  color: #755700;
  font-weight: 800;
}

.service-card--api .service-icon {
  background: var(--blue-soft);
  color: var(--blue);
}

.service-label {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3,
.case-card h3,
.panel h3,
.process-step h3,
.contact-form h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.35;
}

.service-card > p:not(.service-label),
.process-step p,
.panel p {
  color: var(--muted);
  line-height: 1.5;
}

.deliverables {
  margin-block: 10px 13px;
}

.service-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.engagement-line {
  margin: 4px 0 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.service-review-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.hero-proof-strip,
.about-proof-strip {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.hero-proof-strip li,
.about-proof-strip li {
  padding: 4px 18px;
  border-left: 1px solid var(--line);
}

.hero-proof-strip li:first-child,
.about-proof-strip li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 18px 22px 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-step > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 800;
}

.process-step p {
  margin: 7px 0 0;
  font-size: 0.92rem;
}

.case-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  box-shadow: none;
}

.case-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.case-heading span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-heading strong {
  color: #a6adb8;
  font-family: "Poppins", sans-serif;
}

.case-evidence {
  margin: 0;
}

.case-evidence div {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.case-evidence dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-evidence dd {
  margin-top: 3px;
  margin-left: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.technology-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
}

.technology-labels span {
  padding: 4px 8px;
  border-radius: 7px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.case-cta {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 13px;
}

.panel {
  padding: 21px;
  box-shadow: none;
}

.panel p {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: 34px;
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.tertiary-contact {
  width: fit-content;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tertiary-contact:hover,
.tertiary-contact:focus-visible {
  color: var(--text);
}

.config-details:not([hidden]) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 24px;
}

.contact-form label,
.additional-fields {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form small {
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid #cfd5dd;
  border-radius: 13px;
  background: #fff;
  color: var(--text);
}

.contact-form .botcheck {
  display: none !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.additional-details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
}

.additional-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 50px;
  padding: 12px 15px;
  cursor: pointer;
  font-weight: 700;
}

.additional-details summary span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.additional-fields {
  padding: 4px 15px 16px;
}

.contact-form .button {
  justify-self: start;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.success { color: #137333; }
.form-status.error { color: #b42318; }

.footer {
  padding: 54px max(24px, calc((100vw - 1100px) / 2)) 24px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(2, minmax(150px, 0.7fr));
  gap: 48px;
}

.footer-grid > div > p {
  max-width: 480px;
}

.footer nav {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer nav strong {
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

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

.footer-brand {
  width: fit-content;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 5.5vw, 3.8rem);
  }

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

  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
  }

  .service-card > :not(.service-icon) {
    grid-column: 2;
  }

  .service-card .service-icon {
    grid-row: 1 / span 8;
  }

  .service-card .button {
    justify-self: start;
  }

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

  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.16);
  }

  .nav-links.open a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--text);
  }

  .nav-links.open a::after {
    display: none;
  }

  .nav-links.open a:hover,
  .nav-links.open a[aria-current="location"] {
    background: var(--gold-soft);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 56px 0;
  }

  .section-compact {
    padding-block: 42px;
  }

  .contact-layout {
    display: grid;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 0 14px;
  }

  .page-container {
    padding: 0 18px;
  }

  .hero {
    gap: 25px;
    padding: 108px 0 32px;
  }

  .hero-content h1 {
    max-width: 13ch;
    font-size: 2.4rem;
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .service-card,
  .case-card,
  .panel,
  .process-step,
  .contact-form {
    padding: 18px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    align-items: start;
  }

  .process-step > span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .process-step p {
    margin-top: 4px;
  }

  .section {
    padding: 34px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .service-grid,
  .case-grid {
    gap: 14px;
  }

  .process-grid {
    gap: 12px;
  }

  .contact-layout {
    gap: 20px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .contact-intro h2 {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  .service-card {
    display: flex;
  }

  .service-card > :not(.service-icon) {
    grid-column: auto;
  }

  .additional-details summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product ecosystem additions reuse the existing card, type, and spacing system. */
.product-section {
  position: relative;
  padding-block: clamp(54px, 6vw, 76px);
}

.product-section::before {
  content: "";
  position: absolute;
  inset: 34px -24px 0;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.09), rgba(37, 99, 235, 0.04));
}

.product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  grid-template-areas:
    "copy screenshot"
    "actions screenshot";
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 22px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-card h3 {
  margin: 10px 0 12px;
  font-family: "Poppins", sans-serif;
  color: var(--text);
}

.product-card-copy {
  grid-area: copy;
  align-self: end;
}

.product-card-actions {
  grid-area: actions;
  align-self: start;
}

.product-card h3 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.product-card-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.product-card-topline {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.status-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(180, 83, 9, 0.26);
  border-radius: 999px;
  background: #fff8e6;
  color: #854d0e;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-badge > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.product-screenshot {
  grid-area: screenshot;
  display: block;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 20px;
  background: #f7f7f2;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.product-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.product-screenshot-note {
  display: block;
  padding: 9px 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
}

.product-capabilities {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.product-capabilities li {
  position: relative;
  padding-left: 22px;
}

.product-capabilities li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #137333;
  font-weight: 800;
}

.product-screenshot:hover {
  border-color: rgba(7, 87, 255, 0.34);
}

.product-screenshot:focus-visible {
  outline: 3px solid rgba(7, 87, 255, 0.55);
  outline-offset: 4px;
}

.section-heading > .founder-note {
  color: #737a86;
  font-size: 0.86rem;
  line-height: 1.55;
}

.founder-note .inline-link {
  font-size: 0.86rem;
  font-weight: 700;
}

.stack-line {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold-bright);
  border-radius: 0 12px 12px 0;
  background: var(--surface-soft);
  color: var(--muted);
}

.confidentiality-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}

.form-disclosure {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.form-disclosure a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-page {
  background: var(--surface-soft);
}

.legal-content {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 70px;
}

.legal-content h1 {
  margin: 8px 0 4px;
  font: 800 clamp(2.6rem, 7vw, 4.8rem)/1.02 "Poppins", sans-serif;
}

.legal-content h2 {
  margin: 38px 0 8px;
  font: 700 clamp(1.3rem, 3vw, 1.7rem)/1.25 "Poppins", sans-serif;
}

.legal-content p {
  color: var(--muted);
}

.legal-updated {
  margin-bottom: 34px;
  font-size: 0.9rem;
}

.legal-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-areas:
      "copy"
      "screenshot"
      "actions";
  }

  .product-screenshot {
    display: grid;
  }

  .product-screenshot picture {
    aspect-ratio: 1;
  }

  .product-screenshot picture,
  .product-screenshot img {
    width: 100%;
    height: 100%;
  }

  .product-screenshot img {
    object-fit: cover;
  }

}

@media (max-width: 560px) {
  .product-section::before {
    inset-inline: -16px;
  }

  .product-card {
    padding: 24px 18px;
  }

  .product-section {
    padding-block: 38px;
  }

  .section {
    padding-block: 24px;
  }

  .section-compact {
    padding-block: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    grid-template-columns: 34px 1fr;
    min-height: 0;
    padding: 14px 0;
  }

  .process-step > span {
    width: auto;
    height: auto;
    margin: 0;
  }

  .process-step h3 {
    font-size: 1rem;
  }

  .process-step p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .legal-footer {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .product-card-topline {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
