/* Clean static rebuild (no Wix runtime). */

:root {
  --ink: #16163f;
  --paper: #ffffff;
  --muted: #5f6072;
  --accent: #9e3ffd;
  --accent-soft: #ddbbff;
  --surface: rgba(255, 255, 255, 0.86);
  --border: rgba(22, 22, 63, 0.12);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 18px 55px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.skip-link:focus {
  left: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 220ms ease, filter 220ms ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  filter: saturate(1.03);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(22, 22, 63, 0.22), var(--shadow-sm);
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  --bgx: 100;
  --bgy: 70;
  --bgs: 118;
  background:
    radial-gradient(900px 420px at 75% 20%, rgba(158, 63, 253, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(22, 22, 63, 0.62), rgba(22, 22, 63, 0.18)),
    url("/assets/hero-bg.png");
  background-size: calc(var(--bgs) * 1%) calc(var(--bgs) * 1%);
  background-position: calc(var(--bgx) * 1%) calc(var(--bgy) * 1%);
  color: #fff;
}

.hero__panel {
  padding: 34px 28px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.hero__logo {
  width: min(660px, 100%);
  margin: 0 auto 18px;
}

.hero__copy {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 58ch;
  text-align: center;
}

.hero__cta {
  display: flex;
  justify-content: center;
}

.section {
  padding: 78px 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 650;
  font-size: 14px;
  color: rgba(22, 22, 63, 0.7);
  text-align: center;
  margin: 0 0 10px;
}

.title {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 10px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.card__name {
  margin: 0 0 10px;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
}

.card__desc {
  margin: 0;
  color: rgba(22, 22, 63, 0.78);
  text-align: center;
}

.why {
  background: var(--ink);
  color: #fff;
}

.why .kicker {
  color: rgba(221, 187, 255, 0.92);
}

.why .title {
  color: #fff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat {
  position: relative;
  border-radius: var(--radius);
  padding: 26px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  text-align: center;
}

.stat::before {
  content: "";
  position: absolute;
  inset: -80px -120px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(158, 63, 253, 0.35), transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
}

.stat__value {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  margin: 0;
  line-height: 1;
  color: #fff;
}

.stat__label {
  margin: 10px 0 0;
  color: rgba(221, 187, 255, 0.95);
  font-weight: 650;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
}

.about__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.about__copy {
  margin: 0;
  color: rgba(22, 22, 63, 0.84);
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: url("/assets/about-bg.png");
  background-size: cover;
  background-position: 0% 60%;
  min-height: 380px;
}

.quote {
  text-align: center;
}

.quote blockquote {
  margin: 0;
  font-size: clamp(24px, 3.8vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
}

.quote__name {
  margin: 16px 0 0;
  font-weight: 800;
  color: rgba(22, 22, 63, 0.85);
}

.contact {
  color: #fff;
  background:
    radial-gradient(800px 480px at 20% 30%, rgba(158, 63, 253, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(22, 22, 63, 0.78), rgba(22, 22, 63, 0.35)),
    url("/assets/contact-bg.png");
  background-size: cover;
  background-position: 50% 50%;
}

.contact .panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.22);
}

.contact .kicker {
  color: rgba(221, 187, 255, 0.92);
  text-align: left;
}

.contact .title {
  text-align: left;
  margin-bottom: 10px;
  color: #fff;
}

.contact__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 4px rgba(221, 187, 255, 0.25);
}

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

.thankyou {
  display: none;
  margin: 0;
  font-weight: 800;
  color: rgba(221, 187, 255, 0.98);
}

.thankyou[data-visible="true"] {
  display: block;
}

[data-error] {
  color: rgba(255, 210, 210, 0.98);
}

.footer {
  padding: 26px 0;
  text-align: center;
  color: rgba(22, 22, 63, 0.7);
  border-top: 1px solid var(--border);
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .about__image {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .section {
    padding: 64px 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    --bgx: 100;
    --bgy: 70;
    --bgs: 100;
  }
}

