@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #070a0f;
  --ink-2: #0d1118;
  --panel: #121720;
  --line: rgba(255,255,255,.1);
  --text: #f4f7fb;
  --muted: #9aa4b2;
  --blue: #1677ff;
  --blue-2: #39a7ff;
  --orange: #ff7a16;
  --lime: #a8ee2b;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mobile-break { display: none; }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 100; padding: 12px 16px; background: white; color: black; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s, height .3s, backdrop-filter .3s;
}
.site-header.scrolled { height: 72px; background: rgba(7,10,15,.84); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 11px; font: 700 15px/1 Space Grotesk, sans-serif; letter-spacing: .16em; }
.brand img { width: 50px; height: 50px; object-fit: cover; border-radius: 12px; }
.brand strong { color: var(--orange); font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
.site-nav > a { color: #c9d0da; transition: color .2s; }
.site-nav > a:hover { color: white; }
.site-nav .nav-cta { color: white; border: 1px solid var(--line); padding: 12px 17px; border-radius: 3px; }
.site-nav .nav-cta span { color: var(--lime); margin-left: 8px; }
.menu-toggle { display: none; background: none; border: 0; color: white; padding: 10px; }

.hero { position: relative; min-height: 820px; height: 100svh; display: grid; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url("assets/hero-3d-printing.jpg?v=20260725.7") center/cover no-repeat; transform: scale(1.015); animation: hero-in 1.4s cubic-bezier(.2,.8,.2,1) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,12,.97) 0%, rgba(5,8,12,.84) 33%, rgba(5,8,12,.15) 67%, rgba(5,8,12,.18) 100%), linear-gradient(0deg, rgba(5,8,12,.64), transparent 35%); }
.hero-grid { position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg,#000,transparent 66%); }
.hero-copy { position: relative; z-index: 2; width: min(690px, calc(100% - 48px)); margin-left: max(28px, calc((100vw - var(--max)) / 2)); padding-top: 72px; animation: copy-in 1s .15s both; }
.eyebrow { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .22em; font: 700 11px/1.4 Space Grotesk, sans-serif; color: #b7c0cc; }
.eyebrow span { display: inline-block; width: 28px; height: 2px; margin: 0 12px 3px 0; background: var(--orange); box-shadow: 0 0 12px var(--orange); }
h1,h2,h3,p { margin-top: 0; }
h1,h2 { font-family: Space Grotesk, sans-serif; letter-spacing: -.045em; }
h1 { max-width: 680px; margin-bottom: 23px; font-size: clamp(48px, 5.6vw, 82px); line-height: .98; }
h1 em, h2 em { color: var(--blue-2); font-style: normal; }
.hero-lead { max-width: 600px; margin-bottom: 32px; color: #b6bfca; font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 0 22px; border: 0; border-radius: 3px; font-weight: 800; font-size: 13px; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 10px 30px rgba(22,119,255,.22); }
.button-primary:hover { background: #2584ff; box-shadow: 0 13px 35px rgba(22,119,255,.3); }
.button-primary span { color: var(--lime); font-size: 17px; }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.035); color: white; backdrop-filter: blur(8px); }
.play { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: 8px; padding-left: 2px; }
.hero-points { display: flex; gap: 38px; padding: 0; margin: 52px 0 0; list-style: none; }
.hero-points li { display: flex; gap: 10px; align-items: flex-start; }
.hero-points strong { color: var(--orange); font: 600 10px/1.4 Space Grotesk; }
.hero-points span { color: #c6cdd6; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; }
.print-status { position: absolute; z-index: 3; right: max(28px, calc((100vw - var(--max)) / 2)); bottom: 95px; width: 250px; padding: 17px 19px; background: rgba(8,12,17,.78); border: 1px solid rgba(57,167,255,.28); backdrop-filter: blur(12px); }
.status-top,.status-meta { display: flex; align-items: center; justify-content: space-between; font: 600 9px Space Grotesk; letter-spacing: .12em; color: #8590a0; }
.status-top b { color: var(--lime); font-size: 8px; }
.status-top i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 9px var(--lime); }
.status-line { height: 3px; margin: 15px 0 12px; background: rgba(255,255,255,.1); }
.status-line span { display: block; width: 77%; height: 100%; background: linear-gradient(90deg,var(--blue),var(--lime)); box-shadow: 0 0 10px var(--blue); }
.status-meta strong { color: white; font-size: 10px; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 25px; display: flex; align-items: center; gap: 10px; color: #77818e; font: 600 9px Space Grotesk; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { position: relative; width: 1px; height: 25px; background: rgba(255,255,255,.25); overflow: hidden; }
.scroll-cue span:after { content:""; position: absolute; inset: 0; background: var(--blue-2); animation: scroll 1.7s infinite; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--ink-2); }
.marquee div { width: max-content; display: flex; align-items: center; gap: 36px; padding: 17px 0; animation: marquee 24s linear infinite; }
.marquee span { font: 600 11px Space Grotesk; letter-spacing: .2em; color: #a6afbb; }
.marquee i { color: var(--orange); font-style: normal; }
.section { max-width: var(--max); margin: 0 auto; padding: 120px 28px; }
.section-heading { display: grid; grid-template-columns: 1.1fr .65fr; align-items: end; gap: 60px; margin-bottom: 58px; }
.section h2 { margin-bottom: 0; font-size: clamp(42px, 5vw, 66px); line-height: 1.04; }
.section-heading > p, .service-intro > p { color: var(--muted); line-height: 1.75; font-size: 15px; }

.products { max-width: 1320px; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.product-card { overflow: hidden; background: var(--panel); border: 1px solid var(--line); transition: transform .3s, border-color .3s; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(57,167,255,.35); }
.product-image { aspect-ratio: .82; background-image: url("assets/product-categories.jpg?v=20260725.7"); background-repeat: no-repeat; background-size: 400% 100%; transition: transform .55s; }
.product-card:hover .product-image { transform: scale(1.035); }
.slice-1 { background-position: 0 50%; }
.slice-2 { background-position: 33.333% 50%; }
.slice-3 { background-position: 66.666% 50%; }
.slice-4 { background-position: 100% 50%; }
.product-info { position: relative; min-height: 145px; padding: 23px; background: linear-gradient(135deg,#121720,#0d1118); }
.product-info span { color: var(--blue-2); font: 600 9px Space Grotesk; letter-spacing: .15em; }
.product-info h3 { margin: 12px 34px 0 0; font: 600 18px/1.35 Space Grotesk; }
.product-info a { position: absolute; right: 20px; bottom: 20px; color: var(--lime); font-size: 11px; font-weight: 700; }

.services { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.service-intro { position: sticky; top: 110px; }
.service-intro h2 { margin-bottom: 28px; }
.service-intro > p { max-width: 430px; }
.text-link { display: inline-flex; align-items: center; gap: 42px; margin-top: 18px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.28); font-size: 13px; font-weight: 700; }
.text-link span { color: var(--lime); }
.service-stack { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 45px 1fr 50px; gap: 16px; padding: 37px 10px; border-bottom: 1px solid var(--line); transition: background .25s, padding .25s; }
.service-row:hover { padding-inline: 20px; background: linear-gradient(90deg,rgba(22,119,255,.09),transparent); }
.service-no { color: var(--orange); font: 600 10px Space Grotesk; }
.service-row h3 { margin-bottom: 11px; font: 600 23px Space Grotesk; }
.service-row p { max-width: 500px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.service-icon { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); color: var(--blue-2); font-size: 20px; transform: rotate(-7deg); }

.process { max-width: none; padding-inline: max(28px, calc((100vw - var(--max)) / 2)); background: #0a0e14; border-block: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); padding: 0; margin: 0; list-style: none; border: 1px solid var(--line); }
.process-grid li { position: relative; min-height: 430px; padding: 25px 28px 32px; border-right: 1px solid var(--line); overflow: hidden; }
.process-grid li:last-child { border-right: 0; }
.process-grid > li > span { color: var(--orange); font: 600 10px Space Grotesk; }
.process-visual { height: 235px; display: grid; place-items: center; perspective: 600px; }
.cube { width: 88px; height: 88px; background: rgba(22,119,255,.1); border: 2px solid var(--blue); box-shadow: inset 0 0 35px rgba(22,119,255,.22), 24px 24px 0 rgba(22,119,255,.06); transform: rotateX(58deg) rotateZ(45deg); animation: float 4s ease-in-out infinite; }
.layers { position: relative; width: 110px; height: 76px; border: 2px solid var(--blue-2); transform: skewY(-12deg); box-shadow: 12px 12px 0 rgba(22,119,255,.16), 24px 24px 0 rgba(22,119,255,.08); }
.layers:after { content:""; position: absolute; inset: 20px; border: 1px solid var(--orange); }
.spark { color: var(--lime); font-style: normal; font-size: 80px; filter: drop-shadow(0 0 25px rgba(168,238,43,.45)); animation: pulse 2s ease-in-out infinite; }
.process-grid h3 { margin-bottom: 12px; font: 600 22px Space Grotesk; }
.process-grid p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.cta-section { position: relative; min-height: 720px; display: grid; place-items: center; padding: 100px 28px; overflow: hidden; background: radial-gradient(circle at 50% 45%,#17243a 0,#0b1018 38%,#070a0f 72%); }
.cta-section:before { content:""; position: absolute; width: 680px; height: 680px; border: 1px solid rgba(57,167,255,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(57,167,255,.025), 0 0 0 160px rgba(57,167,255,.018); }
.cta-glow { position: absolute; width: 420px; height: 140px; background: var(--blue); filter: blur(110px); opacity: .18; }
.cta-content { position: relative; z-index: 2; width: min(860px,100%); text-align: center; }
.cta-content h2 { margin-bottom: 18px; font-size: clamp(46px,6vw,76px); }
.cta-content > p:not(.eyebrow):not(.form-status) { color: var(--muted); }
.quote-form { display: grid; grid-template-columns: .8fr 1.3fr auto; gap: 10px; margin: 38px auto 14px; padding: 10px; background: rgba(7,10,15,.72); border: 1px solid var(--line); text-align: left; backdrop-filter: blur(12px); }
.field { padding: 7px 13px; border-right: 1px solid var(--line); }
.field label { display: block; margin-bottom: 4px; color: #77818e; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.field input,.field select { width: 100%; padding: 0; border: 0; outline: 0; background: transparent; color: white; font-size: 12px; }
.field select option { background: var(--ink-2); }
.field input::placeholder { color: #657080; }
.form-status { min-height: 22px; color: var(--lime); font-size: 12px; }
.instagram-link { width: min(360px,100%); display: flex; align-items: center; gap: 13px; margin: 24px auto 0; padding: 15px 17px; border: 1px solid var(--line); background: rgba(255,255,255,.025); text-align: left; transition: border-color .2s, transform .2s; }
.instagram-link:hover { border-color: rgba(57,167,255,.45); transform: translateY(-2px); }
.instagram-icon { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; background: linear-gradient(145deg,var(--orange),#9a32e5); font-size: 24px; }
.instagram-link span:nth-child(2) { display: grid; gap: 2px; }
.instagram-link small { color: var(--muted); font-size: 9px; }
.instagram-link strong { font-size: 13px; }
.instagram-link b { margin-left: auto; color: var(--lime); }

.site-footer { max-width: var(--max); display: grid; grid-template-columns: 1.3fr .8fr 1.4fr; align-items: center; gap: 25px; margin: 0 auto; padding: 55px 28px 35px; color: var(--muted); }
.footer-brand { color: white; }
.site-footer p { margin: 0; font-size: 12px; }
.site-footer nav { display: flex; justify-content: flex-end; gap: 25px; font-size: 11px; }
.site-footer nav a:hover { color: white; }
.site-footer small { grid-column: 1/-1; padding-top: 25px; border-top: 1px solid var(--line); font-size: 9px; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes hero-in { from { opacity: 0; transform: scale(1.06); } }
@keyframes copy-in { from { opacity: 0; transform: translateY(24px); } }
@keyframes scroll { from { transform: translateY(-100%); } to { transform: translateY(100%); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes float { 50% { transform: rotateX(58deg) rotateZ(45deg) translateZ(18px); } }
@keyframes pulse { 50% { transform: scale(.82) rotate(18deg); opacity: .65; } }

/* Soft commerce theme */
body {
  background:
    radial-gradient(circle at 8% 24%, rgba(255,122,22,.07), transparent 20rem),
    radial-gradient(circle at 94% 45%, rgba(22,119,255,.07), transparent 24rem),
    #f7f5f0;
  color: #17202b;
}
.topbar { position: fixed; inset: 0 0 auto; z-index: 60; height: 34px; background: #176fdb; color: white; transition: transform .3s ease, opacity .25s ease; }
.topbar.scrolled { opacity: 0; pointer-events: none; transform: translateY(-100%); }
.topbar > div { width: min(var(--max),calc(100% - 56px)); height: 100%; display: flex; align-items: center; justify-content: space-between; margin: 0 auto; font-size: 10px; letter-spacing: .03em; }
.topbar nav { display: flex; gap: 22px; }
.topbar a { opacity: .92; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.site-header { top: 0; height: 78px; background: rgba(255,255,255,.86); border-color: rgba(15,32,50,.08); color: #132033; backdrop-filter: blur(16px); transition: background .3s, height .3s, backdrop-filter .3s, top .3s ease, box-shadow .3s; }
.site-header.scrolled { top: 0; background: rgba(251,250,247,.95); box-shadow: 0 8px 30px rgba(28,46,66,.08); }
.site-nav > a { color: #4b5664; }
.site-nav > a:hover { color: #0c1827; }
.site-nav .nav-cta { color: white; background: #20aa61; border-color: #20aa61; }
.site-nav .nav-cta span { color: white; }
.site-header .brand img { width: 58px; height: 58px; }
.hero { background: #eeece6; }
.hero-shade { background: linear-gradient(90deg,#f7f5f0 0%,rgba(247,245,240,.98) 31%,rgba(247,245,240,.76) 49%,rgba(247,245,240,.08) 73%), linear-gradient(0deg,rgba(247,245,240,.78),transparent 35%); }
.hero-grid { opacity: .05; }
.hero-copy { color: #101d2c; }
.hero-copy .eyebrow { color: #5e6874; }
.hero-lead { color: #53606d; }
.button-ghost { border-color: rgba(19,32,51,.15); background: rgba(255,255,255,.62); color: #17202b; }
.play { border-color: rgba(19,32,51,.2); }
.hero-points span { color: #596471; }
.print-status { color: #17202b; background: rgba(255,255,255,.88); border-color: rgba(22,119,255,.25); box-shadow: 0 18px 50px rgba(19,32,51,.12); }
.status-meta strong { color: #17202b; }
.scroll-cue { color: #687583; }
.marquee { border-color: #dbe4ed; background: #eaf3fd; }
.marquee span { color: #4f6174; }
.section-heading > p, .service-intro > p { color: #65717d; }
.products { position: relative; padding-bottom: 100px; }
.products:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 70px;
  right: -36px;
  width: 145px;
  height: 145px;
  border: 15px solid rgba(22,119,255,.09);
  border-radius: 50%;
  box-shadow: inset 0 0 0 13px rgba(168,238,43,.08), 0 0 0 20px rgba(255,122,22,.035);
  transform: rotate(-12deg);
}
.products:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -48px;
  bottom: 150px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg,rgba(255,122,22,.13),rgba(255,122,22,.025));
  border: 1px solid rgba(255,122,22,.16);
  box-shadow: 18px 18px 0 rgba(22,119,255,.055);
  transform: rotate(30deg) skew(-8deg);
}
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: -16px 0 26px; padding: 15px 18px; border: 1px solid #dde3e8; border-radius: 12px; background: rgba(255,255,255,.72); }
.catalog-toolbar p { margin: 0; color: #74808d; font-size: 12px; }
.catalog-toolbar p strong { color: #17202b; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.catalog-filters button { padding: 8px 13px; border: 1px solid transparent; border-radius: 999px; background: transparent; color: #64717e; font-size: 11px; cursor: pointer; transition: .2s; }
.catalog-filters button:hover { color: #176fdb; background: #eef5fd; }
.catalog-filters button.active { color: white; background: #176fdb; }
.catalog-grid { grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card { position: relative; overflow: hidden; background: white; border-color: #e0e4e8; border-radius: 14px; box-shadow: 0 8px 30px rgba(32,49,66,.05); }
.product-card:nth-child(4n+1) { background: #fffaf3; }
.product-card:nth-child(4n+2) { background: #fff7f3; }
.product-card:nth-child(4n+3) { background: #f4faff; }
.product-card:nth-child(4n+4) { background: #f7fbf3; }
.product-card:hover { border-color: #b9d5f3; box-shadow: 0 18px 40px rgba(32,49,66,.1); }
.product-card:after {
  content: "";
  position: absolute;
  inset: auto 18px 12px;
  height: 3px;
  background: repeating-linear-gradient(90deg,#1677ff 0 12px,transparent 12px 18px,#ff7a16 18px 24px,transparent 24px 30px);
  opacity: .24;
  border-radius: 99px;
}
.product-card.is-hidden { display: none; }
.product-image { aspect-ratio: 1/1.02; }
.product-image.zoom-right { background-size: 455% 108%; filter: saturate(.88) brightness(1.06); }
.product-badges { position: absolute; top: 13px; left: 13px; z-index: 2; }
.product-badges span { display: inline-flex; padding: 7px 9px; border-radius: 999px; background: rgba(255,255,255,.91); color: #176fdb; box-shadow: 0 5px 20px rgba(10,30,50,.12); font: 700 8px Space Grotesk; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.product-info { min-height: 234px; display: flex; flex-direction: column; padding: 20px; background: rgba(255,255,255,.82); }
.product-info > span { color: #176fdb; }
.product-info h3 { margin: 8px 0 7px; color: #162232; font-size: 18px; }
.product-info p { min-height: 40px; margin: 0 0 15px; color: #7a8590; font-size: 11px; line-height: 1.6; }
.product-info > strong { margin-top: auto; color: #263343; font-size: 11px; }
.product-info a.order-button { position: static; min-height: 42px; display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding: 0 13px; border-radius: 7px; background: #ebf8f1; color: #15864b; font-size: 11px; font-weight: 800; transition: .2s; }
.product-info a.order-button:hover { background: #20aa61; color: white; }
.product-info a.order-button b { font-size: 15px; }
.services { position: relative; max-width: 1280px; margin-top: 24px; overflow: hidden; border-radius: 28px; background: #eef4fa; }
.services:after {
  content: "";
  position: absolute;
  right: -85px;
  top: -85px;
  width: 215px;
  height: 215px;
  border: 28px solid rgba(22,119,255,.055);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255,122,22,.035);
}
.service-intro > p { color: #617080; }
.service-stack { border-color: #ccd7e2; }
.service-row { border-color: #ccd7e2; }
.service-row:hover { background: linear-gradient(90deg,rgba(22,119,255,.08),rgba(255,255,255,.4)); }
.service-row h3 { color: #172333; }
.service-row p { color: #6e7b88; }
.service-icon { border-color: #cad6e2; }
.process {
  background:
    linear-gradient(135deg,rgba(22,119,255,.035) 25%,transparent 25%) 0 0/32px 32px,
    linear-gradient(315deg,rgba(255,122,22,.025) 25%,transparent 25%) 0 0/32px 32px,
    #f2efe8;
  border-color: #dedbd3;
}
.process-grid { border-color: #d9d6cf; background: rgba(255,255,255,.48); }
.process-grid li { border-color: #d9d6cf; }
.process-grid h3 { color: #182433; }
.process-grid p { color: #6e7882; }
.local-section { display: grid; grid-template-columns: 1.25fr .75fr; align-items: stretch; gap: 70px; }
.local-copy { padding-block: 35px; }
.local-copy > p:not(.eyebrow) { max-width: 690px; margin: 28px 0; color: #687582; font-size: 14px; line-height: 1.8; }
.local-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.local-card { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 42px; overflow: hidden; border: 1px solid #d7e2ec; border-radius: 22px; background: linear-gradient(145deg,#e8f3ff,#f7fbff); box-shadow: 0 18px 50px rgba(39,67,94,.08); }
.local-card:after { content:""; position: absolute; right: -70px; bottom: -90px; width: 240px; height: 240px; border: 1px solid rgba(22,119,255,.12); border-radius: 50%; box-shadow: 0 0 0 38px rgba(22,119,255,.04),0 0 0 76px rgba(22,119,255,.025); }
.location-pin { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 50%; background: #176fdb; color: white; font-size: 24px; box-shadow: 0 10px 28px rgba(23,111,219,.24); }
.local-card small { color: #176fdb; font: 700 9px Space Grotesk; letter-spacing: .16em; }
.local-card h3 { margin: 9px 0 10px; color: #172333; font: 600 25px Space Grotesk; }
.local-card address { margin-bottom: 22px; color: #667482; font-size: 13px; font-style: normal; line-height: 1.7; }
.local-card a { position: relative; z-index: 1; width: max-content; margin-top: 7px; color: #233246; font-size: 11px; font-weight: 700; }
.local-card a:hover { color: #176fdb; }
.cta-section { background: radial-gradient(circle at 50% 45%,#e8f3ff 0,#f7f5f0 52%,#efede7 100%); }
.cta-section:before { border-color: rgba(22,119,255,.1); }
.cta-content { color: #17202b; }
.cta-content > p:not(.eyebrow):not(.form-status) { color: #65717d; }
.quote-form { background: rgba(255,255,255,.84); border-color: #d9e0e7; box-shadow: 0 20px 60px rgba(32,49,66,.1); }
.field { border-color: #d9e0e7; }
.field input,.field select { color: #17202b; }
.field select option { background: white; }
.instagram-link { border-color: #d9e0e7; background: rgba(255,255,255,.7); color: #17202b; }
.contact-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.contact-links a { display: grid; gap: 5px; padding: 13px 15px; border: 1px solid #d9e0e7; border-radius: 8px; background: rgba(255,255,255,.6); text-align: left; }
.contact-links a:hover { border-color: #91bdeb; }
.contact-links small { color: #7c8793; font-size: 9px; }
.contact-links strong { color: #1a2736; font-size: 11px; }
.cta-content address { margin-top: 20px; color: #5f6d7a; font-size: 11px; font-style: normal; }
.site-footer { color: #697581; }
.footer-brand { color: #17202b; }
.site-footer small { border-color: #d9d6cf; }
.site-footer nav a:hover { color: #176fdb; }
.floating-whatsapp { position: fixed; z-index: 45; right: 22px; bottom: 22px; min-height: 50px; display: inline-flex; align-items: center; gap: 9px; padding: 0 17px; border-radius: 999px; background: #20aa61; color: white; box-shadow: 0 12px 35px rgba(24,139,77,.3); font-size: 12px; transition: transform .2s, box-shadow .2s; }
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(24,139,77,.4); }
.floating-whatsapp span { font-size: 20px; transform: rotate(-18deg); }

@media (prefers-reduced-motion: no-preference) {
  .products:before { animation: shape-drift 8s ease-in-out infinite; }
  .products:after { animation: shape-drift 7s ease-in-out -2s infinite reverse; }
}
@keyframes shape-drift { 50% { translate: 0 12px; rotate: 5deg; } }

@media (max-width: 980px) {
  .hero { min-height: 760px; }
  .hero-media { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(5,8,12,.96),rgba(5,8,12,.72) 55%,rgba(5,8,12,.22)),linear-gradient(0deg,rgba(5,8,12,.7),transparent 45%); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .services { gap: 55px; }
  .local-section { gap: 35px; }
  .process-grid li { min-height: 390px; }
  .process-visual { height: 200px; }
  .quote-form { grid-template-columns: 1fr 1fr; }
  .quote-form .button { grid-column: 1/-1; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer nav { grid-column: 1/-1; justify-content: flex-start; }
}

@media (max-width: 720px) {
  .site-header { top: 0; width: 100%; max-width: 100vw; height: 68px; padding: 0 28px; }
  .site-header.scrolled { top: 0; }
  .site-header .brand img { width: 50px; height: 50px; border-radius: 11px; }
  .brand { min-width: 0; flex: 1 1 auto; font-size: 11px; }
  .brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .menu-toggle { position: relative; right: 0; width: 44px; height: 44px; display: grid; flex: 0 0 44px; place-content: center; gap: 6px; margin-left: auto; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 1px; background: #17202b; transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 68px 0 auto; width: 100%; max-width: 100vw; display: grid; gap: 0; padding: 15px 18px 24px; background: rgba(251,250,247,.98); border-bottom: 1px solid #dce2e8; transform: translateY(-130%); transition: transform .3s, top .3s; z-index: -1; }
  .site-header.scrolled .site-nav { top: 68px; }
  .site-nav.open { transform: none; }
  .site-nav > a { padding: 15px 2px; border-bottom: 1px solid #e0e4e8; }
  .site-nav .nav-cta { margin-top: 12px; text-align: center; }
  .hero { min-height: 820px; height: 100svh; align-items: end; padding-bottom: 65px; }
  .hero-media { background-position: 69% center; }
  .hero-shade { background: linear-gradient(0deg,#f7f5f0 7%,rgba(247,245,240,.95) 48%,rgba(247,245,240,.06) 100%); }
  .hero-copy { width: 100%; min-width: 0; max-width: 100vw; margin: 0; padding: 110px 20px 0; }
  .mobile-break { display: inline; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  h1 { max-width: 100%; font-size: clamp(40px,11vw,45px); line-height: 1.04; letter-spacing: -.05em; }
  .hero-lead { font-size: 14px; line-height: 1.6; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-points { gap: 20px; margin-top: 32px; }
  .hero-points strong { display: none; }
  .hero-points span { font-size: 9px; }
  .print-status,.scroll-cue { display: none; }
  .section { width: 100%; max-width: 100%; padding: 85px 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 38px; }
  .section h2 { font-size: 43px; }
  .products { overflow: clip; }
  .product-grid { min-width: 0; grid-template-columns: minmax(0,1fr); }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .catalog-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; }
  .catalog-filters button { flex: 0 0 auto; }
  .product-image { aspect-ratio: 1.15; }
  .product-info { min-height: 220px; }
  .services { display: block; }
  .local-section { display: grid; grid-template-columns: 1fr; }
  .local-copy { padding-block: 0; }
  .local-actions { flex-direction: column; }
  .local-card { padding: 30px; }
  .service-intro { position: static; margin-bottom: 60px; }
  .service-row { grid-template-columns: 30px 1fr; padding: 28px 4px; }
  .service-icon { display: none; }
  .service-row h3 { font-size: 20px; }
  .process { padding-inline: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 330px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid li:last-child { border-bottom: 0; }
  .process-visual { height: 160px; }
  .cta-section { min-height: 760px; padding: 85px 18px; }
  .cta-section:before { width: 430px; height: 430px; }
  .cta-content h2 { font-size: 48px; }
  .quote-form { grid-template-columns: 1fr; }
  .field { min-width: 0; min-height: 58px; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-links { grid-template-columns: 1fr; }
  .contact-links strong, .local-card a { max-width: 100%; overflow-wrap: anywhere; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 18px; }
  .site-footer nav { grid-column: auto; flex-wrap: wrap; }
  .floating-whatsapp { right: max(40px, calc(env(safe-area-inset-right) + 28px)); bottom: max(18px, env(safe-area-inset-bottom)); min-width: 50px; padding: 0 14px; }
  .floating-whatsapp b { display: none; }
}

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

@supports (display: not-a-real-display-value) {
/* Disabled Tflat-inspired direction; retained only for easy comparison */
:root {
  --brand-blue: #0757c7;
  --brand-deep: #073678;
  --brand-orange: #ff8b25;
  --brand-lime: #a8ee2b;
  --brand-lilac: #f3efff;
  --brand-cream: #fffaf5;
}

body {
  background:
    radial-gradient(circle at 12% 28%, rgba(255,139,37,.08), transparent 21rem),
    radial-gradient(circle at 88% 46%, rgba(7,87,199,.07), transparent 26rem),
    var(--brand-cream);
}

.topbar { height: 30px; background: var(--brand-deep); }
.site-header {
  top: 30px;
  height: 76px;
  background: var(--brand-orange);
  border: 0;
  box-shadow: 0 5px 0 rgba(7,54,120,.08);
  backdrop-filter: none;
}
.site-header.scrolled { top: 0; height: 68px; background: rgba(255,139,37,.96); box-shadow: 0 10px 30px rgba(62,34,8,.16); backdrop-filter: blur(12px); }
.brand { color: white; }
.brand strong { color: var(--brand-deep); }
.brand img { box-shadow: 0 6px 18px rgba(57,31,5,.18); }
.site-nav > a { color: rgba(255,255,255,.9); }
.site-nav > a:hover { color: var(--brand-deep); }
.site-nav .nav-cta { color: white; background: var(--brand-blue); border-color: var(--brand-blue); box-shadow: 0 8px 20px rgba(7,54,120,.2); }

.hero {
  min-height: 830px;
  height: 100svh;
  background:
    radial-gradient(circle at 16% 18%,rgba(255,255,255,.8),transparent 15rem),
    var(--brand-lilac);
}
.hero:before,
.hero:after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero:before {
  width: 380px;
  height: 380px;
  right: -130px;
  top: 115px;
  border: 44px solid rgba(255,139,37,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(7,87,199,.08);
  animation: shape-drift 8s ease-in-out infinite;
}
.hero:after {
  left: -6%;
  right: -6%;
  bottom: -95px;
  height: 210px;
  background:
    radial-gradient(100px 68px at 8% 20%,var(--brand-cream) 98%,transparent 100%),
    radial-gradient(120px 76px at 23% 22%,var(--brand-cream) 98%,transparent 100%),
    radial-gradient(105px 70px at 39% 20%,var(--brand-cream) 98%,transparent 100%),
    radial-gradient(125px 78px at 57% 24%,var(--brand-cream) 98%,transparent 100%),
    radial-gradient(110px 72px at 75% 18%,var(--brand-cream) 98%,transparent 100%),
    radial-gradient(135px 82px at 94% 25%,var(--brand-cream) 98%,transparent 100%);
}
.hero-media {
  inset: 15% 3.5% 10% 48%;
  border: 9px solid white;
  border-radius: 30px 140px 30px 140px;
  background-position: 67% center;
  box-shadow: 0 28px 80px rgba(7,54,120,.2);
  transform: translate3d(var(--hero-x,0),var(--hero-y,0),0);
  animation: hero-card-in 1.1s cubic-bezier(.2,.8,.2,1) both, hero-float 6s 1.1s ease-in-out infinite;
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 18px 110px 18px 110px;
}
.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg,var(--brand-lilac) 0%,rgba(243,239,255,.98) 37%,rgba(243,239,255,.3) 58%,transparent 78%);
}
.hero-grid { opacity: .08; background-size: 54px 54px; mask-image: linear-gradient(90deg,#000,transparent 56%); }
.hero-copy { max-width: 625px; color: var(--brand-deep); }
.hero-copy h1 { font-size: clamp(54px,5.4vw,78px); }
.hero-copy h1 em { color: var(--brand-blue); }
.hero-copy .eyebrow { color: var(--brand-orange); }
.hero-copy .eyebrow span { background: var(--brand-orange); }
.hero-lead { color: #5d5d7c; }
.button { border-radius: 9px; }
.button-primary { background: var(--brand-blue); box-shadow: 0 12px 0 rgba(7,54,120,.12),0 20px 36px rgba(7,87,199,.18); }
.button-primary:hover { background: var(--brand-deep); }
.button-ghost { background: rgba(255,255,255,.65); border-color: rgba(7,54,120,.14); color: var(--brand-deep); }
.hero-points span { color: #5f6280; }
.print-status {
  right: 6%;
  bottom: 14%;
  border: 0;
  border-radius: 14px;
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 16px 40px rgba(7,54,120,.25);
  animation: status-float 4.5s ease-in-out infinite;
}
.print-status:before {
  content: "✓";
  position: absolute;
  left: -17px;
  top: -17px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-orange);
  color: white;
  font-weight: 900;
}
.status-top,.status-meta { color: rgba(255,255,255,.65); }
.status-meta strong { color: white; }
.scroll-cue { color: var(--brand-deep); }

.marquee { background: var(--brand-orange); border: 0; }
.marquee span { color: white; }
.marquee i { color: var(--brand-deep); }

.section { padding-block: 115px; }
.section h2 { color: var(--brand-deep); }
.section h2 em { color: var(--brand-blue); }
.section .eyebrow { color: var(--brand-orange); }
.section .eyebrow span { background: var(--brand-orange); }
.products { padding-top: 140px; }
.catalog-toolbar { border: 0; border-radius: 15px; background: #ebe5ff; box-shadow: none; }
.catalog-filters button { color: var(--brand-deep); }
.catalog-filters button:hover { color: var(--brand-blue); background: white; }
.catalog-filters button.active { background: var(--brand-orange); color: white; }
.catalog-grid { gap: 18px; }
.product-card,
.product-card:nth-child(n) {
  background: var(--brand-deep);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 0 rgba(255,139,37,.82),0 20px 45px rgba(7,54,120,.11);
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card:nth-child(4n+2) { background: #114fa1; }
.product-card:nth-child(4n+3) { background: #07458e; }
.product-card:hover { border: 0; box-shadow: 0 13px 0 var(--brand-orange),0 28px 55px rgba(7,54,120,.2); }
.product-card:before {
  content: "";
  position: absolute;
  z-index: 1;
  right: -45px;
  top: -45px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: var(--brand-orange);
  opacity: .95;
}
.product-card:after { display: none; }
.product-image { border-bottom: 4px solid var(--brand-orange); transform: translateZ(10px); }
.product-info { min-height: 238px; background: transparent; }
.product-info > span { color: var(--brand-lime); }
.product-info h3 { color: white; }
.product-info p { color: rgba(255,255,255,.66); }
.product-info > strong { color: white; }
.product-info a.order-button { background: var(--brand-orange); color: white; }
.product-info a.order-button:hover { background: var(--brand-lime); color: var(--brand-deep); }
.product-badges span { color: var(--brand-deep); }

.services {
  position: relative;
  grid-template-columns: .8fr 1.2fr;
  max-width: var(--max);
  overflow: visible;
  padding: 80px;
  border-radius: 36px 120px 36px 120px;
  background: var(--brand-deep);
  color: white;
  box-shadow: 0 20px 0 rgba(255,139,37,.22);
}
.services:before {
  content: "";
  position: absolute;
  left: -75px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: inset -38px 24px 0 var(--brand-blue);
}
.services:after { border-color: rgba(168,238,43,.12); box-shadow: 0 0 0 18px rgba(255,139,37,.08); }
.services h2,.services h3 { color: white; }
.services h2 em { color: var(--brand-lime); }
.service-intro > p,.service-row p { color: rgba(255,255,255,.63); }
.service-stack,.service-row { border-color: rgba(255,255,255,.14); }
.service-row:hover { background: rgba(255,255,255,.055); }
.service-icon { color: var(--brand-orange); border-color: rgba(255,255,255,.18); }
.text-link { border-color: rgba(255,255,255,.35); }

.process {
  background:
    radial-gradient(circle at 7% 22%,rgba(255,139,37,.18),transparent 13rem),
    radial-gradient(circle at 92% 82%,rgba(7,87,199,.15),transparent 17rem),
    var(--brand-lilac);
  border: 0;
}
.process-grid { background: transparent; border: 0; gap: 18px; }
.process-grid li {
  min-height: 420px;
  border: 0;
  border-radius: 28px;
  background: white;
  box-shadow: 0 12px 35px rgba(7,54,120,.08);
}
.process-grid li:nth-child(2) { transform: translateY(24px); background: var(--brand-orange); }
.process-grid li:nth-child(2) h3,.process-grid li:nth-child(2) p,.process-grid li:nth-child(2)>span { color: white; }
.process-grid li:nth-child(3) { background: #e8f4ff; }

.local-section { position: relative; }
.local-card {
  border: 0;
  border-radius: 50% 18px 50% 18px;
  background: var(--brand-orange);
  box-shadow: 18px 18px 0 var(--brand-blue);
}
.local-card small,.local-card a { color: white; }
.local-card h3 { color: var(--brand-deep); }
.local-card address { color: rgba(7,54,120,.78); }
.location-pin { background: var(--brand-deep); }

.faq-section {
  max-width: none;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  padding-inline: max(28px,calc((100vw - var(--max))/2));
  background: #fff;
}
.faq-intro > p:last-child { max-width: 440px; color: #696a82; line-height: 1.8; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { overflow: hidden; border: 0; border-radius: 11px; background: var(--brand-lilac); }
.faq-list details[open] { background: var(--brand-orange); color: white; }
.faq-list summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 20px; color: var(--brand-deep); font-size: 13px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { color: white; }
.faq-list summary span { font-size: 20px; transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: rgba(255,255,255,.8); font-size: 12px; line-height: 1.7; }

.cta-section {
  background:
    radial-gradient(circle at 82% 44%,var(--brand-blue) 0 125px,transparent 127px),
    radial-gradient(circle at 85% 42%,var(--brand-orange) 0 150px,transparent 152px),
    var(--brand-lilac);
}
.cta-section:before { display: none; }
.cta-content { width: min(940px,100%); }
.cta-content h2 { color: var(--brand-deep); }
.quote-form { border: 3px solid var(--brand-blue); border-radius: 13px; box-shadow: 9px 9px 0 var(--brand-orange); }
.instagram-link,.contact-links a { border-color: #d7cef8; }

.site-footer {
  max-width: none;
  padding-inline: max(28px,calc((100vw - var(--max))/2));
  background: var(--brand-deep);
  color: rgba(255,255,255,.65);
}
.footer-brand { color: white; }
.site-footer small { border-color: rgba(255,255,255,.15); }
.site-footer nav a:hover { color: var(--brand-lime); }

@keyframes hero-card-in {
  from { opacity: 0; transform: translate3d(80px,25px,0) rotate(3deg); }
}
@keyframes hero-float {
  50% { translate: 0 -9px; rotate: -.6deg; }
}
@keyframes status-float {
  50% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 980px) {
  .hero-media { inset: 14% 1% 10% 43%; }
  .services { margin-inline: 24px; padding: 60px 45px; gap: 50px; }
  .faq-section { gap: 45px; }
}

@media (max-width: 720px) {
  .topbar { height: 28px; }
  .site-header { top: 28px; height: 68px; }
  .site-header.scrolled { top: 0; }
  .site-nav { top: 96px; background: var(--brand-orange); border: 0; }
  .site-header.scrolled .site-nav { top: 68px; }
  .site-nav > a { color: white; border-color: rgba(255,255,255,.25); }
  .menu-toggle > span:not(.sr-only) { background: white; }
  .hero { min-height: 840px; padding-bottom: 42px; background: var(--brand-lilac); }
  .hero-media { inset: 96px -60px 42% 29%; border-width: 6px; border-radius: 22px 70px 22px 70px; background-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg,var(--brand-lilac) 6%,rgba(243,239,255,.98) 50%,rgba(243,239,255,.05) 100%); }
  .hero-copy { position: relative; z-index: 4; width: 100%; padding-top: 300px; }
  .hero-copy h1 { font-size: clamp(39px,10.8vw,48px); }
  .hero:after { bottom: -135px; }
  .services { margin-inline: 18px; padding: 55px 25px; border-radius: 28px 65px 28px 65px; }
  .services:before { width: 95px; height: 95px; left: -30px; bottom: -38px; }
  .process-grid li:nth-child(2) { transform: none; }
  .faq-section { grid-template-columns: 1fr; gap: 35px; padding-inline: 18px; }
  .faq-list summary { font-size: 12px; }
  .local-card { border-radius: 50px 15px 50px 15px; box-shadow: 10px 10px 0 var(--brand-blue); }
  .cta-section { background: radial-gradient(circle at 95% 10%,rgba(7,87,199,.14),transparent 11rem),var(--brand-lilac); }
}
}
