:root {
  --blue: #0b57d0;
  --blue-dark: #0842a0;
  --blue-soft: #e8f0fe;
  --green: #188038;
  --green-soft: #e6f4ea;
  --amber: #b06000;
  --amber-soft: #fef7e0;
  --red: #c5221f;
  --red-soft: #fce8e6;
  --ink: #202124;
  --ink-2: #3c4043;
  --muted: #5f6368;
  --line: #dadce0;
  --line-strong: #c4c7c5;
  --surface: #f8fafd;
  --surface-2: #f1f3f4;
  --white: #fff;
  --max: 1240px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 18px 55px rgba(32, 33, 36, .12);
  --ease: cubic-bezier(.2, 0, 0, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Google Sans Flex", "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.container {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

.narrow {
  width: min(780px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
}

.label {
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}

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

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

.button-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-secondary {
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--line);
}

.button-secondary:hover {
  background: var(--blue-soft);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 14px;
}

.button:focus-visible,
.nav-link:focus-visible,
.menu-button:focus-visible,
.cookie-settings:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid rgba(11, 87, 208, .25);
  outline-offset: 3px;
}

.site-header {
  height: 72px;
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}

.site-header.scrolled {
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -.04em;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 24px;
  height: 24px;
  border: 7px solid var(--blue);
  border-right-color: var(--green);
  border-bottom-color: #f9ab00;
  border-radius: 50%;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 7px;
  height: 7px;
  background: #d93025;
  border-radius: 50%;
}

.brand-z {
  color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.nav-link {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 520;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--blue);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.25rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 72px 0 0;
  width: 100%;
  padding: 25px max(18px, calc((100vw - 700px) / 2));
  background: var(--white);
  overflow-y: auto;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 3px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 25px;
  font-weight: 500;
}

.mobile-nav .button {
  margin-top: 8px;
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 78px;
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -130px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(11, 87, 208, .09), rgba(11, 87, 208, 0) 70%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: 72px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 20px 0 22px;
  font-size: clamp(52px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 520;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.68;
}

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

.trust-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-2);
  font-size: .94rem;
}

.check {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
}

.hero-panel {
  padding: 28px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.hero-panel h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.hero-panel p {
  font-size: .95rem;
}

.hero-panel .metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hero-panel .metric:last-child {
  border-bottom: 0;
}

.hero-panel .metric strong {
  font-size: 1.15rem;
}

.section {
  padding: 112px 0;
}

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

.section-blue {
  color: var(--white);
  background: #102a56;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head-copy {
  max-width: 760px;
}

.section h2,
.section-title {
  margin: 10px 0 12px;
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 520;
}

.section-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.section-blue .section-intro,
.section-blue .muted {
  color: rgba(255, 255, 255, .74);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.card h2,
.card h3 {
  margin: 10px 0 10px;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 530;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
}

.card .text-link {
  margin-top: 20px;
}

.card-accent {
  border-top: 4px solid var(--blue);
}

.card-dark {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.card-dark p {
  color: rgba(255, 255, 255, .72);
}

.number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
  font-weight: 800;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  color: var(--ink-2);
  background: var(--surface-2);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 650;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: .82rem;
  font-weight: 700;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-list h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
}

.price {
  margin: 18px 0 6px;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -.035em;
}

.price-note {
  color: var(--muted);
  font-size: .86rem;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison th,
.comparison td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--ink);
  background: var(--surface);
  font-size: .88rem;
}

.comparison td {
  color: var(--ink-2);
  font-family: "Roboto", Arial, sans-serif;
  font-size: .94rem;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.form-shell {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(32, 33, 36, .07);
}

.form-shell h2 {
  margin: 0 0 8px;
  font-size: 1.65rem;
  letter-spacing: -.035em;
}

.form-shell > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: 0;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 87, 208, .13);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-2);
  font-size: .88rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.form-footer small {
  max-width: 470px;
  color: var(--muted);
}

.form-message {
  display: none;
  margin-top: 20px;
  padding: 14px 16px;
  color: #0d652d;
  background: var(--green-soft);
  border: 1px solid #a8dab5;
  border-radius: 12px;
  font-family: "Roboto", Arial, sans-serif;
}

.form-message.show {
  display: block;
}

.form-message.error {
  color: #a50e0e;
  background: var(--red-soft);
  border-color: #f4b7b2;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.scorecard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.score-items {
  display: grid;
  gap: 15px;
}

.score-item {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.score-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.score-item h3 {
  margin: 0 0 4px;
  font-size: 1.03rem;
  line-height: 1.3;
}

.score-item p {
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
  font-size: .88rem;
}

.score-value {
  flex: 0 0 auto;
  min-width: 42px;
  padding: 5px 8px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
}

.score-item input[type="range"] {
  width: 100%;
  margin: 18px 0 0;
  accent-color: var(--blue);
}

.score-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
}

.score-result {
  position: sticky;
  top: 102px;
  padding: 26px;
  background: #102a56;
  border-radius: var(--radius-md);
  color: var(--white);
}

.score-number {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 0 2px;
  font-size: 4.5rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.07em;
}

.score-number span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  opacity: .68;
}

.score-band {
  margin: 0 0 16px;
  color: #b7d1ff;
  font-weight: 700;
}

.score-result p {
  color: rgba(255, 255, 255, .76);
}

.priority-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.priority-list li {
  padding: 10px 12px;
  background: rgba(255, 255, 255, .09);
  border-radius: 10px;
  font-size: .88rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: space-between;
  gap: 70px;
  align-items: start;
}

.article {
  font-family: "Roboto", Arial, sans-serif;
}

.article h2,
.article h3 {
  font-family: "Google Sans Flex", "Roboto", Arial, sans-serif;
  letter-spacing: -.035em;
}

.article h2 {
  margin: 52px 0 14px;
  font-size: 2rem;
  line-height: 1.18;
}

.article h3 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.article p,
.article li {
  color: var(--ink-2);
  font-size: 1.03rem;
  line-height: 1.78;
}

.article ul,
.article ol {
  padding-left: 24px;
}

.article-callout {
  margin: 34px 0;
  padding: 24px;
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
}

.article-callout p {
  margin: 0;
}

.article-aside {
  position: sticky;
  top: 102px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.article-aside h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.article-aside p {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
  font-size: .9rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .82rem;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: .86rem;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 0 0 28px 34px;
  border-left: 1px solid var(--line);
}

.timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -6px;
  width: 11px;
  height: 11px;
  background: var(--blue);
  border: 3px solid var(--blue-soft);
  border-radius: 50%;
}

.timeline h3 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 700;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-icon {
  color: var(--blue);
  font-size: 1.2rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  color: var(--white);
  background: #102a56;
  border-radius: var(--radius-lg);
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
  font-weight: 520;
}

.cta-panel p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .73);
  font-family: "Roboto", Arial, sans-serif;
}

.cta-panel .button-secondary {
  flex: 0 0 auto;
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.cta-panel .button-secondary:hover {
  background: var(--blue-soft);
  border-color: var(--blue-soft);
}

.site-footer {
  padding: 70px 0 35px;
  color: var(--ink);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
}

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

.footer-about {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.footer-column strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 12px;
}

.footer-links {
  display: grid;
  gap: 11px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--blue);
}

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

.cookie-settings {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
}

.cookie-consent {
  position: fixed;
  z-index: 2200;
  left: 24px;
  bottom: 24px;
  width: min(520px, calc(100vw - 48px));
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
  font-size: .86rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 16px;
}

.cookie-actions button {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}

.cookie-decline {
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line-strong);
}

.cookie-accept {
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
}

.home-phase2-strip {
  padding: 22px 0;
  background: var(--blue-soft);
  border-bottom: 1px solid #c6dafc;
}

.home-phase2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-phase2-inner p {
  margin: 0;
  color: #174ea6;
  font-size: .95rem;
}

.home-phase2-inner strong {
  color: #0b3d91;
}

.proof-band-section {
  padding-top: 0;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.proof-band h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.proof-band p {
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
}

.proof-links {
  display: grid;
  gap: 10px;
}

.proof-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-weight: 650;
}

.proof-links a:hover {
  border-color: var(--blue);
}

.proof-links span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
}

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

.proof-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.proof-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
}

.proof-card-featured > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
  border-right: 1px solid var(--line);
}

.proof-card-body {
  padding: 30px;
}

.proof-card h2 {
  margin: 10px 0;
  font-size: 1.65rem;
  letter-spacing: -.035em;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
}

.proof-card .text-link {
  margin-top: 22px;
}

.status-neutral {
  color: var(--ink-2);
  background: var(--surface-2);
}

.proof-visual {
  min-height: 230px;
  padding: 30px;
  background: var(--blue-soft);
}

.proof-visual-floral {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: #f9edf2;
}

.proof-visual-floral span {
  display: grid;
  place-items: center;
  color: #7a2944;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(122, 41, 68, .16);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
}

.proof-visual-commerce {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
  background: #f0ecff;
}

.mini-product {
  position: relative;
  height: 142px;
  background: var(--white);
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 10px 24px rgba(84, 58, 183, .12);
}

.mini-product::before {
  content: "";
  position: absolute;
  inset: 18px 18px 42px;
  background: #7c4dff;
  border-radius: 12px;
}

.mini-product::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 38px;
  bottom: 20px;
  height: 7px;
  background: #d9d2ff;
  border-radius: 99px;
}

.proof-visual-system {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: #e8f0fe;
}

.proof-visual-system span {
  padding: 12px 16px;
  background: var(--white);
  border-radius: 999px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 700;
}

.proof-visual-system span + span::before {
  content: "→";
  margin-right: 14px;
  color: var(--green);
}

.founder-card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.founder-monogram {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--blue);
  border-radius: 34px;
  box-shadow: inset -16px -16px 0 rgba(24, 128, 56, .85);
  font-size: 1.5rem;
  font-weight: 760;
  letter-spacing: -.04em;
}

.founder-card h2 {
  margin: 7px 0 10px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.founder-card p {
  color: var(--muted);
}

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

.capability-grid div {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.capability-grid strong,
.capability-grid span {
  display: block;
}

.capability-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .9rem;
}

.case-capture {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.case-capture img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top center;
}

.case-capture figcaption {
  padding: 16px 22px;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
  font-size: .82rem;
}

.case-evidence-panel {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 38px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.case-evidence-panel .proof-visual {
  min-height: 260px;
  border-radius: 22px;
}

.case-evidence-panel h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.case-evidence-panel p {
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
}

.commerce-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.commerce-flow div {
  position: relative;
  min-height: 180px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.commerce-flow span,
.commerce-flow strong,
.commerce-flow small {
  display: block;
}

.commerce-flow span {
  color: var(--blue);
  font-size: .8rem;
  font-weight: 760;
}

.commerce-flow strong {
  margin-top: 38px;
  font-size: 1.25rem;
}

.commerce-flow small {
  margin-top: 8px;
  color: var(--muted);
}

.commerce-flow div:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -24px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

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

  .page-hero-grid,
  .scorecard,
  .article-layout,
  .proof-band,
  .case-evidence-panel {
    grid-template-columns: 1fr;
  }

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

  .proof-card-featured > img {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .commerce-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero-grid {
    gap: 42px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .score-result,
  .article-aside {
    position: static;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

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

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

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

  .page-hero {
    padding: 66px 0 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .section {
    padding: 68px 0;
  }

  .section-head,
  .cta-panel,
  .form-footer,
  .home-phase2-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .footer-grid,
  .proof-grid,
  .capability-grid,
  .commerce-flow {
    grid-template-columns: 1fr;
  }

  .proof-card-featured {
    grid-column: auto;
  }

  .proof-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .commerce-flow div:not(:last-child)::after {
    top: auto;
    right: 20px;
    bottom: -24px;
    transform: rotate(90deg);
  }

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

  .form-shell,
  .card,
  .hero-panel {
    padding: 22px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }

  .cta-panel {
    padding: 28px;
  }

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

  .cookie-consent {
    left: 15px;
    bottom: 15px;
    width: calc(100vw - 30px);
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button,
  .form-footer .button,
  .cta-panel .button,
  .home-phase2-inner .button {
    width: 100%;
  }
}

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

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