:root {
  --ink: #170038;
  --muted: #5d516f;
  --paper: #fffaf8;
  --white: #ffffff;
  --soft: #fff0f8;
  --line: #eadff1;
  --violet: #2a0066;
  --purple: #6f00ff;
  --magenta: #f32691;
  --coral: #ff4d6d;
  --sun: #ffd166;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(42, 0, 102, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(111, 0, 255, .055) 1px, transparent 1px),
    linear-gradient(rgba(243, 38, 145, .045) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(234, 223, 241, .95);
  background: rgba(255, 250, 248, .9);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--violet);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 12px 30px rgba(111, 0, 255, .2);
  overflow: hidden;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--magenta);
}

.btn {
  border: 0;
  border-radius: 8px;
  min-height: 38px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--purple) 45%, var(--magenta));
  box-shadow: 0 16px 38px rgba(111, 0, 255, .28);
}

.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(243, 38, 145, .3);
}

.btn-secondary {
  color: var(--violet);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: rgba(243, 38, 145, .38);
}

.nav-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(42, 0, 102, .08), transparent 34%),
    linear-gradient(180deg, #fff7fb 0%, #fffaf8 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -140px -10%;
  height: 260px;
  background: repeating-linear-gradient(90deg, rgba(243, 38, 145, .15) 0 18px, rgba(111, 0, 255, .12) 18px 36px);
  transform: rotate(-2deg);
  z-index: 0;
}

.motion-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.motion-rings span {
  position: absolute;
  border: 2px solid rgba(111, 0, 255, .16);
  border-radius: 50%;
  animation: ringDrift 12s ease-in-out infinite;
}

.motion-rings span:nth-child(1) {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 90px;
}

.motion-rings span:nth-child(2) {
  width: 140px;
  height: 140px;
  right: 10%;
  top: 110px;
  border-color: rgba(243, 38, 145, .24);
  animation-delay: -4s;
}

.motion-rings span:nth-child(3) {
  width: 210px;
  height: 210px;
  right: -80px;
  bottom: 22px;
  border-color: rgba(255, 77, 109, .2);
  animation-delay: -7s;
}

@keyframes ringDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -16px, 0) scale(1.04);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  padding: 48px 0 40px;
  display: grid;
  gap: 28px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  max-width: 790px;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: .98;
  letter-spacing: 0;
}

h1 span,
.metric {
  color: transparent;
  background: linear-gradient(135deg, var(--purple), var(--magenta), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3.8vw, 36px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

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

.hero-proof {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proof-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 34px rgba(42, 0, 102, .07);
}

.proof-item strong {
  display: block;
  color: var(--violet);
  font-size: 18px;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  animation: floatCard 6s ease-in-out infinite;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.orbit-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 8px;
  color: var(--violet);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 44px rgba(42, 0, 102, .14);
  backdrop-filter: blur(12px);
  font-weight: 900;
}

.orbit-badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-10px) rotate(-.5deg);
  }
}

section {
  padding: 46px 0;
}

.ticker-band {
  padding: 12px 0;
  overflow: hidden;
  color: #fff;
  background: var(--violet);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 26px;
  font-weight: 950;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  color: #fff;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

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

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.intro {
  background: #fff;
}

.intro-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

.services {
  background:
    linear-gradient(135deg, rgba(111, 0, 255, .07), transparent 30%),
    var(--soft);
}

.card-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.service-card,
.step-card,
.contact-aside,
.form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 44px rgba(42, 0, 102, .07);
}

.service-card,
.step-card {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  padding: 18px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card::after,
.step-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  opacity: .16;
}

.service-card:hover,
.service-card:focus,
.step-card:hover,
.step-card:focus {
  transform: translateY(-8px);
  border-color: rgba(243, 38, 145, .34);
  box-shadow: 0 24px 62px rgba(111, 0, 255, .14);
  outline: 0;
}

.service-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon,
.step-card span {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  font-weight: 950;
  font-size: 13px;
}

.method {
  color: #fff;
  background:
    linear-gradient(135deg, #170038 0%, #2a0066 45%, #6f00ff 100%);
}

.method .eyebrow {
  color: #ffd3e7;
}

.method .lead,
.method p {
  color: #eee6ff;
}

.method-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.method-copy {
  max-width: 680px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.step-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.step-card p {
  color: #eee6ff;
}

.step-card span {
  background: linear-gradient(135deg, var(--magenta), var(--coral));
}

.studio {
  background: #fff;
}

.studio-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.studio-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.studio-grid > div {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 44px rgba(42, 0, 102, .07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
}

.contact {
  background:
    linear-gradient(135deg, rgba(243, 38, 145, .08), transparent 32%),
    #fff8fb;
}

.contact-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.contact-aside,
.form {
  padding: 20px;
}

.contact-aside {
  border-left: 4px solid var(--magenta);
}

.contact-location {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.contact-location h3 {
  margin-bottom: 8px;
}

.contact-location p {
  color: var(--muted);
}

.contact-location .btn {
  margin-top: 6px;
}

.form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dccfe8;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(243, 38, 145, .18);
  border-color: var(--magenta);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 0, 56, .62);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(111, 0, 255, .08), rgba(243, 38, 145, .08)),
    #fff;
  box-shadow: 0 30px 80px rgba(23, 0, 56, .3);
}

.modal-card img {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.modal-card h2 {
  margin-bottom: 8px;
}

.modal-card p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.faq {
  background: #fff;
}

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

.faq-item {
  overflow: hidden;
}

.faq-button {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-button span:last-child {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  flex: 0 0 auto;
}

.faq-answer {
  display: none;
  padding: 0 14px 12px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.map-panel {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(111, 0, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(243, 38, 145, .08) 1px, transparent 1px),
    #fff;
  background-size: 38px 38px;
  position: relative;
}

.compact-map {
  min-height: 170px;
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  border: 3px solid rgba(111, 0, 255, .16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2.4s ease-in-out infinite;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -62%) rotate(-45deg);
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 18px 30px rgba(111, 0, 255, .26);
  animation: pinBounce 2.8s ease-in-out infinite;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: #fff;
}

@keyframes pulseRing {
  0%, 100% {
    opacity: .5;
    transform: translate(-50%, -50%) scale(.94);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes pinBounce {
  0%, 100% {
    transform: translate(-50%, -62%) rotate(-45deg);
  }

  50% {
    transform: translate(-50%, -72%) rotate(-45deg);
  }
}

.site-footer {
  padding: 34px 0 22px;
  color: #f5eefe;
  background: #170038;
}

.footer-simple {
  display: grid;
  gap: 24px;
  align-items: start;
}

.footer-simple p {
  color: #e9ddf8;
  margin-bottom: 0;
}

.footer-simple .brand {
  margin-bottom: 8px;
  color: #fff;
}

.copyright {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer-contact strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.footer-contact p + p {
  margin-top: 5px;
}

.footer-simple a {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: #fff;
  font-weight: 750;
}

.response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
  background:
    linear-gradient(135deg, rgba(111, 0, 255, .08), transparent 34%),
    #fff8fb;
}

.response-card {
  max-width: 720px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.response-card h1 {
  margin-top: 24px;
  font-size: clamp(36px, 5vw, 56px);
}

.legal-main {
  padding: 46px 0 64px;
}

.legal-main article {
  max-width: 860px;
}

.legal-main h1 {
  font-size: clamp(36px, 6vw, 56px);
}

.legal-main h2 {
  margin-top: 26px;
  font-size: 24px;
}

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: flex;
  box-shadow: 0 18px 48px rgba(42, 0, 102, .28);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

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

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

@media (min-width: 700px) {
  .intro-grid,
  .contact-grid,
  .studio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .footer-simple {
    grid-template-columns: minmax(260px, 1.2fr) minmax(220px, .8fr) minmax(170px, .5fr);
  }
}

@media (min-width: 940px) {
  .nav-links,
  .nav-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1.02fr .98fr;
    padding: 58px 0 48px;
  }

  .method-grid {
    grid-template-columns: minmax(260px, .76fr) minmax(0, 1.24fr);
    align-items: stretch;
  }

  .contact-location {
    grid-template-columns: minmax(0, .95fr) minmax(190px, 1.05fr);
  }

  .mobile-sticky {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark img {
    width: 42px;
    height: 42px;
  }

  .hero-grid {
    padding: 34px 0 26px;
  }

  h1 {
    font-size: 31px;
    line-height: 1.02;
  }

  h2 {
    font-size: 24px;
  }

  .hero-proof {
    display: none;
  }

  .hero-visual,
  .hero-photo {
    min-height: 190px;
  }

  .hero-visual {
    transform: none;
    animation: none;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .mobile-sticky {
    width: auto;
  }

  section {
    padding: 34px 0;
  }

  .service-card,
  .step-card,
  .contact-aside,
  .form {
    min-height: auto;
    padding: 16px;
  }

  .studio-grid > div {
    min-height: auto;
    padding: 16px;
  }

  .lead {
    font-size: 15px;
  }

  .contact-location {
    margin-top: 16px;
    padding-top: 14px;
    gap: 12px;
  }

  .compact-map {
    min-height: 150px;
  }

  textarea {
    min-height: 90px;
  }
}
