:root {
  --ink: #16142f;
  --ink-soft: #272550;
  --violet: #745eea;
  --violet-deep: #5742c4;
  --lavender: #dfe3ff;
  --mist: #f1f2ff;
  --paper: #fbfbff;
  --white: #ffffff;
  --text: #191833;
  --muted: #656783;
  --line: rgba(22, 20, 47, 0.13);
  --shadow: 0 26px 70px rgba(22, 20, 47, 0.14);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.header.is-scrolled {
  padding: 10px 0;
  background: rgba(251, 251, 255, .94);
  box-shadow: 0 10px 35px rgba(22, 20, 47, .08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand__mark {
  position: relative;
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(116, 94, 234, .28);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #e4e6ff);
  box-shadow: inset 0 0 0 8px rgba(116, 94, 234, .06);
}
.brand__mark::before,
.brand__mark::after,
.brand__mark span,
.brand__mark i {
  content: "";
  position: absolute;
  border: 2px solid var(--violet);
  border-radius: 50%;
}
.brand__mark::before {
  width: 20px;
  height: 20px;
  border-left-color: transparent;
  transform: rotate(28deg);
}
.brand__mark::after {
  width: 9px;
  height: 9px;
  border-right-color: transparent;
  transform: translate(8px, -6px);
}
.brand__mark span {
  width: 5px;
  height: 5px;
  border: 0;
  background: var(--violet);
  transform: translate(-8px, 7px);
}
.brand__mark i {
  width: 3px;
  height: 3px;
  border: 0;
  background: var(--ink);
  transform: translate(8px, 8px);
}
.brand__text { display: grid; line-height: 1.05; }
.brand__text strong { font-size: .94rem; letter-spacing: -.02em; }
.brand__text small { margin-top: 4px; color: var(--muted); font-size: .75rem; }
.menu { display: flex; align-items: center; gap: 6px; }
.menu a {
  padding: 11px 14px;
  border-radius: 999px;
  color: #50536d;
  font-size: .87rem;
  font-weight: 750;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.menu a:hover { color: var(--ink); background: rgba(116, 94, 234, .08); transform: translateY(-1px); }
.menu .menu__phone { margin-left: 5px; padding-inline: 20px; color: var(--white); background: var(--ink); }
.menu .menu__phone:hover { color: var(--white); background: var(--violet); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 170px 0 92px;
  background:
    radial-gradient(circle at 13% 20%, rgba(116, 94, 234, .16), transparent 30%),
    linear-gradient(180deg, #fff 0%, #eef0ff 76%, var(--paper) 100%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(22, 20, 47, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 20, 47, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 78%, transparent);
}
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow--one {
  width: 370px;
  height: 370px;
  top: 100px;
  left: -250px;
  border: 1px solid rgba(116, 94, 234, .25);
  box-shadow: inset 0 0 100px rgba(116, 94, 234, .08);
}
.hero__glow--two {
  width: 180px;
  height: 180px;
  right: 6%;
  bottom: 95px;
  background: radial-gradient(circle at 32% 28%, #fff, rgba(184, 195, 255, .46));
  box-shadow: 0 38px 85px rgba(116, 94, 234, .14);
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
}
.location-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--violet-deep);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.location-line span { width: 35px; height: 1px; background: var(--violet); }
.hero h1,
.change h2,
.section-heading h2,
.results h2,
.location h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}
.hero h1 { max-width: 740px; font-size: clamp(4rem, 7.2vw, 7rem); line-height: .94; }
.hero h1 em { display: block; color: var(--violet); font-weight: 400; }
.hero__statement {
  max-width: 630px;
  margin: 30px 0 12px;
  color: #42445e;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}
.phone-display {
  display: block;
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  letter-spacing: -.035em;
  transition: color .2s ease;
}
.phone-display:hover { color: var(--violet); }
.primary-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 28px;
  padding: 15px 23px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(22, 20, 47, .19);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.primary-button:hover { transform: translateY(-3px); background: var(--violet); box-shadow: 0 22px 45px rgba(116, 94, 234, .24); }

.mind-visual {
  position: relative;
  width: min(42vw, 500px);
  aspect-ratio: 1;
  justify-self: center;
}
.mind-visual__ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(116, 94, 234, .27);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.mind-visual__ring--one { width: 100%; height: 100%; }
.mind-visual__ring--two { width: 76%; height: 76%; border-style: dashed; animation: spin 28s linear infinite; }
.mind-visual__ring--three { width: 52%; height: 52%; border-color: rgba(22, 20, 47, .17); }
.mind-visual::before,
.mind-visual::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 88%;
  height: 42%;
  border: 1px solid rgba(116, 94, 234, .23);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(34deg);
}
.mind-visual::after { transform: translate(-50%, -50%) rotate(-34deg); }
.mind-visual__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 225px;
  aspect-ratio: 1;
  place-content: center;
  padding: 28px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  text-align: center;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.mind-visual__core span { color: var(--muted); font-size: .84rem; }
.mind-visual__core strong { margin-top: 5px; font-family: Georgia, "Times New Roman", serif; font-size: 1.85rem; line-height: 1.02; }
.mind-visual__dot { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 8px rgba(116, 94, 234, .1); }
.mind-visual__dot--one { top: 18%; right: 15%; }
.mind-visual__dot--two { bottom: 17%; left: 17%; width: 9px; height: 9px; background: var(--ink); }
.mind-visual__dot--three { top: 47%; left: 1%; width: 7px; height: 7px; background: #a69aef; }

.change { padding: 110px 0; }
.change__panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  padding: 66px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(22, 20, 47, .08);
}
.change__heading > p,
.section-heading > p,
.results__copy > p,
.location__panel > div > p {
  margin: 0 0 18px;
  color: var(--violet-deep);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.change h2 { max-width: 650px; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1; }
.change__message { align-self: end; padding-left: 38px; border-left: 1px solid var(--line); }
.change__message p { margin: 0 0 4px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.change__message strong { display: block; margin-top: 22px; color: var(--ink); font-size: clamp(1.5rem, 2.5vw, 2.15rem); line-height: 1.18; }

.reduce { position: relative; overflow: hidden; padding: 120px 0; color: var(--white); background: var(--ink); }
.reduce::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  top: -280px;
  right: -180px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: inset 0 0 110px rgba(116,94,234,.12);
}
.section-heading { position: relative; z-index: 1; margin-bottom: 52px; }
.section-heading--light > p { color: #aca2ff; }
.section-heading h2 { font-size: clamp(3.8rem, 7vw, 6.8rem); line-height: .92; }
.reduce__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.reduce__grid article {
  position: relative;
  min-height: 155px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 23px;
  background: rgba(255,255,255,.045);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.reduce__grid article:hover { transform: translateY(-5px); border-color: rgba(172,162,255,.5); background: rgba(116,94,234,.13); }
.reduce__grid article span { color: #9892b6; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.reduce__grid h3 { margin: 54px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 400; line-height: 1; }
.reduce__grid .reduce__wide { grid-column: span 2; background: linear-gradient(135deg, rgba(116,94,234,.28), rgba(255,255,255,.05)); }
.reduce__wide h3 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.reduce__wide h3 small { color: #c9c4ef; font-family: inherit; font-size: .58em; font-style: italic; }

.results { padding: 110px 0; background: var(--mist); }
.results__panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: stretch;
  padding: 58px;
  border-radius: 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 25%, rgba(116,94,234,.34), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--ink-soft));
  box-shadow: var(--shadow);
}
.results__copy > p { color: #b9b1ff; }
.results h2 { max-width: 700px; font-size: clamp(3rem, 5vw, 5rem); line-height: .97; }
.results__card {
  display: grid;
  align-content: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 27px;
  background: rgba(255,255,255,.08);
}
.results__card p { margin: 0 0 8px; color: #d7d5e8; font-size: 1rem; }
.results__card a { width: fit-content; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 3.55rem); line-height: 1; letter-spacing: -.04em; }
.results__card a:hover { color: #c2baff; }
.results__card span { display: block; width: fit-content; margin-top: 25px; padding: 9px 13px; border-radius: 999px; color: var(--ink); background: var(--white); font-size: .85rem; font-weight: 850; }

.location { padding: 110px 0; }
.location__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(22,20,47,.07);
}
.location__panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  bottom: -230px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #dfe3ff);
}
.location h2 { position: relative; z-index: 1; font-size: clamp(3.5rem, 6.5vw, 6.3rem); line-height: .9; }
.location h2 span { display: block; color: var(--violet); }
.location__phone {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 330px;
  padding: 28px 32px;
  border-radius: 25px;
  color: var(--white);
  background: var(--ink);
  transition: transform .2s ease, background .2s ease;
}
.location__phone:hover { transform: translateY(-4px); background: var(--violet); }
.location__phone small { opacity: .7; font-size: .83rem; }
.location__phone strong { margin-top: 5px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; letter-spacing: -.04em; }

.footer { padding: 40px 0 90px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 35px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}
.footer p { margin: 0; color: var(--muted); font-size: .9rem; }
.footer > .container > a { font-weight: 850; }
.brand--footer .brand__mark { width: 43px; }

.floating-call {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: var(--white);
  background: var(--violet);
  box-shadow: 0 17px 42px rgba(87,66,196,.33);
  font-size: .88rem;
  transition: transform .2s ease, background .2s ease;
}
.floating-call:hover { transform: translateY(-3px); background: var(--ink); }

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

@media (max-width: 980px) {
  .menu-button {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
    cursor: pointer;
  }
  .menu-button span { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-button span:nth-child(2) { opacity: 0; }
  .menu-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 90px 28px 40px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    color: var(--white);
    background: rgba(22,20,47,.98);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .menu-open .menu { visibility: visible; opacity: 1; transform: translateY(0); }
  .menu a { width: min(100%, 520px); margin-inline: auto; padding: 16px 18px; color: var(--white); text-align: center; font-size: 1.05rem; }
  .menu .menu__phone { margin: 18px auto 0; color: var(--ink); background: var(--white); }
  .hero { min-height: auto; padding-top: 145px; }
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero h1 { max-width: 820px; }
  .mind-visual { width: min(78vw, 470px); }
  .change__panel { grid-template-columns: 1fr; gap: 45px; padding: 48px; }
  .change__message { padding: 32px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .reduce__grid { grid-template-columns: repeat(3, 1fr); }
  .results__panel { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header { padding: 12px 0; }
  .brand__mark { width: 43px; }
  .hero { padding: 125px 0 70px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.15rem); }
  .hero__statement { margin-top: 24px; }
  .mind-visual { width: min(90vw, 390px); }
  .mind-visual__core { width: 185px; }
  .mind-visual__core strong { font-size: 1.5rem; }
  .change, .results, .location { padding: 76px 0; }
  .reduce { padding: 84px 0; }
  .change__panel, .results__panel, .location__panel { padding: 32px 24px; border-radius: 26px; }
  .change h2 { font-size: clamp(2.35rem, 11vw, 3.8rem); }
  .reduce__grid { grid-template-columns: repeat(2, 1fr); }
  .reduce__grid article { min-height: 135px; padding: 20px; }
  .reduce__grid h3 { margin-top: 42px; }
  .reduce__grid .reduce__wide { grid-column: 1 / -1; }
  .results__card { padding: 25px; }
  .results__card a { font-size: clamp(2.05rem, 10vw, 3rem); }
  .location__panel { grid-template-columns: 1fr; gap: 30px; }
  .location__phone { min-width: 0; width: 100%; padding: 25px; }
  .footer__inner { grid-template-columns: 1fr; justify-items: start; gap: 18px; }
  .floating-call { right: 14px; bottom: 14px; }
}

@media (max-width: 440px) {
  .brand__text strong { font-size: .82rem; }
  .brand__text small { font-size: .68rem; }
  .phone-display { font-size: 2.15rem; }
  .primary-button { width: 100%; justify-content: space-between; }
  .mind-visual { width: 90vw; transform: translateX(-2px); }
  .reduce__grid { grid-template-columns: 1fr; }
  .reduce__grid .reduce__wide { grid-column: auto; }
  .results__panel { padding: 28px 19px; }
  .results__card { padding: 22px 18px; }
  .results__card a { font-size: 2.05rem; }
  .floating-call strong { display: none; }
  .floating-call { width: 54px; height: 54px; justify-content: center; padding: 0; font-size: 1.15rem; }
}

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