:root {
  --purple: #5e2ca5;
  --purple-dark: #3d1779;
  --purple-light: #f0e9f9;
  --ink: #19151f;
  --muted: #686171;
  --line: #e6e0ea;
  --paper: #fff;
  --soft: #f8f6fa;
  --radius: 22px;
  --shadow:
    0 0 0 2px rgba(94, 44, 165, 0.2),
    0 24px 55px rgba(25, 21, 31, 0.22);
}
* {
  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;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}
.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%;
  height: auto;
  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: 4px solid rgba(94, 44, 165, 0.82);
  border-radius: 18px;
  box-shadow:
    0 22px 46px rgba(25, 21, 31, 0.4),
    0 0 0 7px rgba(94, 44, 165, 0.24);
  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: 18px 0;
  background: #fff;
}
.trustbar-inner {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px !important;
}
.trustbar-title span,
.trustbar-title strong {
  display: block;
  white-space: nowrap;
}
.trustbar-title span {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.trustbar-title strong {
  font-size: 0.88rem;
}
.trustbar-logos {
  display: flex;
  gap: 9px;
  min-width: 0;
  overflow-x: auto;
  padding: 3px 2px 8px;
  scrollbar-width: thin;
}
.trust-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 7px 10px 7px 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}
.trust-logo-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
}
.trust-logo-icon img {
  width: 100%;
  height: 100%;
}
.trust-logo > span {
  max-width: 112px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.05;
}
.trust-logo small {
  display: block;
  margin-top: 3px;
  color: #f26322;
  font-size: 0.59rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trustbar-link {
  white-space: nowrap;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
}
.trustbar-link:hover {
  text-decoration: underline;
}
.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;
}
.split img.split-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-position: center;
}
.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 minmax(0, 1fr) minmax(220px, 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;
}
.service-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(64px, 76px));
  justify-content: end;
  gap: 9px;
  margin: -10px 0;
  padding: 0;
  list-style: none;
}
.service-tools-code {
  grid-template-columns: repeat(4, minmax(60px, 68px));
}
.service-tool {
  min-width: 0;
  padding: 9px 5px 7px;
  border: 1px solid rgba(94, 44, 165, 0.1);
  border-radius: 13px;
  background: #fff;
  text-align: center;
}
.service-tool-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 6px;
  padding: 9px;
  border-radius: 11px;
  background: var(--purple-light);
}
.service-tool-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.service-tool > span:last-child {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.08;
}
.service-tool-icon.brand-wordpress img,
.service-tool-icon.brand-woocommerce img,
.service-tool-icon.brand-shopify img {
  filter: invert(1);
}
.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;
}
.profile-portrait {
  margin: 0;
  border-radius: 30px;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.profile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.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;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.project:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.project-visual {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), #1d0f2c);
  color: #fff;
}
.project-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s ease;
}
.project:hover .project-screenshot {
  transform: scale(1.035);
}
.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 19, 29, 0.02) 24%,
    rgba(23, 19, 29, 0.88) 100%
  );
}
.project-visual-locked::after {
  background: linear-gradient(
    180deg,
    rgba(94, 44, 165, 0.16),
    rgba(23, 19, 29, 0.9)
  );
}
.project-caption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 30px;
}
.project-caption span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.project-visual.care {
  background: linear-gradient(135deg, #421678, #7b4eb1);
}
.project-visual.community {
  background: linear-gradient(135deg, #1c1722, #7540b2);
}
.project-visual.support {
  background: linear-gradient(135deg, #533394, #25133f);
}
.project-visual.news {
  background: linear-gradient(135deg, #17131c, #5e2ca5 72%, #9e6ed2);
}
.project-visual.shop {
  background: linear-gradient(135deg, #7140ae, #c3a1e6);
}
.project-visual h3 {
  font-size: 2rem;
  margin: 0;
  line-height: 1;
}
.project-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-body p {
  color: var(--muted);
  margin-bottom: 24px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  color: var(--purple);
  font-weight: 800;
  border-bottom: 2px solid rgba(94, 44, 165, 0.25);
  transition:
    gap 0.2s,
    border-color 0.2s;
}
.project-link:hover {
  gap: 12px;
  border-color: var(--purple);
}
.project-note {
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
}
.project-status {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.portfolio .project:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}
.toolbox {
  background: #fff;
}
.toolbox-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}
.toolbox-intro h2 {
  margin-bottom: 0;
}
.toolbox-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.expertise-highlight {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 30px;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(242, 99, 34, 0.34),
      transparent 30%
    ),
    var(--ink);
  box-shadow: var(--shadow);
}
.expertise-highlight-shopify {
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(149, 191, 71, 0.38),
      transparent 32%
    ),
    var(--ink);
}
.expertise-highlight-shopify .expertise-label strong {
  color: #b9db78;
}
.expertise-logo {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 24px;
}
.expertise-logo img {
  width: 50px;
  height: 50px;
  filter: invert(1);
}
.expertise-copy .eyebrow {
  margin-bottom: 6px;
  color: #d8c4ee;
}
.expertise-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  letter-spacing: -0.035em;
}
.expertise-copy p:last-child {
  max-width: 740px;
  margin: 0;
  color: #dcd5e2;
}
.expertise-label {
  min-width: 118px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}
.expertise-label strong,
.expertise-label span {
  display: block;
}
.expertise-label strong {
  color: #ff9462;
  font-size: 1.1rem;
}
.expertise-label span {
  color: #dcd5e2;
  font-size: 0.82rem;
}
.skill-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.skill-group {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--soft);
}
.skill-group-head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 24px;
}
.skill-group-head > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 900;
}
.skill-group-head h3 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  line-height: 1.15;
}
.skill-group-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}
.skill-logo {
  min-width: 0;
  padding: 13px 8px 11px;
  border: 1px solid rgba(94, 44, 165, 0.1);
  border-radius: 14px;
  text-align: center;
  background: #fff;
}
.skill-logo-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 8px;
  padding: 11px;
  border-radius: 13px;
  background: var(--purple-light);
}
.skill-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.skill-logo > span {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.12;
}
.brand-magento {
  background: #f26322;
}
.brand-shopify {
  background: #95bf47;
}
.brand-wordpress {
  background: #21759b;
}
.brand-woocommerce {
  background: #96588a;
}
.brand-magento img,
.brand-shopify img,
.brand-wordpress img,
.brand-woocommerce img,
.brand-openai img {
  filter: invert(1);
}
.brand-photoshop {
  background: #001e36;
}
.brand-after-effects {
  background: #00005b;
}
.brand-premiere {
  background: #00005b;
}
.brand-illustrator {
  background: #330000;
}
.brand-photoshop img,
.brand-after-effects img,
.brand-premiere img,
.brand-illustrator img {
  filter: invert(1);
}
.brand-openai {
  background: #111;
}
.brand-letter {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #1d0f2c);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand-firefly {
  color: #fff;
  background: linear-gradient(135deg, #ff3f8e, #7438ff);
  font-weight: 900;
}
.brand-dg {
  color: #fff;
  background: linear-gradient(135deg, #5e2ca5, #b98de8);
  font-weight: 900;
}
.skill-group-dark {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(185, 141, 232, 0.55),
      transparent 34%
    ),
    var(--ink);
}
.skill-group-dark .skill-group-head > span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.skill-group-dark .skill-group-head p {
  color: #ded6e5;
}
.education {
  overflow: hidden;
}
.education-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: stretch;
}
.education-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}
.education-facts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.education-facts div {
  flex: 1 1 190px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}
.education-facts strong,
.education-facts span {
  display: block;
}
.education-facts strong {
  color: var(--purple);
  font-size: 1.35rem;
}
.education-facts span {
  color: var(--muted);
  font-size: 0.9rem;
}
.education-feature {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(185, 141, 232, 0.45),
      transparent 34%
    ),
    var(--ink);
  box-shadow: var(--shadow);
}
.education-feature .eyebrow {
  color: #d8c4ee;
  margin-top: 30px;
}
.education-feature h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.education-feature p:last-child {
  margin-bottom: 0;
  color: #ddd7e2;
}
.code-window {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}
.code-window > span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
  background: #b98de8;
}
.code-window > span:nth-child(2) {
  opacity: 0.65;
}
.code-window > span:nth-child(3) {
  opacity: 0.35;
}
.code-window code {
  display: block;
  margin-top: 22px;
  color: #e5d9f2;
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.9;
}
.code-window b {
  color: #fff;
}
.education-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.education-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.education-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 900;
}
.education-card h3 {
  margin: 20px 0 8px;
  font-size: 1.2rem;
  line-height: 1.15;
}
.education-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.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) {
  .trustbar-inner {
    grid-template-columns: 1fr auto;
  }
  .trustbar-logos {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .trustbar-link {
    grid-column: 2;
    grid-row: 1;
  }
  .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,
  .toolbox-intro,
  .education-intro,
  .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;
  }
  .service .service-tools {
    grid-column: 2;
    justify-content: start;
    margin-top: 5px;
  }
  .portfolio {
    grid-template-columns: 1fr;
  }
  .portfolio .project:last-child:nth-child(odd) {
    grid-column: auto;
    display: flex;
  }
  .skill-groups {
    grid-template-columns: 1fr;
  }
  .expertise-highlight {
    grid-template-columns: auto 1fr;
  }
  .expertise-label {
    grid-column: 2;
    justify-self: start;
  }
  .education-grid {
    grid-template-columns: 1fr 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) {
  .trustbar-title strong {
    white-space: normal;
  }
  .trustbar-link {
    font-size: 0.72rem;
  }
  .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;
  }
  .education-grid {
    grid-template-columns: 1fr;
  }
  .education-feature {
    padding: 26px;
  }
  .expertise-highlight {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .expertise-label {
    grid-column: auto;
  }
  .skill-group {
    padding: 24px;
  }
  .logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 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;
  }
  .service .service-tools {
    grid-column: 1;
    max-width: 100%;
  }
  .service-tools-code {
    grid-template-columns: repeat(4, minmax(56px, 68px));
  }
  .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;
  }
}
