:root {
  --surface-page: #ffffff;
  --surface-soft: #f0f0f0;
  --surface-mid: #d4d4d4;
  --surface-dark: #171717;
  --surface-dark-2: #262626;
  --text-heavy: #171717;
  --text-medium: #525252;
  --text-light: #737373;
  --text-inverted: #ffffff;
  --text-inverted-muted: #a3a3a3;
  --accent: #09fe94;
  --error: #ff470a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-hero: 40px;
  --page-gutter: 48px;
  --container: 1400px;
  --shadow-small:
    0 1px 1px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-large:
    0 2px 2px rgba(0, 0, 0, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.16),
    0 40px 80px rgba(0, 0, 0, 0.14);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-heavy);
  background: var(--surface-page);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  overflow-x: hidden;
  background: var(--surface-page);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

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

svg {
  flex: none;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent), #000 35%);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--surface-dark);
  color: white;
  transform: translateY(-160%);
  transition: transform 180ms ease-out;
}

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

.texture {
  position: relative;
  isolation: isolate;
}

.texture::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background-image: url("https://framerusercontent.com/images/eSKsiFDuKFu9WHCOaL2VvSrlyk0.svg");
  background-size: 420px;
  opacity: 0.06;
  content: "";
  pointer-events: none;
}

.nav-shell {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--page-gutter);
  background: rgba(240, 240, 240, 0.75);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, var(--container));
  min-height: 80px;
  margin: 0 auto;
  gap: 32px;
}

.nav-top {
  display: flex;
  align-items: center;
}

.brand {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 32px;
}

.nav-links a,
.footer-column a {
  position: relative;
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.5;
  transition: color 180ms ease-out;
}

.nav-links a::after,
.footer-column a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease-out;
}

.nav-links a:hover,
.footer-column a:hover {
  color: var(--text-heavy);
}

.nav-links a:hover::after,
.footer-column a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 48px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-heavy);
}

.menu-button span {
  display: grid;
  place-items: center;
}

.menu-button:focus-visible {
  outline-offset: -3px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    background-color 180ms ease-out,
    color 180ms ease-out,
    box-shadow 180ms ease-out,
    transform 180ms ease-out;
}

.button-primary {
  background: var(--surface-dark);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.button-primary:hover {
  background: #303030;
}

.button-primary::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(9, 254, 148, 0.14);
  content: "";
}

.button-secondary {
  background: white;
  color: var(--surface-dark);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), var(--shadow-small);
}

.button-secondary:hover {
  background: #f7f7f7;
}

.button-inverted {
  background: white;
  color: var(--surface-dark);
}

.button-inverted:hover {
  background: var(--accent);
}

.button-ghost-dark {
  background: transparent;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.button-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  display: flex;
  width: min(100%, calc(var(--container) + var(--page-gutter) * 2));
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  padding: 156px var(--page-gutter) 0;
}

.hero-copy {
  display: flex;
  width: min(100%, 680px);
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.announcement {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition:
    background-color 180ms ease-out,
    color 180ms ease-out;
}

.announcement:hover {
  background: #e5e5e5;
  color: var(--text-heavy);
}

.hero h1,
.page-hero h1,
.contact-copy h1,
.article-header h1 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(52px, 6.67vw, 80px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 520px;
  color: var(--text-medium);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-visual {
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-hero);
  background: var(--surface-dark);
}

.hero-dashboard {
  height: 100%;
}

.dashboard {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 664px;
  overflow: hidden;
  grid-template-columns: 190px minmax(0, 1fr);
  border-radius: var(--radius-lg);
  background: var(--surface-dark-2);
  color: white;
  box-shadow: var(--shadow-large);
}

.dash-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px 20px;
  background: var(--surface-dark);
}

.dash-sidebar > strong {
  margin: 0 10px 48px;
  font-size: 17px;
}

.dash-nav {
  display: grid;
  gap: 8px;
}

.dash-nav span,
.dash-settings {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-inverted-muted);
  font-size: 13px;
}

.dash-nav span.active {
  background: var(--surface-dark-2);
  color: var(--accent);
}

.dash-nav svg,
.dash-settings svg {
  width: 17px;
  height: 17px;
}

.dash-settings {
  margin-top: auto;
}

.dash-main {
  min-width: 0;
  padding: 32px;
}

.dash-toolbar,
.dash-card-title,
.tier-row,
.blog-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-kicker {
  color: var(--text-inverted-muted);
  font-size: 13px;
}

.dash-toolbar h3 {
  margin-top: 5px;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.dash-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-toolbar-actions button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: #303030;
  color: white;
}

.dash-toolbar-actions button svg {
  width: 17px;
}

.dash-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface-dark);
  font-size: 12px;
  font-weight: 600;
}

.dash-filters {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.dash-filters span {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: 7px;
  background: #303030;
  color: var(--text-inverted-muted);
  font-size: 11px;
}

.dash-filters svg {
  width: 13px;
  height: 13px;
}

.dash-kpis {
  display: grid;
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dash-card {
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  border-radius: 12px;
  background: #303030;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.dash-kpis .dash-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-kpis span {
  color: var(--text-inverted-muted);
  font-size: 11px;
}

.dash-kpis strong {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.dash-kpis small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-inverted-muted);
  font-size: 10px;
}

.dash-kpis b {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--accent);
  font-weight: 500;
}

.dash-kpis b svg {
  width: 12px;
  height: 12px;
}

.dash-grid {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 1.45fr 1fr;
  gap: 12px;
}

.delivery-chart {
  min-height: 260px;
  grid-row: span 2;
}

.dash-card-title {
  color: white;
  font-size: 12px;
  font-weight: 500;
}

.dash-card-title span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dash-card-title svg {
  width: 14px;
  height: 14px;
  color: var(--text-inverted-muted);
}

.bar-chart {
  display: flex;
  height: 150px;
  align-items: flex-end;
  gap: 6px;
  margin-top: 24px;
  padding: 0 6px;
}

.chart-bar {
  display: block;
  width: 100%;
  min-height: 8px;
  border-radius: 3px 3px 0 0;
  background: #8c8c8c;
}

.chart-bar-0 {
  background: var(--accent);
}

.chart-bar-1 {
  background: #f0f0f0;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--text-inverted-muted);
  font-size: 9px;
}

.ai-card {
  min-height: 174px;
}

.ai-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.ai-card li {
  padding: 8px 10px;
  border-radius: 6px;
  background: #3a3a3a;
  color: #d4d4d4;
  font-size: 9px;
  line-height: 1.4;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quick-actions > span {
  grid-column: 1 / -1;
  font-size: 12px;
}

.quick-actions button {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 7px;
  background: #3a3a3a;
  color: #d4d4d4;
  font-size: 9px;
}

.quick-actions button svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.trusted-section {
  display: flex;
  width: min(100%, calc(var(--container) + var(--page-gutter) * 2));
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 96px var(--page-gutter) 0;
  text-align: center;
}

.trusted-section > p {
  color: var(--text-medium);
  font-size: 18px;
  font-weight: 500;
}

.logo-ticker {
  width: min(100%, 1200px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  display: grid;
  min-width: 220px;
  min-height: 64px;
  place-items: center;
  color: #777;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  width: min(100%, calc(var(--container) + var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 144px var(--page-gutter) 0;
}

.section-heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.heading-copy {
  display: flex;
  flex-direction: column;
  align-items: inherit;
  gap: 24px;
}

.section-heading h2,
.cta-card h2,
.legal-page h1 {
  max-width: 660px;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 600px;
  color: var(--text-medium);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.section-heading.align-left {
  align-items: flex-start;
  text-align: left;
}

.section-heading-split {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.section-heading-split > p {
  justify-self: end;
}

.chip {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.chip-dark {
  background: var(--surface-dark-2);
  color: var(--accent);
}

.bento-grid {
  display: grid;
  height: 800px;
  margin-top: 64px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.bento-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 12px 34px rgba(0, 0, 0, 0.05);
}

.bento-copy {
  display: grid;
  gap: 14px;
}

.bento-copy h3,
.feature-card h3,
.process-card h3,
.pricing-card h3,
.footer h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.bento-copy p,
.feature-card p,
.process-card p,
.pricing-card p {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.bento-visual {
  display: flex;
  min-height: 0;
  flex: 1;
  align-items: flex-start;
}

.bento-dashboard,
.bento-insights {
  grid-column: span 2;
}

.bento-dashboard .bento-visual {
  width: 1008px;
  height: 750px;
  transform: translateY(8px) scale(0.46);
  transform-origin: top left;
}

.dashboard-compact {
  width: 1008px;
  height: 750px;
}

.source-list {
  display: grid;
  width: 100%;
  gap: 8px;
}

.source-list span,
.source-list button {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: var(--surface-soft);
  color: var(--text-medium);
  font-size: 12px;
  text-align: left;
}

.source-list svg {
  width: 15px;
  height: 15px;
}

.source-list span svg:last-child {
  margin-left: auto;
  color: #168b59;
}

.source-list button {
  justify-content: center;
  background: var(--surface-dark);
  color: white;
}

.insight-list {
  display: grid;
  width: 100%;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  background: var(--surface-dark);
  color: white;
}

.insight-list > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.insight-list svg {
  width: 16px;
  color: var(--accent);
}

.insight-list p {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface-dark-2);
  color: #d4d4d4;
  font-size: 12px;
}

.verified {
  display: grid;
  width: 100%;
  min-height: 180px;
  place-content: center;
  border-radius: 14px;
  background: var(--surface-dark);
  color: white;
  text-align: center;
}

.verified strong {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.verified span {
  color: var(--text-inverted-muted);
  font-size: 13px;
}

.quote-section {
  display: grid;
  width: min(100%, calc(var(--container) + var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 144px var(--page-gutter) 0;
  place-items: center;
}

.quote-card {
  display: grid;
  width: min(100%, 650px);
  gap: 32px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--surface-dark);
  color: white;
  box-shadow: var(--shadow-large);
}

.quote-label {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text-inverted-muted);
  font-size: 12px;
  font-weight: 500;
}

.stars {
  color: var(--accent);
  font-size: 17px;
  letter-spacing: 0.18em;
}

.quote-card blockquote,
.testimonial-card blockquote {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-person > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface-dark);
  font-size: 12px;
  font-weight: 600;
}

.quote-person div,
.testimonial-card > div:last-child {
  display: grid;
  gap: 4px;
}

.quote-person small,
.testimonial-card > div:last-child span {
  color: var(--text-inverted-muted);
  font-size: 13px;
}

.features-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  display: flex;
  min-height: 258px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 12px;
  background: white;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.04);
}

.feature-card > div {
  display: grid;
  gap: 14px;
}

.feature-icon,
.process-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--surface-dark);
  color: white;
  box-shadow: var(--shadow-small);
}

.feature-icon svg,
.process-icon svg {
  width: 19px;
  height: 19px;
}

.feature-image {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  grid-row: span 2;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--surface-dark);
}

.feature-image::before {
  position: absolute;
  inset: 0;
  background: url("https://framerusercontent.com/images/eSKsiFDuKFu9WHCOaL2VvSrlyk0.svg");
  background-size: 420px;
  opacity: 0.1;
  content: "";
}

.code-window {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #1f1f1f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.code-window-bar {
  display: flex;
  height: 52px;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #292929;
}

.code-window-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #777;
}

.code-window-bar > span:first-child {
  background: #ff6b62;
}

.code-window-bar > span:nth-child(2) {
  background: #ffc85c;
}

.code-window-bar > span:nth-child(3) {
  background: var(--accent);
}

.code-window-bar strong {
  margin-left: 12px;
  color: #bdbdbd;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.code-window-body {
  display: grid;
  gap: 11px;
  padding: 28px 22px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.45;
}

.code-line {
  display: grid;
  grid-template-columns: 26px 1fr;
  color: #d4d4d4;
  white-space: nowrap;
}

.code-line i {
  color: #626262;
  font-style: normal;
  user-select: none;
}

.code-line b {
  color: #9de6c2;
  font-weight: 500;
}

.code-line em {
  color: #cfb4ff;
  font-style: normal;
}

.code-line strong {
  color: var(--accent);
  font-weight: 500;
}

.feature-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

.image-stat {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.78);
  color: white;
  backdrop-filter: blur(12px);
}

.image-stat > span,
.image-stat em {
  color: #d4d4d4;
  font-size: 12px;
  font-style: normal;
}

.image-stat > strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.image-stat-top {
  top: 72px;
  left: 72px;
}

.image-stat-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(9, 254, 148, 0.18);
}

.image-stat-bottom {
  right: 72px;
  bottom: 72px;
  min-width: 200px;
}

.image-stat-bottom > strong {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 32px;
  font-variant-numeric: tabular-nums;
}

.image-stat-bottom small {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.image-stat-bottom svg {
  width: 14px;
}

.showcase-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

.showcase-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.showcase-mobile {
  grid-row: span 2;
}

.showcase-web,
.showcase-desktop {
  min-height: 340px;
  grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1.28fr);
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 32px;
}

.showcase-copy > span {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  font-size: 26px;
}

.showcase-copy p {
  color: var(--text-medium);
  font-size: 15px;
}

.showcase-visual {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  padding: 34px;
  place-items: center;
  background: var(--surface-dark);
}

.showcase-mobile .showcase-visual {
  min-height: 610px;
}

.mobile-product {
  position: relative;
  width: min(100%, 270px);
  min-height: 520px;
  padding: 50px 20px 24px;
  border: 7px solid #111;
  border-radius: 38px;
  background: #f7f7f7;
  color: var(--text-heavy);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.mobile-product-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 82px;
  height: 22px;
  border-radius: 20px;
  background: #111;
  transform: translateX(-50%);
}

.mobile-product-head {
  display: grid;
  gap: 4px;
}

.mobile-product-head span,
.mobile-product-balance span,
.mobile-product-balance small {
  color: var(--text-light);
  font-size: 11px;
}

.mobile-product-head strong {
  font-size: 18px;
}

.mobile-product-balance {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: var(--surface-dark);
  color: white;
}

.mobile-product-balance strong {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
}

.mobile-product-balance small {
  color: var(--accent);
}

.mobile-product-actions {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mobile-product-actions span {
  display: grid;
  min-height: 62px;
  place-items: center;
  gap: 4px;
  border-radius: 12px;
  background: white;
  font-size: 9px;
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.06);
}

.mobile-product-actions svg {
  width: 16px;
  height: 16px;
}

.mobile-product-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mobile-product-list > strong {
  font-size: 12px;
}

.mobile-product-list span {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: 10px;
  background: white;
  font-size: 9px;
}

.mobile-product-list span i {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--surface-soft);
}

.mobile-product-list span b {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

.web-product,
.desktop-product {
  width: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #f7f7f7;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  transform: translateX(70px);
}

.product-window-bar {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #292929;
}

.product-window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #666;
}

.product-window-bar > span:first-child {
  background: #ff6b62;
}

.product-window-bar > span:nth-child(2) {
  background: #ffc85c;
}

.product-window-bar > span:nth-child(3) {
  background: var(--accent);
}

.product-window-bar strong {
  margin-left: 8px;
  color: #a3a3a3;
  font-size: 9px;
  font-weight: 500;
}

.web-product-body {
  display: grid;
  min-height: 250px;
  grid-template-columns: 58px 1fr;
}

.web-product-body > aside {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  flex-direction: column;
  background: #1f1f1f;
}

.web-product-body > aside b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  font-size: 9px;
}

.web-product-body > aside i {
  width: 22px;
  height: 5px;
  border-radius: 4px;
  background: #505050;
}

.web-product-body > div {
  padding: 22px;
}

.web-product-body header {
  display: grid;
  gap: 4px;
}

.web-product-body header span,
.web-product-kpis small {
  color: var(--text-light);
  font-size: 9px;
}

.web-product-body header strong {
  font-size: 17px;
}

.web-product-kpis {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.web-product-kpis span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.06);
}

.web-product-kpis b {
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.web-product-chart {
  display: flex;
  height: 92px;
  align-items: flex-end;
  gap: 7px;
  margin-top: 16px;
  padding: 12px 14px 0;
  border-radius: 9px;
  background: white;
}

.web-product-chart i {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: #c7c7c7;
}

.web-product-chart i:nth-child(3n + 1) {
  background: var(--accent);
}

.desktop-product-body {
  display: grid;
  min-height: 250px;
  grid-template-columns: 155px 1fr;
}

.desktop-product-body > aside {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px 14px;
  background: #ededed;
}

.desktop-product-body > aside strong {
  margin-bottom: 5px;
  font-size: 11px;
}

.desktop-product-body > aside span {
  padding: 8px 9px;
  border-radius: 7px;
  color: var(--text-medium);
  font-size: 9px;
}

.desktop-product-body > aside span.active {
  background: white;
  color: var(--text-heavy);
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.06);
}

.desktop-product-body > div {
  padding: 24px;
}

.desktop-product-body header {
  display: grid;
  gap: 4px;
}

.desktop-product-body header small {
  color: var(--text-light);
  font-size: 9px;
}

.desktop-product-body header strong {
  font-size: 17px;
}

.desktop-product-body section {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.desktop-product-body section span {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: 9px;
  background: white;
  font-size: 10px;
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.06);
}

.desktop-product-body section svg {
  width: 15px;
  color: #168b59;
}

.process-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.process-card > div {
  display: grid;
  gap: 14px;
}

.process-number {
  position: absolute;
  right: 16px;
  bottom: -26px;
  color: rgba(23, 23, 23, 0.06);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 112px;
  font-variant-numeric: tabular-nums;
}

.testimonials-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.testimonials-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  display: grid;
  min-height: 340px;
  align-content: space-between;
  gap: 32px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.testimonial-card blockquote {
  max-width: 560px;
  font-size: 24px;
}

.testimonial-label {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: white;
  color: var(--text-medium);
  font-size: 12px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.06);
}

.testimonial-card > div:last-child span {
  color: var(--text-light);
}

.pricing-grid {
  display: grid;
  margin-top: 64px;
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  display: flex;
  min-height: 624px;
  flex-direction: column;
  gap: 48px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.pricing-card-primary {
  background: var(--surface-dark);
  color: white;
  box-shadow: var(--shadow-large);
}

.pricing-top {
  display: grid;
  gap: 16px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.price strong {
  max-width: 100%;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.price span {
  padding-bottom: 6px;
  color: var(--text-light);
  font-size: 14px;
}

.pricing-card-primary .price span,
.pricing-card-primary p,
.pricing-card-primary .plan-features > span {
  color: var(--text-inverted-muted);
}

.plan-features {
  display: grid;
  gap: 16px;
}

.plan-features > span {
  color: var(--text-light);
  font-size: 14px;
}

.plan-features ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.4;
}

.pricing-card-primary .plan-features li {
  color: #d4d4d4;
}

.plan-features li svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--surface-dark);
}

.pricing-card-primary .plan-features li svg {
  background: var(--accent);
}

.pricing-card > div:last-child {
  margin-top: auto;
}

.pricing-card .button {
  width: 100%;
}

.faq-list {
  width: min(100%, 900px);
  margin: 64px auto 0;
}

.faq-item {
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--text-heavy);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.faq-item button > span:last-child {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
}

.faq-item button svg {
  width: 18px;
}

.faq-item > div p {
  max-width: 720px;
  padding: 0 56px 24px 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

.blog-preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.blog-preview-card {
  margin-top: 64px;
}

.blog-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.blog-card-featured {
  grid-template-columns: 1.35fr 1fr;
}

.blog-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.025);
}

.blog-categories {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
}

.blog-categories .chip {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 12px;
}

.blog-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}

.blog-card-copy > span {
  color: var(--text-light);
  font-size: 13px;
}

.blog-card-copy h3 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.blog-card-copy > p {
  color: var(--text-light);
  line-height: 1.55;
}

.blog-author {
  margin-top: auto;
  justify-content: flex-start;
  gap: 12px;
}

.blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-author div {
  display: grid;
  gap: 3px;
}

.blog-author strong {
  font-size: 13px;
}

.blog-author span {
  color: var(--text-light);
  font-size: 11px;
}

.blog-author > svg {
  width: 20px;
  margin-left: auto;
}

.cta-section {
  width: min(100%, calc(var(--container) + var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 144px var(--page-gutter) 96px;
}

.cta-card {
  display: flex;
  min-height: 390px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  overflow: hidden;
  padding: 48px;
  border-radius: 24px;
  background: var(--surface-dark);
  color: white;
  box-shadow: var(--shadow-large);
}

.cta-card > div:first-child {
  display: grid;
  max-width: 680px;
  gap: 24px;
}

.cta-card p {
  max-width: 540px;
  color: var(--text-inverted-muted);
  font-size: 18px;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  display: grid;
  width: min(100%, calc(var(--container) + var(--page-gutter) * 2));
  margin: 0 auto;
  gap: 64px;
  padding: 0 var(--page-gutter) 48px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-brand > p,
.footer-newsletter > p {
  max-width: 300px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  transition:
    background-color 180ms ease-out,
    color 180ms ease-out,
    transform 180ms ease-out;
}

.socials a:hover {
  background: var(--surface-dark);
  color: white;
  transform: translateY(-2px);
}

.socials svg {
  width: 17px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-column h3,
.footer-newsletter h3 {
  margin-bottom: 8px;
}

.footer-newsletter {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-newsletter form,
.contact-form-card form {
  display: grid;
  gap: 12px;
}

.footer-newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.footer-newsletter form > div {
  display: flex;
  gap: 8px;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 9px;
  background: white;
  color: var(--text-heavy);
  transition:
    border-color 180ms ease-out,
    box-shadow 180ms ease-out;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--text-heavy);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.08);
}

.footer-newsletter button {
  display: grid;
  width: 48px;
  height: 48px;
  flex: none;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: var(--surface-dark);
  color: white;
}

.footer-newsletter button svg {
  width: 18px;
}

.form-status {
  min-height: 18px;
  color: #29704f;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--text-light);
  font-size: 13px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.08);
}

.footer-bottom a {
  color: var(--text-heavy);
}

.page-hero {
  display: flex;
  width: min(100%, 760px);
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 180px 24px 96px;
  text-align: center;
}

.page-hero > p,
.contact-copy > p,
.article-header > p {
  max-width: 600px;
  color: var(--text-medium);
  font-size: 18px;
  line-height: 1.55;
}

.blog-index {
  width: min(100%, calc(var(--container) + var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.blog-index > div:first-child .blog-card {
  margin-bottom: 64px;
}

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

.blog-grid .blog-card {
  height: 100%;
  grid-template-rows: 240px 1fr;
}

.blog-grid .blog-card-copy h3 {
  font-size: 23px;
}

.article-page {
  width: min(100%, calc(var(--container) + var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 180px var(--page-gutter) 0;
}

.article-header {
  display: flex;
  width: min(100%, 860px);
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.article-header h1 {
  font-size: clamp(46px, 5vw, 68px);
}

.article-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.article-byline img {
  border-radius: 50%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.article-byline div {
  display: grid;
  gap: 4px;
}

.article-byline span {
  color: var(--text-light);
  font-size: 13px;
}

.article-cover {
  margin-top: 72px;
  overflow: hidden;
  padding: 48px;
  border-radius: 32px;
  background: var(--surface-dark);
}

.article-cover img {
  width: 100%;
  max-height: 720px;
  border-radius: 16px;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content {
  width: min(100%, 760px);
  margin: 80px auto 0;
  color: var(--text-medium);
  font-size: 18px;
  line-height: 1.75;
}

.article-content h2,
.article-content h3 {
  color: var(--text-heavy);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.article-content h2 {
  margin: 64px 0 20px;
  font-size: 36px;
}

.article-content h3 {
  margin: 44px 0 14px;
  font-size: 27px;
}

.article-content p {
  margin: 0 0 24px;
}

.article-content ul {
  display: grid;
  gap: 10px;
}

.contact-page {
  display: grid;
  width: min(100%, calc(1200px + var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 180px var(--page-gutter) 0;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.contact-copy h1 {
  font-size: clamp(52px, 6vw, 76px);
}

.contact-details {
  display: grid;
  width: 100%;
  gap: 12px;
  margin-top: 24px;
}

.contact-details a {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 12px;
  background: var(--surface-soft);
  transition: background-color 180ms ease-out;
}

.contact-details a:hover {
  background: #e5e5e5;
}

.contact-details span {
  color: var(--text-light);
  font-size: 13px;
}

.contact-form-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.contact-form-card form {
  gap: 20px;
}

.contact-form-card label {
  display: grid;
  gap: 8px;
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-card .button {
  width: fit-content;
}

.legal-page {
  display: grid;
  width: min(100%, 1000px);
  margin: 0 auto;
  gap: 96px;
  padding: 180px 24px 0;
  grid-template-columns: 0.8fr 1.2fr;
}

.legal-page header {
  position: sticky;
  top: 130px;
  display: flex;
  height: fit-content;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.legal-page > div {
  color: var(--text-medium);
  line-height: 1.7;
}

.legal-page section {
  margin-top: 48px;
}

.legal-page section h2 {
  margin-bottom: 14px;
  color: var(--text-heavy);
  font-size: 22px;
}

.not-found {
  display: flex;
  min-height: 760px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 150px 24px 60px;
  text-align: center;
}

.not-found > span {
  color: var(--surface-soft);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(130px, 20vw, 224px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-shadow: 0 1px 0 #d4d4d4;
}

.not-found h1 {
  max-width: 640px;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.not-found p {
  color: var(--text-medium);
}

@media (max-width: 1024px) {
  :root {
    --page-gutter: 32px;
  }

  .hero-visual {
    min-height: 650px;
    padding: 36px;
  }

  .dashboard {
    min-height: 578px;
    grid-template-columns: 156px minmax(0, 1fr);
  }

  .dash-main {
    padding: 24px;
  }

  .bento-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 390px 390px 390px;
  }

  .bento-dashboard,
  .bento-insights {
    grid-column: span 1;
  }

  .bento-dashboard {
    grid-column: span 2;
  }

  .bento-dashboard .bento-visual {
    transform: translateY(0) scale(0.54);
  }

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

  .feature-image {
    min-height: 560px;
    grid-row: auto;
  }

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

  .showcase-mobile {
    grid-row: auto;
    grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  }

  .showcase-mobile .showcase-visual {
    min-height: 560px;
  }

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

  .pricing-card {
    min-height: 0;
  }

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

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

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

  .contact-page {
    gap: 48px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 16px;
  }

  .nav-shell {
    padding: 0 16px;
  }

  .navbar {
    height: 78px;
    min-height: 78px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    overflow: hidden;
    transition: height 240ms cubic-bezier(0.2, 0, 0, 1);
  }

  .navbar.is-open {
    height: 100dvh;
    min-height: 100dvh;
  }

  .nav-top {
    min-height: 78px;
    justify-content: space-between;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    display: flex;
    flex: none;
    flex-direction: column;
    gap: 18px;
  }

  .nav-links a {
    min-height: 44px;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.04em;
  }

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

  .nav-cta {
    width: 100%;
  }

  .hero {
    gap: 64px;
    padding-top: 132px;
  }

  .hero-copy {
    gap: 24px;
  }

  .hero h1,
  .page-hero h1,
  .contact-copy h1,
  .article-header h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .hero-copy > p,
  .section-heading > p,
  .page-hero > p,
  .contact-copy > p,
  .article-header > p {
    font-size: 16px;
  }

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

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

  .hero-visual {
    min-height: 470px;
    padding: 24px;
    border-radius: 24px;
  }

  .dashboard {
    min-width: 760px;
    min-height: 560px;
    transform: scale(0.68);
    transform-origin: top left;
  }

  .hero-dashboard {
    width: 760px;
  }

  .trusted-section,
  .section,
  .quote-section,
  .cta-section {
    padding-top: 104px;
  }

  .section-heading h2,
  .cta-card h2,
  .legal-page h1 {
    font-size: 38px;
  }

  .section-heading-split,
  .testimonials-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .bento-grid {
    display: flex;
    height: auto;
    flex-direction: column;
  }

  .bento-card {
    min-height: 388px;
    padding: 24px;
  }

  .bento-dashboard {
    min-height: 500px;
  }

  .bento-dashboard .bento-visual {
    transform: scale(0.42);
  }

  .quote-card {
    padding: 32px 24px;
  }

  .quote-card blockquote,
  .testimonial-card blockquote {
    font-size: 23px;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
  }

  .showcase-mobile,
  .showcase-web,
  .showcase-desktop {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .showcase-copy {
    padding: 28px 24px;
  }

  .showcase-visual {
    min-height: 390px;
    padding: 28px 20px;
  }

  .showcase-mobile .showcase-visual {
    min-height: 590px;
  }

  .web-product,
  .desktop-product {
    transform: translateX(54px);
  }

  .feature-image {
    min-height: 460px;
    padding: 24px;
  }

  .image-stat-top {
    top: 44px;
    left: 44px;
  }

  .image-stat-bottom {
    right: 44px;
    bottom: 44px;
  }

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

  .process-card {
    min-height: 260px;
    padding: 24px;
  }

  .blog-preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-card-featured {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 1fr;
  }

  .cta-card {
    min-height: 480px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 32px 24px;
  }

  .cta-actions,
  .cta-actions > div,
  .cta-actions .button {
    width: 100%;
  }

  .footer {
    padding-bottom: 32px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 48px 24px;
  }

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

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

  .page-hero {
    padding-top: 150px;
  }

  .blog-index {
    padding: 0 16px;
  }

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

  .article-page {
    padding-top: 150px;
  }

  .article-cover {
    margin-top: 52px;
    padding: 20px;
    border-radius: 22px;
  }

  .article-content {
    margin-top: 56px;
    font-size: 17px;
  }

  .contact-page {
    padding-top: 150px;
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding-top: 150px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-page header {
    position: static;
  }
}

@media (max-width: 420px) {
  .announcement {
    font-size: 12px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .dashboard {
    transform: scale(0.56);
  }

  .bento-dashboard .bento-visual {
    transform: scale(0.34);
  }

  .feature-image {
    min-height: 390px;
  }

  .showcase-copy h3 {
    font-size: 23px;
  }

  .showcase-visual {
    min-height: 350px;
  }

  .showcase-mobile .showcase-visual {
    min-height: 560px;
  }

  .web-product,
  .desktop-product {
    transform: translateX(98px) scale(0.86);
  }

  .image-stat {
    padding: 13px;
  }

  .image-stat-top {
    top: 36px;
    left: 36px;
  }

  .image-stat-bottom {
    right: 36px;
    bottom: 36px;
    min-width: 176px;
  }

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

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

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

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

/* ==========================================================================
   Custom Admin Portal & Search Bar Styles
   ========================================================================== */

/* Navigation Search Bar */
.nav-search-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 12px;
  max-width: 200px;
  width: 100%;
}

.nav-search-input {
  width: 100%;
  min-height: 38px;
  height: 38px;
  padding: 8px 12px 8px 36px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  background: white;
  color: var(--text-heavy);
  font-size: 14px;
  transition: all 180ms ease-out;
}

.nav-search-input:focus {
  border-color: var(--text-heavy);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.08);
  max-width: 260px;
}

.nav-search-icon {
  position: absolute;
  left: 12px;
  width: 15px;
  height: 15px;
  color: var(--text-light);
  pointer-events: none;
}

/* Hidden Modal Overlay */
.modal-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(23, 23, 23, 0.7);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Modal Content Card */
.modal-card {
  position: relative;
  width: min(100%, 450px);
  padding: 40px;
  border-radius: 20px;
  background: var(--surface-dark-2);
  color: white;
  box-shadow: var(--shadow-large);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: modalReveal 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalReveal {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transition: background 180ms ease-out, transform 180ms ease-out;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.modal-close-btn svg {
  width: 14px;
  height: 14px;
}

.modal-header {
  margin-bottom: 28px;
}

.modal-header h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  margin: 12px 0 8px;
  letter-spacing: -0.03em;
}

.modal-header p {
  color: var(--text-inverted-muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-inverted-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input {
  min-height: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(9, 254, 148, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

#login-form button[type="submit"] {
  width: 100%;
  margin-top: 12px;
}

.login-error-msg {
  margin-top: 16px;
  color: var(--error);
  font-size: 13px;
  min-height: 18px;
  text-align: center;
}

/* Mobile Adjustments for Search */
@media (max-width: 760px) {
  .nav-search-container {
    max-width: none;
    margin: 8px 0;
    order: 2; /* Position search beautifully under nav links, before button */
  }
  
  .modal-card {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   Tech Stack Grid
   ========================================================================== */

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.tech-category {
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 200ms ease-out, transform 200ms ease-out;
}

.tech-category:hover {
  box-shadow: var(--shadow-small);
  transform: translateY(-2px);
}

.tech-category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tech-category-header svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex: none;
}

.tech-category-header h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heavy);
  letter-spacing: -0.02em;
}

.tech-category-header h3 em {
  font-style: normal;
  color: var(--text-medium);
  font-weight: 400;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text-medium);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-small);
  transition: all 160ms ease-out;
}

.tech-badge:hover {
  color: var(--text-heavy);
  border-color: rgba(0,0,0,0.14);
}

.tech-badge-accent {
  background: color-mix(in srgb, var(--accent), transparent 85%);
  border-color: color-mix(in srgb, var(--accent), transparent 60%);
  color: color-mix(in srgb, var(--accent), #000 50%);
  font-weight: 600;
}

@media (max-width: 900px) {
  .tech-stack-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Compliance & Security Banner
   ========================================================================== */

.compliance-section {
  width: min(100%, calc(var(--container) + var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  margin-top: 96px;
}

.compliance-inner {
  background: var(--surface-dark);
  border-radius: var(--radius-hero);
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.compliance-inner::before {
  position: absolute;
  inset: 0;
  background-image: url("https://framerusercontent.com/images/eSKsiFDuKFu9WHCOaL2VvSrlyk0.svg");
  background-size: 420px;
  opacity: 0.04;
  content: "";
  pointer-events: none;
}

.compliance-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compliance-heading h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  color: white;
  line-height: 1.18;
  letter-spacing: -0.045em;
  margin: 0;
}

.compliance-heading p {
  color: var(--text-inverted-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

.compliance-pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.compliance-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.compliance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 10px;
  background: rgba(9, 254, 148, 0.12);
  border: 1px solid rgba(9, 254, 148, 0.2);
}

.compliance-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.compliance-pillar h3 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.compliance-pillar p {
  font-size: 14px;
  color: var(--text-inverted-muted);
  line-height: 1.6;
}

.compliance-pillar strong {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 900px) {
  .compliance-inner {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 40px;
    border-radius: var(--radius-xl);
  }
}

@media (max-width: 760px) {
  .compliance-inner {
    padding: 36px 24px;
    border-radius: var(--radius-lg);
  }
}

/* ==========================================================================
   RFP Contact Form Styles
   ========================================================================== */

.rfp-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-medium);
  padding-top: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--surface-mid);
  margin-bottom: 4px;
  margin-top: 8px;
}

.rfp-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 4px;
}

.rfp-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface-soft);
  border: 1px solid var(--surface-mid);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
  transition: all 160ms ease-out;
  user-select: none;
}

.rfp-check:hover {
  background: #e8e8e8;
  border-color: #b0b0b0;
  color: var(--text-heavy);
}

.rfp-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-height: unset;
  padding: 0;
  border: 1.5px solid var(--surface-mid);
  border-radius: 4px;
  accent-color: var(--surface-dark);
  cursor: pointer;
}

.rfp-check:has(input:checked) {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
  color: white;
}

.rfp-check:has(input:checked) input {
  border-color: rgba(255,255,255,0.3);
}

.label-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heavy);
}

.label-select select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 9px;
  background: white;
  color: var(--text-heavy);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.label-select select:focus {
  border-color: var(--text-heavy);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.08);
}

/* Trust badges on contact page sidebar */
.compliance-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.compliance-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
}

.compliance-trust-badges svg {
  width: 15px;
  height: 15px;
  color: color-mix(in srgb, var(--accent), #000 30%);
}


