:root {
  --purple: #5e2ca5;
  --purple-dark: #3d1779;
  --purple-light: #f0e9f9;
  --ink: #19151f;
  --muted: #686171;
  --line: #e6e0ea;
  --paper: #fff;
  --soft: #f8f6fa;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(39, 20, 60, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #b98de8;
  outline-offset: 3px;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(1140px, calc(100% - 40px));
  margin: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 20px;
  top: 20px;
  background: #fff;
  padding: 12px;
  z-index: 1000;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 224, 234, 0.8);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-mark {
  width: 46px;
  height: 46px;
}
.brand-name {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand-name small {
  display: block;
  color: var(--purple);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  margin-top: 6px;
}
.nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav a {
  font-weight: 700;
  font-size: 0.95rem;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--purple);
}
.nav-cta {
  background: var(--purple);
  color: #fff !important;
  padding: 11px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.7rem;
  color: var(--purple);
}
.hero {
  padding: 76px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--purple);
  margin: 0 0 18px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0;
}
.hero h1 span,
.page-hero h1 span {
  color: var(--purple);
}
.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 650px;
  margin: 28px 0;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--purple);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  color: var(--purple);
  transition: 0.2s;
}
.btn.primary {
  background: var(--purple);
  color: #fff;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(94, 44, 165, 0.18);
}
.hero-media {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: end;
}
.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center center;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  left: -24px;
  bottom: 22px;
  width: 250px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-weight: 800;
}
.hero-note span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}
.trustbar {
  border-block: 1px solid var(--line);
  padding: 22px 0;
}
.trustbar .container {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}
.section {
  padding: 92px 0;
}
.section.soft {
  background: var(--soft);
}
.section-head {
  max-width: 770px;
  margin-bottom: 46px;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.card.featured {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.card .number {
  color: var(--purple);
  font-weight: 800;
  font-size: 0.8rem;
}
.card.featured .number {
  color: #dbcdf0;
}
.card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 18px 0 10px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.card.featured p {
  color: #eee5f8;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.checklist li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 900;
}
.quote {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.035em;
}
.page-hero {
  padding: 74px 0 64px;
  background: linear-gradient(135deg, #fff 55%, var(--purple-light));
}
.page-hero h1 {
  max-width: 900px;
}
.service-list {
  display: grid;
  gap: 20px;
}
.service {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.service:last-child {
  border-bottom: 1px solid var(--line);
}
.service strong {
  font-size: 2rem;
  color: var(--purple);
}
.service h2 {
  font-size: 1.55rem;
  margin: 0 0 8px;
}
.service p {
  margin: 0;
  color: var(--muted);
  max-width: 650px;
}
.tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-light);
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.notice {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.notice h2 {
  margin: 0;
  font-size: 2rem;
}
.notice p {
  margin: 8px 0 0;
  color: #d9d4de;
}
.notice .btn {
  border-color: #fff;
  color: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}
.portrait-placeholder {
  background: var(--purple);
  color: #fff;
  border-radius: 30px;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  box-shadow: var(--shadow);
}
.portrait-placeholder strong {
  font-size: 2rem;
}
.portrait-placeholder span {
  color: #ddd0ef;
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}
.value {
  padding: 20px;
  background: var(--soft);
  border-radius: 16px;
}
.value strong {
  display: block;
  color: var(--purple);
}
.portfolio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
.project-visual {
  min-height: 220px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--purple), #1d0f2c);
  color: #fff;
}
.project-visual.alt {
  background: linear-gradient(135deg, #20192a, #8853c5);
}
.project-visual.light {
  background: linear-gradient(135deg, #ede3f8, #fff);
  color: var(--ink);
}
.project-visual h3 {
  font-size: 2rem;
  margin: 0;
  line-height: 1;
}
.project-body {
  padding: 26px;
}
.project-body p {
  color: var(--muted);
}
.contact {
  background: var(--purple);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.contact h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin: 0;
  line-height: 1;
}
.contact p,
.contact a {
  color: #eee5fa;
}
.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.form {
  background: #fff;
  color: var(--ink);
  padding: 30px;
  border-radius: 26px;
}
.form a {
  color: var(--purple);
  text-decoration: underline;
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}
.field label {
  font-weight: 800;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px;
  background: #fff;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(94, 44, 165, 0.18);
  border-color: var(--purple);
}
.field textarea {
  min-height: 125px;
  resize: vertical;
}
.required {
  color: var(--purple);
}
.optional {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
}
.field-help {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.8rem;
  line-height: 1.45;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 20px 0;
}
.privacy-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--purple);
}
.privacy-check label {
  font-size: 0.9rem;
  line-height: 1.5;
}
.form :disabled {
  opacity: 0.58;
  cursor: not-allowed;
}
.form-status {
  min-height: 24px;
  color: var(--purple) !important;
  font-weight: 700;
}
.footer {
  background: #17131d;
  color: #d9d3df;
  padding: 48px 0 26px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.35fr;
  gap: 48px;
  font-size: 0.9rem;
}
.footer-main > div,
.footer-links {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 7px;
}
.footer-main strong {
  color: #fff;
  margin-bottom: 4px;
}
.footer-main p {
  margin: 0;
  max-width: 270px;
}
.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}
.footer-links strong {
  grid-column: 1 / -1;
}
.footer-links a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid #352d3e;
  color: #aaa2b2;
  font-size: 0.8rem;
}
.footer a:hover {
  color: #fff;
}
.thanks {
  min-height: calc(100vh - 82px - 105px);
  display: grid;
  place-items: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--purple-light), #fff 56%);
}
.thanks-card {
  width: min(760px, 100%);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(36px, 7vw, 72px);
  box-shadow: var(--shadow);
}
.thanks-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--purple);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
}
.thanks-card h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0 0 22px;
}
.thanks-card h1 span {
  color: var(--purple);
}
.thanks-card p {
  max-width: 570px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.15rem;
}
.thanks-card .actions {
  justify-content: center;
}
.legal {
  max-width: 820px;
}
.legal-terms {
  max-width: 900px;
}
.legal h2 {
  font-size: 1.55rem;
  margin: 42px 0 10px;
  letter-spacing: -0.02em;
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal p,
.legal li {
  color: var(--muted);
}
.legal ul {
  padding-left: 1.3rem;
}
.legal a {
  color: var(--purple);
  text-decoration: underline;
}
.legal .btn {
  text-decoration: none;
}
.legal-note {
  padding: 22px;
  border-radius: 16px;
  background: var(--purple-light);
  color: var(--purple-dark) !important;
  font-weight: 700;
}
.legal-meta {
  font-size: 0.9rem;
  color: var(--muted);
}
.company-data {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.company-data div {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) 1.25fr;
  gap: 24px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.company-data div:last-child {
  border-bottom: 0;
}
.company-data dt {
  font-weight: 800;
}
.company-data dd {
  margin: 0;
  color: var(--muted);
}
.company-data a {
  color: var(--purple);
  text-decoration: underline;
}
.contact .eyebrow {
  color: #dacced;
}
.honeypot {
  display: none !important;
}
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.65s,
    transform 0.65s;
}
@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px 20px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open {
    display: flex;
  }
  .hero-grid,
  .split,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-media {
    max-width: 650px;
    justify-self: start;
  }
  .hero-media img {
    aspect-ratio: 4/3;
    object-position: center 42%;
  }
  .hero-note {
    left: 18px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .service {
    grid-template-columns: 60px 1fr;
  }
  .service .tag {
    grid-column: 2;
  }
  .portfolio {
    grid-template-columns: 1fr;
  }
  .notice {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1140px);
  }
  .hero h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }
  .hero-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }
  .section {
    padding: 68px 0;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-column: auto;
  }
  .footer-links strong {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .company-data div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .service {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .service .tag {
    grid-column: 1;
    justify-self: start;
  }
  .notice {
    padding: 30px;
  }
  .brand-name {
    font-size: 0.92rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
