:root {
  --purple: #6d28ff;
  --purple-dark: #5520cc;
  --purple-soft: #f2edff;
  --purple-border: rgba(109, 40, 255, 0.14);
  --orange: #ff7a3d;
  --green: #13a46b;
  --blue: #2977e8;

  --ink: #1f1b29;
  --ink-soft: #5f5969;
  --ink-muted: #7f7988;

  --surface: #ffffff;
  --surface-soft: #f8f7fc;
  --surface-purple: #f5f3ff;

  --border: rgba(31, 27, 41, 0.1);
  --border-strong: rgba(31, 27, 41, 0.16);

  --shadow-small: 0 12px 34px rgba(31, 27, 41, 0.07);
  --shadow-medium: 0 24px 70px rgba(31, 27, 41, 0.1);
  --shadow-purple: 0 24px 60px rgba(109, 40, 255, 0.2);

  --container: 1160px;
  --radius-small: 14px;
  --radius-medium: 22px;
  --radius-large: 30px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

.container--narrow {
  max-width: 850px;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 27, 41, 0.06);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin-inline: auto;
}

.main-nav a {
  position: relative;
  color: #514b5a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.header-cta {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--purple);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 115px 0 125px;
  background:
    radial-gradient(
      circle at 72% 32%,
      rgba(109, 40, 255, 0.13),
      transparent 34%
    ),
    radial-gradient(
      circle at 30% 100%,
      rgba(109, 40, 255, 0.07),
      transparent 35%
    ),
    #fbfaff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge {
  padding: 8px 12px;
  border: 1px solid rgba(109, 40, 255, 0.16);
  border-radius: 999px;
  background: rgba(109, 40, 255, 0.07);
}

.badge span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 61, 0.12);
}

.hero h1 {
  max-width: 700px;
  margin: 24px 0 22px;
  color: var(--ink);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--purple);
}

.hero-description {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--purple);
  box-shadow: 0 15px 34px rgba(109, 40, 255, 0.23);
}

.button--primary:hover {
  background: var(--purple-dark);
  box-shadow: 0 18px 38px rgba(109, 40, 255, 0.28);
}

.button--secondary {
  color: var(--ink);
  border-color: var(--border-strong);
  background: #ffffff;
}

.button--secondary:hover {
  border-color: rgba(109, 40, 255, 0.35);
  background: var(--purple-soft);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 26px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-trust i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
}

.hero-orb--one {
  top: 20px;
  right: 0;
  width: 290px;
  height: 290px;
  background: rgba(109, 40, 255, 0.11);
}

.hero-orb--two {
  right: 170px;
  bottom: 15px;
  width: 190px;
  height: 190px;
  background: rgba(255, 122, 61, 0.09);
}

.hero-dashboard {
  position: absolute;
  top: 5px;
  right: 10px;
  width: min(100%, 460px);
  padding: 24px;
  border: 1px solid rgba(109, 40, 255, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-medium);
  transform: rotate(3deg);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d6d1df;
}

.window-dots span:first-child {
  background: #ff7a73;
}

.window-dots span:nth-child(2) {
  background: #ffc35d;
}

.window-dots span:nth-child(3) {
  background: #5bc991;
}

.dashboard-label {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 10px;
  font-weight: 800;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.dashboard-metrics div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
}

.dashboard-metrics span {
  display: block;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 600;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 29px;
  line-height: 1;
}

.hero-chart {
  display: flex;
  height: 145px;
  align-items: flex-end;
  gap: 11px;
  margin-top: 22px;
  padding: 22px 18px 0;
  border-radius: 18px;
  background: #f8f7fc;
}

.hero-chart span {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #8b58ff, #6d28ff);
}

.hero-chart .accent {
  background: linear-gradient(180deg, #ff9a63, #ff7137);
}

.dashboard-event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.event-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--orange);
  font-weight: 800;
}

.dashboard-event strong,
.dashboard-event span {
  display: block;
}

.dashboard-event strong {
  font-size: 12px;
}

.dashboard-event span {
  color: var(--ink-muted);
  font-size: 10px;
}

.dashboard-event .event-arrow {
  color: var(--purple);
  font-size: 22px;
}

.review-float-card {
  position: absolute;
  z-index: 3;
  right: 305px;
  bottom: 18px;
  width: 260px;
  padding: 20px;
  border: 1px solid rgba(109, 40, 255, 0.14);
  border-radius: 19px;
  background: #ffffff;
  box-shadow: var(--shadow-medium);
  transform: rotate(-2deg);
}

.review-card-label {
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-stars {
  margin-top: 8px;
  color: #ff9c31;
  letter-spacing: 2px;
}

.review-float-card p {
  margin: 9px 0 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.review-author {
  color: var(--ink-muted);
  font-size: 10px;
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 11px 0 16px;
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.features-section {
  background: #ffffff;
}

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

.feature-card {
  min-height: 290px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 40, 255, 0.22);
  box-shadow: var(--shadow-small);
}

.feature-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 14px;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.feature-icon--purple {
  color: var(--purple);
  background: var(--purple-soft);
}

.feature-icon--blue {
  color: var(--blue);
  background: #edf5ff;
}

.feature-icon--orange {
  color: var(--orange);
  background: #fff1e9;
}

.feature-icon--green {
  color: var(--green);
  background: #eaf9f2;
}

.feature-card h3 {
  margin: 22px 0 10px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.platform-section {
  background:
    linear-gradient(180deg, #f6f4ff 0%, #f1effc 100%);
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
}

.platform-copy h2 {
  margin: 12px 0 18px;
  max-width: 530px;
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.platform-copy > p:not(.eyebrow) {
  margin: 0;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #383243;
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  color: var(--purple);
  background: #ffffff;
  content: "✓";
  font-size: 11px;
  box-shadow: 0 5px 16px rgba(109, 40, 255, 0.12);
}

.app-preview {
  min-width: 0;
}

.app-preview-shell {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  min-height: 455px;
  overflow: hidden;
  border: 1px solid rgba(109, 40, 255, 0.1);
  border-radius: 25px;
  background: #ffffff;
  box-shadow: var(--shadow-medium);
}

.app-sidebar {
  padding: 24px 15px;
  border-right: 1px solid var(--border);
  background: #fbfaff;
}

.app-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 7px 22px;
  font-size: 13px;
  font-weight: 800;
}

.app-sidebar-logo span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--purple);
  font-size: 12px;
}

.app-sidebar nav {
  display: grid;
  gap: 5px;
}

.app-sidebar nav span {
  display: block;
  padding: 10px 11px;
  border-radius: 9px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
}

.app-sidebar nav .active {
  color: var(--purple);
  background: var(--purple-soft);
}

.app-content {
  padding: 26px;
}

.app-content-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-content-heading span,
.app-content-heading strong {
  display: block;
}

.app-content-heading span {
  color: var(--ink-muted);
  font-size: 10px;
}

.app-content-heading strong {
  margin-top: 2px;
  font-size: 18px;
}

.app-content-heading button,
.app-review-row button {
  border: 0;
  border-radius: 9px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 9px;
  font-weight: 800;
}

.app-content-heading button {
  padding: 9px 12px;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 22px;
}

.app-stats article {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.app-stats strong,
.app-stats span {
  display: block;
}

.app-stats strong {
  font-size: 22px;
}

.app-stats span {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 8px;
}

.rating-bars {
  display: grid;
  gap: 11px;
  margin-top: 26px;
}

.rating-bars div {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 9px;
}

.rating-bars span {
  color: var(--ink-muted);
  font-size: 8px;
}

.rating-bars i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #efedf5;
}

.rating-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), #9c73ff);
}

.app-review-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.review-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 9px;
  font-weight: 800;
}

.app-review-row strong,
.app-review-row span {
  display: block;
}

.app-review-row strong {
  font-size: 10px;
}

.app-review-row span {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 8px;
}

.app-review-row button {
  padding: 8px 11px;
}

.pillars-section {
  background: #ffffff;
}

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

.pillar-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #ffffff;
}

.pillar-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--purple-soft);
  content: "";
}

.pillar-number {
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pillar-card h3 {
  position: relative;
  z-index: 1;
  margin: 50px 0 12px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.pillar-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

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

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

.tools-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
}

.tools-card--highlight {
  border-color: rgba(109, 40, 255, 0.15);
  background:
    linear-gradient(145deg, rgba(109, 40, 255, 0.06), transparent 60%),
    #ffffff;
}

.tools-card-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
}

.tools-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 19px;
  font-weight: 800;
}

.tools-card-heading p {
  margin: 0 0 4px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tools-card-heading h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.tools-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tools-card li {
  position: relative;
  padding-left: 26px;
  color: #4f4958;
  font-size: 13px;
  font-weight: 600;
}

.tools-card li::before {
  position: absolute;
  left: 0;
  color: var(--purple);
  content: "✓";
  font-weight: 800;
}

.story-section {
  background:
    radial-gradient(
      circle at 12% 40%,
      rgba(109, 40, 255, 0.08),
      transparent 30%
    ),
    #ffffff;
}

.story-card {
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(45px, 7vw, 85px);
  border: 1px solid var(--purple-border);
  border-radius: 30px;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-small);
}

.story-card h2 {
  max-width: 780px;
  margin: 13px auto 22px;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.story-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 13px auto 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

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

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #ffffff;
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 21px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 21px;
  color: var(--purple);
  content: "+";
  font-size: 21px;
  font-weight: 600;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 21px 21px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.waitlist-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(109, 40, 255, 0.13),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(255, 122, 61, 0.11),
      transparent 30%
    ),
    #f7f5ff;
}

.waitlist-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(35px, 6vw, 85px);
  padding: clamp(40px, 6vw, 75px);
  border: 1px solid rgba(109, 40, 255, 0.13);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-medium);
}

.waitlist-content {
  max-width: 670px;
}

.waitlist-content h2 {
  margin: 12px 0 17px;
  font-size: clamp(38px, 4.5vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.waitlist-description {
  max-width: 590px;
  margin: 0 0 29px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.waitlist-form {
  max-width: 650px;
}

.waitlist-fields {
  display: flex;
  align-items: stretch;
  gap: 9px;
  padding: 6px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(31, 27, 41, 0.06);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.waitlist-fields:focus-within {
  border-color: rgba(109, 40, 255, 0.55);
  box-shadow:
    0 0 0 4px rgba(109, 40, 255, 0.09),
    0 12px 34px rgba(31, 27, 41, 0.06);
}

.waitlist-fields input {
  flex: 1;
  min-width: 0;
  min-height: 53px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.waitlist-fields input::placeholder {
  color: #9992a2;
}

.waitlist-fields button {
  flex: 0 0 auto;
  min-height: 53px;
  padding: 0 24px;
  border: 0;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), #8243ff);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 11px 25px rgba(109, 40, 255, 0.24);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.waitlist-fields button:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 31px rgba(109, 40, 255, 0.29);
}

.waitlist-fields button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.form-hint {
  min-height: 22px;
  margin: 10px 4px 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.form-hint.is-error {
  color: #b42318;
}

.form-hint.is-success {
  color: #087a43;
}

.waitlist-visual {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
}

.waitlist-circle {
  position: absolute;
  border-radius: 999px;
}

.waitlist-circle--large {
  width: 235px;
  height: 235px;
  background: rgba(109, 40, 255, 0.08);
}

.waitlist-circle--small {
  width: 165px;
  height: 165px;
  border: 1px solid rgba(109, 40, 255, 0.16);
}

.waitlist-logo {
  position: relative;
  z-index: 2;
  display: grid;
  width: 99px;
  height: 99px;
  place-items: center;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--purple), #955cff);
  font-size: 42px;
  font-weight: 800;
  box-shadow: var(--shadow-purple);
  transform: rotate(-5deg);
}

.waitlist-tag {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #514b5a;
  background: #ffffff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: var(--shadow-small);
}

.waitlist-tag--one {
  top: 16px;
  right: 3px;
}

.waitlist-tag--two {
  right: -5px;
  bottom: 31px;
}

.waitlist-tag--three {
  bottom: 49px;
  left: -12px;
}

.site-footer {
  padding: 75px 0 25px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(130px, 0.7fr));
  gap: 45px;
}

.brand--footer {
  margin-bottom: 17px;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--ink-soft);
  font-size: 12px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--purple);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 11px;
}

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

.reveal-target {
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
.main-nav {
    gap: 18px;
  }

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

.review-float-card {
    right: 220px;
  }

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

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

.platform-copy {
    max-width: 680px;
  }

.app-preview {
    max-width: 780px;
  }

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

.waitlist-content {
    max-width: 760px;
  }

.waitlist-visual {
    display: none;
  }
}

@media (max-width: 860px) {
.header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

.main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

.header-cta {
    margin-left: auto;
  }

.hero {
    padding: 85px 0 100px;
  }

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

.hero-copy {
    max-width: 680px;
  }

.hero-visual {
    min-height: 520px;
  }

.hero-dashboard {
    right: 5%;
  }

.review-float-card {
    right: auto;
    left: 4%;
  }

.pillar-grid,
.tools-grid {
    grid-template-columns: 1fr;
  }

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

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

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

.section {
    padding: 80px 0;
  }

.main-nav {
    gap: 17px;
  }

.main-nav a {
    white-space: nowrap;
    font-size: 12px;
  }

.header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
  }

.hero {
    padding: 70px 0 85px;
  }

.hero h1 {
    font-size: clamp(48px, 15vw, 65px);
  }

.hero-description {
    font-size: 16px;
  }

.hero-actions {
    display: grid;
  }

.button {
    width: 100%;
  }

.hero-trust {
    display: grid;
    gap: 10px;
  }

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

.hero-dashboard {
    right: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    transform: rotate(1deg);
  }

.dashboard-metrics {
    gap: 8px;
  }

.dashboard-metrics div {
    padding: 13px;
  }

.hero-chart {
    height: 120px;
  }

.review-float-card {
    right: 7px;
    bottom: 0;
    left: auto;
    width: 220px;
  }

.section-heading h2,
.platform-copy h2,
.story-card h2,
.waitlist-content h2 {
    font-size: 38px;
  }

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

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

.app-preview-shell {
    grid-template-columns: 1fr;
  }

.app-sidebar {
    display: none;
  }

.app-content {
    padding: 18px;
  }

.app-content-heading {
    align-items: flex-start;
  }

.app-stats {
    gap: 7px;
  }

.app-stats article {
    padding: 11px;
  }

.tools-card,
.pillar-card {
    padding: 25px;
  }

.story-card {
    padding: 40px 22px;
    text-align: left;
  }

.story-card .eyebrow {
    justify-content: flex-start;
  }

.waitlist-card {
    padding: 34px 20px;
    border-radius: 23px;
  }

.waitlist-fields {
    display: block;
  }

.waitlist-fields input {
    width: 100%;
  }

.waitlist-fields button {
    width: 100%;
    margin-top: 6px;
  }

.footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

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

@media (max-width: 420px) {
.brand span {
    font-size: 17px;
  }

.header-cta {
    padding: 0 11px;
  }

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

.hero-visual {
    min-height: 440px;
  }

.review-float-card {
    width: 205px;
  }

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

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

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

.feature-preview-card {
  position: absolute;
  padding: 24px;
  border: 1px solid rgba(109, 40, 255, 0.13);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-medium);
}

.feature-preview-card--reviews {
  top: 20px;
  right: 20px;
  width: 390px;
  transform: rotate(3deg);
}

.feature-preview-card--email {
  bottom: 35px;
  left: 10px;
  width: 275px;
  transform: rotate(-3deg);
}

.feature-preview-card--popup {
  right: 0;
  bottom: 0;
  width: 255px;
  transform: rotate(2deg);
}

.feature-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-preview-heading span {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
}

.feature-preview-heading strong {
  font-size: 30px;
}

.feature-preview-stars {
  margin-top: 20px;
  color: #ff9c31;
  font-size: 22px;
  letter-spacing: 3px;
}

.feature-preview-card p {
  margin: 14px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.feature-preview-card small {
  color: var(--purple);
  font-weight: 800;
}

.feature-preview-label {
  display: block;
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-preview-card--email strong,
.feature-preview-card--popup strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.feature-overview-section {
  background: #ffffff;
}

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

.feature-summary-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #ffffff;
}

.feature-summary-number {
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.feature-summary-card h3 {
  margin: 52px 0 12px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.feature-summary-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.feature-detail-section {
  background: #ffffff;
}

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

.feature-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.feature-detail-grid--reverse .feature-detail-copy {
  order: 2;
}

.feature-detail-grid--reverse .feature-detail-visual {
  order: 1;
}

.feature-detail-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.feature-detail-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

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

.feature-check-list li {
  position: relative;
  padding-left: 29px;
  color: #403a49;
  font-size: 14px;
  font-weight: 700;
}

.feature-check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
}

.feature-detail-visual {
  min-width: 0;
}

.storefront-review-demo,
.email-demo,
.moderation-demo,
.import-demo,
.widget-demo,
.discount-popup-demo,
.verification-demo {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(109, 40, 255, 0.12);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-medium);
}

.storefront-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.storefront-review-top strong {
  display: block;
  font-size: 20px;
}

.storefront-review-top div div {
  margin-top: 8px;
  color: #ff9c31;
  letter-spacing: 2px;
}

.verified-badge {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 10px;
  font-weight: 800;
}

.storefront-review-demo > p {
  margin: 24px 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.review-product-meta,
.review-actions-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.review-product-meta span,
.review-actions-demo span {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
}

.review-actions-demo {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.merchant-reply-demo {
  margin-top: 23px;
  padding: 18px;
  border-radius: 15px;
  background: var(--surface-soft);
}

.merchant-reply-demo strong {
  font-size: 12px;
}

.merchant-reply-demo p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.verification-demo {
  display: grid;
  gap: 0;
}

.verification-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
}

.verification-step > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--purple);
  font-size: 13px;
  font-weight: 800;
}

.verification-step strong {
  display: block;
  font-size: 16px;
}

.verification-step p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.verification-line {
  width: 2px;
  height: 52px;
  margin-left: 19px;
  background: rgba(109, 40, 255, 0.2);
}

.email-demo {
  overflow: hidden;
  padding: 0;
}

.email-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: #ffffff;
  background: var(--purple);
}

.email-demo-header span {
  font-weight: 800;
}

.email-demo-header small {
  opacity: 0.75;
}

.email-demo-body {
  padding: 35px;
  text-align: center;
}

.email-demo-eyebrow {
  margin: 0;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.email-demo-body h3 {
  margin: 9px 0 10px;
  font-size: 27px;
}

.email-demo-body > p:not(.email-demo-eyebrow) {
  margin: 0 auto;
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 14px;
}

.email-product-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  text-align: left;
}

.email-product-image {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(109, 40, 255, 0.15), rgba(255, 122, 61, 0.14));
}

.email-product-row strong,
.email-product-row span {
  display: block;
}

.email-product-row span {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 11px;
}

.email-demo-button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 11px;
  color: #ffffff;
  background: var(--purple);
  font-size: 13px;
  font-weight: 800;
}

.moderation-demo-header,
.import-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.moderation-demo-header span,
.import-demo-header span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 10px;
  font-weight: 800;
}

.moderation-demo article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.moderation-demo article strong,
.moderation-demo article span {
  display: block;
}

.moderation-demo article span {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 11px;
}

.moderation-actions {
  display: flex;
  gap: 7px;
}

.moderation-actions button {
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 10px;
  font-weight: 800;
}

.import-file-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 15px;
}

.import-file-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 12px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 11px;
  font-weight: 800;
}

.import-file-row strong,
.import-file-row span {
  display: block;
}

.import-file-row span {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 11px;
}

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

.import-match-grid div {
  padding: 14px;
  border-radius: 13px;
  background: var(--surface-soft);
}

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

.import-match-grid span {
  color: var(--ink-muted);
  font-size: 9px;
}

.import-match-grid strong {
  margin-top: 5px;
  font-size: 11px;
}

.import-progress {
  margin-top: 21px;
}

.import-progress div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.import-progress span,
.import-progress strong {
  font-size: 11px;
}

.import-progress i {
  display: block;
  height: 9px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #edeaf5;
}

.import-progress b {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: var(--purple);
}

.widget-demo-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.widget-demo-summary strong,
.widget-demo-summary span {
  display: block;
}

.widget-demo-summary strong {
  font-size: 36px;
}

.widget-demo-summary span {
  color: var(--ink-muted);
  font-size: 11px;
}

.widget-demo-stars {
  color: #ff9c31;
  font-size: 19px;
  letter-spacing: 2px;
}

.widget-demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.widget-demo-controls span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  font-size: 10px;
  font-weight: 700;
}

.widget-demo article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.widget-demo article > div {
  margin-top: 6px;
  color: #ff9c31;
  letter-spacing: 2px;
}

.widget-demo article p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.discount-popup-demo {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  padding: 48px 38px 38px;
  text-align: center;
}

.discount-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--ink-muted);
  font-size: 20px;
}

.discount-popup-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: var(--orange);
  font-size: 23px;
  font-weight: 800;
}

.discount-popup-label {
  margin: 0;
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.discount-popup-demo h3 {
  margin: 9px 0 11px;
  font-size: 28px;
  line-height: 1.15;
}

.discount-popup-demo > p:not(.discount-popup-label) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.discount-popup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  padding: 6px 6px 6px 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  text-align: left;
}

.discount-popup-form span {
  color: var(--ink-muted);
  font-size: 11px;
}

.discount-popup-form strong {
  padding: 11px 13px;
  border-radius: 9px;
  color: #ffffff;
  background: var(--purple);
  font-size: 10px;
}

.feature-page-cta {
  background: #ffffff;
}

.feature-page-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(109, 40, 255, 0.15),
      transparent 36%
    ),
    var(--surface-purple);
}

.feature-page-cta-card h2 {
  max-width: 720px;
  margin: 11px 0 13px;
  font-size: clamp(35px, 4vw, 52px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.feature-page-cta-card p:not(.eyebrow) {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
}

.feature-page-cta-card .button {
  flex: 0 0 auto;
}

@media (max-width: 1050px) {

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

.feature-detail-grid--reverse .feature-detail-copy,
.feature-detail-grid--reverse .feature-detail-visual {
    order: initial;
  }
}

@media (max-width: 760px) {

.feature-preview-card--reviews {
    right: 0;
    width: min(100%, 390px);
  }

.feature-preview-card--email {
    left: 0;
  }

.feature-preview-card--popup {
    right: 0;
  }

.feature-page-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {

.feature-preview-card--reviews {
    width: 100%;
  }

.feature-preview-card--email {
    bottom: 145px;
    width: 82%;
  }

.feature-preview-card--popup {
    bottom: 0;
    width: 78%;
  }

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

.feature-summary-card {
    min-height: auto;
  }

.feature-detail-copy h2 {
    font-size: 38px;
  }

.storefront-review-top,
.widget-demo-summary {
    align-items: flex-start;
    flex-direction: column;
  }

.moderation-demo article {
    grid-template-columns: 1fr;
  }

.import-match-grid {
    grid-template-columns: 1fr;
  }

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

.discount-popup-form strong {
    text-align: center;
  }
}

.feature-index-card {
  padding: 28px;
  border: 1px solid rgba(109, 40, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-small);
}

.feature-index-label {
  margin: 0 0 17px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-index-card nav {
  display: grid;
}

.feature-index-card a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 51px;
  border-top: 1px solid var(--border);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 160ms ease,
    padding-left 160ms ease;
}

.feature-index-card a:first-child {
  border-top: 0;
}

.feature-index-card a:hover {
  padding-left: 5px;
  color: var(--purple);
}

.feature-index-card a span {
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {

.feature-index-card {
    max-width: 650px;
  }
}

@media (max-width: 620px) {

.breadcrumb {
    margin-bottom: 34px;
  }

.feature-index-card {
    padding: 21px;
  }
}

/* Shared accessibility component */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 150ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
.skip-link {
    transition: none;
  }
}
