/* Fonts */
@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

/* Theme and base */
:root {
  --navy: #071a2a;
  --navy-2: #0c2538;
  --ink: #112331;
  --muted: #5f6d76;
  --mint: #58f2c5;
  --mint-dark: #1d997d;
  --line: #dce5e7;
  --paper: #f3f7f6;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(8, 31, 44, 0.12);
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--mint-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 99;
  top: -60px;
  left: 16px;
  padding: 10px 16px;
  background: var(--mint);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 88px;
  padding: 0 clamp(22px, 5vw, 78px);
  border-bottom: 1px solid rgba(17, 35, 49, 0.09);
  background: rgba(243, 247, 246, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  font: 800 23px/1 "Manrope", Arial, sans-serif;
  letter-spacing: -0.065em;
}

.brand-name {
  padding-left: 12px;
  border-left: 1px solid #a8b3b6;
  font: 600 11px/1.15 "Manrope", Arial, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 32px);
  font-size: 14px;
  font-weight: 600;
}

.site-header nav a {
  position: relative;
  white-space: nowrap;
}

.site-header nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint-dark);
  content: "";
  transition: width 0.25s ease;
}

.site-header nav a:hover::after {
  width: 100%;
}

.header-cta {
  flex: 0 0 auto;
  padding: 11px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

/* Shared typography and controls */
.eyebrow {
  margin: 0 0 22px;
  color: var(--mint-dark);
  font: 700 12px/1.2 "Manrope", Arial, sans-serif;
  letter-spacing: 2px;
}

.eyebrow span {
  display: inline-block;
  width: 25px;
  height: 2px;
  margin-right: 10px;
  background: currentColor;
  vertical-align: middle;
}

.eyebrow.light {
  color: var(--mint);
}

.hero h1,
.section h2,
.contact h2,
.privacy-main h1 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.03em;
}

.hero h1 em,
.section h2 em,
.contact h2 em {
  color: var(--mint-dark);
  font-style: normal;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 15px 20px;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--navy);
  color: var(--white);
}

.button.mint {
  min-width: 250px;
  background: var(--mint);
  color: var(--navy);
}

.button.wide {
  width: 100%;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
  align-items: center;
  gap: clamp(50px, 8vw, 128px);
  max-width: 1440px;
  margin: auto;
  padding: clamp(64px, 9vw, 132px) clamp(22px, 6vw, 92px) clamp(72px, 9vw, 128px);
}

.hero-copy,
.signal-board {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(47px, 5.5vw, 86px);
}

.lead {
  max-width: 690px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.trust-row li::before {
  margin-right: 8px;
  color: var(--mint-dark);
  font-weight: 800;
  content: "✓";
}

/* Example dashboard */
.signal-board {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
}

.signal-board::before {
  position: absolute;
  inset: -100px -120px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(88, 242, 197, 0.18), transparent 68%);
  content: "";
}

.example-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 9px;
  border: 1px solid rgba(88, 242, 197, 0.35);
  border-radius: 999px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.board-top,
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #9db0bc;
  font-size: 12px;
}

.board-top {
  padding: 0 3px 19px;
}

.board-top div,
.chart-head strong {
  color: var(--white);
  font-weight: 600;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(88, 242, 197, 0.1);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-grid article,
.chart-card {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.metric-grid span,
.metric-grid small {
  color: #9db0bc;
  font-size: 12px;
}

.metric-grid strong {
  display: block;
  margin: 8px 0 2px;
  font: 700 28px/1.15 "Manrope", Arial, sans-serif;
}

.chart-card {
  margin-top: 12px;
  padding: 20px;
}

.chart-row {
  display: grid;
  grid-template-columns: 82px minmax(20px, 1fr) 38px;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: #acc0ca;
  font-size: 11px;
}

.chart-row i {
  overflow: hidden;
  height: 7px;
  border-radius: 5px;
  background: #17374b;
}

.chart-row b {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: 5px;
  background: var(--mint);
}

.chart-row.alert b {
  background: #ffbd6a;
}

.chart-row.alert small {
  color: #ffbd6a;
}

.insight-card {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--navy);
}

.insight-card .spark {
  font-size: 19px;
}

.insight-card strong {
  font-size: 13px;
}

.insight-card p {
  margin: 2px 0 0;
  color: #22564e;
  font-size: 11px;
  line-height: 1.4;
}

/* Data strip */
.problem-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 29px clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.problem-strip p {
  margin: 0;
  font-weight: 700;
}

.problem-strip div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.problem-strip i {
  color: #9aabad;
}

.problem-strip strong {
  color: var(--mint-dark);
}

/* Shared sections */
.section {
  max-width: 1440px;
  margin: auto;
  padding: clamp(85px, 10vw, 150px) clamp(22px, 6vw, 92px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.section-heading.compact {
  grid-template-columns: 1.25fr 0.75fr;
}

.section h2 {
  font-size: clamp(40px, 4.4vw, 67px);
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
}

/* Solution cards */
.solution-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 430px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.solution-card.dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.card-number,
.service-index,
.product-number {
  color: #91a1a8;
  font: 700 12px "Manrope", Arial, sans-serif;
}

.solution-card h3,
.service-card h3,
.product-card h3 {
  margin: 30px 0 14px;
  font: 700 25px/1.15 "Manrope", Arial, sans-serif;
  letter-spacing: -0.04em;
}

.solution-card p,
.service-card > p,
.product-card p {
  margin: 0;
  color: var(--muted);
}

.solution-card.dark p {
  color: #a8bac4;
}

.solution-card ul {
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.solution-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.solution-card li::before {
  margin-right: 10px;
  color: var(--mint-dark);
  content: "↗";
}

.solution-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.solution-card.dark a {
  border-color: #294153;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-top: 38px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--mint-dark);
  font-size: 20px;
}

.dark .icon-box {
  background: #133147;
  color: var(--mint);
}

.mini-dashboard {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 10px;
  height: 108px;
  margin-top: 26px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.mini-dashboard div {
  display: flex;
  grid-row: 1 / 4;
  align-items: end;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--navy), #17445a);
}

.mini-dashboard i {
  flex: 1;
  height: 35%;
  border-radius: 2px;
  background: var(--mint);
}

.mini-dashboard i:nth-child(2) { height: 75%; opacity: 0.72; }
.mini-dashboard i:nth-child(3) { height: 52%; opacity: 0.45; }
.mini-dashboard > span { border-radius: 5px; background: #edf3f2; }

/* Services */
.services {
  padding-top: 25px;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 410px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card.recommended {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 1px var(--mint-dark);
}

.service-badge,
.status-badge {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29, 153, 125, 0.1);
  color: var(--mint-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.service-card dl {
  margin: 28px 0 24px;
}

.service-card dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

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

.service-card dd {
  margin: 0;
  font-size: 14px;
}

.price {
  margin-top: auto;
  color: var(--mint-dark);
  font: 700 14px "Manrope", Arial, sans-serif;
}

.service-card.subtle {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 0;
  background: #e9f1f0;
}

.service-card.subtle h3 {
  margin: 0 0 8px;
}

.service-card.subtle a {
  white-space: nowrap;
  color: var(--mint-dark);
  font-weight: 700;
}

/* Approach */
.approach {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 150px);
  max-width: none;
  background: var(--navy);
  color: var(--white);
}

.approach-intro {
  padding-left: max(0px, calc((100vw - 1440px) / 2));
}

.approach h2 {
  font-size: clamp(44px, 5vw, 76px);
}

.approach h2 em {
  color: var(--mint);
}

.approach-intro > p:last-child {
  max-width: 560px;
  margin-top: 30px;
  color: #a8bac4;
  font-size: 18px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #294153;
}

.steps li:last-child {
  border-bottom: 1px solid #294153;
}

.steps > li > span {
  color: var(--mint);
  font: 600 12px "Manrope", Arial, sans-serif;
}

.steps h3 {
  margin: 0 0 5px;
  font: 600 21px "Manrope", Arial, sans-serif;
}

.steps p {
  margin: 0;
  color: #9db0bc;
}

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 9vw, 135px);
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-photo span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 26, 42, 0.85);
  color: var(--white);
  font-size: 11px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
}

.about-copy strong {
  color: var(--ink);
}

/* Products */
.products {
  max-width: none;
  background: #e9f1f0;
}

.products > * {
  max-width: 1256px;
  margin-right: auto;
  margin-left: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
}

.product-card {
  min-width: 0;
  min-height: 320px;
  padding: 30px;
  border: 1px solid #d2dfdf;
  border-radius: var(--radius);
  background: var(--white);
}

.product-card.launch {
  background: var(--navy);
  color: var(--white);
}

.product-card.launch p {
  color: #a8bac4;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.status-badge {
  background: #e9f1f0;
}

.launch-status {
  background: rgba(88, 242, 197, 0.13);
  color: var(--mint);
}

.product-link {
  display: inline-block;
  margin-top: 32px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
}

.product-link.pending {
  opacity: 0.8;
}

/* Recommendation tool */
.finder {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.finder-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
  font-size: 18px;
}

.choice-list {
  margin-top: 40px;
  border-top: 1px solid #cdd9db;
}

.choice {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 20px 8px;
  border: 0;
  border-bottom: 1px solid #cdd9db;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.choice span {
  font-size: 12px;
}

.choice b {
  font: 600 17px "Manrope", Arial, sans-serif;
}

.choice i {
  font-size: 20px;
  font-style: normal;
}

.choice.active {
  padding-left: 18px;
  background: var(--white);
  color: var(--ink);
}

.choice.active i {
  color: var(--mint-dark);
}

.recommendation {
  min-width: 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.recommendation-label {
  color: var(--mint-dark);
  font: 700 11px "Manrope", Arial, sans-serif;
  letter-spacing: 1.6px;
}

.recommendation-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 35px 0 28px;
  border-radius: 15px;
  background: var(--navy);
  color: var(--mint);
  font-size: 28px;
}

.recommendation h3 {
  margin: 0 0 15px;
  font: 700 30px/1.15 "Manrope", Arial, sans-serif;
  letter-spacing: -0.04em;
}

.recommendation > p {
  min-height: 78px;
  color: var(--muted);
}

.result-plan {
  margin-top: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid var(--line);
}

.result-plan span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
}

.result-plan strong {
  font-size: 14px;
}

/* Contact */
.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto clamp(40px, 7vw, 90px);
  padding: clamp(50px, 7vw, 90px);
  border-radius: 30px;
  background: #12394c;
  color: var(--white);
}

.contact::after {
  position: absolute;
  top: -50px;
  right: -30px;
  color: rgba(255, 255, 255, 0.025);
  font: 800 180px "Manrope", Arial, sans-serif;
  content: "MQZ";
}

.contact h2 {
  font-size: clamp(42px, 4.6vw, 70px);
}

.contact h2 em {
  color: var(--mint);
}

.contact-action {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.contact-action > p {
  margin: 0 0 25px;
  color: #b9cbd3;
  font-size: 18px;
}

.contact-links {
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-links a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-links span {
  color: #9db7c2;
  font-size: 12px;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 600;
}

.contact-links i {
  color: var(--mint);
  font-style: normal;
}

/* Footer */
footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 25px;
  max-width: 1440px;
  margin: auto;
  padding: 0 clamp(22px, 6vw, 92px) 46px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  color: var(--ink);
}

footer p {
  margin: 0;
}

footer p a:hover,
.footer-links a:hover {
  color: var(--mint-dark);
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--ink);
  font-weight: 700;
}

footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

/* Privacy page */
.privacy-main {
  max-width: 900px;
  margin: auto;
  padding: clamp(70px, 9vw, 130px) clamp(22px, 6vw, 70px);
}

.privacy-main h1 {
  max-width: 780px;
  font-size: clamp(45px, 7vw, 80px);
}

.privacy-lead {
  margin: 28px 0 60px;
  color: var(--muted);
  font-size: 20px;
}

.privacy-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.privacy-section h2 {
  margin: 0 0 12px;
  font: 700 24px "Manrope", Arial, sans-serif;
}

.privacy-section p,
.privacy-section ul {
  max-width: 720px;
  color: var(--muted);
}

.privacy-section a {
  color: var(--mint-dark);
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 1100px) {
  .site-header nav {
    display: none;
  }

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

  .signal-board {
    max-width: 680px;
  }

  .problem-strip {
    align-items: flex-start;
  }

  .problem-strip div {
    flex-wrap: wrap;
  }

  .section-heading,
  .section-heading.compact,
  .approach,
  .finder,
  .contact,
  .about {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-card.feature,
  .product-card.launch {
    grid-column: 1 / -1;
  }

  .approach-intro {
    padding-left: 0;
  }

  .about-photo {
    max-width: 500px;
  }

  .finder {
    align-items: start;
  }

  .recommendation > p {
    min-height: 0;
  }

  .contact {
    margin-bottom: 55px;
    border-radius: 0;
  }

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

  footer p {
    grid-row: 2;
  }

  .footer-brand {
    grid-row: 1;
  }

  .footer-links {
    grid-row: 1 / 3;
    grid-column: 2;
    flex-direction: column;
    align-items: flex-end;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-header {
    height: 74px;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta span {
    font-size: 18px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1,
  .section h2,
  .contact h2,
  .privacy-main h1 {
    letter-spacing: -0.02em;
  }

  .trust-row {
    display: grid;
    gap: 9px;
  }

  .metric-grid,
  .solution-grid,
  .service-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .signal-board {
    padding: 15px;
    border-radius: 20px;
  }

  .board-top,
  .chart-head {
    align-items: flex-start;
  }

  .problem-strip {
    display: block;
  }

  .problem-strip div {
    gap: 8px 12px;
    margin-top: 14px;
  }

  .problem-strip i {
    display: none;
  }

  .section-heading {
    gap: 24px;
  }

  .solution-card.feature,
  .product-card.launch {
    grid-column: auto;
  }

  .solution-card,
  .service-card,
  .product-card {
    min-height: 0;
    padding: 25px;
  }

  .service-card.subtle {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .approach,
  .finder,
  .contact,
  .about {
    gap: 45px;
  }

  .contact .button {
    width: 100%;
    min-width: 0;
  }

  .contact-links a {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 9px;
  }

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

  .footer-links {
    align-items: flex-start;
  }

  footer small {
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
