:root {
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --purple-soft: #efe7ff;
  --pink: #ff69b4;
  --pink-soft: #ffe5f3;
  --ink: #17131c;
  --muted: #6f6877;
  --line: #e9e4ef;
  --paper: #ffffff;
  --surface: #faf8fc;
  --green: #9ad94b;
  --radius: 24px;
  --shadow: 0 20px 70px rgba(75, 43, 101, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: var(--ink); color: white; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(233,228,239,.8);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; letter-spacing: -.04em; font-weight: 900; }
.brand b { color: var(--purple); }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; background: var(--purple); font-size: 19px; box-shadow: 0 10px 28px rgba(124,58,237,.28); }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 700; }
.main-nav a { transition: color .2s ease, transform .2s ease; }
.main-nav a:hover { color: var(--purple); transform: translateY(-1px); }
.nav-cta { padding: 11px 17px; border-radius: 999px; color: white !important; background: var(--ink); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 13px; background: var(--surface); cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); }

.hero { min-height: 720px; display: grid; align-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 80% 20%, #f9e8ff 0, transparent 34%), linear-gradient(145deg, #fff 20%, #faf6ff 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(#7c3aed 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(to right, transparent 0, black 30%, transparent 80%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 52px; align-items: center; padding-block: 72px; }
.eyebrow, .section-kicker { color: var(--purple); text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 900; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 2px; background: var(--pink); }
h1 { margin: 18px 0 22px; font-size: clamp(54px, 7vw, 92px); line-height: .96; letter-spacing: -.07em; max-width: 730px; }
h1 em { color: var(--purple); font-style: normal; white-space: nowrap; }
.hero-lead { max-width: 610px; margin: 0; color: var(--muted); font-size: 20px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 0; border-radius: 16px; font-weight: 850; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--purple), #9e45ee); box-shadow: 0 16px 38px rgba(124,58,237,.28); }
.button-primary:hover { box-shadow: 0 20px 44px rgba(124,58,237,.36); }
.button-secondary { background: white; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(40,25,52,.06); }
.hero-points { display: flex; flex-wrap: wrap; gap: 11px 18px; margin-top: 25px; color: #504858; font-size: 13px; font-weight: 700; }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.mascot-card { position: relative; width: min(100%, 570px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 44px; background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.mascot-card::before { content: ""; position: absolute; width: 78%; height: 78%; border-radius: 50%; background: linear-gradient(135deg, var(--purple-soft), var(--pink-soft)); filter: blur(1px); }
.mascot-card img { position: relative; width: 92%; filter: drop-shadow(0 28px 24px rgba(50,28,72,.2)); }
.float-tag { position: absolute; padding: 10px 15px; border-radius: 999px; background: white; box-shadow: 0 12px 34px rgba(63,38,80,.14); font-size: 12px; font-weight: 900; }
.tag-one { left: -12px; top: 22%; color: var(--purple); transform: rotate(-8deg); }
.tag-two { right: -10px; top: 35%; color: #157059; transform: rotate(8deg); }
.tag-three { right: 5%; bottom: 7%; color: #d52d83; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .42; }
.hero-orb-one { width: 230px; height: 230px; right: -70px; top: 60px; background: var(--pink); }
.hero-orb-two { width: 150px; height: 150px; left: -80px; bottom: 50px; background: var(--purple); }

.trust-strip { border-block: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 24px 25px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 17px; }
.trust-grid span { margin-top: 4px; color: var(--muted); font-size: 12px; }

.section { padding-block: 108px; }
.section-tinted { background: var(--surface); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 44px; }
.section-head > div { max-width: 700px; }
.section-head h2, .process-copy h2, .faq-layout h2, .order-copy h2, .showcase-card h2 { margin: 10px 0 0; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -.055em; }
.section-head > p { max-width: 390px; margin: 0; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 255px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 40px rgba(36,22,50,.05); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 54px rgba(70,40,93,.12); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: var(--purple-soft); font-size: 26px; }
.service-card h3 { margin: 24px 0 8px; font-size: 21px; }
.service-card p { margin: 0 0 22px; color: var(--muted); }
.chip { margin-top: auto; display: inline-flex; padding: 7px 10px; border-radius: 999px; background: var(--surface); color: var(--purple-dark); font-size: 11px; font-weight: 900; }
.service-card-accent { color: white; background: linear-gradient(145deg, var(--purple), #5b21b6); border-color: transparent; }
.service-card-accent .service-icon { background: rgba(255,255,255,.13); }
.service-card-accent p { color: rgba(255,255,255,.75); }
.service-card-accent a { margin-top: auto; font-weight: 850; color: #ffd5eb; }

.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-copy { position: sticky; top: 120px; }
.process-copy p { color: var(--muted); font-size: 18px; }
.text-link { color: var(--purple); font-weight: 850; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.steps li { display: grid; grid-template-columns: 80px 1fr; gap: 23px; align-items: center; padding: 26px; border-radius: var(--radius); background: white; border: 1px solid var(--line); }
.steps li > span { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 20px; background: var(--purple-soft); color: var(--purple); font-size: 21px; font-weight: 950; }
.steps h3 { margin: 0 0 5px; }
.steps p { margin: 0; color: var(--muted); }

.material-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.material-card { display: grid; grid-template-columns: 92px 1fr; gap: 23px; align-items: center; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); }
.material-card h3 { margin: 0 0 5px; font-size: 24px; }
.material-card p { margin: 0; color: var(--muted); }
.material-swatch { width: 86px; height: 86px; border-radius: 23px; position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 12px 25px rgba(0,0,0,.09); }
.material-swatch::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 5px, rgba(255,255,255,.22) 5px 7px); }
.swatch-pla { background: linear-gradient(135deg, #9448f3, #6a20c7); }
.swatch-petg { background: linear-gradient(135deg, #50d4c2, #0d897e); }
.swatch-abs { background: linear-gradient(135deg, #333038, #111); }
.swatch-tpu { background: linear-gradient(135deg, #ff9acb, #ed458f); }

.showcase { background: linear-gradient(145deg, #17131c, #25172f); color: white; }
.showcase-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; }
.showcase-card, .qr-card { min-height: 380px; border: 1px solid rgba(255,255,255,.11); border-radius: 32px; background: rgba(255,255,255,.055); }
.showcase-card { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.showcase-card p { max-width: 650px; color: rgba(255,255,255,.68); font-size: 18px; }
.showcase-badge { width: fit-content; padding: 7px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #ffcbe6; font-size: 12px; font-weight: 800; }
.palette { display: flex; gap: 10px; margin-top: 24px; }
.palette span { width: 38px; height: 38px; border-radius: 50%; background: var(--c); border: 3px solid rgba(255,255,255,.16); }
.qr-card { padding: 32px; display: grid; place-items: center; text-align: center; }
.qr-card img { width: 200px; padding: 10px; border-radius: 22px; background: white; }
.qr-card div { display: grid; gap: 4px; }
.qr-card b { font-size: 24px; }
.qr-card span { color: rgba(255,255,255,.64); font-size: 13px; }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }
.faq-layout > div:first-child p { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 24px 46px 24px 0; cursor: pointer; font-size: 18px; font-weight: 850; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 21px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--purple); }
details[open] summary::after { content: "−"; }
details p { margin: -6px 0 24px; color: var(--muted); max-width: 690px; }

.order-section { background: linear-gradient(145deg, #f6edff, #fff0f8); }
.order-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.order-copy p { color: var(--muted); font-size: 18px; }
.contact-mini { margin-top: 25px; display: grid; gap: 8px; }
.order-form { padding: 34px; border: 1px solid rgba(124,58,237,.14); border-radius: 30px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); }
.order-form label { display: grid; gap: 7px; margin-bottom: 17px; font-size: 13px; font-weight: 850; }
.order-form input, .order-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 15px; outline: none; color: var(--ink); background: white; transition: border .2s, box-shadow .2s; }
.order-form input:focus, .order-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.button-wide { width: 100%; }
.form-note { margin: 12px 0 0; text-align: center; color: var(--muted); font-size: 11px; }

.site-footer { padding-block: 44px; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 55px; }
.footer-brand .brand-mark { box-shadow: none; }
.site-footer p { margin: 9px 0 0; color: rgba(255,255,255,.54); font-size: 13px; }
.footer-links { display: flex; gap: 20px; color: rgba(255,255,255,.7); font-size: 13px; }
.footer-copy { color: rgba(255,255,255,.55); text-align: right; font-size: 12px; }

.toast { position: fixed; left: 50%; bottom: 25px; z-index: 100; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; padding: 13px 18px; border-radius: 14px; color: white; background: var(--ink); box-shadow: 0 15px 40px rgba(0,0,0,.24); transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 76px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 7px 4px; }
  .nav-cta { text-align: center; padding: 12px 15px !important; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 68px; }
  .hero-copy { text-align: center; }
  .hero-lead, .hero-copy h1 { margin-inline: auto; }
  .hero-actions, .hero-points, .eyebrow { justify-content: center; }
  .hero-visual { min-height: auto; }
  .mascot-card { width: min(100%, 620px); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout, .faq-layout, .order-grid { grid-template-columns: 1fr; gap: 42px; }
  .process-copy { position: static; }
  .showcase-grid { grid-template-columns: 1fr; }
  .qr-card { min-height: 330px; }
}

@media (max-width: 690px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { height: 68px; }
  .main-nav { top: 68px; left: 14px; right: 14px; }
  .hero-grid { gap: 35px; padding-block: 52px; }
  h1 { font-size: 54px; }
  .hero-lead { font-size: 17px; }
  .hero-points { display: grid; }
  .mascot-card { border-radius: 28px; }
  .float-tag { font-size: 10px; padding: 8px 11px; }
  .section { padding-block: 76px; }
  .section-head { display: grid; align-items: start; }
  .section-head h2, .process-copy h2, .faq-layout h2, .order-copy h2, .showcase-card h2 { font-size: 40px; }
  .service-grid, .material-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 225px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .steps li { grid-template-columns: 58px 1fr; padding: 20px; }
  .steps li > span { width: 52px; height: 52px; border-radius: 15px; font-size: 17px; }
  .material-card { grid-template-columns: 68px 1fr; padding: 20px; }
  .material-swatch { width: 64px; height: 64px; border-radius: 18px; }
  .showcase-card { padding: 30px; min-height: 340px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .order-form { padding: 23px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { flex-wrap: wrap; }
  .footer-copy { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* High-resolution brand assets */
.mascot-card img {
  width: 96%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 34px;
  filter: none;
  transform: translateZ(0);
}

.qr-link {
  display: block;
  width: min(100%, 244px);
  border-radius: 24px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.qr-card .qr-link img {
  width: 100%;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  shape-rendering: crispEdges;
}
