:root {
  --ink: #160e29;
  --ink-soft: #21163a;
  --white: #fff;
  --paper: #f8f7fa;
  --lime: #c7ff5e;
  --violet: #9d7cff;
  --line-dark: rgba(255,255,255,.13);
  --line-light: rgba(22,14,41,.13);
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #160e29;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px,5vw,80px);
  background: #160e29;
  color: var(--white);
}
.site-header.scrolled {
  position: fixed;
  height: 72px;
  background: #160e29;
  animation: drop .35s ease;
}
@keyframes drop { from { transform: translateY(-100%); } }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
}
.brand b { font-weight: 800; }
.brand-logo {
  width: 32px;
  height: 32px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}
nav { display: flex; align-items: center; gap: 36px; font-size: 14px; }
nav > a:not(.nav-cta) { position: relative; color: rgba(255,255,255,.72); }
nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
nav > a[aria-current="page"] { color: var(--white); }
nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta span, .button span { transition: transform .2s ease; }
.nav-cta:hover span, .button:hover span { transform: translate(3px,-3px); }
.calendar-icon {
  position: relative;
  width: 15px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}
.calendar-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 2px;
  right: 2px;
  border-top: 1px solid currentColor;
}
.calendar-icon::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 3px;
  width: 1.5px;
  height: 4px;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor;
}
.nav-cta:hover .calendar-icon, .button:hover .calendar-icon { transform: none; }
.button:hover .right-arrow { transform: translateX(3px); }
.menu-toggle { display: none; background: none; border: 0; color: inherit; }

.dark-section { background: var(--ink); color: var(--white); }
.light-section { background: var(--white); color: var(--ink); }
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 130px clamp(24px,5vw,80px) 72px;
  border: 0;
  overflow: hidden;
}
.hero::after { content: none; }
.hero-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .16;
  pointer-events: none;
}
.orb-one { top: 18%; right: 4%; background: var(--violet); }
.orb-two { bottom: -35%; left: 10%; background: #7551e8; }
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--lime);
}
h1, h2, h3 { margin: 0; font-family: var(--font-display); }
h1 {
  max-width: 1080px;
  margin-inline: auto;
  font-size: clamp(55px,6.1vw,96px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 700;
}
h1 em, h2 em {
  color: rgba(255,255,255,.48);
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero-copy {
  max-width: 620px;
  margin: 30px auto 38px;
  color: rgba(255,255,255,.7);
  font-size: clamp(17px,1.4vw,21px);
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 0;
  gap: 14px;
  padding: 17px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }
.text-link {
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}
.hero-learn {
  width: fit-content;
  margin: 36px auto 0;
}

.page-hero {
  min-height: 68vh;
  min-height: 68svh;
  display: grid;
  place-items: center;
  padding: 150px clamp(24px,5vw,80px) 90px;
  text-align: center;
}
.page-hero-content {
  width: 100%;
  max-width: 940px;
}
.page-hero h1 { max-width: none; }
.page-hero .hero-copy { margin-bottom: 0; }

.services { padding: 120px clamp(24px,5vw,80px); }
.section-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.section-number {
  display: block;
  margin-bottom: 28px;
  color: #827b8c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.section-number.light { color: rgba(255,255,255,.45); }
h2 {
  font-size: clamp(42px,5vw,70px);
  line-height: 1.04;
  letter-spacing: -.05em;
  font-weight: 700;
}
.light-section h2 em { color: #81778e; }
.section-heading > p {
  max-width: 420px;
  margin: 0 0 7px auto;
  color: #6e6874;
  font-size: 17px;
}
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line-light); }
.service-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line-light);
  transition: transform .35s ease, background .35s ease;
}
.service-card:last-child { border-right: 0; }
.service-card:hover { transform: translateY(-8px); background: var(--paper); }
.service-card.featured { background: var(--ink); color: var(--white); }
.service-card.featured:hover { background: var(--ink-soft); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 22px;
}
.service-card:not(.featured) .service-icon { background: #eeeaf4; }
.service-index { color: #8c8592; font-size: 10px; }
.service-card h3 { margin: 78px 0 12px; font-size: 25px; letter-spacing: -.03em; }
.service-card p { min-height: 72px; margin: 0; color: #6f6877; font-size: 15px; }
.service-card.featured p { color: rgba(255,255,255,.58); }
.service-card ul { display: grid; gap: 10px; margin: 28px 0; padding: 23px 0 0; border-top: 1px solid var(--line-light); list-style: none; }
.service-card.featured ul { border-color: var(--line-dark); }
.service-card li { position: relative; padding-left: 16px; color: #635d69; font-size: 12px; }
.service-card.featured li { color: rgba(255,255,255,.6); }
.service-card li::before { content: "↗"; position: absolute; left: 0; font-size: 9px; }
.service-card > a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-light); font-size: 12px; font-weight: 700; }
.service-card.featured > a { border-color: var(--line-dark); }

.pricing-section { padding: 120px clamp(24px,5vw,80px); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  align-items: stretch;
}
.pricing-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 38px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 18px;
}
.pricing-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pricing-index {
  color: #8c8592;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.pricing-card h3 {
  margin-top: 58px;
  font-size: 27px;
  letter-spacing: -.03em;
}
.pricing-label {
  margin: 12px 0 25px;
  color: #655d70;
  font-weight: 700;
}
.pricing-card.featured .pricing-label { color: var(--lime); }
.pricing-card > p:not(.pricing-label) {
  margin: 0;
  color: #6f6877;
  font-size: 14px;
}
.pricing-card.featured > p:not(.pricing-label) { color: rgba(255,255,255,.62); }
.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}
.pricing-card.featured ul { border-color: var(--line-dark); }
.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: #635d69;
  font-size: 13px;
}
.pricing-card.featured li { color: rgba(255,255,255,.68); }
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #645188;
}
.pricing-card.featured li::before { color: var(--lime); }
.pricing-card .button { margin-top: auto; }
.button-outline-dark {
  color: var(--ink);
  border: 1px solid rgba(22,14,41,.28);
}
.button-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.results {
  min-height: 790px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px clamp(24px,5vw,80px);
}
.results-copy { padding-right: 9vw; border-right: 1px solid var(--line-dark); }
.results-copy p { max-width: 440px; margin: 28px 0 40px; color: rgba(255,255,255,.58); font-size: 17px; }
.button-outline { color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.button-outline:hover { background: var(--white); color: var(--ink); }
.metrics { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-content: center; padding-left: 8vw; }
.metric { padding: 34px 10px; border-bottom: 1px solid var(--line-dark); }
.metric:nth-child(1) { grid-column: span 2; }
.metric:nth-child(2) { border-right: 1px solid var(--line-dark); }
.metric strong { font: 700 clamp(58px,6vw,90px)/1 var(--font-display); letter-spacing: -.07em; }
.metric sup { color: var(--lime); font-size: .38em; letter-spacing: -.02em; }
.metric p { max-width: 230px; margin: 12px 0 0; color: rgba(255,255,255,.5); font-size: 12px; }
.metrics-note { grid-column: span 2; margin-top: 15px; color: rgba(255,255,255,.26); font-size: 9px; }

.problems {
  position: relative;
  padding: 130px clamp(24px,5vw,80px);
  background: #f4f1f7;
  overflow: hidden;
}
.problems::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -220px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(93,68,139,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(93,68,139,.025), 0 0 0 160px rgba(93,68,139,.018);
}
.problems-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 95px;
}
.problems-intro h2 { max-width: 850px; }
.problems-intro h2 em { color: #776b86; }
.problems-intro > p {
  max-width: 390px;
  margin: 0 0 8px auto;
  color: #686071;
  font-size: 17px;
}
.problem-list {
  position: relative;
  border-bottom: 1px solid rgba(22,14,41,.16);
}
.problem-row {
  position: relative;
  display: grid;
  grid-template-columns: 54px 74px minmax(260px,1fr) minmax(220px,.55fr);
  gap: 24px;
  align-items: center;
  min-height: 170px;
  padding: 30px 24px 30px 0;
  border-top: 1px solid rgba(22,14,41,.16);
  transition: padding .35s ease, background .35s ease;
}
.problem-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(157,124,255,.1), transparent 62%);
  opacity: 0;
  transition: opacity .35s ease;
}
.problem-row:hover { padding-left: 18px; }
.problem-row:hover::before { opacity: 1; }
.problem-row > * { position: relative; z-index: 1; }
.problem-number {
  align-self: start;
  padding-top: 8px;
  color: #8b8294;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.problem-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(22,14,41,.08);
}
.problem-row:nth-child(even) .problem-icon {
  color: var(--white);
  background: var(--ink);
}
.problem-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.problem-copy h3 {
  font-size: clamp(24px,2.4vw,36px);
  letter-spacing: -.04em;
}
.problem-copy p {
  max-width: 630px;
  margin: 10px 0 0;
  color: #6e6675;
  font-size: 14px;
}
.problem-note {
  margin: 0;
  color: #756c7e;
  font-family: Georgia,serif;
  font-size: 15px;
  font-style: italic;
}
.problems-cta {
  max-width: 760px;
  margin: 110px auto 0;
  text-align: center;
}
.problems-cta h2 { font-size: clamp(42px,5vw,68px); }
.problems-cta p {
  margin: 20px 0 30px;
  color: #686071;
  font-size: 17px;
}
.problems-cta .button { margin: 0 auto; }

.how-it-works {
  padding: 130px clamp(24px,5vw,80px) 145px;
  background: var(--white);
}
.how-intro {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 100px;
}
.how-intro h2 em { color: #81778e; }
.how-intro > p {
  max-width: 410px;
  margin: 0 0 8px auto;
  color: #6e6874;
  font-size: 17px;
}
.workflow-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(35px,5vw,85px);
}
.workflow-path::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 38px;
  right: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--ink), rgba(22,14,41,.18) 48%, var(--lime));
}
.workflow-step { position: relative; }
.workflow-marker {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(22,14,41,.14);
}
.workflow-step:last-child .workflow-marker {
  color: var(--ink);
  background: var(--lime);
}
.workflow-marker span {
  font: 700 11px/1 var(--font-display);
  letter-spacing: .1em;
}
.workflow-copy { padding-top: 35px; }
.workflow-copy h3 {
  max-width: 300px;
  font-size: clamp(24px,2.3vw,34px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.workflow-copy p {
  max-width: 390px;
  margin: 18px 0 0;
  color: #6e6874;
  font-size: 14px;
  line-height: 1.7;
}

.why-preme {
  position: relative;
  padding: 140px clamp(24px,5vw,80px);
  color: var(--white);
  background: var(--ink-soft);
  overflow: hidden;
}
.why-preme::before {
  content: "";
  position: absolute;
  top: -360px;
  left: -260px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(157,124,255,.018), 0 0 0 200px rgba(157,124,255,.012);
}
.why-preme-layout {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(70px,10vw,160px);
  align-items: start;
}
.why-preme-intro {
  position: sticky;
  top: 130px;
}
.why-preme-intro h2 {
  max-width: 650px;
  font-size: clamp(45px,5vw,72px);
}
.why-preme-intro h2 em { color: rgba(255,255,255,.48); }
.why-preme-intro > p {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 17px;
}
.why-feature-list {
  border-top: 1px solid rgba(255,255,255,.14);
}
.why-feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: start;
  padding: 37px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.why-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(199,255,94,.26);
  border-radius: 50%;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}
.why-feature:hover .why-icon {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-5deg) scale(1.06);
}
.why-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-feature h3 {
  font-size: 24px;
  letter-spacing: -.03em;
}
.why-feature p {
  max-width: 600px;
  margin: 10px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.7;
}

.faq-section {
  padding: 140px clamp(24px,5vw,80px);
  background: var(--paper);
}
.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(70px,10vw,160px);
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 130px;
}
.faq-intro h2 em { color: #81778e; }
.faq-intro > p {
  max-width: 390px;
  margin: 28px 0 0;
  color: #6e6874;
  font-size: 17px;
}
.faq-list {
  border-top: 1px solid var(--line-light);
}
.faq-item {
  border-bottom: 1px solid var(--line-light);
}
.faq-item summary {
  position: relative;
  padding: 30px 60px 30px 0;
  cursor: pointer;
  color: var(--ink);
  font: 700 clamp(19px,1.7vw,24px)/1.3 var(--font-display);
  letter-spacing: -.025em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 17px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease;
}
.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0); }
.faq-item p {
  max-width: 720px;
  margin: -5px 60px 30px 0;
  color: #6e6874;
  font-size: 15px;
  line-height: 1.75;
}
.faq-item[open] p { animation: faqReveal .3s ease; }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
}

.contact {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  padding: 120px 24px;
  overflow: hidden;
  text-align: center;
}
.contact::before {
  content: "";
  position: absolute;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}
.contact::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.contact-inner { position: relative; z-index: 3; }
.contact h2 { font-size: clamp(46px,6vw,82px); }
.contact p { margin: 25px 0 36px; color: rgba(255,255,255,.58); font-size: 17px; }
.contact .button { margin: auto; }
.contact-note { display: block; margin-top: 17px; color: rgba(255,255,255,.34); font-size: 10px; }
.contact-orbit { position: absolute; width: 690px; height: 690px; border: 1px dashed rgba(255,255,255,.09); border-radius: 50%; animation: spin 50s linear infinite; }
.contact-orbit i { position: absolute; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 15px var(--lime); }
.contact-orbit i:nth-child(1) { top: 12%; left: 18%; }
.contact-orbit i:nth-child(2) { right: -3px; top: 50%; background: var(--violet); }
.contact-orbit i:nth-child(3) { bottom: 8%; left: 27%; background: var(--white); }
@keyframes spin { to { transform: rotate(360deg); } }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 30px;
  padding: 58px clamp(24px,5vw,80px) 25px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}
footer > p { margin: 0; color: rgba(255,255,255,.45); font-size: 12px; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; color: rgba(255,255,255,.65); font-size: 12px; }
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 20px;
  color: rgba(255,255,255,.3);
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
}
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.cursor-glow {
  position: fixed;
  z-index: 100;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(157,124,255,.09), transparent 70%);
  transform: translate(-50%,-50%);
}

@media (max-width: 1000px) {
  .site-header nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 26px;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
  }
  .site-header nav.open { display: flex; }
  .menu-toggle { width: 32px; height: 32px; display: grid; align-content: center; gap: 6px; }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; }
  .hero { min-height: 100vh; min-height: 100svh; height: 100vh; height: 100svh; grid-template-columns: 1fr; padding-top: 150px; }
  .hero-content { padding-top: 30px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { margin: -30px 0 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 420px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .service-card:last-child { border-bottom: 0; }
  .service-card h3 { margin-top: 45px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 500px; }
  .results { grid-template-columns: 1fr; }
  .results-copy { padding: 0 0 70px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .metrics { padding: 55px 0 0; }
  .problems-intro { grid-template-columns: 1fr; gap: 32px; margin-bottom: 65px; }
  .problems-intro > p { margin: 0; }
  .problem-row { grid-template-columns: 42px 62px 1fr; }
  .problem-note { grid-column: 3; }
  .how-intro { grid-template-columns: 1fr; gap: 32px; margin-bottom: 70px; }
  .how-intro > p { margin: 0; }
  .workflow-path {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .workflow-path::before {
    top: 38px;
    bottom: 38px;
    left: 37px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--ink), rgba(22,14,41,.18) 48%, var(--lime));
  }
  .workflow-step {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: start;
  }
  .workflow-copy { padding-top: 7px; }
  .why-preme-layout { grid-template-columns: 1fr; gap: 65px; }
  .why-preme-intro { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 65px; }
  .faq-intro { position: static; }
}

@media (max-width: 640px) {
  .site-header { height: 72px; padding: 0 20px; }
  .hero { min-height: 100vh; min-height: 100svh; height: auto; padding: 115px 20px 65px; }
  .page-hero { min-height: 620px; padding: 125px 20px 75px; }
  h1 { font-size: clamp(48px,15vw,68px); }
  .hero-actions { align-items: center; flex-direction: column; gap: 18px; }
  .button { width: fit-content; }
  .services, .problems, .how-it-works, .why-preme, .faq-section, .results, .pricing-section { padding: 84px 20px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading > p { margin-top: -20px; }
  .service-card { padding: 28px; }
  .pricing-card { min-height: 0; padding: 30px; }
  .metrics { grid-template-columns: 1fr; }
  .metric, .metric:nth-child(1) { grid-column: auto; }
  .metric:nth-child(2) { border-right: 0; }
  .metrics-note { grid-column: auto; }
  .problem-row {
    grid-template-columns: 45px 1fr;
    gap: 14px;
    padding: 30px 0;
  }
  .problem-row:hover { padding-left: 0; }
  .problem-number { grid-column: 1; }
  .problem-icon { grid-column: 1; grid-row: 2; width: 45px; height: 45px; }
  .problem-icon svg { width: 21px; height: 21px; }
  .problem-copy { grid-column: 2; grid-row: 1 / span 2; }
  .problem-note { grid-column: 2; }
  .problems-cta { margin-top: 75px; }
  .workflow-step { grid-template-columns: 76px 1fr; }
  .workflow-marker { width: 62px; height: 62px; border-width: 6px; }
  .workflow-path::before { left: 31px; }
  .workflow-copy { padding-top: 3px; }
  .workflow-copy p { line-height: 1.6; }
  .why-feature {
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 30px 0;
  }
  .why-icon { width: 46px; height: 46px; }
  .why-icon svg { width: 22px; height: 22px; }
  .why-feature h3 { font-size: 21px; }
  .faq-item summary { padding: 25px 45px 25px 0; }
  .faq-item p { margin-right: 20px; }
  .contact { min-height: 640px; padding: 90px 20px; }
  .contact::before { width: 650px; height: 650px; }
  .contact::after { width: 400px; height: 400px; }
  footer { grid-template-columns: 1fr; }
  footer > p { text-align: left; }
  .footer-links { justify-content: flex-start; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
