:root {
  --ink: #171a1f;
  --text: #303635;
  --muted: #65706e;
  --line: #dddcd5;
  --paper: #f4f3ef;
  --panel: #ffffff;
  --teal: #365f5f;
  --teal-dark: #28484a;
  --teal-soft: #547675;
  --orange: #e9962f;
  --burgundy: #493434;
  --shadow: 0 24px 70px rgba(23, 26, 31, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 44px;
  background: rgba(244, 243, 239, 0.88);
  border-bottom: 1px solid rgba(221, 220, 213, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  width: 40px;
  height: 40px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text span {
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
}

.brand-text strong {
  color: var(--teal);
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
  color: #465150;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--teal);
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 750;
}

.nav-cta,
.primary-button {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(54, 95, 95, 0.22);
}

.nav-cta:hover,
.primary-button:hover {
  background: var(--teal-dark);
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--teal-dark);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100svh - 150px);
  max-height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: #171a1f;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 26, 31, 0.9), rgba(23, 26, 31, 0.66) 41%, rgba(23, 26, 31, 0.12) 82%),
    linear-gradient(0deg, rgba(23, 26, 31, 0.18), rgba(23, 26, 31, 0));
}

.app-shell {
  position: absolute;
  left: 8%;
  right: -9%;
  top: 10%;
  height: 78%;
  min-height: 520px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateX(0deg) rotateY(-5deg);
}

.app-topbar {
  height: 96px;
  display: grid;
  grid-template-columns: 64px 190px 320px 1fr 160px;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
  color: #fff;
  background: var(--teal);
  border-top: 6px solid var(--burgundy);
}

.hamburger-lines {
  width: 52px;
  height: 52px;
  display: grid;
  place-content: center;
  gap: 6px;
  background: rgba(23, 26, 31, 0.2);
}

.hamburger-lines span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 8px;
}

.matter-field {
  display: grid;
  gap: 2px;
}

.matter-field span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.matter-field strong {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
}

.screen-title {
  justify-self: center;
  font-size: 26px;
  font-weight: 750;
}

.action-pill {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 0;
}

.app-content {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: calc(100% - 96px);
}

.party-list {
  padding: 34px 22px;
  background: #ebeae6;
  border-right: 1px solid var(--line);
}

.party-list h3 {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 21px;
  text-decoration: underline;
}

.party-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.party-card.active {
  background: #d8d6d1;
}

.party-card strong {
  color: var(--ink);
}

.party-card small {
  color: var(--teal);
  font-weight: 700;
}

.matter-panel {
  padding: 34px;
}

.summary-strip {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.summary-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 19px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 34px 0 12px;
}

.section-title-row h3 {
  color: var(--teal-dark);
  font-size: 24px;
  margin: 0;
  text-decoration: underline;
}

.section-title-row button {
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
}

.task-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 90px 1fr 110px 140px;
  gap: 14px;
  padding: 14px 18px;
}

.table-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.table-row {
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

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

.table-row b,
.ui-row mark {
  padding: 5px 9px;
  border-radius: 6px;
  background: #e8eeee;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 750;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  color: #fff;
}

.kicker,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: 68px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
}

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

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.intro-band,
.section,
.contact-section,
.site-footer {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.intro-band {
  padding: 74px 0 54px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.section-heading p,
.split-section p,
.showcase-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.section {
  padding: 84px 0;
  border-top: 1px solid rgba(221, 220, 213, 0.74);
}

.section-heading {
  max-width: 820px;
}

.section-heading.narrow {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading p {
  margin-top: 18px;
}

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

.feature-card,
.roadmap-grid article,
.ai-list div,
.workflow-steps article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.feature-grid [data-reveal]:nth-child(2),
.roadmap-grid [data-reveal]:nth-child(2),
.workflow-steps [data-reveal]:nth-child(2),
.verdict-card {
  --reveal-delay: 110ms;
}

.feature-grid [data-reveal]:nth-child(3),
.roadmap-grid [data-reveal]:nth-child(3),
.workflow-steps [data-reveal]:nth-child(3) {
  --reveal-delay: 220ms;
}

.feature-card {
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #e8eeee;
  color: var(--teal);
  font-weight: 800;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: 0;
}

.feature-card p,
.roadmap-grid p,
.ai-list p,
.workflow-steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.workflow-story {
  padding-top: 92px;
  padding-bottom: 92px;
}

.workflow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.workflow-steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 33px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(84, 118, 117, 0.45), transparent);
}

.workflow-steps article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
}

.verdict-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 74px;
}

.verdict-copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.verdict-card {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: end;
  gap: 20px;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 72, 74, 0.96), rgba(54, 95, 95, 0.9)),
    var(--teal-dark);
  border: 1px solid rgba(84, 118, 117, 0.6);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(23, 26, 31, 0.14);
}

.verdict-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 150, 47, 0.42), transparent 68%);
}

.verdict-card::after {
  content: "IQ";
  position: absolute;
  right: 34px;
  top: 18px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 128px;
  font-weight: 850;
  line-height: 1;
}

.verdict-badge {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 8px 12px;
  color: var(--orange);
  background: rgba(23, 26, 31, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.verdict-card h3,
.verdict-points {
  position: relative;
  z-index: 1;
}

.verdict-card h3 {
  max-width: 520px;
  color: #fff;
  font-size: 33px;
}

.verdict-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.verdict-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
}

.workflow-steps article::after {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(233, 150, 47, 0.18), transparent 68%);
}

.workflow-steps span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 0 0 8px var(--paper);
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: center;
  margin-top: 58px;
}

.showcase-copy {
  padding-right: 8px;
}

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

.showcase-copy p {
  margin-top: 18px;
}

.product-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(23, 26, 31, 0.12);
}

.product-frame img {
  width: 100%;
  height: auto;
}

.showcase-ui {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(23, 26, 31, 0.1);
}

.ui-bar {
  height: 76px;
  display: grid;
  grid-template-columns: 44px 1fr 84px;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  color: #fff;
  background: var(--teal);
  border-top: 5px solid var(--burgundy);
}

.ui-bar span {
  width: 42px;
  height: 42px;
  background: rgba(23, 26, 31, 0.22);
  border-radius: 6px;
}

.ui-bar em {
  display: inline-flex;
  justify-content: center;
  padding: 8px 0;
  border-radius: 6px;
  background: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.ui-tabs {
  display: flex;
  gap: 24px;
  padding: 22px 24px 0;
  border-bottom: 1px solid var(--line);
}

.ui-tabs b,
.ui-tabs span {
  padding-bottom: 14px;
}

.ui-tabs b {
  color: var(--teal-dark);
  border-bottom: 3px solid var(--teal);
}

.ui-table {
  padding-bottom: 12px;
}

.ui-head,
.ui-row {
  display: grid;
  grid-template-columns: 110px 1fr 140px 90px;
  gap: 18px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

.ui-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ui-row mark {
  display: inline-flex;
  background: #e8eeee;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.split-section h2 {
  margin-bottom: 18px;
}

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

.ai-list div {
  padding: 24px;
}

.twin-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(54, 95, 95, 0.08), rgba(233, 150, 47, 0.11)),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(23, 26, 31, 0.08);
}

.twin-row {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(221, 220, 213, 0.82);
  border-radius: 8px;
}

.twin-row span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.twin-row p {
  margin: 0;
  color: var(--text);
}

.twin-row.accent {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.twin-row.accent span {
  color: var(--orange);
}

.twin-row.accent p {
  color: rgba(255, 255, 255, 0.88);
}

.security-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.metric-row,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric-row div,
.trust-grid div {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 24px;
  background: #fff;
}

.metric-row strong,
.trust-grid strong {
  color: var(--teal);
  font-size: 22px;
  line-height: 1.18;
}

.metric-row span,
.trust-grid span {
  color: var(--muted);
  font-size: 15px;
}

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

.roadmap-grid article {
  min-height: 190px;
  padding: 28px;
}

.roadmap-grid h3 {
  color: var(--teal);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
  padding: 86px 0;
  border-top: 1px solid rgba(221, 220, 213, 0.74);
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.email-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(23, 26, 31, 0.08);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid #cfd4cf;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfbf9;
  color: var(--ink);
  outline: none;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(54, 95, 95, 0.12);
}

.form-button {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 0 48px;
  border-top: 1px solid rgba(221, 220, 213, 0.74);
}

.footer-logo {
  width: 240px;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.site-footer span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
  }

  .brand {
    min-width: 0;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .site-header.menu-active .site-nav {
    position: fixed;
    inset: 76px 18px auto 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.menu-active .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-active .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: calc(100svh - 120px);
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .app-shell {
    left: 18%;
    right: -58%;
    opacity: 0.78;
  }

  .hero-bg img {
    object-position: 62% center;
  }

  .intro-grid,
  .verdict-section,
  .product-showcase,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-grid,
  .roadmap-grid,
  .metric-row,
  .workflow-steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .workflow-steps::before {
    display: none;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 118px);
  }

  .app-shell {
    left: 8%;
    right: -138%;
    top: 12%;
    min-height: 470px;
  }

  .hero-bg img {
    object-position: 66% center;
  }

  .app-topbar {
    grid-template-columns: 54px 160px 250px 1fr 130px;
  }

  .hero-inner,
  .intro-band,
  .section,
  .contact-section,
  .site-footer {
    width: min(100% - 34px, var(--max));
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    max-width: 320px;
  }

  h2 {
    font-size: 32px;
  }

  .section {
    padding: 62px 0;
  }

  .intro-band {
    padding: 56px 0 42px;
  }

  .feature-card,
  .roadmap-grid article,
  .ai-list div,
  .workflow-steps article,
  .demo-form {
    padding: 22px;
  }

  .workflow-story,
  .security-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .workflow-steps article {
    min-height: 0;
  }

  .workflow-steps span {
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    box-shadow: none;
  }

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

  .verdict-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .verdict-card {
    min-height: 300px;
    padding: 26px;
  }

  .verdict-card h3 {
    font-size: 28px;
  }

  .product-frame {
    margin-left: -8px;
    margin-right: -8px;
  }

  .twin-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .ui-head,
  .ui-row {
    grid-template-columns: 72px 1fr;
  }

  .ui-head span:nth-child(3),
  .ui-head span:nth-child(4),
  .ui-row span:nth-child(3),
  .ui-row span:nth-child(4) {
    display: none;
  }

  .contact-section {
    padding: 62px 0;
  }

  .site-footer {
    display: grid;
  }
}

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

  body.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
