:root {
  --paper: #f8f7f3;
  --paper-strong: #fffefa;
  --ink: #111116;
  --muted: #667085;
  --line: #dedde4;
  --violet: #6744ff;
  --violet-dark: #4f2ee8;
  --violet-soft: #eeeaff;
  --navy: #17152d;
  --radius: 22px;
  --shadow: 0 28px 70px rgba(34, 26, 80, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist), Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

:focus-visible {
  outline: 3px solid #ffb224;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 16px clamp(22px, 4vw, 72px);
  border-bottom: 1px solid rgba(25, 24, 33, 0.08);
  background: rgba(248, 247, 243, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.brand-name b {
  color: var(--violet);
}

.brand-image {
  line-height: 0;
}

.brand-image img {
  width: 176px;
  height: auto;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 28px;
  place-items: center;
  border: 3px solid var(--violet);
  border-radius: 70% 12% 70% 12%;
  transform: rotate(-45deg);
}

.brand-mark::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid var(--violet);
  border-radius: 50%;
}

.brand-mark span {
  position: absolute;
  right: -11px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--violet);
  border-radius: 50%;
  background: var(--paper);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  color: #5f6471;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--ink);
}

.primary-nav a[aria-current="page"] {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--violet);
  border-radius: 12px;
  background: var(--violet);
  color: white;
  padding: 14px 22px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--violet-dark);
  box-shadow: 0 12px 24px rgba(103, 68, 255, 0.2);
}

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 14px;
}

.header-cta {
  justify-self: end;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
  border: 1px solid #d8d3ef;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 4px 9px;
  color: #9a96a8;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.language-switcher a {
  display: grid;
  min-width: 28px;
  min-height: 28px;
  place-items: center;
  border-radius: 999px;
  color: #6e697b;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  background: var(--violet);
  color: white;
}

.button-ghost {
  border-color: #c8befd;
  background: transparent;
  color: var(--violet);
}

.button-ghost:hover {
  background: var(--violet-soft);
  box-shadow: none;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
}

.button-dark:hover {
  background: #292833;
}

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

.button-light:hover {
  background: var(--violet-soft);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 740px;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
  overflow: hidden;
  padding: 84px clamp(22px, 5vw, 92px) 104px;
  background-color: var(--paper-strong);
  background-image:
    linear-gradient(rgba(103, 68, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 68, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-glow {
  position: absolute;
  top: 18%;
  right: -6%;
  width: 58%;
  height: 60%;
  border-radius: 50%;
  background: rgba(103, 68, 255, 0.12);
  filter: blur(80px);
  pointer-events: none;
}

.hero-copy,
.hero-report {
  position: relative;
  z-index: 1;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  width: max-content;
  border: 1px solid #d0c8ff;
  border-radius: 999px;
  background: rgba(238, 234, 255, 0.72);
  padding: 8px 14px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(50px, 5.7vw, 92px);
  font-weight: 770;
  line-height: 0.96;
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: #6c7180;
  font-size: 13px;
}

.service-note a {
  font-weight: 700;
}

.service-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.hero-report {
  transform: rotate(1deg);
}

.report-window {
  overflow: hidden;
  border: 1px solid #d6ceff;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  padding: 0 26px;
  border-bottom: 1px solid #e8e4f7;
  background: #fbfaff;
  color: #74798a;
  font-size: 14px;
  font-weight: 650;
}

.window-bar em {
  justify-self: end;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet);
  padding: 5px 9px;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff8e91;
}

.window-dots i:nth-child(2) {
  background: #ffd66d;
}

.window-dots i:nth-child(3) {
  background: #70dd9c;
}

.report-body {
  padding: clamp(26px, 3vw, 44px);
}

.score-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 38px;
}

.score-ring {
  position: relative;
  display: grid;
  width: 122px;
  height: 122px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0 65%, #e9e5ff 65% 100%);
}

.score-ring::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: white;
}

.score-ring div {
  position: relative;
  z-index: 1;
  display: grid;
  text-align: center;
}

.score-ring strong {
  font-size: 32px;
  line-height: 1;
}

.score-ring span,
.score-row p {
  color: var(--muted);
  font-size: 13px;
}

.score-row h2 {
  margin: 4px 0 8px;
  font-size: 26px;
}

.report-label {
  margin-bottom: 0;
  font-weight: 650;
}

.chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.chart-heading h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.chart-heading span {
  color: #9296a3;
  font-size: 11px;
}

.chart-row {
  display: grid;
  grid-template-columns: 92px 1fr 38px;
  align-items: center;
  gap: 12px;
  margin: 13px 0;
  color: var(--muted);
  font-size: 12px;
}

.chart-row i {
  display: block;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #eeecf7;
}

.chart-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), #9b7aff);
}

.chart-row em {
  font-style: normal;
  text-align: right;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.report-metrics div {
  display: grid;
  min-height: 90px;
  align-content: center;
  border-radius: 14px;
  background: var(--violet-soft);
  padding: 14px;
  text-align: center;
}

.report-metrics strong {
  color: var(--violet);
  font-size: 24px;
}

.report-metrics span {
  color: var(--muted);
  font-size: 11px;
}

.sample-disclaimer {
  margin: 18px 0 0;
  color: #9296a3;
  font-size: 11px;
  text-align: center;
}

.platform-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px clamp(22px, 5vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.platform-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.platform-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(20px, 4vw, 64px);
}

.platform-strip span {
  color: #373640;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section {
  padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 112px);
}

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

.section-heading h2,
.deliverable-copy h2,
.process h2,
.contact h2,
.agency h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: clamp(60px, 9vw, 160px);
}

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

.kicker {
  margin-bottom: 18px;
}

.kicker-light {
  color: #9f8fff;
}

.analysis {
  background: var(--paper);
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.analysis-card {
  min-height: 340px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.44);
  transition: background-color 180ms ease, transform 180ms ease;
}

.analysis-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-5px);
  background: white;
}

.analysis-card > span {
  display: inline-flex;
  margin-bottom: 88px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 750;
}

.analysis-card h3 {
  margin-bottom: 16px;
  font-size: 25px;
}

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

.process {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(70px, 10vw, 170px);
  background: var(--navy);
  color: white;
}

.process-copy > p:not(.kicker) {
  max-width: 580px;
  margin: 28px 0;
  color: #bbb8cf;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  text-decoration-color: #8170df;
  text-underline-offset: 6px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.process-list > li > span {
  color: #8f80e7;
  font-size: 13px;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.process-list p {
  max-width: 580px;
  margin: 0;
  color: #aaa7bd;
}

.deliverables {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
  background: var(--paper-strong);
}

.deliverable-visual {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  background-color: #efecff;
  background-image: radial-gradient(#bcb0ff 1px, transparent 1px);
  background-size: 22px 22px;
}

.document-card {
  position: absolute;
  width: min(75%, 430px);
  border: 1px solid #ded7ff;
  border-radius: 20px;
  background: white;
  box-shadow: 0 22px 50px rgba(43, 30, 108, 0.16);
  padding: 30px;
}

.back-card {
  top: 76px;
  left: 11%;
  height: 330px;
  transform: rotate(-7deg);
}

.front-card {
  right: 9%;
  bottom: 50px;
  min-height: 365px;
  transform: rotate(4deg);
}

.document-card > p,
.back-card > span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.front-card h3 {
  margin: 34px 0 30px;
  font-size: 36px;
}

.mini-bars {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

.mini-bars i {
  height: 15px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet) 0 58%, #eeecf8 58%);
}

.mini-bars i:nth-child(2) { background: linear-gradient(90deg, #8f75ff 0 75%, #eeecf8 75%); }
.mini-bars i:nth-child(3) { background: linear-gradient(90deg, #ad9aff 0 38%, #eeecf8 38%); }
.mini-bars i:nth-child(4) { background: linear-gradient(90deg, #d1c8ff 0 65%, #eeecf8 65%); }

.roadmap-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-size: 11px;
}

.roadmap-item span {
  color: var(--muted);
}

.roadmap-item i {
  height: 6px;
  border-radius: 99px;
  background: var(--violet);
}

.roadmap-item b {
  color: var(--muted);
  font-weight: 560;
}

.front-card small {
  display: block;
  margin-top: 30px;
  color: #a3a5af;
  text-align: center;
}

.deliverable-copy > p:not(.kicker) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 36px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.check-list span {
  color: var(--violet);
  font-weight: 800;
}

.agency {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
  background: var(--violet);
  color: white;
}

.agency h2 {
  max-width: 820px;
}

.agency > div:last-child {
  align-self: end;
}

.agency > div:last-child p {
  margin-bottom: 28px;
  color: #e2dcff;
  font-size: 18px;
}

.faq {
  background: var(--paper);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
  font-size: 21px;
  font-weight: 660;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #ccc9d5;
  border-radius: 50%;
  color: var(--violet);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 850px;
  margin: -6px 0 34px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 170px);
  padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 112px);
  background: #e9e4ff;
}

.contact-copy > p:not(.kicker) {
  max-width: 630px;
  margin: 26px 0;
  color: #56566a;
  font-size: 18px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.contact-points span {
  border: 1px solid #c9bffc;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  padding: 7px 11px;
  color: #514a76;
  font-size: 12px;
  font-weight: 640;
}

.contact-form {
  display: grid;
  gap: 20px;
  border: 1px solid #d1c7ff;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 24px 50px rgba(55, 38, 140, 0.1);
  padding: clamp(24px, 4vw, 46px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 680;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbc9d4;
  border-radius: 10px;
  background: #fdfcff;
  color: var(--ink);
  padding: 14px 15px;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  outline: 2px solid rgba(103, 68, 255, 0.14);
}

.form-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

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

.demo-notice,
.form-success {
  margin: -7px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.form-error {
  margin: -7px 0 0;
  border-radius: 9px;
  background: #fff0f0;
  color: #a42525;
  padding: 12px;
  font-size: 12px;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid #cfc6ff;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(31, 24, 66, 0.22);
  padding: 22px;
}

.locale-uk {
  display: none;
}

html[lang="uk"] .locale-en {
  display: none;
}

html[lang="uk"] .locale-uk {
  display: initial;
}

html[lang="uk"] div.locale-uk {
  display: block;
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  max-width: 760px;
  margin: 6px 0;
  color: var(--muted);
  font-size: 13px;
}

.cookie-banner a {
  color: var(--violet);
  font-size: 12px;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column-reverse;
  }

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

.form-success {
  border-radius: 9px;
  background: #e8f8ee;
  color: #22633b;
  padding: 10px;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  padding: 70px clamp(22px, 6vw, 112px) 30px;
  background: var(--ink);
  color: white;
}

.brand-footer .brand-mark span {
  background: var(--ink);
}

.site-footer > div:first-child > p {
  max-width: 430px;
  margin: 20px 0 0;
  color: #9c9ba6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 36px;
  align-content: start;
}

.footer-links a {
  color: #c7c6ce;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid #313038;
  color: #75747e;
  font-size: 11px;
}

.report-dialog {
  width: min(900px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid #d9d2ff;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(12, 10, 31, 0.35);
  padding: clamp(26px, 5vw, 56px);
}

.report-dialog::backdrop {
  background: rgba(17, 15, 35, 0.72);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

.report-dialog h2 {
  max-width: 690px;
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
}

.dialog-intro {
  max-width: 680px;
  color: var(--muted);
}

.sample-table {
  overflow: hidden;
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.sample-table > div {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr 0.72fr;
  border-bottom: 1px solid var(--line);
}

.sample-table > div:last-child {
  border-bottom: 0;
}

.sample-table span {
  padding: 15px;
  border-right: 1px solid var(--line);
  font-size: 13px;
}

.sample-table span:last-child {
  border-right: 0;
}

.table-head {
  background: #f3f0ff;
  font-weight: 700;
}

.status-low { color: #a14040; }
.status-mid { color: #6a55c9; }
.status-high { color: #237542; }

.dialog-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 14px;
  background: var(--paper);
  padding: 20px;
}

.dialog-action p {
  margin: 0;
  font-size: 14px;
}

.inner-page {
  background: var(--paper);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 168px) clamp(22px, 7vw, 132px);
  border-bottom: 1px solid var(--line);
  background-color: var(--paper-strong);
  background-image:
    linear-gradient(rgba(103, 68, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 68, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 5%;
  right: -10%;
  width: 48%;
  height: 85%;
  border-radius: 50%;
  background: rgba(103, 68, 255, 0.1);
  filter: blur(80px);
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.contact-page-section h1,
.not-found-page h1 {
  max-width: 1040px;
  margin-bottom: 28px;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 760;
  line-height: 0.95;
}

.page-hero > p:not(.eyebrow) {
  max-width: 770px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 25px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.page-hero-grid h1 {
  font-size: clamp(64px, 7vw, 108px);
}

.audit-score-card {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 430px;
  align-content: center;
  border: 1px solid #d8d0ff;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: clamp(30px, 4vw, 54px);
}

.audit-score-card > span,
.sample-chip {
  width: max-content;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audit-score-card > strong {
  margin-top: 34px;
  color: var(--violet);
  font-size: 88px;
  line-height: 0.9;
}

.audit-score-card > p {
  color: var(--muted);
  font-size: 18px;
}

.audit-score-card > div {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.audit-score-card i {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet) 0 68%, #ece9f8 68%);
}

.audit-score-card i:nth-child(2) { background: linear-gradient(90deg, #8067fb 0 49%, #ece9f8 49%); }
.audit-score-card i:nth-child(3) { background: linear-gradient(90deg, #9f8df6 0 78%, #ece9f8 78%); }
.audit-score-card i:nth-child(4) { background: linear-gradient(90deg, #bcb0ef 0 34%, #ece9f8 34%); }

.audit-score-card small {
  color: #9294a0;
}

.page-section {
  background: var(--paper);
}

.feature-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

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

.feature-card {
  min-height: 280px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  padding: clamp(28px, 4vw, 48px);
}

.feature-card > span {
  display: block;
  margin-bottom: 64px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 760;
}

.feature-card h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.5vw, 34px);
}

.feature-card p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.page-process {
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(90px, 10vw, 150px);
}

.page-cta {
  display: grid;
  justify-items: center;
  padding: clamp(90px, 11vw, 160px) 22px;
  background: #e9e4ff;
  text-align: center;
}

.page-cta h2 {
  max-width: 920px;
  margin-bottom: 38px;
  font-size: clamp(42px, 6vw, 82px);
}

.report-showcase {
  display: grid;
  gap: 60px;
}

.report-summary-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 42px;
  border: 1px solid #dcd6ff;
  border-radius: 26px;
  background: white;
  box-shadow: 0 25px 60px rgba(48, 34, 115, 0.1);
  padding: clamp(30px, 5vw, 62px);
}

.report-summary-card h2,
.report-table-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 58px);
}

.report-summary-card > div:nth-child(2) > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.report-summary-card .sample-chip {
  position: absolute;
  top: 24px;
  right: 24px;
}

.report-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  padding: clamp(24px, 4vw, 46px);
}

.report-table-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.report-table-heading > span {
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.report-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.report-table-row {
  display: grid;
  min-width: 780px;
  grid-template-columns: 1.45fr repeat(3, 0.72fr);
  border-bottom: 1px solid var(--line);
}

.report-table-row:last-child {
  border-bottom: 0;
}

.report-table-row span {
  padding: 16px;
  border-right: 1px solid var(--line);
  color: #5d6070;
  font-size: 13px;
}

.report-table-row span:last-child {
  border-right: 0;
}

.report-table-head {
  background: #f2efff;
}

.report-table-head span {
  color: var(--ink);
  font-weight: 720;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.action-grid article {
  min-height: 280px;
  border-radius: 20px;
  background: var(--navy);
  color: white;
  padding: 32px;
}

.action-grid span {
  color: #a393ff;
  font-size: 12px;
  font-weight: 730;
  text-transform: uppercase;
}

.action-grid h3 {
  margin: 58px 0 16px;
  font-size: 27px;
}

.action-grid p {
  color: #aaa7bd;
}

.editorial-section {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(70px, 10vw, 160px);
}

.editorial-lead h2 {
  max-width: 800px;
  font-size: clamp(42px, 5vw, 72px);
}

.editorial-copy {
  align-self: end;
}

.editorial-copy p {
  color: var(--muted);
  font-size: 18px;
}

.principles-section {
  background: var(--paper-strong);
}

.about-prweb {
  padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 112px);
}

.contact-page-section {
  padding-top: clamp(90px, 10vw, 145px);
  padding-bottom: clamp(90px, 10vw, 145px);
}

.contact-page-section h1 {
  font-size: clamp(54px, 6vw, 88px);
}

.contact-detail {
  max-width: 620px;
  margin-top: 42px;
  border-top: 1px solid #c5bbf7;
  padding-top: 22px;
}

.contact-detail p {
  margin: 7px 0 0;
  color: #5e587d;
}

.legal-page .page-hero h1 {
  font-size: clamp(58px, 7vw, 96px);
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 130px) 22px;
}

.legal-alert {
  margin-bottom: 56px;
  border: 1px solid #e4bb72;
  border-radius: 14px;
  background: #fff7e5;
  color: #6c4d18;
  padding: 18px 20px;
}

.legal-content h2 {
  margin: 42px 0 14px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

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

.not-found-page {
  display: grid;
  min-height: 70vh;
  place-content: center;
  justify-items: start;
  padding: 80px 22px;
  text-align: left;
}

.not-found-page > p:not(.kicker) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
}

.home-services {
  background: var(--paper-strong);
}

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

.home-service-grid > a {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  padding: 32px;
  text-decoration: none;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.home-service-grid > a::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--violet-soft);
  transition: transform 400ms ease, background-color 400ms ease;
}

.home-service-grid > a:hover {
  transform: translateY(-8px);
  border-color: #c6bbff;
  box-shadow: 0 22px 48px rgba(46, 32, 117, 0.1);
}

.home-service-grid > a:hover::after {
  transform: scale(1.25);
  background: #dfd8ff;
}

.home-service-grid span,
.home-service-grid b {
  position: relative;
  z-index: 1;
  color: var(--violet);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-service-grid h3 {
  position: relative;
  z-index: 1;
  margin: 76px 0 18px;
  font-size: 34px;
}

.home-service-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  color: var(--muted);
}

.home-service-grid b {
  margin-top: auto;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.audience-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 140px);
  background: #f0edff;
}

.audience-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 70px);
}

.audience-intro > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #cac1f7;
  border-left: 1px solid #cac1f7;
}

.audience-grid article {
  min-height: 230px;
  border-right: 1px solid #cac1f7;
  border-bottom: 1px solid #cac1f7;
  padding: 26px;
}

.audience-grid span,
.service-card-top span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 760;
}

.audience-grid h3 {
  margin: 48px 0 12px;
  font-size: 24px;
}

.audience-grid p {
  margin: 0;
  color: #686477;
  font-size: 14px;
}

.services-hero h1,
.agency-hero h1,
.pricing-hero h1,
.plan-hero h1 {
  max-width: 1200px;
}

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

.service-detail-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  padding: clamp(28px, 4vw, 46px);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, #dcd4ff, transparent 70%);
  transition: transform 500ms ease;
}

.service-detail-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(37, 27, 92, 0.1);
}

.service-detail-card:hover::before {
  transform: scale(1.35);
}

.service-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

.service-card-top em {
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet);
  padding: 5px 10px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.service-detail-card h3 {
  position: relative;
  z-index: 1;
  margin: 82px 0 16px;
  font-size: clamp(34px, 4vw, 50px);
}

.service-detail-card p {
  position: relative;
  z-index: 1;
  max-width: 580px;
  color: var(--muted);
}

.text-link-dark {
  position: absolute;
  z-index: 1;
  bottom: 42px;
  left: clamp(28px, 4vw, 46px);
  font-weight: 720;
  text-decoration: none;
}

.service-method {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
  background: var(--navy);
  color: white;
}

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

.method-orbit {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.method-orbit::before,
.method-orbit::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px dashed rgba(159, 143, 255, 0.35);
  border-radius: 50%;
}

.method-orbit::after {
  inset: 35%;
  border-style: solid;
}

.orbit-core,
.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
}

.orbit-core {
  inset: 36%;
  z-index: 2;
  background: var(--violet);
  font-weight: 750;
}

.orbit-node {
  width: 94px;
  height: 94px;
  border: 1px solid #584f83;
  background: #25223e;
  color: #dcd7f3;
  font-size: 13px;
}

.node-one { top: -2%; left: 40%; }
.node-two { top: 40%; right: -2%; }
.node-three { bottom: -2%; left: 40%; }
.node-four { top: 40%; left: -2%; }

.roadmap-section {
  background: var(--paper-strong);
}

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

.timeline-grid article {
  position: relative;
  min-height: 360px;
  border-top: 1px solid var(--line);
  padding: 28px 34px 30px 0;
}

.timeline-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 77px;
  right: 0;
  left: 58px;
  height: 1px;
  background: #c9c2eb;
}

.timeline-grid > article > span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 25px 0 48px;
  place-items: center;
  border: 1px solid #c6bcff;
  border-radius: 50%;
  background: var(--paper-strong);
}

.timeline-marker i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--violet);
  color: white;
  font-size: 12px;
  font-style: normal;
}

.timeline-grid h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.timeline-grid p {
  color: var(--muted);
}

.plan-board {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
  background: var(--navy);
  color: white;
}

.plan-board-copy h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.plan-board-copy > p:last-child {
  color: #aaa7bd;
  font-size: 18px;
}

.priority-matrix {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 28px 0 0 28px;
}

.matrix-cell {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  border: 1px solid #45415f;
  border-radius: 18px;
  background: #24213b;
  padding: 22px;
  transition: transform 240ms ease, border-color 240ms ease;
}

.matrix-cell:hover {
  transform: translateY(-5px);
  border-color: #8b79ff;
}

.matrix-cell span {
  color: #a594ff;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.matrix-cell b {
  font-size: 19px;
}

.matrix-cell.quick {
  background: var(--violet);
}

.matrix-cell.quick span {
  color: #e5dfff;
}

.matrix-axis {
  position: absolute;
  color: #8f8ba4;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.axis-y { top: 52%; left: -44px; transform: rotate(-90deg); }
.axis-x { right: 0; bottom: -26px; }

.monitor-chart {
  position: relative;
  z-index: 2;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #d7cfff;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
  padding: 38px 30px;
}

.chart-grid-lines {
  display: grid;
  height: 260px;
  align-content: space-between;
}

.chart-grid-lines i {
  display: block;
  height: 1px;
  background: #e8e5f2;
}

.trend-line {
  position: absolute;
  top: 72px;
  right: 50px;
  left: 50px;
  height: 230px;
}

.trend-line::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, #b4a7f8, var(--violet));
  transform: rotate(-13deg) scaleX(0.95);
  box-shadow: 0 10px 28px rgba(103, 68, 255, 0.25);
}

.trend-line span {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 2px #8c78ff;
}

.trend-line span:nth-child(1) { left: 2%; top: 65%; }
.trend-line span:nth-child(2) { left: 25%; top: 58%; }
.trend-line span:nth-child(3) { left: 49%; top: 48%; }
.trend-line span:nth-child(4) { left: 73%; top: 31%; }
.trend-line span:nth-child(5) { right: 0; top: 18%; }

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #8d8f9c;
  font-size: 11px;
}

.monitor-chart small {
  display: block;
  margin-top: 30px;
  color: #9b9da8;
  text-align: center;
}

.monitoring-loop {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  background: var(--navy);
  color: white;
}

.monitoring-loop h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.monitoring-loop ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #3a3652;
  border-left: 1px solid #3a3652;
  list-style: none;
}

.monitoring-loop li {
  min-height: 210px;
  border-right: 1px solid #3a3652;
  border-bottom: 1px solid #3a3652;
  padding: 24px;
}

.monitoring-loop li > span {
  color: #9989f4;
  font-size: 12px;
}

.monitoring-loop h3 {
  margin: 50px 0 10px;
  font-size: 24px;
}

.monitoring-loop p {
  margin: 0;
  color: #aaa7bd;
  font-size: 14px;
}

.agency-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.agency-model-grid article {
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  padding: 34px;
  transition: transform 260ms ease;
}

.agency-model-grid article:hover {
  transform: translateY(-7px);
}

.agency-model-grid .featured-model {
  border-color: var(--violet);
  background: var(--violet);
  color: white;
}

.agency-model-grid > article > span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 760;
}

.agency-model-grid .featured-model > span {
  color: #ded7ff;
}

.agency-model-grid h3 {
  margin: 96px 0 20px;
  font-size: 36px;
}

.agency-model-grid p {
  color: var(--muted);
}

.agency-model-grid .featured-model p {
  color: #e1dcff;
}

.agency-model-grid ul {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.agency-model-grid .featured-model ul {
  border-color: rgba(255, 255, 255, 0.28);
}

.agency-workflow {
  background: var(--navy);
  color: white;
}

.agency-workflow > div:first-child {
  max-width: 870px;
}

.agency-workflow h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.workflow-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 70px;
}

.workflow-track > div {
  min-height: 210px;
  border: 1px solid #3e3a56;
  border-radius: 18px;
  background: #211e37;
  padding: 24px;
}

.workflow-track span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--violet);
  font-size: 12px;
  font-weight: 760;
}

.workflow-track p {
  margin: 55px 0 0;
  color: #c0bdd0;
  font-size: 14px;
}

.workflow-track > i {
  width: 30px;
  height: 1px;
  background: #665b9f;
}

.pricing-section {
  background: var(--paper-strong);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  padding: 34px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(38, 28, 92, 0.1);
}

.featured-pricing {
  border: 2px solid var(--violet);
  box-shadow: 0 22px 54px rgba(103, 68, 255, 0.13);
}

.pricing-card > span {
  width: max-content;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.pricing-card h2 {
  min-height: 90px;
  margin: 56px 0 18px;
  font-size: 38px;
}

.pricing-card > p {
  min-height: 94px;
  color: var(--muted);
}

.scope-price {
  display: grid;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  font-size: 26px;
  font-weight: 760;
}

.scope-price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  color: #575966;
  font-size: 14px;
  list-style: none;
}

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

.pricing-note {
  max-width: 780px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.pricing-factors {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  background: #ece8ff;
}

.pricing-factors h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.factor-list {
  border-top: 1px solid #c9c0f7;
}

.factor-list > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  border-bottom: 1px solid #c9c0f7;
  padding: 24px 0;
}

.factor-list span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 760;
}

.factor-list p {
  margin: 0;
  font-size: 18px;
  font-weight: 620;
}

.hero-copy {
  animation: hero-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-report {
  animation: report-arrive 850ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both, report-float 7s 1.2s ease-in-out infinite;
}

.chart-row b,
.mini-bars i,
.audit-score-card i {
  transform-origin: left;
  animation: bar-grow 900ms 350ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.score-ring {
  animation: score-pulse 4s ease-in-out infinite;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready [data-reveal] > .home-service-grid > *,
.reveal-ready [data-reveal] > .service-catalog-grid > *,
.reveal-ready [data-reveal] > .pricing-grid > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready [data-reveal].is-visible > .home-service-grid > *,
.reveal-ready [data-reveal].is-visible > .service-catalog-grid > *,
.reveal-ready [data-reveal].is-visible > .pricing-grid > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready [data-reveal].is-visible > * > *:nth-child(2) { transition-delay: 90ms; }
.reveal-ready [data-reveal].is-visible > * > *:nth-child(3) { transition-delay: 180ms; }
.reveal-ready [data-reveal].is-visible > * > *:nth-child(4) { transition-delay: 270ms; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes report-arrive {
  from { opacity: 0; transform: translateX(38px) rotate(3deg); }
  to { opacity: 1; transform: translateX(0) rotate(1deg); }
}

@keyframes report-float {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(0.4deg); }
}

@keyframes bar-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes score-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(103, 68, 255, 0); }
  50% { box-shadow: 0 0 0 9px rgba(103, 68, 255, 0.08); }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

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

  .hero h1 {
    max-width: 940px;
  }

  .hero-intro {
    max-width: 790px;
  }

  .hero-report {
    width: min(780px, 100%);
    justify-self: center;
  }

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

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

  .process,
  .deliverables,
  .contact {
    gap: 70px;
  }

  .deliverable-visual {
    width: min(760px, 100%);
    justify-self: center;
  }

  .deliverable-copy {
    max-width: 780px;
  }

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

  .page-hero-grid,
  .editorial-section {
    grid-template-columns: 1fr;
  }

  .audit-score-card {
    width: min(620px, 100%);
  }

  .agency > div:last-child {
    max-width: 720px;
  }

  .home-service-grid,
  .pricing-grid,
  .agency-model-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-card h2,
  .pricing-card > p {
    min-height: 0;
  }

  .service-method,
  .plan-board,
  .monitoring-loop,
  .pricing-factors,
  .audience-section {
    grid-template-columns: 1fr;
  }

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

  .workflow-track > i {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-image img {
    width: 150px;
  }

  .brand-mark {
    width: 33px;
    height: 24px;
  }

  .header-cta {
    display: none;
  }

  .header-tools {
    position: absolute;
    right: 78px;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    align-content: center;
    gap: 7px;
    border: 1px solid #cbc9d3;
    border-radius: 10px;
    background: transparent;
    padding: 11px;
  }

  .menu-button span {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper-strong);
    padding: 14px 22px 22px;
  }

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

  .primary-nav a {
    min-height: 48px;
    padding: 13px 0;
    border-bottom: 1px solid #ebe9ef;
  }

  .hero {
    min-height: auto;
    gap: 64px;
    padding-bottom: 80px;
    background-size: 42px 42px;
  }

  .hero h1 {
    font-size: clamp(46px, 12vw, 72px);
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-bar > span:nth-child(2) {
    display: none;
  }

  .score-row {
    gap: 20px;
  }

  .score-ring {
    width: 102px;
    height: 102px;
  }

  .score-ring::before {
    width: 76px;
    height: 76px;
  }

  .score-ring strong {
    font-size: 26px;
  }

  .platform-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .platform-strip div {
    justify-content: flex-start;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .analysis-card {
    min-height: 300px;
  }

  .analysis-card > span {
    margin-bottom: 58px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
  }

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

  .feature-grid-two,
  .feature-grid-three,
  .action-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-grid article:not(:last-child)::after {
    display: none;
  }

  .monitoring-loop ol,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .method-orbit {
    width: min(440px, 90vw);
  }

  .report-summary-card {
    grid-template-columns: 1fr;
  }

  .report-summary-card .sample-chip {
    position: static;
    grid-row: 1;
  }

  .report-table-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    width: fit-content;
  }

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

@media (max-width: 560px) {
  .section,
  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .brand-name {
    max-width: 170px;
    line-height: 1.05;
  }

  .page-hero {
    background-size: 42px 42px;
  }

  .page-hero h1,
  .contact-page-section h1,
  .not-found-page h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .audit-score-card {
    min-height: 360px;
  }

  .feature-card {
    min-height: 250px;
  }

  .hero {
    padding-top: 58px;
  }

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

  .hero-actions {
    display: grid;
  }

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

  .report-body {
    padding: 22px 18px;
  }

  .score-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-row {
    grid-template-columns: 76px 1fr 32px;
    gap: 8px;
  }

  .report-metrics {
    grid-template-columns: 1fr;
  }

  .report-metrics div {
    min-height: 72px;
  }

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

  .analysis-card {
    min-height: 280px;
  }

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

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

  .document-card {
    width: 78%;
    padding: 22px;
  }

  .back-card {
    left: 6%;
  }

  .front-card {
    right: 5%;
  }

  .front-card h3 {
    font-size: 29px;
  }

  .roadmap-item {
    grid-template-columns: 38px 1fr;
  }

  .roadmap-item b {
    display: none;
  }

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

  .sample-table {
    overflow-x: auto;
  }

  .sample-table > div {
    min-width: 650px;
  }

  .dialog-action {
    align-items: stretch;
    flex-direction: column;
  }

  .dialog-action .button {
    width: 100%;
  }

  .workflow-track,
  .priority-matrix {
    grid-template-columns: 1fr;
  }

  .matrix-axis {
    display: none;
  }

  .priority-matrix {
    padding-left: 0;
  }

  .orbit-node {
    width: 72px;
    height: 72px;
    font-size: 11px;
  }
}

@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;
  }

  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

.platform-card {
  min-height: 320px;
}

.platform-card h3 {
  margin-top: 54px;
  font-size: clamp(28px, 3vw, 40px);
}

.fact-note {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.blog-card small {
  position: relative;
  z-index: 1;
  display: block;
  color: #777386;
  font-size: 12px;
}

.article-hero {
  max-width: 1220px;
}

.article-hero h1 {
  max-width: 1050px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.article-content {
  max-width: 880px;
}

.article-content p,
.article-content li {
  font-size: 18px;
  line-height: 1.75;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 42px;
  padding-left: 24px;
  color: #555465;
}

.source-box {
  margin-top: 64px;
  border: 1px solid #d7cfff;
  border-radius: 22px;
  background: #f4f1ff;
  padding: clamp(24px, 4vw, 42px);
}

.source-box h2 {
  margin-top: 0;
}

.source-box a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}
