/* ey */

:root {
  --bg-main: #f6f7fb;
  --bg-soft: #eceef5;
  --bg-card: #ffffff;
  --text-main: #1f2430;
  --text-muted: #667085;
  --border-soft: #d7dbe7;
  --border: #d7dbe7;

  --accent-violet: #8b7cff;
  --accent-cyan: #5bcffb;
  --accent-pink: #ff7edb;
  --accent-lavender: #a69bff;
  --dark-surface: #232834;

  --gradient-main: linear-gradient(
    135deg,
    #8b7cff 0%,
    #5bcffb 55%,
    #ff7edb 100%
  );
  --gradient-soft: linear-gradient(
    135deg,
    rgba(139, 124, 255, 0.14),
    rgba(91, 207, 251, 0.12),
    rgba(255, 126, 219, 0.1)
  );
  --shadow-soft: 0 20px 60px rgba(31, 36, 48, 0.08);
  --shadow-glow: 0 20px 50px rgba(139, 124, 255, 0.22);

  --container: 1180px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-main);
  background:
    radial-gradient(
      circle at 8% 6%,
      rgba(139, 124, 255, 0.16),
      transparent 360px
    ),
    radial-gradient(
      circle at 92% 8%,
      rgba(91, 207, 251, 0.16),
      transparent 350px
    ),
    linear-gradient(180deg, #ffffff 0%, var(--bg-main) 44%, #ffffff 100%);
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 124, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 124, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 62%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-shell {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.page-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding-inline: 20px;
}

.nav-shell {
  width: min(var(--container), 100%);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 12px 16px 12px 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(31, 36, 48, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-logo {
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(139, 124, 255, 0.18));
}

.nav-right,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-right {
  gap: 22px;
}

.nav-links {
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #596174;
  font-size: 0.92rem;
  font-weight: 750;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient-main);
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--accent-violet);
  background: rgba(139, 124, 255, 0.08);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.btn-primary {
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: 0 20px 50px rgba(139, 124, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 58px rgba(139, 124, 255, 0.3);
}

.btn-secondary {
  color: var(--text-main);
  border-color: rgba(139, 124, 255, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(31, 36, 48, 0.07);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(139, 124, 255, 0.42);
  box-shadow: 0 18px 42px rgba(31, 36, 48, 0.1);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
  border-radius: 42px;
  padding: 104px clamp(24px, 5vw, 68px) 112px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.24) 74%),
    linear-gradient(180deg, rgba(246, 247, 251, 0.16), rgba(246, 247, 251, 0.36)),
    url("../homepage/hero-image.png") 28% center / cover no-repeat;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(91, 207, 251, 0.16),
      transparent 310px
    ),
    radial-gradient(
      circle at 70% 82%,
      rgba(255, 126, 219, 0.14),
      transparent 330px
    ),
    radial-gradient(
      circle at 17% 24%,
      rgba(139, 124, 255, 0.13),
      transparent 340px
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero::after {
  content: "";
  position: absolute;
  top: 112px;
  left: 45%;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 126, 219, 0.13);
  filter: blur(44px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(139, 124, 255, 0.18);
  border-radius: 999px;
  color: #7466f2;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(139, 124, 255, 0.08);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 5.35vw, 4.85rem);
  line-height: 1.03;
}

.hero h1 span,
.section-heading h2 span {
  color: transparent;
  background: linear-gradient(
    125deg,
    var(--accent-violet) 0%,
    var(--accent-cyan) 54%,
    var(--accent-pink) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-text {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.8;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(215, 219, 231, 0.78);
  border-radius: 999px;
  padding: 0 15px;
  color: #545e73;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(31, 36, 48, 0.045);
  font-size: 0.9rem;
  font-weight: 800;
}

.services {
  position: relative;
  margin-top: 12px;
  padding: 62px 0 48px;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 100%;
  border-radius: 44px 44px 0 0;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(139, 124, 255, 0.1),
      transparent 280px
    ),
    radial-gradient(
      circle at 92% 62%,
      rgba(91, 207, 251, 0.12),
      transparent 320px
    );
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.45vw, 3.25rem);
  line-height: 1.08;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(215, 219, 231, 0.86);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(139, 124, 255, 0.1),
      transparent 185px
    ),
    var(--bg-card);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -34px -74px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(91, 207, 251, 0.12);
  filter: blur(22px);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 124, 255, 0.34);
  box-shadow: 0 22px 56px rgba(139, 124, 255, 0.15);
}

.service-card > img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.service-icon,
.step-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  color: #7062ea;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(139, 124, 255, 0.12);
  font-size: 1.5rem;
  font-weight: 800;
}

.service-card:nth-child(2) .service-icon {
  color: #1fafd6;
  background: linear-gradient(
    135deg,
    rgba(91, 207, 251, 0.18),
    rgba(139, 124, 255, 0.1)
  );
}

.service-card:nth-child(3) .service-icon {
  color: #e756bc;
  background: linear-gradient(
    135deg,
    rgba(255, 126, 219, 0.16),
    rgba(166, 155, 255, 0.12)
  );
}

.service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-card h3,
.process-step h3 {
  margin: 24px 0 10px;
  color: var(--text-main);
  font-size: 1.23rem;
  line-height: 1.2;
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
}

.service-card p,
.process-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.service-card p {
  max-width: 92%;
  font-size: 0.9rem;
  line-height: 1.58;
}

.round-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(139, 124, 255, 0.18);
  border-radius: 999px;
  color: var(--accent-violet);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.09);
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.round-link:hover,
.round-link:focus-visible {
  color: #ffffff;
  background: var(--gradient-main);
  transform: translateX(3px);
}

.process {
  padding: 64px 0 78px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 4px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 11%;
  right: 11%;
  z-index: 0;
  border-top: 2px dotted rgba(139, 124, 255, 0.42);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  text-align: center;
}

.process-step .step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border: 8px solid var(--bg-main);
  border-radius: 50%;
  background: #8b7cff;
  box-shadow: none;
}

.process-step:nth-child(2) .step-icon {
  color: #1fafd6;
  background: #5bcffb;
  box-shadow: none;
}

.process-step:nth-child(3) .step-icon {
  color: #e756bc;
  background: #ff7edb;
  box-shadow: none;
}

.process-step:nth-child(4) .step-icon {
  color: #5163e8;
  background: #5163e8;
  box-shadow: none;
}

.process-step h3 {
  margin-top: 18px;
}

.cta {
  padding: 52px 0 96px;
}

.cta-banner {
  position: relative;
  width: min(1080px, 100%);
  min-height: 390px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(215, 219, 231, 0.72);
  border-radius: var(--radius-lg);
  padding: 56px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.7) 48%, rgba(255, 255, 255, 0.32) 100%),
    url("../general/anime-bottom-image.png") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: rgba(139, 124, 255, 0.14);
  filter: blur(30px);
}

.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.cta-copy h2 {
  max-width: 610px;
  font-size: clamp(2.25rem, 4.1vw, 4.15rem);
  line-height: 1.05;
}

.cta-copy p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 1.07rem;
  line-height: 1.74;
}

.cta-products {
  position: relative;
  z-index: 2;
  min-height: 292px;
}

.cta-product {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(31, 36, 48, 0.16));
}

.cta-product.hoodie {
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 48%;
  transform: rotate(-4deg);
}

.cta-product.tumbler {
  left: 40%;
  top: 0;
  z-index: 4;
  width: 25%;
  transform: rotate(5deg);
}

.cta-product.keychain {
  right: 0;
  bottom: 30px;
  z-index: 5;
  width: 27%;
  transform: rotate(8deg);
}

.cta-product.sticker {
  right: 17%;
  top: 35%;
  z-index: 6;
  width: 23%;
  transform: rotate(-8deg);
}

.site-footer {
  border-top: 1px solid rgba(215, 219, 231, 0.76);
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(139, 124, 255, 0.08),
      transparent 300px
    ),
    #ffffff;
}

.footer-inner {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(230px, 1.45fr) repeat(4, minmax(120px, 1fr));
  gap: 34px;
  padding: 58px 0 38px;
}

.footer-brand p {
  max-width: 290px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.91rem;
  font-weight: 650;
  transition:
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--accent-violet);
  transform: translateX(2px);
}

.footer-column:last-of-type a {
  display: inline-flex;
  min-width: 82px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 219, 231, 0.8);
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.78);
}

.footer-column:last-of-type a:hover,
.footer-column:last-of-type a:focus-visible {
  border-color: rgba(139, 124, 255, 0.32);
  background: rgba(139, 124, 255, 0.08);
  transform: translateY(-1px);
}

.footer-bottom {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  border-top: 1px solid rgba(215, 219, 231, 0.72);
  padding: 22px 0 28px;
  color: #7a8190;
  text-align: center;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 1024px) {
  .service-card {
    max-width: 380px;
  }
}

@media (max-width: 1023px) {
  .hero {
    min-height: 610px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.6vw, 4.2rem);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    justify-self: center;
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 560px;
    padding: 72px clamp(20px, 5vw, 42px);
    background-position: 28% center;
  }

  .hero::before {
    inset: 0;
  }

  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .process-line::before {
    display: none;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 46px;
  }

  .cta-products {
    min-height: 260px;
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .page-header {
    top: 10px;
    padding-inline: 14px;
  }

  .nav-shell {
    flex-wrap: wrap;
    padding: 12px;
  }

  .nav-right {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding-inline: 11px;
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 9vw, 3.45rem);
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: clamp(2rem, 7.5vw, 3rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    max-width: none;
  }

  .process {
    padding-top: 46px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    text-align: left;
  }

  .process-step .step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border: 8px solid var(--bg-main);
    border-radius: 50%;
    background: #fff;
    box-shadow: none;
  }

  .process-step h3 {
    margin: 0 0 6px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, var(--container));
  }

  .brand-logo {
    width: 148px;
  }

  .page-header .brand {
    width: 100%;
    justify-content: center;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .nav-right,
  .nav-links,
  .nav-right .btn {
    width: 100%;
  }

  .nav-links {
    justify-content: space-between;
    font-size: 0.86rem;
  }

  .nav-right .btn {
    min-height: 42px;
  }

  .hero {
    min-height: 560px;
    padding: 58px 20px 64px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 50%, rgba(255, 255, 255, 0.2) 100%),
      url("../homepage/hero-image.png") 28% center / cover no-repeat;
  }

  .hero::before {
    inset: 0;
    border-radius: inherit;
  }

  .hero h1 {
    font-size: clamp(2.12rem, 11vw, 2.65rem);
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .trust-list {
    gap: 9px;
  }

  .trust-list li {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .services {
    padding: 44px 0 34px;
  }

  .process {
    padding-bottom: 54px;
  }

  .service-card {
    min-height: 212px;
    padding: 22px;
  }

  .process-step {
    grid-template-columns: 68px minmax(0, 1fr);
    padding-inline: 0;
  }

  .process-step .step-icon {
    width: 58px;
    height: 58px;
    border-width: 7px;
  }

  .cta {
    padding: 34px 0 66px;
  }

  .cta-banner {
    min-height: auto;
    border-radius: 24px;
    padding: 34px 22px 28px;
  }

  .cta-banner {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.64) 52%, rgba(255, 255, 255, 0.34) 100%),
      url("../general/anime-bottom-image.png") center / cover no-repeat;
  }

  .cta-products {
    min-height: 218px;
  }

  .cta-product.hoodie {
    width: 48%;
  }

  .cta-product.tumbler {
    left: 42%;
    width: 24%;
  }

  .cta-product.keychain {
    width: 25%;
  }

  .cta-product.sticker {
    width: 24%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .footer-column:last-of-type {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
