:root {
  --navy-950: #071631;
  --navy-900: #0a2148;
  --navy-800: #123464;
  --cyan-600: #007a8c;
  --cyan-500: #08b8c9;
  --cyan-100: #dff9fb;
  --blue-100: #e8f2ff;
  --ink: #10213d;
  --muted: #5d6b80;
  --line: #dfe6ef;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --warm: #fbf8f3;
  --success: #1f6f5d;
  --shadow-sm: 0 12px 30px rgba(10, 33, 72, 0.07);
  --shadow-lg: 0 30px 80px rgba(10, 33, 72, 0.14);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 44px);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 8%, rgba(8, 184, 201, 0.1), transparent 24rem),
    linear-gradient(180deg, #fbfdff 0, #fff 720px);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure {
  margin-top: 0;
}

p,
li {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  text-wrap: balance;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan-600);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-950);
  transform: translateY(-150%);
}

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 8vw, 108px);
}

.section-tight {
  padding-block: clamp(44px, 6vw, 72px);
}

.section-alt {
  background: var(--surface-alt);
  border-block: 1px solid rgba(223, 230, 239, 0.82);
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.stack > * {
  margin-bottom: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

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

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--cyan-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
.h1 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.01;
}

h2,
.h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h3,
.h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.24;
}

.lead {
  max-width: 63ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 14px;
}

.mt-28 {
  margin-top: 28px;
}

.text-link {
  color: var(--navy-800);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(8, 184, 201, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--cyan-600);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 230, 239, 0.82);
  background: rgba(251, 253, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 32px);
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy-950);
  border-color: var(--cyan-500);
}

.nav-cta {
  margin-left: 4px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--navy-950);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  margin-block: 5px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  box-shadow: 0 12px 28px rgba(10, 33, 72, 0.2);
}

.btn-primary:hover {
  background: var(--navy-950);
}

.btn-secondary {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: #b8c5d7;
}

.btn-arrow::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.hero {
  min-height: 670px;
  display: grid;
  align-items: center;
  padding-block: clamp(72px, 9vw, 126px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-copy .lead {
  max-width: 58ch;
}

.hero-actions {
  margin-top: 32px;
}

.proof-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(223, 230, 239, 0.9);
  border-radius: 999px;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}

.proof-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
}

.product-visual {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 7% -10% 4% 8%;
  z-index: -2;
  border-radius: 44% 56% 55% 45%;
  background:
    radial-gradient(circle at 72% 18%, rgba(8, 184, 201, 0.28), transparent 30%),
    radial-gradient(circle at 20% 78%, rgba(18, 52, 100, 0.2), transparent 32%),
    #eef7ff;
  filter: blur(2px);
  transform: rotate(-4deg);
}

.dashboard {
  position: absolute;
  top: 12%;
  left: 8%;
  width: 82%;
  min-height: 365px;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d7e1ee;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.dashboard-top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #e9edf4;
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cad4e2;
}

.dashboard-dots span:first-child {
  background: var(--cyan-500);
}

.dashboard-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding-top: 18px;
}

.dashboard-side {
  display: grid;
  align-content: start;
  gap: 10px;
}

.dashboard-side span {
  height: 28px;
  display: block;
  border-radius: 8px;
  background: #f0f4f9;
}

.dashboard-side span:first-child {
  background: var(--blue-100);
}

.dashboard-main {
  display: grid;
  gap: 14px;
}

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

.metric {
  min-height: 76px;
  padding: 13px;
  background: #fbfcfe;
  border: 1px solid #e7ecf3;
  border-radius: 12px;
}

.metric span {
  width: 26px;
  height: 8px;
  display: block;
  margin-bottom: 14px;
  border-radius: 99px;
  background: var(--cyan-500);
}

.metric::after {
  content: "";
  width: 62%;
  height: 7px;
  display: block;
  border-radius: 99px;
  background: #dfe6ef;
}

.chart {
  min-height: 158px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 20px 18px 16px;
  background: #fbfcfe;
  border: 1px solid #e7ecf3;
  border-radius: 14px;
}

.chart span {
  flex: 1;
  min-height: 24px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--cyan-500), var(--navy-800));
  opacity: 0.86;
}

.chart span:nth-child(1) { height: 34%; }
.chart span:nth-child(2) { height: 52%; }
.chart span:nth-child(3) { height: 43%; }
.chart span:nth-child(4) { height: 70%; }
.chart span:nth-child(5) { height: 58%; }
.chart span:nth-child(6) { height: 83%; }
.chart span:nth-child(7) { height: 72%; }

.visual-card {
  position: absolute;
  z-index: 3;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(215, 225, 238, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.visual-card strong {
  display: block;
  color: var(--navy-950);
  font-size: 14px;
}

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

.visual-card-code {
  top: 3%;
  right: 0;
}

.visual-card-code::before {
  content: "</>";
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: var(--navy-800);
  background: var(--blue-100);
  border-radius: 12px;
  font-family: ui-monospace, monospace;
  font-weight: 800;
}

.visual-card-status {
  right: 4%;
  bottom: 2%;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 11px;
}

.visual-card-status::before {
  content: "✓";
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-weight: 900;
}

.visual-card-mobile {
  left: 0;
  bottom: 7%;
}

.visual-card-mobile::before {
  content: "";
  width: 25px;
  height: 37px;
  display: block;
  margin-bottom: 9px;
  border: 2px solid var(--navy-800);
  border-radius: 7px;
  box-shadow: inset 0 -5px 0 var(--blue-100);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(28px, 6vw, 76px);
  margin-bottom: 38px;
}

.section-head > * {
  margin-bottom: 0;
}

.card {
  min-height: 100%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-size: 21px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.card-link {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card-link:hover {
  border-color: rgba(8, 184, 201, 0.45);
  box-shadow: 0 20px 44px rgba(10, 33, 72, 0.11);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--navy-800);
  background: var(--blue-100);
  border-radius: 15px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.card-icon.cyan {
  color: #05788a;
  background: var(--cyan-100);
}

.card-icon.warm {
  color: #76552d;
  background: #f8eddd;
}

.card-icon.green {
  color: var(--success);
  background: #e6f5f0;
}

.principles {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

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

.principle {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.principle-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy-800);
  border-radius: 13px;
  font-weight: 800;
}

.principle strong {
  color: var(--navy-950);
}

.principle p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.soft-panel {
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at 95% 5%, rgba(8, 184, 201, 0.15), transparent 18rem),
    linear-gradient(135deg, #edf7ff, #f9fcff);
  border: 1px solid #dce8f4;
  border-radius: var(--radius-lg);
}

.soft-panel > :last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.feature strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-950);
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 5vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(8, 184, 201, 0.36), transparent 16rem),
    var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel h2 {
  margin-bottom: 10px;
}

.cta-panel p {
  max-width: 62ch;
  margin-bottom: 0;
  opacity: 0.75;
}

.cta-panel .btn-secondary {
  background: #fff;
  border-color: #fff;
}

.page-hero {
  padding-block: clamp(72px, 9vw, 118px) clamp(58px, 7vw, 90px);
  overflow: hidden;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero.centered {
  text-align: center;
}

.page-hero.centered .lead {
  margin-inline: auto;
}

.page-hero.centered h1 {
  max-width: none;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.info-table {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid rgba(223, 230, 239, 0.85);
}

.info-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  padding-block: 15px;
  border-bottom: 1px solid rgba(223, 230, 239, 0.85);
}

.info-row span {
  color: var(--muted);
}

.info-row strong,
.info-row address {
  margin: 0;
  color: var(--navy-950);
  font-style: normal;
  font-weight: 700;
}

.support-email {
  word-break: break-word;
}

.illustration-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  margin: 0;
}

.illustration-frame::before {
  content: "";
  position: absolute;
  inset: 12% 2% 8%;
  z-index: -1;
  background: radial-gradient(circle, rgba(8, 184, 201, 0.15), transparent 65%);
  filter: blur(8px);
}

.illustration-frame img {
  width: min(100%, 620px);
  height: auto;
}

.page-art {
  position: relative;
  min-height: clamp(360px, 42vw, 570px);
  display: grid;
  place-items: center;
  margin: 0;
  isolation: isolate;
}

.page-art::before {
  content: "";
  position: absolute;
  inset: 12% 4% 7%;
  z-index: -1;
  border-radius: 46% 54% 50% 50%;
  background:
    radial-gradient(circle at 72% 24%, rgba(8, 184, 201, 0.16), transparent 36%),
    radial-gradient(circle at 22% 78%, rgba(18, 52, 100, 0.12), transparent 38%);
  filter: blur(14px);
}

.page-art img {
  width: min(690px, 116%);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(10, 33, 72, 0.09));
}

.page-art.compact {
  min-height: clamp(320px, 36vw, 500px);
}

.page-art.compact img {
  width: min(610px, 108%);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.toc {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.toc strong {
  margin-bottom: 7px;
  color: var(--navy-950);
}

.toc a {
  padding: 5px 0;
  color: var(--muted);
  font-size: 14px;
}

.toc a:hover {
  color: var(--cyan-600);
}

.legal-content {
  max-width: 800px;
}

.legal-content section {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 105px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 31px;
}

.legal-content h3 {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 18px;
}

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

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-meta {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 11px;
  color: var(--muted);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.site-footer {
  padding-block: 42px 30px;
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(160px, 0.55fr));
  gap: 38px;
  padding-bottom: 32px;
}

.footer-brand img {
  width: 188px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 46ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.footer-col strong {
  margin-bottom: 4px;
  color: var(--navy-950);
  font-size: 14px;
}

.footer-col a,
.footer-col address {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.footer-col a:hover {
  color: var(--cyan-600);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1020px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    max-height: calc(100vh - 78px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px var(--gutter) 24px;
    overflow-y: auto;
    background: #fbfdff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(10, 33, 72, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 52px;
    padding-inline: 4px;
    border-bottom: 1px solid var(--line);
  }

  .grid-2,
  .section-head,
  .principles,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 14ch;
  }

  .product-visual {
    min-height: 470px;
  }

  .toc {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 168px;
  }

  h1,
  .h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2,
  .h2 {
    font-size: 36px;
  }

  .hero {
    padding-block: 58px 72px;
  }

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

  .proof-row {
    display: grid;
  }

  .product-visual {
    min-height: 390px;
    margin-top: 12px;
  }

  .dashboard {
    top: 9%;
    left: 2%;
    width: 96%;
    min-height: 310px;
    padding: 14px;
  }

  .dashboard-body {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }

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

  .metric:last-child {
    display: none;
  }

  .visual-card-code {
    right: 0;
  }

  .visual-card-mobile {
    display: none;
  }

  .visual-card-status {
    right: 0;
    bottom: -1%;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 22px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .illustration-frame {
    min-height: 280px;
  }

  .page-art,
  .page-art.compact {
    min-height: 300px;
  }

  .page-art img,
  .page-art.compact img {
    width: min(540px, 115%);
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
