:root {
  color-scheme: dark;
  --bg: #080b10;
  --panel: rgba(18, 24, 32, 0.82);
  --panel-strong: rgba(23, 32, 42, 0.94);
  --line: rgba(166, 244, 255, 0.2);
  --text: #f5f8fb;
  --muted: #aab6c2;
  --cyan: #64e4ff;
  --mint: #78f3b5;
  --coral: #ff8f70;
  --ink: #0a0f15;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(100, 228, 255, 0.12), transparent 34rem),
    radial-gradient(circle at 82% 10%, rgba(120, 243, 181, 0.08), transparent 28rem),
    linear-gradient(140deg, #050607 0%, #090d12 42%, #020304 100%),
    var(--bg);
  color: var(--text);
}

body.home-page {
  overflow: hidden;
}

body.home-page::before {
  display: block;
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 38%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 38%);
}

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

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 700px) 420px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 72px);
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand,
.top-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--cyan);
  background:
    linear-gradient(135deg, transparent 45%, var(--cyan) 45% 55%, transparent 55%),
    linear-gradient(45deg, transparent 45%, var(--mint) 45% 55%, transparent 55%);
  box-shadow: 0 0 24px rgba(100, 228, 255, 0.5);
}

.top-nav {
  gap: 6px;
  justify-content: space-between;
  width: 100%;
  padding: 6px;
  border: 1px solid rgba(255, 138, 76, 0.22);
  background: rgba(8, 11, 16, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.top-nav a {
  flex: 1;
  min-height: 38px;
  border: 1px solid transparent;
  padding: 10px 8px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.top-nav a + a {
  border-left-color: rgba(255, 138, 76, 0.16);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--text);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(360px, 420px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  justify-content: space-between;
  min-height: calc(100vh - 76px);
  padding: clamp(20px, 4vh, 38px) 0 28px;
}

.hero-copy {
  position: relative;
  padding: 0;
}

.hero-copy::after {
  content: "";
  display: block;
  width: min(520px, 100%);
  height: 6px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--cyan), var(--mint), transparent);
  box-shadow: 0 0 32px rgba(100, 228, 255, 0.35);
}

.eyebrow,
.mini-label,
.panel-topline {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 7vw, 6.55rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 650px;
  color: #d5dde6;
  font-size: clamp(1rem, 1.65vw, 1.18rem);
}

.hero-actions,
.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(100, 228, 255, 0.2);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.button.primary:hover::after,
.button.primary:focus-visible::after {
  transform: translateX(120%);
}

.button span,
.button {
  z-index: 0;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.button.full {
  width: 100%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.readable-page .button.primary {
  min-height: 46px;
  border: 1px solid #ff8a4c;
  background: #ff8a4c;
  color: #160b06;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(255, 111, 61, 0.2);
  gap: 12px;
  padding: 12px 18px;
  font-size: 0.96rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.readable-page .button.primary::after {
  content: "→";
  position: static;
  width: auto;
  height: auto;
  background: none;
  color: rgba(22, 11, 6, 0.74);
  transform: translateX(0);
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.readable-page .button.primary:hover,
.readable-page .button.primary:focus-visible {
  border-color: #ff9d66;
  background: #ff9d66;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 38px rgba(255, 111, 61, 0.26);
}

.readable-page .button.primary:hover::after,
.readable-page .button.primary:focus-visible::after {
  color: #160b06;
  transform: translateX(3px);
}

.compact-info {
  max-width: 640px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}

.compact-info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.keyword-strip span,
.status-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dce7ef;
  padding: 8px 10px;
  font-size: 0.82rem;
}

.pricing-panel {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(100, 228, 255, 0.08), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 22px;
  overflow: hidden;
}

.pricing-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(120, 243, 181, 0.16);
  pointer-events: none;
}

.pricing-panel > * {
  position: relative;
}

.panel-topline,
.total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-pill {
  color: var(--text);
  text-transform: none;
}

.pricing-panel h2 {
  margin: 22px 0 10px;
  font-size: 2.2rem;
}

.panel-copy {
  margin-bottom: 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
}

.currency,
.per {
  color: var(--muted);
  font-weight: 800;
}

.price-row strong {
  font-size: 4.35rem;
  line-height: 1;
}

.hour-control {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--cyan);
}

.stepper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 8px;
  align-items: center;
  margin: 12px 0 16px;
}

.stepper button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.stepper output {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.16);
  font-weight: 800;
}

.total-line {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin: 14px 0;
  padding: 14px 0;
  color: var(--muted);
}

.total-line strong {
  color: var(--text);
  font-size: 1.8rem;
}

.demand-note {
  border-left: 2px solid var(--coral);
  margin-bottom: 16px;
  padding-left: 14px;
}

.demand-note p {
  margin: 6px 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.quiet-link {
  display: block;
  margin-top: 14px;
  color: var(--cyan);
  font-weight: 800;
  text-align: center;
}

.content-main {
  padding: clamp(40px, 7vw, 84px) 0 80px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.45fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 42px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.side-note {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.side-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.content-section {
  padding: 46px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-head p {
  max-width: 500px;
  margin-bottom: 0;
}

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

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

.info-card,
.form-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  padding: 20px;
}

.info-card h3 {
  font-size: 1.25rem;
}

.info-card p:last-child,
.form-card p:last-child {
  margin-bottom: 0;
}

.info-card ul,
.check-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.info-card a,
.text-link {
  color: var(--cyan);
  font-weight: 800;
}

.process-list {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.process-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
}

.process-item::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  color: var(--coral);
  font-size: 1.4rem;
  font-weight: 900;
}

.price-table {
  display: grid;
  gap: 12px;
}

.price-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.price-line strong:last-child {
  color: var(--text);
  font-size: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.26);
  color: var(--text);
  padding: 13px 14px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.page-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0 40px;
  color: var(--muted);
}

.page-footer .page-shell {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.readable-page {
  background:
    radial-gradient(circle at 15% 8%, rgba(100, 228, 255, 0.09), transparent 30rem),
    linear-gradient(145deg, #050607 0%, #0a0d10 48%, #020304 100%),
    var(--bg);
}

.readable-main {
  max-width: 980px;
  margin: 0 auto;
}

.readable-page .site-header {
  width: min(960px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
}

.readable-page .top-nav {
  width: auto;
  gap: 24px;
}

.readable-page .top-nav a {
  flex: 0 0 auto;
  padding: 10px 0;
}

.readable-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 34px;
}

.readable-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.readable-hero p {
  max-width: 700px;
  font-size: 1.04rem;
}

.readable-section {
  padding-top: 36px;
}

.section-head.simple {
  display: block;
}

.section-head.simple h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-head.simple p {
  max-width: 720px;
}

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

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  padding: 20px;
}

.service-row h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.service-row p {
  max-width: 700px;
  margin-bottom: 0;
  line-height: 1.62;
}

.service-row a {
  border: 1px solid rgba(100, 228, 255, 0.28);
  color: var(--cyan);
  font-weight: 800;
  padding: 10px 12px;
  text-align: center;
  white-space: nowrap;
}

.quiet-card {
  background: rgba(255, 255, 255, 0.032);
}

.services-redesign {
  max-width: 1180px;
}

.editorial-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(240px, 0.34fr);
  align-items: end;
  gap: 64px;
  padding-top: 34px;
  padding-bottom: 72px;
}

.hero-text-block {
  max-width: 720px;
}

.editorial-hero h1 {
  max-width: 680px;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 24px;
}

.editorial-hero .eyebrow {
  margin-bottom: 16px;
}

.editorial-hero p {
  max-width: 640px;
  line-height: 1.62;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.quiet-inline-link {
  color: var(--muted);
  font-weight: 800;
}

.quiet-inline-link:hover,
.quiet-inline-link:focus-visible {
  color: var(--cyan);
  outline: none;
}

.hero-side-note {
  max-width: 300px;
  margin: 0 0 10px;
  color: #8f9ba7;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-side-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.service-overview {
  padding-top: 72px;
}

.service-overview .section-head.simple {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.service-overview .section-head.simple h2 {
  max-width: 420px;
}

.service-overview .section-head.simple p {
  max-width: 560px;
  margin-left: auto;
}

.editorial-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 64px;
}

.editorial-service {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.service-copy h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.2rem;
}

.service-copy p {
  max-width: 34rem;
  margin-bottom: 14px;
  color: #a6b2bd;
  line-height: 1.6;
}

.service-copy a,
.quiet-columns a {
  color: var(--cyan);
  font-weight: 800;
}

.proof-preview {
  position: relative;
  min-height: 112px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.image-proof {
  background:
    linear-gradient(135deg, rgba(100, 228, 255, 0.2), transparent 55%),
    linear-gradient(45deg, rgba(120, 243, 181, 0.16), rgba(255, 255, 255, 0.035));
}

.image-proof span:nth-child(1) {
  position: absolute;
  width: 56px;
  height: 56px;
  left: 18px;
  top: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.image-proof span:nth-child(2) {
  position: absolute;
  width: 92px;
  height: 34px;
  right: 14px;
  bottom: 18px;
  background: rgba(4, 8, 12, 0.68);
}

.image-proof span:nth-child(3) {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 24px;
  top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.writing-proof {
  padding: 22px 18px;
}

.writing-proof span {
  display: block;
  height: 8px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.58);
}

.writing-proof span:nth-child(2) {
  width: 72%;
  background: rgba(166, 244, 255, 0.35);
}

.writing-proof span:nth-child(3) {
  width: 48%;
}

.website-proof {
  padding: 12px;
}

.website-proof span {
  display: block;
  background: rgba(255, 255, 255, 0.14);
}

.website-proof span:nth-child(1) {
  height: 18px;
  margin-bottom: 12px;
}

.website-proof span:nth-child(2) {
  width: 66%;
  height: 46px;
  margin-bottom: 10px;
  background: rgba(100, 228, 255, 0.24);
}

.website-proof span:nth-child(3) {
  width: 44%;
  height: 10px;
}

.workflow-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px;
}

.workflow-proof span {
  display: block;
  height: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.workflow-proof span:nth-child(2) {
  width: 76%;
  margin-left: auto;
  background: rgba(120, 243, 181, 0.18);
}

.workflow-proof span:nth-child(3) {
  width: 54%;
}

.closing-proof {
  padding-top: 96px;
  padding-bottom: 32px;
}

.quiet-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  gap: 72px;
  max-width: 980px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 40px;
}

.quiet-columns h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.quiet-columns p,
.quiet-columns li {
  max-width: 34rem;
  color: #9faab5;
  line-height: 1.65;
}

.quiet-columns ul {
  margin: 0;
  padding-left: 18px;
}

.simple-services-page {
  max-width: 960px;
}

.simple-page-hero {
  padding: 56px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-page-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5vw, 4.25rem);
  line-height: 1.02;
  text-transform: none;
}

.simple-page-hero > div > p {
  max-width: 640px;
  color: #d3dbe3;
  font-size: 1.05rem;
  line-height: 1.68;
}

.simple-note {
  max-width: 640px;
  margin: 32px 0 0;
  color: #c2ccd5;
  font-size: 0.96rem;
  line-height: 1.6;
}

.simple-note strong {
  color: var(--text);
}

.simple-section {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.simple-section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.simple-section-head h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.simple-section-head p {
  max-width: 620px;
  color: #c4ced7;
  line-height: 1.65;
}

.simple-service-list {
  display: grid;
  gap: 32px;
  counter-reset: services;
}

.simple-service-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  counter-increment: services;
}

.simple-service-item::before {
  content: counter(services, decimal-leading-zero);
  color: rgba(100, 228, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.7;
}

.simple-service-item + .simple-service-item {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.simple-service-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.simple-service-item h3 a {
  color: #17eed1;
  text-decoration: underline;
  text-decoration-color: rgba(23, 238, 209, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.simple-service-item h3 a:hover,
.simple-service-item h3 a:focus-visible {
  color: #a9fff1;
  text-decoration-color: rgba(23, 238, 209, 0.86);
  outline: none;
}

@keyframes pageFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .readable-page .site-header,
  .simple-page-hero,
  .simple-service-item {
    animation: none;
  }

  .button.primary,
  .readable-page .button.primary {
    transition: none;
  }
}

.simple-service-item p {
  max-width: 620px;
  margin-bottom: 0;
  color: #c5ced7;
  line-height: 1.65;
}

.simple-closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  border-bottom: 0;
  padding-top: 48px;
  padding-bottom: 40px;
}

.simple-closing h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.simple-closing p,
.simple-closing li {
  max-width: 34rem;
  color: #d0d8df;
  line-height: 1.58;
}

.simple-closing ul {
  margin: 0;
  padding-left: 18px;
}

.simple-closing a {
  color: var(--cyan);
  font-weight: 800;
}

@media (max-width: 920px) {
  body.home-page {
    overflow: auto;
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
  }

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

  .editorial-hero {
    gap: 32px;
    padding-bottom: 56px;
  }

  .hero-side-note {
    max-width: 620px;
  }

  .service-overview .section-head.simple,
  .editorial-service-grid,
  .quiet-columns,
  .simple-service-item,
  .simple-closing {
    grid-template-columns: 1fr;
  }

  .service-overview .section-head.simple {
    gap: 16px;
  }

  .service-overview .section-head.simple p {
    margin-left: 0;
  }

  .quiet-columns {
    gap: 32px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .pricing-panel {
    width: min(100%, 520px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.4rem, 15vw, 7rem);
  }

  .editorial-hero h1 {
    font-size: clamp(2.5rem, 10vw, 4.4rem);
  }

  .card-grid,
  .card-grid.two,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .page-footer .page-shell {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .service-row a {
    width: 100%;
  }

  .simple-page-hero {
    padding-top: 36px;
  }

  .simple-service-item {
    gap: 16px;
  }

  .simple-closing {
    gap: 40px;
  }
}

.button.primary,
.readable-page .button.primary,
body.home-page .button.primary {
  animation: none;
  box-shadow: none;
}

/* Keep price movement clean too: no orange fog. */
.readable-page.pricing-page .price-line > strong {
  animation: none;
  box-shadow: none;
}

.readable-page.pricing-page .price-line:hover > strong {
  box-shadow: none;
  transform: translateY(-3px);
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    font-size: 0.9rem;
  }

  .top-nav a {
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.4rem);
  }

  .editorial-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

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

  .button {
    min-height: 52px;
  }

  .pricing-panel {
    padding: 18px;
  }

  .price-row strong {
    font-size: 4rem;
  }

  .editorial-service {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .simple-page-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .proof-preview {
    min-height: 150px;
  }

}

/* Professional editorial redesign overrides */
:root {
  --bg: #0b0b0a;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f3ee;
  --muted: #bdb7ae;
  --cyan: #7da0ff;
  --mint: #9fb4ff;
  --coral: #7da0ff;
  --ink: #140c07;
  --shadow: none;
}

body,
.readable-page {
  color: var(--text);
}

body {
  background: #0b0b0a;
}

.readable-page {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 56, 154, 0.34), transparent 34rem),
    linear-gradient(145deg, #110436 0%, #110436 38%, #0a0322 100%);
}

body::before {
  display: none;
}

.page-shell {
  width: min(1240px, calc(100% - 48px));
}

.site-header,
.readable-page .site-header {
  position: relative;
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  padding: 28px 0 18px;
  backdrop-filter: none;
}

.readable-page .site-header {
  animation: pageFadeUp 320ms ease both;
}

.brand {
  color: #f6f3ee;
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  width: 15px;
  height: 15px;
  border-color: rgba(117, 29, 176, 0.85);
  background: transparent;
  box-shadow: none;
}

.top-nav,
.readable-page .top-nav {
  gap: 28px;
  padding: 0;
}

.top-nav a,
.readable-page .top-nav a {
  flex: 0 0 auto;
  min-height: auto;
  padding: 6px 0;
  color: rgba(246, 243, 238, 0.84);
  font-size: 0.95rem;
  font-weight: 650;
}

.readable-page .brand,
.readable-page .top-nav a {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: #f6f3ee;
}

.eyebrow,
.mini-label,
.panel-topline {
  color: #aaa39a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

h1 {
  color: #f6f3ee;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  line-height: 0.96;
  text-transform: none;
}

h2,
.section-head.simple h2,
.simple-section-head h2 {
  color: #f6f3ee;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
}

h3 {
  color: #f6f3ee;
  font-size: 1.08rem;
  line-height: 1.3;
}

p,
li {
  color: #c8c1b8;
  line-height: 1.62;
}

.button {
  border-radius: 10px;
  font-weight: 750;
}

.button.primary,
.readable-page .button.primary {
  min-height: 46px;
  border: 1px solid rgba(250, 111, 47, 0.86);
  background:
    linear-gradient(90deg, rgba(250, 111, 47, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.055);
  color: #fff8f4;
  box-shadow: inset 3px 0 0 #fa6f2f;
  padding: 12px 18px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button.primary::after {
  display: none;
}

.button.primary:hover,
.button.primary:focus-visible,
.readable-page .button.primary:hover,
.readable-page .button.primary:focus-visible {
  border-color: #fa6f2f;
  background:
    linear-gradient(90deg, rgba(250, 111, 47, 0.26), transparent 50%),
    rgba(255, 255, 255, 0.075);
  box-shadow: inset 5px 0 0 #fa6f2f;
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(246, 243, 238, 0.22);
  background: transparent;
  color: #f6f3ee;
}

.quiet-inline-link,
.quiet-link,
.info-card a,
.text-link,
.simple-service-item h3 a,
.simple-closing a,
.service-copy a,
.quiet-columns a {
  color: #f6f3ee;
}

.quiet-inline-link:hover,
.quiet-link:hover,
.info-card a:hover,
.text-link:hover,
.simple-service-item h3 a:hover,
.simple-closing a:hover {
  color: #17eed1;
}

/* Homepage */
.hero {
  grid-template-columns: minmax(0, 680px) minmax(360px, 410px);
  gap: clamp(40px, 6vw, 88px);
  padding-top: clamp(30px, 5vh, 56px);
}

.hero-copy::after {
  display: none;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  line-height: 0.92;
}

.hero-lede {
  max-width: 620px;
  color: #d6d0c8;
}

.compact-info {
  max-width: 580px;
  border: 0;
  background: transparent;
  padding: 0;
}

.compact-info p {
  color: #aaa299;
}

.pricing-panel {
  border: 1px solid rgba(246, 243, 238, 0.14);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.pricing-panel::before {
  display: none;
}

.status-pill {
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #f6f3ee;
}

input[type="range"] {
  accent-color: #e48655;
}

.stepper button,
.stepper output,
.total-line {
  border-color: rgba(246, 243, 238, 0.13);
}

.demand-note {
  border-left-color: #e48655;
}

/* Secondary pages */
.content-main,
.readable-main {
  max-width: 1120px;
}

.readable-main {
  margin: 0 auto;
}

.content-main {
  padding: 64px 0 88px;
}

.page-hero,
.readable-hero,
.simple-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: end;
  border-bottom: 1px solid rgba(117, 29, 176, 0.58);
  padding: 46px 0 56px;
  animation: pageFadeUp 360ms ease both;
}

.page-hero h1,
.readable-hero h1,
.simple-page-hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  line-height: 1.08;
}

.page-hero p,
.readable-hero p,
.simple-page-hero > div > p,
.simple-note,
.simple-section-head p {
  max-width: 650px;
  color: #cbc4bc;
  font-size: 1.02rem;
}

.simple-note {
  max-width: 300px;
  margin: 0;
  padding-top: 2px;
}

.side-note {
  max-width: 650px;
  margin-top: 28px;
  border: 0;
  background: transparent;
  padding: 0;
}

.content-section,
.readable-section,
.simple-section {
  padding: 68px 0;
  border-bottom: 1px solid rgba(117, 29, 176, 0.42);
}

.section-head,
.section-head.simple,
.simple-section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  max-width: none;
  margin-bottom: 42px;
}

.simple-section-head h2 {
  margin-bottom: 0;
}

.simple-section-head p {
  max-width: 650px;
}

.section-head p {
  max-width: 620px;
  margin-top: 12px;
}

.card-grid,
.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 52px;
}

.info-card,
.form-card {
  border: 0;
  background: transparent;
  padding: 0;
}

.info-card p,
.info-card li,
.check-list {
  color: #c8c1b8;
}

.simple-service-list {
  gap: 0;
  counter-reset: none;
}

.simple-service-item {
  display: block;
  counter-increment: none;
  padding: 30px 0;
  animation: pageFadeUp 320ms ease both;
}

.simple-service-item > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.simple-service-item::before {
  display: none;
}

.simple-service-item + .simple-service-item {
  border-top: 1px solid rgba(246, 243, 238, 0.1);
  padding-top: 30px;
}

.simple-service-item h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
}

.simple-service-item p {
  max-width: 680px;
  color: #cbc4bc;
  line-height: 1.6;
}

.simple-closing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  padding-top: 62px;
}

.simple-closing p,
.simple-closing li {
  color: #cbc4bc;
}

.process-list {
  gap: 32px;
  counter-reset: none;
}

.process-item {
  display: block;
  border: 0;
  background: transparent;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(246, 243, 238, 0.1);
}

.process-item::before {
  display: none;
}

.price-table {
  gap: 0;
}

.price-line {
  border: 0;
  border-top: 1px solid rgba(246, 243, 238, 0.1);
  background: transparent;
  padding: 24px 0;
}

.price-line strong:last-child {
  color: #f6f3ee;
  font-size: 1.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(246, 243, 238, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #f6f3ee;
}

.contact-form label {
  color: #d6d0c8;
}

@media (max-width: 920px) {
  body.home-page {
    overflow: auto;
  }

  .page-shell {
    width: min(100% - 36px, 1240px);
  }

  .site-header,
  .readable-page .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .top-nav,
  .readable-page .top-nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
  }

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

  .hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .page-hero h1,
  .readable-hero h1,
  .simple-page-hero h1,
  h1 {
    font-size: clamp(2.3rem, 8vw, 3.7rem);
    line-height: 1.05;
  }

  .card-grid,
  .card-grid.two,
  .field-grid,
  .simple-closing {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .readable-hero,
  .simple-page-hero,
  .section-head,
  .section-head.simple,
  .simple-section-head,
  .simple-service-item > div {
    grid-template-columns: 1fr;
  }

  .simple-note {
    max-width: 650px;
  }
}

/* Extra pages: clarity corrections after visual review */
.readable-page .simple-section-head {
  display: block;
  max-width: 760px;
  margin-bottom: 40px;
}

.readable-page .simple-section-head h2,
.readable-page .simple-service-item h3 a {
  color: #17eed1;
}

.readable-page .simple-section-head h2.accent-orange {
  color: #ff8a4c;
}

.readable-page .simple-section-head p {
  max-width: 680px;
}

.readable-page .simple-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 72px;
}

.readable-page .simple-service-item,
.readable-page .simple-service-item + .simple-service-item {
  border-top: 0;
  padding: 0;
}

.readable-page .simple-service-item h3 {
  margin-bottom: 12px;
}

.readable-page .simple-service-item h3 a {
  text-decoration-color: rgba(23, 238, 209, 0.36);
}

.readable-page .simple-service-item h3 a:hover,
.readable-page .simple-service-item h3 a:focus-visible {
  color: #9ffff2;
  text-decoration-color: rgba(23, 238, 209, 0.9);
}

.readable-page .simple-service-item p {
  max-width: 34rem;
}

@media (max-width: 920px) {
  .readable-page .simple-service-list {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* Services page: a single, readable sales narrative. */
body.readable-page {
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 56, 154, 0.18), transparent 30rem),
    linear-gradient(160deg, #08021f 0%, #060318 52%, #03020e 100%);
}

.simple-services-page {
  max-width: 1120px;
  padding-top: 32px;
}

.readable-page .simple-page-hero {
  display: block;
  max-width: 760px;
  border-bottom: 0;
  padding: 72px 0 88px;
}

.readable-page .simple-page-hero h1 {
  max-width: 680px;
  margin: 16px 0 24px;
  font-size: clamp(2.7rem, 5vw, 4.55rem);
  line-height: 1.03;
}

.readable-page .simple-page-hero > div > p {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.readable-page .editorial-actions {
  align-items: center;
  gap: 22px;
}

.readable-page .simple-note {
  max-width: 560px;
  margin-top: 28px;
  padding: 0;
  color: rgba(246, 243, 238, 0.62);
  font-size: 0.94rem;
  line-height: 1.65;
}

.readable-page .simple-note strong {
  color: #f6f3ee;
}

.readable-page .simple-section {
  max-width: 760px;
  border-bottom: 0;
  padding: 0 0 88px;
}

.readable-page .simple-section-head {
  max-width: 680px;
  margin-bottom: 46px;
}

.readable-page .simple-section-head h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.readable-page .simple-section-head p {
  max-width: 620px;
  font-size: 1.04rem;
  line-height: 1.7;
}

.readable-page .simple-service-list {
  display: block;
  counter-reset: services;
}

.readable-page .simple-service-item,
.readable-page .simple-service-item + .simple-service-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid rgba(117, 29, 176, 0.58);
  padding: 28px 0 30px;
}

.readable-page .simple-service-item:last-child {
  border-bottom: 1px solid rgba(117, 29, 176, 0.58);
}

.readable-page .simple-service-item::before {
  display: block;
  color: rgba(23, 238, 209, 0.76);
  content: counter(services, decimal-leading-zero);
  counter-increment: services;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.readable-page .simple-service-item > div {
  display: block;
}

.readable-page .simple-service-item h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.readable-page .simple-service-item h3 a {
  color: #17eed1;
  text-decoration: none;
}

.readable-page .simple-service-item h3 a:hover,
.readable-page .simple-service-item h3 a:focus-visible {
  color: #a5fff3;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.readable-page .simple-service-item p {
  max-width: 610px;
  color: #d0cbd0;
  font-size: 1rem;
  line-height: 1.7;
}

.readable-page .simple-closing {
  display: block;
  max-width: 760px;
  border-top: 1px solid rgba(117, 29, 176, 0.58);
  padding: 56px 0 96px;
}

.readable-page .simple-closing > div + div {
  margin-top: 54px;
}

.readable-page .simple-closing h3 {
  margin-bottom: 16px;
  color: #f6f3ee;
  font-size: 1.35rem;
}

.readable-page .simple-closing p,
.readable-page .simple-closing li {
  max-width: 600px;
  color: #d0cbd0;
  line-height: 1.7;
}

.readable-page .simple-closing a {
  display: inline-block;
  margin-top: 22px;
  color: #17eed1;
  font-weight: 800;
  text-decoration: none;
}

.readable-page .simple-closing a:hover,
.readable-page .simple-closing a:focus-visible {
  color: #a5fff3;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 620px) {
  .readable-page .site-header {
    gap: 12px;
    padding: 20px 0 14px;
  }

  .readable-page .brand {
    font-size: 0.84rem;
  }

  .readable-page .top-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    width: 100%;
  }

  .readable-page .top-nav a {
    min-width: 0;
    padding: 5px 2px;
    font-size: 0.76rem;
    text-align: center;
  }

  .simple-services-page {
    width: min(100% - 28px, 760px);
    padding-top: 12px;
  }

  .readable-page .simple-page-hero {
    padding: 28px 0 56px;
  }

  .readable-page .simple-page-hero h1 {
    margin-top: 12px;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 10.5vw, 3.1rem);
    line-height: 1.06;
  }

  .readable-page .simple-page-hero > div > p {
    margin-bottom: 24px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .readable-page .editorial-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 24px;
  }

  .readable-page .button.primary {
    width: auto;
    min-width: 0;
    padding: 12px 20px;
  }

  .readable-page .quiet-inline-link {
    font-size: 0.96rem;
  }

  .readable-page .simple-note {
    margin-top: 24px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .readable-page .simple-section-head h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.08;
  }

  .readable-page .simple-section-head p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .readable-page .simple-service-item,
  .readable-page .simple-service-item + .simple-service-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }
}

/* Keep the additional-page header visually connected to the approved homepage. */
.readable-page .brand-mark {
  border-color: #64e4ff;
  background:
    linear-gradient(135deg, transparent 45%, #64e4ff 45% 55%, transparent 55%),
    linear-gradient(45deg, transparent 45%, #78f3b5 45% 55%, transparent 55%);
  box-shadow: 0 0 18px rgba(100, 228, 255, 0.28);
}

.readable-page .stacked-hero-title span {
  display: block;
}

.readable-page.pricing-page .page-hero h1 {
  color: #ff8a4c;
}

.readable-page.pricing-page .pricing-hero-title span {
  color: #f6f3ee;
}

@keyframes eyebrowLift {
  0%, 100% {
    opacity: 0.72;
    transform: translateY(0);
    text-shadow: 0 0 6px rgba(89, 255, 132, 0.35), 0 0 16px rgba(89, 255, 132, 0.16);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(89, 255, 132, 0.9), 0 0 24px rgba(89, 255, 132, 0.45);
  }
}

.readable-page .eyebrow {
  color: #59ff84;
  animation: eyebrowLift 3.8s ease-in-out infinite;
}

.readable-page .quiet-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f6f3ee;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(89, 255, 132, 0.52);
  text-underline-offset: 6px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease,
    text-shadow 220ms ease;
}

.readable-page .quiet-inline-link::after {
  color: #59ff84;
  content: "->";
  font-size: 0.92em;
  text-decoration: none;
  transition: transform 180ms ease;
}

.readable-page .quiet-inline-link:hover,
.readable-page .quiet-inline-link:focus-visible {
  color: #ffffff;
  text-decoration-color: #59ff84;
  text-shadow: 0 0 10px rgba(89, 255, 132, 0.38);
}

.readable-page .quiet-inline-link:hover::after,
.readable-page .quiet-inline-link:focus-visible::after {
  text-shadow: 0 0 8px rgba(89, 255, 132, 0.55);
}

.readable-page .content-section,
.readable-page .process-item,
.readable-page .price-line,
.readable-page .info-card + .info-card,
.readable-page .simple-service-item,
.readable-page .simple-service-item:last-child,
.readable-page .simple-closing {
  border-color: rgba(117, 29, 176, 0.86);
}

.readable-page .content-main {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 32px;
}

.readable-page .page-hero {
  display: block;
  max-width: 760px;
  border-bottom: 0;
  padding: 72px 0 78px;
}

.readable-page .page-hero h1 {
  max-width: 720px;
  margin: 16px 0 24px;
  font-size: clamp(2.7rem, 5vw, 4.55rem);
  line-height: 1.03;
}

.readable-page .page-hero > div > p {
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.7;
}

.readable-page .side-note {
  max-width: 600px;
  margin-top: 28px;
  color: rgba(246, 243, 238, 0.68);
}

.readable-page .side-note strong {
  color: #f6f3ee;
}

.readable-page .side-note p {
  max-width: 600px;
  color: #d0cbd0;
}

.readable-page .pricing-side-note > strong {
  color: #ff8a4c;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.readable-page .side-price {
  margin: 8px 0 18px;
}

.readable-page .side-price strong {
  color: #f6f3ee;
  font-size: clamp(2.4rem, 8vw, 3.75rem);
  line-height: 0.95;
}

.readable-page .reserve-button {
  min-width: 170px;
  margin-top: 6px;
}

.readable-page .content-section {
  max-width: 760px;
  border-top: 1px solid rgba(117, 29, 176, 0.58);
  border-bottom: 0;
  padding: 56px 0 88px;
}

.readable-page .section-head {
  display: block;
  max-width: 680px;
  margin-bottom: 42px;
}

.readable-page .section-head h2 {
  margin-bottom: 16px;
  color: #ff8a4c;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.readable-page .section-head p {
  max-width: 620px;
  color: #d0cbd0;
  line-height: 1.7;
}

.readable-page .process-list {
  counter-reset: process;
}

.readable-page .process-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid rgba(117, 29, 176, 0.58);
  padding: 28px 0 30px;
}

.readable-page .process-item:last-child {
  border-bottom: 1px solid rgba(117, 29, 176, 0.58);
}

.readable-page .process-item::before {
  display: block;
  color: rgba(23, 238, 209, 0.76);
  content: counter(process, decimal-leading-zero);
  counter-increment: process;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.8;
}

.readable-page .process-item h3 {
  margin-bottom: 10px;
  color: #ff8a4c;
  font-size: 1.25rem;
}

.readable-page .process-item p {
  max-width: 610px;
  color: #d0cbd0;
  line-height: 1.7;
}

.readable-page .price-table {
  display: block;
}

.readable-page .price-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, auto);
  gap: 34px;
  align-items: center;
  border-top: 1px solid rgba(117, 29, 176, 0.58);
  padding: 28px 0 30px;
}

.readable-page .price-line:last-child {
  border-bottom: 1px solid rgba(117, 29, 176, 0.58);
}

.readable-page .price-line > div > strong {
  color: #ff8a4c;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
}

.readable-page .price-line > strong {
  justify-self: end;
  min-width: 128px;
  border: 1px solid rgba(255, 138, 76, 0.42);
  background: rgba(255, 138, 76, 0.12);
  color: #ffb182;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  padding: 14px 18px;
  text-align: center;
  white-space: nowrap;
}

.readable-page .price-line p {
  max-width: 560px;
  margin-top: 10px;
  color: #d0cbd0;
  line-height: 1.7;
}

.readable-page .card-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.readable-page .info-card + .info-card {
  margin-top: 0;
  padding-top: 24px;
  border-top: 0;
}

.readable-page .info-card {
  border: 1px solid rgba(255, 138, 76, 0.28);
  background: rgba(255, 138, 76, 0.07);
  padding: 24px;
}

.readable-page .info-card h3 {
  margin-bottom: 12px;
  color: #ff8a4c;
  font-size: clamp(1.22rem, 2vw, 1.45rem);
}

.readable-page .info-card p {
  max-width: 600px;
  color: #eee5de;
  line-height: 1.7;
}

.readable-page .form-card {
  max-width: 760px;
  border: 1px solid rgba(255, 138, 76, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 138, 76, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(13, 6, 32, 0.9);
  padding: clamp(20px, 4vw, 34px);
}

.readable-page .contact-form {
  max-width: 700px;
  gap: 18px;
}

.readable-page .contact-form label {
  color: #ff8a4c;
  font-size: 1rem;
  font-weight: 700;
}

.readable-page .contact-form input,
.readable-page .contact-form select,
.readable-page .contact-form textarea {
  border: 1px solid rgba(255, 138, 76, 0.5);
  border-radius: 4px;
  background: #130d21;
  color: #f6f3ee;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 1rem;
}

.readable-page .contact-form input:focus,
.readable-page .contact-form select:focus,
.readable-page .contact-form textarea:focus {
  border-color: #ffb182;
  outline: 3px solid rgba(255, 138, 76, 0.22);
  outline-offset: 2px;
}

.readable-page .contact-form .button.primary {
  width: min(100%, 260px);
  margin-top: 6px;
  border-color: #ff8a4c;
  background: #ff8a4c;
  color: #160b06;
}

@media (max-width: 920px) {
  .readable-page .content-main {
    width: min(100% - 36px, 760px);
  }
}

@media (max-width: 620px) {
  .readable-page .content-main {
    width: min(100% - 28px, 760px);
    padding-top: 12px;
  }

  .readable-page .page-hero {
    padding: 28px 0 56px;
  }

  .readable-page .page-hero h1 {
    margin-top: 12px;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 10.5vw, 3.1rem);
    line-height: 1.06;
  }

  .readable-page .page-hero > div > p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .readable-page .content-section {
    padding: 46px 0 64px;
  }

  .readable-page .process-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .readable-page .price-line {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .readable-page .price-line > strong {
    justify-self: start;
  }

  .readable-page .card-grid.two {
    grid-template-columns: 1fr;
  }

  .readable-page .field-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .readable-page .eyebrow {
    animation: none;
  }
}

.brand .brand-mark,
body.home-page .brand-mark,
.readable-page .brand-mark {
  position: relative;
  width: 21px;
  height: 24px;
  border: 0;
  background: none;
  box-shadow: none;
  color: #ff8a4c;
}

.top-nav a,
.readable-page .top-nav a,
body.home-page .top-nav a {
  font-size: 1rem;
}

.readable-page.how-page .page-hero h1 {
  color: #ffb000;
}

.button,
.readable-page .button,
body.home-page .button {
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button::after,
.readable-page .button::after,
body.home-page .button::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.5) 46%, transparent 62% 100%);
  transform: translateX(-130%);
  transition: transform 680ms ease;
  z-index: -1;
}

.button.primary,
.readable-page .button.primary,
body.home-page .button.primary {
  animation: buttonPulse 3.6s ease-in-out infinite;
}

.button:hover,
.button:focus-visible,
.readable-page .button:hover,
.readable-page .button:focus-visible,
body.home-page .button:hover,
body.home-page .button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button:hover::after,
.button:focus-visible::after,
.readable-page .button:hover::after,
.readable-page .button:focus-visible::after,
body.home-page .button:hover::after,
body.home-page .button:focus-visible::after {
  transform: translateX(130%);
}

.button.primary:hover,
.button.primary:focus-visible,
.readable-page .button.primary:hover,
.readable-page .button.primary:focus-visible,
body.home-page .button.primary:hover,
body.home-page .button.primary:focus-visible {
  box-shadow:
    0 0 0 1px rgba(255, 138, 76, 0.4),
    0 18px 42px rgba(255, 138, 76, 0.24);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.readable-page .button.secondary:hover,
.readable-page .button.secondary:focus-visible,
body.home-page .button.secondary:hover,
body.home-page .button.secondary:focus-visible {
  border-color: rgba(255, 138, 76, 0.68);
  color: #ffb182;
  box-shadow: 0 0 26px rgba(255, 138, 76, 0.16);
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(255, 138, 76, 0),
      0 14px 30px rgba(255, 111, 61, 0.2);
  }

  50% {
    box-shadow:
      0 0 0 4px rgba(255, 138, 76, 0.1),
      0 20px 42px rgba(255, 111, 61, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button.primary,
  .readable-page .button.primary,
  body.home-page .button.primary {
    animation: none;
  }

  .button::after,
  .readable-page .button::after,
  body.home-page .button::after {
    transition: none;
  }
}

@media (max-width: 920px) {
  .site-header,
  .readable-page .site-header,
  body.home-page .site-header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 18px;
  }

  .top-nav,
  .readable-page .top-nav,
  body.home-page .top-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }
}

/* Final page-title colours and stable header navigation. */
.readable-page.pricing-page .pricing-hero-title,
.readable-page.pricing-page .page-hero h1 {
  color: #ffd166;
}

.top-nav,
.readable-page .top-nav,
body.home-page .top-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  align-items: stretch;
  gap: 0;
  justify-self: end;
  width: min(560px, 100%);
  min-width: 0;
}

.top-nav a,
.readable-page .top-nav a,
body.home-page .top-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-left: 1px solid rgba(255, 138, 76, 0.18);
  padding: 0 14px;
  line-height: 1.12;
  transition:
    color 160ms ease,
    background-color 160ms ease;
  transform: none;
}

@media (max-width: 620px) {
  .top-nav,
  .readable-page .top-nav,
  body.home-page .top-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

.readable-page.pricing-page .pricing-hero-title {
  color: #f6f3ee;
}

.readable-page.pricing-page .pricing-hero-title span,
.readable-page.pricing-page .pricing-hero-title strong {
  display: block;
}

.readable-page.pricing-page .pricing-hero-title strong {
  margin-top: 10px;
  color: #ff8a4c;
  font-size: 0.72em;
  line-height: 1;
}

.brand .brand-mark {
  background:
    linear-gradient(currentColor, currentColor) top center / 20px 2px no-repeat,
    linear-gradient(currentColor, currentColor) bottom center / 20px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center center / 3px 4px no-repeat;
  filter: drop-shadow(0 0 10px rgba(255, 138, 76, 0.26));
}

/* Restore the approved homepage visual system. Secondary-page redesign stays scoped away from this. */
body.home-page {
  --bg: #080b10;
  --panel: rgba(18, 24, 32, 0.82);
  --panel-strong: rgba(23, 32, 42, 0.94);
  --line: rgba(166, 244, 255, 0.2);
  --text: #f5f8fb;
  --muted: #aab6c2;
  --cyan: #64e4ff;
  --mint: #78f3b5;
  --coral: #ff8f70;
  --ink: #0a0f15;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(100, 228, 255, 0.12), transparent 34rem),
    radial-gradient(circle at 82% 10%, rgba(120, 243, 181, 0.08), transparent 28rem),
    linear-gradient(140deg, #050607 0%, #090d12 42%, #020304 100%),
    var(--bg);
}

body.home-page .page-shell {
  width: min(1180px, calc(100% - 32px));
}

body.home-page .site-header {
  position: sticky;
  display: grid;
  grid-template-columns: minmax(0, 700px) 420px;
  gap: clamp(32px, 5vw, 72px);
  width: auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

body.home-page .brand {
  gap: 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.home-page .brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--cyan);
  background:
    linear-gradient(135deg, transparent 45%, var(--cyan) 45% 55%, transparent 55%),
    linear-gradient(45deg, transparent 45%, var(--mint) 45% 55%, transparent 55%);
  box-shadow: 0 0 24px rgba(100, 228, 255, 0.5);
}

body.home-page .top-nav {
  justify-content: space-between;
  width: 100%;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 138, 76, 0.22);
  background: rgba(8, 11, 16, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.home-page .top-nav a {
  flex: 1;
  min-height: 38px;
  border: 1px solid transparent;
  padding: 10px 8px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

body.home-page .top-nav a + a {
  border-left-color: rgba(255, 138, 76, 0.16);
}

body.home-page .top-nav a:hover,
body.home-page .top-nav a:focus-visible {
  border-color: rgba(255, 138, 76, 0.5);
  color: #ffb182;
  background: rgba(255, 138, 76, 0.1);
}

body.home-page .hero {
  grid-template-columns: minmax(0, 700px) minmax(360px, 420px);
  gap: clamp(32px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(20px, 4vh, 38px) 0 28px;
}

body.home-page .hero h1 {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(3.6rem, 7vw, 6.55rem);
  line-height: 0.88;
  text-transform: uppercase;
}

body.home-page .eyebrow,
body.home-page .mini-label,
body.home-page .panel-topline {
  color: var(--mint);
}

body.home-page .hero-lede {
  max-width: 650px;
  color: #d5dde6;
  font-size: clamp(1rem, 1.65vw, 1.18rem);
}

body.home-page .button {
  border-radius: 0;
  min-height: 48px;
  padding: 13px 18px;
  font-weight: 800;
}

body.home-page .button.primary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #59ff84;
  box-shadow: 0 18px 44px rgba(100, 228, 255, 0.2);
}

body.home-page .button.primary::after {
  display: none;
}

body.home-page .button.secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

body.home-page .compact-info {
  max-width: 640px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}

body.home-page .compact-info p {
  color: var(--muted);
}

body.home-page .pricing-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(100, 228, 255, 0.08), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

body.home-page .pricing-panel::before {
  display: block;
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(120, 243, 181, 0.16);
  pointer-events: none;
}

body.home-page .pricing-panel h2 {
  color: var(--text);
  font-size: 2.2rem;
}

body.home-page .pricing-panel p,
body.home-page .panel-copy,
body.home-page .demand-note p {
  color: var(--muted);
}

body.home-page .price-row strong,
body.home-page .total-line strong {
  color: var(--text);
}

body.home-page .stepper button,
body.home-page .stepper output,
body.home-page .total-line {
  border-color: rgba(255, 255, 255, 0.12);
}

body.home-page .demand-note {
  border-left-color: var(--coral);
}

body.home-page .status-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

body.home-page input[type="range"] {
  accent-color: var(--cyan);
}

body.home-page .quiet-link {
  color: var(--cyan);
}

@media (max-width: 920px) {
  body.home-page {
    overflow: auto;
  }

  body.home-page .site-header,
  body.home-page .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 28px, 1240px);
  }

  .brand {
    font-size: 0.86rem;
  }

  .top-nav a {
    white-space: nowrap;
  }

  .hero h1,
  h1,
  .page-hero h1,
  .readable-hero h1,
  .simple-page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .button {
    width: 100%;
  }

  .editorial-actions,
  .hero-actions {
    gap: 14px;
  }

  .content-main {
    padding-top: 34px;
  }

  .page-hero,
  .readable-hero,
  .simple-page-hero {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .simple-section {
    padding: 48px 0;
  }
}

.brand .brand-mark,
body.home-page .brand-mark,
.readable-page .brand-mark {
  position: relative;
  width: 21px;
  height: 24px;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) top center / 20px 2px no-repeat,
    linear-gradient(currentColor, currentColor) bottom center / 20px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center center / 3px 4px no-repeat;
  box-shadow: none;
  color: #ff8a4c;
  filter: drop-shadow(0 0 10px rgba(255, 138, 76, 0.26));
}

.brand .brand-mark::before,
.brand .brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
}

.brand .brand-mark::before {
  top: 3px;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 8px solid currentColor;
}

.brand .brand-mark::after {
  bottom: 3px;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 8px solid currentColor;
}

.top-nav,
.readable-page .top-nav,
body.home-page .top-nav {
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 138, 76, 0.24);
  background: rgba(8, 11, 16, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.16);
}

.top-nav a,
.readable-page .top-nav a,
body.home-page .top-nav a {
  flex: 1;
  min-height: 38px;
  border: 1px solid transparent;
  padding: 10px 12px;
  text-align: center;
}

.top-nav a + a,
.readable-page .top-nav a + a,
body.home-page .top-nav a + a {
  border-left-color: rgba(255, 138, 76, 0.16);
}

.top-nav a:hover,
.top-nav a:focus-visible,
.readable-page .top-nav a:hover,
.readable-page .top-nav a:focus-visible,
body.home-page .top-nav a:hover,
body.home-page .top-nav a:focus-visible {
  border-color: rgba(255, 138, 76, 0.5);
  color: #ffb182;
  background: rgba(255, 138, 76, 0.1);
}

/* Final readability, page-title colour, and stable header navigation. */
body {
  font-size: 17px;
}

p,
li,
button,
input,
select,
textarea {
  font-size: 1rem;
}

.brand,
body.home-page .brand,
.readable-page .brand {
  font-size: 1.04rem;
}

.hero-lede,
body.home-page .hero-lede,
.page-hero p,
.readable-page .page-hero > div > p,
.simple-page-hero > div > p,
.readable-page .simple-page-hero > div > p,
.section-head p,
.readable-page .section-head p,
.simple-section-head p,
.readable-page .simple-section-head p,
.process-item p,
.readable-page .process-item p,
.price-line p,
.readable-page .price-line p,
.info-card p,
.readable-page .info-card p,
.simple-service-item p,
.readable-page .simple-service-item p {
  font-size: 1.08rem;
}

.contact-form label,
.readable-page .contact-form label {
  font-size: 1.06rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.readable-page .contact-form input,
.readable-page .contact-form select,
.readable-page .contact-form textarea {
  font-size: 1.05rem;
}

.site-header,
.readable-page .site-header,
body.home-page .site-header {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 20px max(28px, calc((100vw - 1240px) / 2 + 24px));
  border-top: 1px solid rgba(255, 138, 76, 0.18);
  border-bottom: 1px solid rgba(255, 138, 76, 0.26);
  background:
    linear-gradient(90deg, rgba(255, 138, 76, 0.06), transparent 34%, rgba(7, 15, 48, 0.48)),
    rgba(5, 4, 16, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.top-nav,
.readable-page .top-nav,
body.home-page .top-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  align-items: stretch;
  gap: 0;
  justify-self: end;
  width: min(560px, 100%);
  min-width: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.top-nav a,
.readable-page .top-nav a,
body.home-page .top-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-left: 1px solid rgba(255, 138, 76, 0.18);
  padding: 0 14px;
  font-size: 1rem;
  line-height: 1.12;
  text-align: center;
  transition:
    color 160ms ease,
    background-color 160ms ease;
  transform: none;
}

.top-nav a:first-child,
.readable-page .top-nav a:first-child,
body.home-page .top-nav a:first-child {
  border-left: 0;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.readable-page .top-nav a:hover,
.readable-page .top-nav a:focus-visible,
body.home-page .top-nav a:hover,
body.home-page .top-nav a:focus-visible {
  border-color: rgba(255, 138, 76, 0.18);
  color: #ffb182;
  background: rgba(255, 138, 76, 0.1);
  transform: none;
}

.readable-page.how-page .page-hero h1 {
  color: #c084fc;
}

.readable-page.pricing-page .pricing-hero-title,
.readable-page.pricing-page .page-hero h1 {
  color: #64e4ff;
}

.readable-page.pricing-page .section-head h2 {
  color: #f6f3ee;
}

.readable-page.pricing-page .price-line > strong {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.readable-page.pricing-page .price-line:hover > strong {
  border-color: rgba(255, 138, 76, 0.76);
  background: rgba(255, 138, 76, 0.18);
  color: #ffd0b8;
  transform: translateY(-3px);
}

.readable-page.pricing-page .price-badge {
  display: grid;
  gap: 8px;
}

.readable-page.pricing-page .price-badge span {
  line-height: 1;
}

.readable-page.pricing-page .price-badge small {
  color: #f6f3ee;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.readable-page.pricing-page .info-card {
  position: relative;
  border: 1px solid rgba(255, 138, 76, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 138, 76, 0.09), transparent 42%),
    rgba(15, 7, 29, 0.92);
}

.readable-page.pricing-page .info-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 2px;
  background: #ff8a4c;
}

.readable-page.contact-page .page-hero h1 {
  color: #8fffd0;
}

@media (max-width: 920px) {
  .site-header,
  .readable-page .site-header,
  body.home-page .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 18px 18px;
  }

  .top-nav,
  .readable-page .top-nav,
  body.home-page .top-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-self: stretch;
    width: 100%;
    border: 1px solid rgba(255, 138, 76, 0.2);
    background: rgba(8, 11, 16, 0.52);
  }

  .top-nav a,
  .readable-page .top-nav a,
  body.home-page .top-nav a {
    min-height: 42px;
    padding: 0 8px;
    font-size: 0.82rem;
  }
}

@media (max-width: 520px) {
  .top-nav,
  .readable-page .top-nav,
  body.home-page .top-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Final clean button animation: movement and sweep, no glow/fog. */
.button,
.readable-page .button,
body.home-page .button {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background-color 170ms ease,
    color 170ms ease;
}

.button::after,
.readable-page .button::after,
body.home-page .button::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.46) 48%, transparent 64% 100%);
  transform: translateX(-130%) skewX(-14deg);
  transition: transform 520ms ease;
  z-index: -1;
}

.button:hover,
.button:focus-visible,
.readable-page .button:hover,
.readable-page .button:focus-visible,
body.home-page .button:hover,
body.home-page .button:focus-visible {
  border-color: rgba(255, 138, 76, 0.72);
  color: #fff8f4;
  transform: translateY(-4px);
  outline: none;
  box-shadow: none;
}

.button:hover::after,
.button:focus-visible::after,
.readable-page .button:hover::after,
.readable-page .button:focus-visible::after,
body.home-page .button:hover::after,
body.home-page .button:focus-visible::after {
  transform: translateX(130%) skewX(-14deg);
}

.button:active,
.readable-page .button:active,
body.home-page .button:active {
  transform: translateY(-1px);
}

.button.primary,
.readable-page .button.primary,
body.home-page .button.primary,
.button.secondary,
.readable-page .button.secondary,
body.home-page .button.secondary {
  animation: none;
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible,
.readable-page .button.secondary:hover,
.readable-page .button.secondary:focus-visible,
body.home-page .button.secondary:hover,
body.home-page .button.secondary:focus-visible {
  background: rgba(255, 138, 76, 0.1);
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .readable-page .button,
  body.home-page .button,
  .button::after,
  .readable-page .button::after,
  body.home-page .button::after {
    transition: none;
  }
}

/* How-it-works hero sequence. */
.readable-page.how-page .stacked-hero-title span:nth-child(1) {
  color: #c084fc;
}

.readable-page.how-page .stacked-hero-title span:nth-child(2) {
  color: #59ff84;
  text-shadow: 0 0 14px rgba(89, 255, 132, 0.22);
}

.readable-page.how-page .stacked-hero-title span:nth-child(3) {
  color: #ffffff;
}

/* Services-page title links. */
.readable-page.services-page .simple-page-hero h1 {
  color: #ff8a4c;
}

.readable-page.services-page .simple-section-head h2 {
  color: #8fb4ff;
}

.readable-page.services-page .simple-service-item h3 a {
  color: #fa6f2f;
  text-decoration-color: rgba(250, 111, 47, 0.46);
}

.readable-page.services-page .simple-service-item h3 a:hover,
.readable-page.services-page .simple-service-item h3 a:focus-visible {
  color: #ff9a68;
  text-decoration-color: #fa6f2f;
}

/* Pricing block labels. */
.readable-page.pricing-page .price-line > div > strong {
  color: #a8dcff;
}

.readable-page.pricing-page .section-head h2 {
  color: #fa6f2f;
}

/* FAQ page and secondary navigation. */
.readable-page.faq-page .page-hero h1 {
  color: #f0b7ff;
}

.readable-page.faq-page .faq-hero {
  padding-bottom: 64px;
}

.readable-page .faq-section {
  padding-top: 0;
}

.faq-list {
  border-bottom: 1px solid rgba(117, 29, 176, 0.9);
}

.faq-list details {
  border-top: 1px solid rgba(117, 29, 176, 0.9);
  padding: 0;
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  color: #d98a62;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  color: #59ff84;
  content: "+";
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  text-align: right;
  transition: color 180ms ease;
}

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

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: #efaa84;
  outline: none;
}

.faq-list details p {
  max-width: 620px;
  padding: 0 44px 28px 0;
  color: #f6f3ee;
  font-size: 1rem;
  line-height: 1.72;
}

.faq-list details a {
  color: #a8dcff;
  font-weight: 750;
  text-decoration-color: rgba(168, 220, 255, 0.52);
  text-underline-offset: 4px;
}

.faq-list details a:hover,
.faq-list details a:focus-visible {
  color: #d8efff;
  text-decoration-color: #a8dcff;
}

.readable-page .faq-cta {
  max-width: 760px;
  border-top: 1px solid rgba(117, 29, 176, 0.9);
  padding: 56px 0 88px;
}

.readable-page .faq-cta h2 {
  max-width: 620px;
  margin-bottom: 14px;
  color: #a8dcff;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  line-height: 1.1;
}

.readable-page .faq-cta p {
  max-width: 580px;
  margin-bottom: 24px;
  color: #d0cbd0;
}

.secondary-footer {
  display: flex;
  justify-content: flex-start;
  width: min(1120px, 100%);
  margin: 0 auto;
  border-top-color: rgba(117, 29, 176, 0.76);
  padding: 24px 0 36px;
}

.secondary-footer a {
  color: rgba(246, 243, 238, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-color: rgba(89, 255, 132, 0.4);
  text-underline-offset: 5px;
}

.secondary-footer a:hover,
.secondary-footer a:focus-visible {
  color: #59ff84;
}

@media (max-width: 920px) {
  .secondary-footer {
    width: min(100% - 36px, 760px);
  }
}

@media (max-width: 620px) {
  .readable-page.faq-page .faq-hero {
    padding-bottom: 48px;
  }

  .faq-list summary {
    gap: 14px;
    padding: 20px 0;
    font-size: 1rem;
  }

  .faq-list details p {
    padding: 0 0 24px;
    font-size: 0.96rem;
  }

  .readable-page .faq-cta {
    padding: 48px 0 64px;
  }

  .secondary-footer {
    width: min(100% - 28px, 760px);
  }
}

/* Five primary navigation tabs on one row at every viewport. */
.top-nav,
.readable-page .top-nav,
body.home-page .top-nav {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(680px, 100%);
}

@media (max-width: 920px) {
  .top-nav,
  .readable-page .top-nav,
  body.home-page .top-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 520px) {
  .top-nav,
  .readable-page .top-nav,
  body.home-page .top-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .top-nav a,
  .readable-page .top-nav a,
  body.home-page .top-nav a {
    min-height: 40px;
    padding: 0 2px;
    font-size: 0.66rem;
    white-space: nowrap;
  }
}

/* Homepage actions: clean hover sweep, no glow. */
body.home-page .button.primary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #59ff84;
  animation: none;
  box-shadow: none;
}

body.home-page .button.primary::after {
  display: block;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.82) 48%, transparent 66% 100%);
  transform: translateX(-140%) skewX(-14deg);
  transition: transform 520ms ease;
}

body.home-page .button.primary:hover::after,
body.home-page .button.primary:focus-visible::after {
  transform: translateX(140%) skewX(-14deg);
}

body.home-page .button.primary:hover,
body.home-page .button.primary:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  color: var(--ink);
  box-shadow: none;
  transform: translateY(-4px);
}

@keyframes quietQuestionShine {
  0%, 72%, 100% {
    background-position: 130% 0;
  }
  86% {
    background-position: -30% 0;
  }
}

body.home-page .pricing-panel .quiet-link {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
  padding: 3px 2px;
  color: var(--cyan);
  background: linear-gradient(100deg, var(--cyan) 0 38%, #ffffff 50%, var(--cyan) 62% 100%);
  background-size: 240% 100%;
  background-position: 130% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  animation: quietQuestionShine 5.2s ease-in-out infinite;
}

body.home-page .pricing-panel .quiet-link:hover,
body.home-page .pricing-panel .quiet-link:focus-visible {
  text-shadow: 0 0 8px rgba(100, 228, 255, 0.2);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .pricing-panel .quiet-link {
    animation: none;
    background-position: 0 0;
  }
}

body.home-page .pricing-panel h2 {
  color: #a8dcff;
}

body.home-page .price-row strong {
  color: #59ff84;
}

body.home-page .price-row .currency,
body.home-page .price-row .per {
  color: #59ff84;
}

@keyframes hourlyPriceGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

body.home-page .price-row .currency,
body.home-page .price-row strong,
body.home-page .price-row .per {
  color: #59ff84;
  background: linear-gradient(
    100deg,
    #ff4d5a 0%,
    #ff8a3d 14%,
    #ffe45c 28%,
    #59ff84 42%,
    #55c8ff 57%,
    #5968ff 71%,
    #c06cff 85%,
    #ff4d5a 100%
  );
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hourlyPriceGradient 9s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .price-row .currency,
  body.home-page .price-row strong,
  body.home-page .price-row .per {
    animation: none;
  }
}

body.home-page .compact-info {
  border-color: #fa6f2f;
}

body.home-page .compact-info p {
  font-style: italic;
}

.contact-page .form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

.contact-page .contact-form .human-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(117, 29, 176, 0.8);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: #f6f3ee;
  cursor: pointer;
}

.contact-page .contact-form .human-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #59ff84;
}

.contact-page .contact-form .human-check span {
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.contact-page .contact-form .button.primary {
  margin-top: 0;
}

.contact-page .contact-form .button.primary:disabled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 243, 238, 0.46);
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 560px) {
  .contact-page .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-page .contact-form .human-check,
  .contact-page .contact-form .button.primary {
    width: 100%;
  }

  .contact-page .contact-form .human-check {
    justify-content: center;
  }
}

.how-page .page-hero .side-note {
  max-width: 560px;
  border: 1px solid #fa6f2f;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px 14px;
}

.how-page .page-hero .side-note strong {
  margin-bottom: 5px;
}

.how-page .page-hero .side-note p {
  margin: 0;
  font-style: italic;
}

.contact-page .page-hero .side-note {
  max-width: 560px;
  border: 1px solid #fa6f2f;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px 14px;
}

.contact-page .page-hero .side-note strong {
  margin-bottom: 5px;
}

.contact-page .page-hero .side-note p {
  margin: 0;
  font-style: italic;
}

.error-page .error-main {
  display: grid;
  min-height: calc(100svh - 138px);
  align-items: center;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.error-page .error-copy {
  max-width: 760px;
}

.error-page .error-copy h1 {
  max-width: 680px;
  margin: 14px 0 22px;
  color: #f6f3ee;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.98;
}

.error-page .error-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #d0cbd0;
  font-size: 1.12rem;
  line-height: 1.7;
}

.error-page .error-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

@media (max-width: 620px) {
  .error-page .error-main {
    min-height: calc(100svh - 170px);
    width: min(100% - 32px, 1180px);
    padding: 56px 0 72px;
  }

  .error-page .error-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .error-page .error-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

.legal-page .legal-main {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 76px 0 104px;
}

.legal-page .legal-hero {
  max-width: 780px;
  padding-bottom: 58px;
}

.legal-page .legal-hero h1 {
  margin: 14px 0 22px;
  color: #f6f3ee;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.legal-page .legal-hero > p:not(.eyebrow):not(.legal-updated) {
  max-width: 660px;
  margin: 0;
  color: #d0cbd0;
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-page .legal-updated {
  margin: 18px 0 0;
  color: rgba(246, 243, 238, 0.56);
  font-size: 0.84rem;
}

.legal-page .legal-content {
  max-width: 760px;
}

.legal-page .legal-content section {
  padding: 34px 0;
  border-top: 1px solid rgba(117, 29, 176, 0.72);
}

.legal-page .legal-content h2 {
  max-width: 620px;
  margin: 0 0 14px;
  color: #d98a62;
  font-size: 1.38rem;
  line-height: 1.25;
}

.legal-page .legal-content p {
  max-width: 65ch;
  margin: 0;
  color: #e7e1dc;
  font-size: 1rem;
  line-height: 1.78;
}

.legal-page .legal-content p + p {
  margin-top: 14px;
}

.legal-page .legal-content a,
.form-privacy-note a {
  color: #a8dcff;
  text-decoration-color: rgba(168, 220, 255, 0.48);
  text-underline-offset: 4px;
}

.legal-page .legal-content a:hover,
.legal-page .legal-content a:focus-visible,
.form-privacy-note a:hover,
.form-privacy-note a:focus-visible {
  color: #59ff84;
}

.legal-footer {
  display: block;
}

.legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.legal-links a[aria-current="page"] {
  color: #59ff84;
}

.form-privacy-note {
  max-width: 62ch;
  margin: 0;
  color: rgba(246, 243, 238, 0.64);
  font-size: 0.8rem;
  line-height: 1.55;
}

.home-legal-links {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 4px 0 0;
}

/* Keep the approved homepage header and pricing footer aligned with the site-wide system. */
@media (min-width: 921px) {
  body.home-page .site-header {
    grid-template-columns: minmax(0, 1fr) minmax(0, 680px);
  }

  .readable-page:not(.error-page) .site-header {
    padding-right: max(28px, calc((100vw - 1120px) / 2));
    padding-left: max(28px, calc((100vw - 1120px) / 2));
  }
}

body.home-page .pricing-panel .quiet-link {
  margin-top: 6px;
}

.top-nav a,
.readable-page .top-nav a,
body.home-page .top-nav a {
  white-space: nowrap;
}

.readable-page.services-page .simple-page-hero h1 {
  color: #ffffff;
}

.readable-page.pricing-page .pricing-hero-title {
  color: #ffffff;
}

.readable-page.services-page .closing-note {
  max-width: 620px;
  border: 1px solid #fa6f2f;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px 20px;
}

.readable-page.services-page .closing-note h3 {
  font-style: normal;
}

.readable-page.services-page .closing-note p {
  margin-bottom: 0;
  font-style: italic;
}

.readable-page.services-page .pricing-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #a8dcff;
  text-decoration: underline;
  text-decoration-color: rgba(168, 220, 255, 0.48);
  text-underline-offset: 6px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.readable-page.services-page .pricing-arrow-link::after {
  content: "->";
  color: #59ff84;
  font-size: 0.9em;
  text-decoration: none;
  animation: pricingArrowShine 3.8s ease-in-out infinite;
}

.readable-page.services-page .pricing-arrow-link:hover,
.readable-page.services-page .pricing-arrow-link:focus-visible {
  color: #ffffff;
  text-decoration-color: #59ff84;
}

@keyframes pricingArrowShine {
  0%, 70%, 100% {
    color: #59ff84;
    text-shadow: none;
  }
  85% {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(89, 255, 132, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .readable-page.services-page .pricing-arrow-link::after {
    animation: none;
  }
}

.home-legal-links a {
  color: rgba(220, 231, 239, 0.6);
  font-size: 0.65rem;
  line-height: 1.3;
  text-decoration: none;
}

.home-legal-links a:hover,
.home-legal-links a:focus-visible {
  color: #59ff84;
}

@media (max-width: 620px) {
  .legal-page .legal-main {
    width: min(100% - 32px, 1120px);
    padding: 56px 0 76px;
  }

  .legal-page .legal-hero {
    padding-bottom: 42px;
  }

  .legal-page .legal-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .legal-page .legal-content section {
    padding: 28px 0;
  }

  .legal-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
