:root {
  --brand: #963ffa;
  --brand-dark: #6f22cb;
  --brand-soft: #f3eaff;
  --brand-pale: #fbf8ff;
  --ink: #241f2d;
  --ink-soft: #625b6d;
  --surface: #ffffff;
  --surface-alt: #f7f5f8;
  --line: #e7e1eb;
  --accent: #168b7b;
  --accent-soft: #e7f6f2;
  --warning-soft: #fff7e8;
  --shadow: 0 18px 48px rgba(51, 37, 66, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(3.25rem, 10vw, 6rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

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

.section {
  padding: 104px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--brand-dark);
  transform: translateY(-150%);
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  color: #fff;
  background: var(--brand);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.main-navigation a:focus-visible,
.site-footer a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(150, 63, 250, 0.3);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(231, 225, 235, 0.75);
  background: rgb(253 253 253);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  width: 162px;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-navigation > a:not(.button) {
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 600;
}

.main-navigation > a:not(.button):hover {
  color: var(--brand-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  overflow: hidden;
  padding: 76px 0 48px;
  background: var(--brand-pale);
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow {
  margin-bottom: 10px;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.23rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-note {
  margin: 18px 0 48px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.product-preview {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ded6e4;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.preview-topbar {
  display: grid;
  grid-template-columns: 200px minmax(220px, 430px) 40px;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 22px;
  border-bottom: 1px solid var(--line);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-dark);
}

.preview-logo {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
}

.preview-search {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #9992a1;
  background: #faf9fb;
  font-size: 0.75rem;
}

.preview-user {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.preview-shell {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 440px;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 16px;
  border-right: 1px solid var(--line);
  color: #766f7e;
  background: #fcfbfd;
}

.preview-sidebar span {
  padding: 9px 12px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
}

.preview-sidebar .active {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.preview-main {
  padding: 30px;
  background: #f8f7f9;
}

.preview-heading,
.agenda-title,
.agenda-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-heading {
  gap: 20px;
  margin-bottom: 22px;
}

.preview-heading div {
  display: flex;
  flex-direction: column;
}

.preview-heading small {
  margin-bottom: 4px;
  color: #8d8694;
  font-size: 0.68rem;
}

.preview-heading strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.05rem;
}

.preview-action {
  padding: 8px 11px;
  border-radius: 5px;
  color: #fff;
  background: var(--brand);
  font-size: 0.68rem;
  font-weight: 700;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.preview-metrics article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.preview-metrics span,
.preview-metrics small {
  color: #817a88;
  font-size: 0.67rem;
}

.preview-metrics strong {
  margin: 4px 0 1px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.65rem;
}

.preview-agenda {
  padding: 18px 20px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.agenda-title {
  padding-bottom: 12px;
}

.agenda-title strong {
  font-size: 0.8rem;
}

.agenda-title span {
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.agenda-row {
  display: grid;
  grid-template-columns: 44px 8px 1fr auto;
  gap: 13px;
  min-height: 64px;
  border-top: 1px solid #f0ecf2;
}

.agenda-row time {
  color: #5e5666;
  font-size: 0.72rem;
  font-weight: 700;
}

.agenda-row div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.agenda-row strong,
.agenda-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agenda-row strong {
  font-size: 0.74rem;
}

.agenda-row small {
  color: #8c8492;
  font-size: 0.65rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.status-dot.alt {
  background: #d99a2b;
}

.tag {
  padding: 4px 8px;
  border-radius: 4px;
  color: #087568;
  background: var(--accent-soft);
  font-size: 0.6rem;
  font-weight: 700;
}

.tag.neutral {
  color: #8c6418;
  background: var(--warning-soft);
}

.mockup-caption {
  margin: 16px 0 0;
  color: #81798a;
  font-size: 0.76rem;
}

.trust-band {
  border-block: 1px solid var(--line);
  background: #fff;
}

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

.trust-grid p {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 24px 36px;
  border-right: 1px solid var(--line);
}

.trust-grid p:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  margin-bottom: 2px;
  font-family: "Manrope", Arial, sans-serif;
}

.trust-grid span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading.compact {
  margin-bottom: 46px;
}

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

.feature-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: #d5b6f8;
  box-shadow: 0 12px 32px rgba(57, 39, 73, 0.08);
  transform: translateY(-3px);
}

.feature-index {
  display: block;
  margin-bottom: 48px;
  color: var(--brand);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card > p {
  min-height: 76px;
  color: var(--ink-soft);
}

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

.feature-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 19px;
  color: #504957;
  font-size: 0.9rem;
}

.feature-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.site-feature {
  background: var(--surface-alt);
}

.site-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 82px;
}

.site-feature-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.benefit-list {
  margin-top: 34px;
}

.benefit-list p {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid #ddd6e2;
}

.benefit-list strong {
  margin-bottom: 3px;
}

.benefit-list span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.personal-site-preview {
  overflow: hidden;
  border: 1px solid #dcd4e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(47, 38, 57, 0.11);
}

.browser-bar {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border-bottom: 1px solid var(--line);
  background: #f5f2f7;
}

.browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7bdcc;
}

.browser-bar p {
  flex: 1;
  margin: 0 0 0 10px;
  padding: 4px 12px;
  border: 1px solid #e2dde6;
  border-radius: 4px;
  color: #8a828f;
  background: #fff;
  font-size: 0.62rem;
}

.personal-site-nav {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 28px;
}

.personal-site-nav strong {
  color: #3f615a;
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.personal-site-nav span {
  color: #6c756f;
  font-size: 0.62rem;
}

.personal-site-body {
  min-height: 340px;
  padding: 64px 46% 60px 38px;
  background-color: #edf4f0;
  background-image:
    radial-gradient(circle at 78% 48%, #bdd2c7 0 17%, transparent 17.4%),
    radial-gradient(circle at 80% 45%, #dbe7e1 0 30%, transparent 30.4%);
}

.personal-kicker {
  margin-bottom: 10px;
  color: #476d64;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.personal-site-body h3 {
  color: #254b42;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.personal-site-body > p:not(.personal-kicker) {
  color: #536961;
  font-size: 0.72rem;
  line-height: 1.7;
}

.personal-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 13px;
  border-radius: 3px;
  color: #fff;
  background: #386a5e;
  font-size: 0.64rem;
  font-weight: 700;
}

.personal-site-footer {
  display: flex;
  justify-content: space-between;
  padding: 15px 28px;
  color: #6d756f;
  font-size: 0.6rem;
}

.workflow {
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 26px 34px;
  border-block: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.steps li:first-child {
  border-left: 1px solid var(--line);
}

.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.roadmap {
  color: #fff;
  background: #2d2635;
}

.roadmap .eyebrow {
  color: #cfacf8;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
}

.roadmap-layout h2 {
  margin-bottom: 0;
}

.roadmap-content > p {
  color: #d2ccd7;
  font-size: 1.05rem;
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.roadmap-tags span {
  padding: 8px 12px;
  border: 1px solid #5b5263;
  border-radius: 4px;
  color: #ece7f0;
  font-size: 0.82rem;
}

.faq {
  background: var(--surface-alt);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.accordion details {
  border-top: 1px solid #dcd5e1;
}

.accordion details:last-child {
  border-bottom: 1px solid #dcd5e1;
}

.accordion summary {
  position: relative;
  padding: 24px 46px 24px 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--brand-dark);
  content: "+";
  font-size: 1.45rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  max-width: 650px;
  padding: 0 46px 24px 0;
  color: var(--ink-soft);
}

.demo-section {
  background: var(--brand-pale);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  align-items: start;
  gap: 90px;
}

.demo-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.human-support {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #ded4e7;
}

.human-support > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.human-support p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.human-support strong {
  color: var(--ink);
}

.contact-form {
  padding: 34px;
  border: 1px solid #ddd2e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(55, 38, 72, 0.09);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.85rem;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfc7d5;
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input::placeholder {
  color: #9b94a1;
}

.form-field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(150, 63, 250, 0.12);
}

.form-field input[aria-invalid="true"] {
  border-color: #b73a49;
}

.field-error {
  display: block;
  min-height: 19px;
  margin-top: 4px;
  color: #9d2737;
  font-size: 0.76rem;
}

.form-consent {
  margin: 14px 0 0;
  color: #77707e;
  font-size: 0.73rem;
  line-height: 1.5;
}

.form-consent a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

.site-footer {
  padding: 64px 0 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: 80px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 172px;
}

.footer-brand p {
  max-width: 280px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

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

.footer-links strong {
  margin-bottom: 6px;
  font-size: 0.84rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #77707e;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-page {
  background: var(--surface-alt);
}

.legal-main {
  min-height: calc(100vh - 260px);
  padding: 76px 0 100px;
}

.legal-content {
  max-width: 820px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-content h1 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 6vw, 3.7rem);
}

.legal-content h2 {
  margin-top: 38px;
  font-size: 1.35rem;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 1.03rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.legal-date {
  margin-bottom: 36px;
  color: #7e7685;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .section {
    padding: 84px 0;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 76px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-navigation .button {
    margin-top: 22px;
  }

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

  .feature-card > p {
    min-height: auto;
  }

  .feature-index {
    margin-bottom: 28px;
  }

  .site-feature-layout,
  .roadmap-layout,
  .faq-layout,
  .demo-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .site-feature-layout {
    gap: 54px;
  }

  .faq-heading {
    position: static;
  }

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

  .steps li {
    border: 1px solid var(--line);
    border-bottom: 0;
  }

  .steps li:last-child {
    border-bottom: 1px solid var(--line);
  }

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

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

  .section {
    padding: 68px 0;
  }

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

  .brand {
    width: 142px;
  }

  .main-navigation {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-note {
    margin-bottom: 36px;
  }

  .product-preview {
    width: calc(100% + 10px);
  }

  .preview-topbar {
    grid-template-columns: 1fr 34px;
    min-height: 54px;
    padding: 9px 13px;
  }

  .preview-search {
    display: none;
  }

  .preview-shell {
    grid-template-columns: 1fr;
    min-height: 380px;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-main {
    padding: 17px;
  }

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

  .preview-heading strong {
    font-size: 0.88rem;
  }

  .preview-action {
    white-space: nowrap;
  }

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

  .preview-metrics article:last-child {
    display: none;
  }

  .preview-metrics article {
    padding: 13px;
  }

  .preview-agenda {
    padding: 13px 13px 2px;
  }

  .agenda-row {
    grid-template-columns: 40px 7px 1fr;
    gap: 8px;
  }

  .agenda-row .tag {
    display: none;
  }

  .agenda-row.faded {
    display: none;
  }

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

  .trust-grid p,
  .trust-grid p:first-child {
    min-height: 96px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .trust-grid p:last-child {
    border-bottom: 0;
  }

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

  .feature-card {
    padding: 24px;
  }

  .site-feature-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .personal-site-nav {
    padding: 14px 17px;
  }

  .personal-site-nav span {
    display: none;
  }

  .personal-site-body {
    min-height: 300px;
    padding: 42px 33% 42px 22px;
    background-image:
      radial-gradient(circle at 84% 50%, #bdd2c7 0 18%, transparent 18.4%),
      radial-gradient(circle at 86% 48%, #dbe7e1 0 31%, transparent 31.4%);
  }

  .personal-site-body h3 {
    font-size: 1.35rem;
  }

  .personal-site-footer {
    padding: 13px 17px;
  }

  .steps li {
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 22px 18px;
  }

  .steps li > span {
    width: 38px;
    height: 38px;
  }

  .roadmap-layout {
    gap: 30px;
  }

  .roadmap-tags {
    gap: 7px;
  }

  .faq-layout,
  .demo-layout {
    gap: 36px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }

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

  .legal-main {
    padding: 38px 0 68px;
  }

  .legal-content {
    padding: 30px 20px;
  }
}

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

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