:root {
  --bg: #07060d;
  --surface: #0e0c17;
  --surface-2: #151222;
  --text: #f6f3ff;
  --muted: #9d98aa;
  --line: rgba(255, 255, 255, 0.1);
  --violet: #8054ff;
  --violet-bright: #a98cff;
  --font: "Onest", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --page: min(1120px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  color: var(--bg);
  background: var(--text);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.content-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 5.5rem;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}
.content-brand { width: 10rem; }
.content-nav { display: flex; gap: 1.5rem; }
.content-nav a,
.content-back {
  color: var(--muted);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 500;
}
.content-nav a:hover,
.content-nav a:focus-visible,
.content-back:hover,
.content-back:focus-visible { color: var(--text); }
.content-back { justify-self: end; }

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 7vw;
  align-items: center;
  width: var(--page);
  min-height: 670px;
  margin-inline: auto;
  padding: 6rem 0;
}
.service-hero::before {
  position: absolute;
  z-index: -1;
  top: -18rem;
  left: -18rem;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: rgba(128,84,255,.12);
  filter: blur(120px);
  content: "";
}
.content-kicker {
  margin: 0;
  color: var(--violet-bright);
  font: 500 .65rem var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-hero h1 {
  max-width: 760px;
  margin: 1.1rem 0 0;
  font-size: clamp(3.1rem, 6.8vw, 6.3rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.07em;
}
.service-hero h1 span { color: var(--violet-bright); }
.service-lead {
  max-width: 640px;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.content-button {
  display: inline-flex;
  gap: .8rem;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1.8rem;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: .65rem;
  color: #fff;
  background: linear-gradient(135deg, #8b5cff, #6434dc);
  box-shadow: 0 12px 34px rgba(105,57,225,.25), inset 0 1px 0 rgba(255,255,255,.3);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.content-button:hover,
.content-button:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(105,57,225,.38); }
.content-button i { font-style: normal; }

.service-symbol {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 430px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(128,84,255,.22), transparent 60%),
    var(--surface);
  background-size: 45px 45px, 45px 45px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 40px 100px rgba(0,0,0,.35);
}
.service-symbol::before,
.service-symbol::after {
  position: absolute;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(169,140,255,.18);
  border-radius: 50%;
  content: "";
}
.service-symbol::after { width: 51%; height: 51%; border-style: dashed; }
.service-symbol strong {
  position: relative;
  z-index: 1;
  font: 500 clamp(3rem, 7vw, 6.5rem) var(--mono);
  letter-spacing: -.08em;
}
.service-symbol small {
  position: absolute;
  bottom: 1.2rem;
  color: var(--muted);
  font: 400 .53rem var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.content-section {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  border-top: 1px solid var(--line);
}
.content-section__head {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 6vw;
  margin-bottom: 3rem;
}
.content-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.055em;
}
.content-section h2 span { color: var(--violet-bright); }
.content-section__head > p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
}
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.benefit-card {
  min-height: 250px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: .9rem;
  background: linear-gradient(145deg, rgba(128,84,255,.07), rgba(255,255,255,.015));
}
.benefit-card span { color: var(--violet-bright); font: 500 .58rem var(--mono); }
.benefit-card h3 { margin: 4rem 0 .8rem; font-size: 1.18rem; font-weight: 600; letter-spacing: -.03em; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.65; }

.process-list { counter-reset: steps; border-top: 1px solid var(--line); }
.process-list article {
  display: grid;
  grid-template-columns: 3rem .6fr 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.process-list span { color: var(--violet-bright); font: 500 .58rem var(--mono); }
.process-list h3 { margin: 0; font-size: 1.1rem; font-weight: 600; }
.process-list p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }

.ideal-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 6vw;
  padding: clamp(3rem, 6vw, 5rem);
  border: 1px solid rgba(169,140,255,.2);
  border-radius: 1.2rem;
  background: radial-gradient(circle at 0 100%, rgba(128,84,255,.16), transparent 35%), var(--surface);
}
.ideal-panel h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
.check-list { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }
.check-list li { padding: 1rem; border: 1px solid var(--line); border-radius: .7rem; color: #d8d3df; font-size: .82rem; }
.check-list li::before { margin-right: .7rem; color: var(--violet-bright); content: "✦"; }

.content-faq { max-width: 850px; margin-left: auto; }
.content-faq details { border-bottom: 1px solid var(--line); }
.content-faq summary { position: relative; padding: 1.45rem 3rem 1.45rem 0; cursor: pointer; list-style: none; font-weight: 500; }
.content-faq summary::-webkit-details-marker { display: none; }
.content-faq summary::after { position: absolute; top: 50%; right: 0; color: var(--violet-bright); content: "+"; transform: translateY(-50%); }
.content-faq details[open] summary::after { content: "−"; }
.content-faq p { margin: -.3rem 0 1.4rem; color: var(--muted); font-size: .82rem; line-height: 1.7; }

.faq-page-hero {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 7vw, 7rem);
}
.faq-page-hero h1 {
  max-width: 920px;
  margin: 1rem 0 0;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.075em;
}
.faq-page-hero h1 span { color: var(--violet-bright); }
.faq-page-hero > p:last-child {
  max-width: 610px;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-groups { width: var(--page); margin-inline: auto; border-top: 1px solid var(--line); }
.faq-group {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 7vw;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
}
.faq-group h2 { margin: .7rem 0 0; font-size: clamp(1.7rem, 3vw, 2.8rem); letter-spacing: -.05em; }
.faq-group .content-faq { width: 100%; max-width: none; }

.content-cta {
  width: var(--page);
  margin: 0 auto 2rem;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  border: 1px solid rgba(169,140,255,.2);
  border-radius: 1.2rem;
  text-align: center;
  background: radial-gradient(circle at 50% 115%, rgba(128,84,255,.35), transparent 50%), var(--surface);
}
.content-cta h2 { margin: 0; font-size: clamp(2.4rem, 5.5vw, 5rem); line-height: 1; letter-spacing: -.06em; }
.content-cta p { max-width: 590px; margin: 1.2rem auto 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }

.content-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 6rem;
  margin-inline: auto;
  color: #706a78;
  font: 400 .55rem var(--mono);
  text-transform: uppercase;
}
.content-footer img { width: 8rem; opacity: .6; }
.content-footer p { margin: 0; }
.content-footer a { justify-self: end; color: #9d98a7; text-decoration: none; }

:focus-visible { outline: 2px solid var(--violet-bright); outline-offset: 4px; }

@media (max-width: 800px) {
  :root { --page: calc(100vw - 32px); }
  .content-header { grid-template-columns: 1fr auto; }
  .content-nav { display: none; }
  .service-hero { grid-template-columns: 1fr; min-height: auto; padding: 5rem 0; }
  .service-symbol { width: min(100%, 430px); margin: 1rem auto 0; }
  .content-section__head { grid-template-columns: 1fr; gap: 1.4rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 210px; }
  .process-list article { grid-template-columns: 2rem 1fr; gap: .8rem; }
  .process-list p { grid-column: 2; }
  .ideal-panel { grid-template-columns: 1fr; }
  .faq-group { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 520px) {
  :root { --page: calc(100vw - 28px); }
  .content-header { min-height: 4.8rem; }
  .content-brand { width: 8.2rem; }
  .content-back { font-size: .62rem; }
  .service-hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .service-lead { font-size: .9rem; }
  .content-section h2 { font-size: 2.5rem; }
  .ideal-panel { padding: 2rem 1.2rem; }
  .content-footer { grid-template-columns: 1fr auto; }
  .content-footer p { display: none; }
}

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