:root {
  --bg-left: #57208d;
  --bg-mid: #402782;
  --bg-right: #22326f;
  --panel: rgba(255, 255, 255, 0.105);
  --panel-strong: rgba(255, 255, 255, 0.16);
  --line: rgba(188, 111, 255, 0.28);
  --text: #ffffff;
  --muted: #ded9fb;
  --pink: #ee4ab4;
  --purple: #a85cf6;
  --blue: #31aee5;
  --cyan: #19b9d9;
  --orange: #ff7b22;
  --green: #25ce73;
  --glow: 0 0 32px rgba(171, 82, 246, 0.5), 0 0 78px rgba(59, 171, 231, 0.18);
  --shadow: 0 22px 80px rgba(18, 12, 58, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 9rem, rgba(180, 78, 255, 0.26), transparent 24rem),
    radial-gradient(circle at 7% 10%, rgba(238, 74, 180, 0.2), transparent 34rem),
    radial-gradient(circle at 93% 14%, rgba(53, 167, 239, 0.18), transparent 30rem),
    linear-gradient(115deg, var(--bg-left) 0%, var(--bg-mid) 45%, var(--bg-right) 100%);
  line-height: 1.5;
}

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

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

.container {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
}

.hero {
  padding: 66px 0 92px;
}

.hero-inner {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 56px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid rgba(188, 111, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
  color: #d9c4ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 38px rgba(166, 86, 248, 0.2);
  font-size: 15px;
  font-weight: 800;
}

.eyebrow span {
  color: #e0b5ff;
  filter: drop-shadow(0 0 10px rgba(198, 113, 255, 0.7));
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(62px, 8vw, 122px);
  text-shadow: 0 0 58px rgba(166, 87, 248, 0.42);
}

.hero h1 span,
.section-heading h2 span,
.site-footer h2 {
  background: linear-gradient(95deg, var(--pink), #b356f4 48%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  width: min(100%, 840px);
  margin: 32px auto 46px;
  color: #ece8ff;
  font-size: clamp(18px, 1.75vw, 28px);
  font-weight: 650;
  line-height: 1.28;
}

.hero-copy strong {
  color: #ff79c8;
  text-shadow: 0 0 24px rgba(238, 74, 180, 0.36);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  border: 0;
  cursor: pointer;
}

.btn {
  gap: 10px;
  min-width: 220px;
  padding: 0 30px;
}

.btn-primary,
.contact-form button {
  color: #ffffff;
  background: linear-gradient(100deg, #ed47a6 0%, #9d67f6 50%, #18b8d7 100%);
  box-shadow: 0 0 36px rgba(238, 74, 180, 0.34), 0 16px 42px rgba(24, 184, 215, 0.2);
}

.btn-secondary {
  color: #d8c9ff;
  border: 3px solid rgba(177, 86, 246, 0.95);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 30px rgba(171, 82, 246, 0.24);
}

.hero-shot {
  width: min(100%, 920px);
  margin: 72px auto 0;
  border: 3px solid rgba(151, 80, 237, 0.68);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.05);
}

.hero-shot img {
  width: 100%;
  aspect-ratio: 1.505 / 1;
  object-fit: cover;
}

.section {
  padding: 58px 0 82px;
}

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading h2 {
  background: linear-gradient(95deg, var(--pink), var(--purple) 50%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(40px, 5.1vw, 64px);
  text-shadow: 0 0 36px rgba(150, 86, 247, 0.24);
}

.section-heading p {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 650;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.service-card,
.contact-cards article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.075));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 20px 56px rgba(22, 16, 70, 0.16);
}

.service-card {
  min-height: 205px;
  padding: 34px 36px;
}

.icon,
.contact-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 26px rgba(151, 86, 246, 0.18);
}

.icon-pink { background: linear-gradient(135deg, #ff4ea7, #ff4a78); }
.icon-purple { background: linear-gradient(135deg, #8f57ff, #7b65ff); }
.icon-blue { background: linear-gradient(135deg, #26b9ec, #3587f1); }
.icon-orange { background: linear-gradient(135deg, #ff8f22, #ff4f35); }
.icon-magenta { background: linear-gradient(135deg, #ee4ab4, #ba50e5); }
.icon-green { background: linear-gradient(135deg, #24d370, #20c5b4); }
.icon-cyan { background: linear-gradient(135deg, #2ab3f3, #1fbac6); }

.service-card h3 {
  margin: 30px 0 14px;
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1.2;
}

.service-card-featured h3 {
  background: linear-gradient(95deg, var(--pink), var(--purple) 52%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card p,
.contact-cards p,
.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.service-card p {
  line-height: 1.55;
}

.stats {
  padding: 64px 0 70px;
  background: linear-gradient(90deg, rgba(238, 74, 180, 0.12), rgba(53, 167, 239, 0.08));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.stats strong {
  display: block;
  background: linear-gradient(95deg, var(--pink), #b356f4 48%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 900;
  line-height: 1;
  filter: drop-shadow(0 0 15px rgba(190, 72, 233, 0.48));
}

.stats span {
  display: block;
  margin-top: 10px;
  color: #efe9ff;
  font-size: 12px;
  font-weight: 900;
}

.stories {
  padding-top: 72px;
}

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

.story-card {
  position: relative;
  min-height: 286px;
  border-radius: 10px;
  overflow: hidden;
  background: #16113d;
  box-shadow: 0 18px 44px rgba(19, 17, 65, 0.2);
}

.story-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 8, 44, 0.92), rgba(84, 25, 103, 0.35) 45%, rgba(242, 107, 38, 0.55)),
    linear-gradient(135deg, #2a194f, #181235 54%, #6a2d56);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(12, 9, 36, 0.84));
}

.story-content {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 27px;
}

.story-content span {
  color: #d7a3ff;
  font-size: 11px;
  font-weight: 900;
}

.story-content h3 {
  margin: 4px 0 4px;
  font-size: 26px;
  line-height: 1.1;
}

.story-content p {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.story-content a {
  color: #d9b2ff;
  font-size: 12px;
  font-weight: 900;
}

.contact {
  padding-top: 56px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 13px;
  min-width: 0;
}

.contact-form label {
  color: #eee7ff;
  font-size: 12px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  outline: none;
}

.contact-form input {
  height: 48px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
  padding: 15px 16px;
}

.contact-form .website-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  opacity: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(232, 225, 255, 0.72);
}

.contact-form button {
  width: 100%;
  margin-top: 14px;
  min-height: 68px;
  border-radius: 8px;
}

.contact-form button span {
  margin-right: 8px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: #b7ffdf;
  font-size: 13px;
  font-weight: 800;
}

.contact-cards {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.contact-cards article {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.09);
  min-width: 0;
}

.contact-cards h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.contact-cards p,
.contact-cards a {
  overflow-wrap: anywhere;
}

.contact-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  font-size: 24px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 46px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 180px) minmax(140px, 180px);
  gap: 64px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
}

.site-footer h2 {
  font-size: 22px;
  line-height: 1.1;
}

.site-footer h3 {
  font-size: 14px;
}

.site-footer p {
  max-width: 340px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.copyright {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

.copyright p {
  max-width: none;
  color: rgba(232, 225, 255, 0.78);
}

.legal-page {
  min-height: 100vh;
}

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

.legal-shell {
  width: min(100% - 48px, 940px);
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 34px;
}

.legal-header a {
  display: inline-flex;
  margin-bottom: 28px;
  color: #d8c9ff;
  font-weight: 800;
}

.legal-header h1 {
  margin: 0 0 12px;
  background: linear-gradient(95deg, var(--pink), var(--purple) 50%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1;
}

.legal-header p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.075));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 20px 56px rgba(22, 16, 70, 0.16);
}

.legal-card + .legal-card {
  margin-top: 22px;
}

.legal-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 24px;
}

.legal-card p {
  margin: 0;
}

.legal-card p + p,
.legal-card ul {
  margin-top: 14px;
}

.legal-card a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 34px, 1200px);
  }

  .hero {
    padding: 48px 0 62px;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-shot {
    margin-top: 46px;
  }

  .service-grid,
  .story-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }

  .section {
    padding: 38px 0 58px;
  }

  .section-heading {
    margin-bottom: 34px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-card,
  .contact-cards article {
    padding: 22px;
  }

  .btn,
  .contact-form button {
    min-height: 56px;
    font-size: 15px;
  }

  .story-card {
    min-height: 250px;
  }

  .story-content {
    left: 22px;
    right: 22px;
  }

  .story-content h3 {
    font-size: 22px;
  }
}
