@import"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap";:root{--background: hsl(220, 20%, 10%);--foreground: hsl(0, 0%, 98%);--card: hsl(220, 20%, 12%);--primary: hsl(54, 100%, 50%);--primary-foreground: hsl(220, 20%, 10%);--secondary: hsl(220, 15%, 18%);--muted: hsl(220, 15%, 22%);--muted-foreground: hsl(220, 10%, 60%);--destructive: hsl(0, 84%, 60%);--border: hsl(220, 15%, 20%);--input: hsl(220, 15%, 16%);--ring: hsl(54, 100%, 50%)}*{margin:0;padding:0;box-sizing:border-box}body{font-family:Inter,system-ui,sans-serif;background:var(--background);color:var(--foreground);line-height:1.6;font-size:14px}h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.2}.container{width:100%;max-width:1600px;margin:0 auto;padding:0 1rem}@media (min-width: 768px){.container{padding:0 2rem}}.grid-pattern{background-image:linear-gradient(hsl(220,15%,16%) 1px,transparent 1px),linear-gradient(90deg,hsl(220,15%,16%) 1px,transparent 1px);background-size:60px 60px}.gradient-text{background:linear-gradient(135deg,#ffe500,#f5cc00);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}@keyframes fade-in{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse-glow{0%,to{opacity:.4}50%{opacity:.8}}.animate-fade-in{animation:fade-in .5s ease-out forwards}.animate-pulse-glow{animation:pulse-glow 3s ease-in-out infinite}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.5rem 1rem;border-radius:.375rem;font-size:14px;font-weight:500;border:none;cursor:pointer;transition:all .2s}.btn-xl{height:3.5rem;padding:0 2.5rem;font-size:18px}.btn-lg{height:3rem;padding:0 2rem;font-size:16px}.btn-hero{background:var(--primary);color:var(--primary-foreground);font-weight:700;box-shadow:0 4px 20px #ffe50066}.btn-hero:hover{box-shadow:0 8px 30px #ffe50080;transform:translateY(-2px)}.btn-cta{background:var(--primary);color:var(--primary-foreground);font-weight:600;box-shadow:0 4px 14px #ffe50059}.btn-cta:hover{box-shadow:0 6px 20px #ffe50073;transform:translateY(-1px)}.btn-subtle{background:#30354180;color:var(--muted-foreground);border:1px solid hsla(220,15%,20%,.5)}.btn-subtle:hover{background:var(--muted);color:var(--foreground)}.form-label{display:block;font-size:14px;font-weight:500;margin-bottom:.5rem}.form-input,.form-textarea{width:100%;padding:.5rem .75rem;background:var(--input)!important;color:var(--foreground)!important;border:1px solid var(--border)!important;border-radius:.375rem;font-size:14px!important;font-family:Inter,system-ui,sans-serif!important;line-height:1.5;-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=email].form-input{background:var(--input)!important;color:var(--foreground)!important;font-size:14px!important;padding:.5rem .75rem!important;height:auto!important;min-height:auto!important}.form-input:focus,.form-textarea:focus{outline:none;border-color:var(--ring)!important;box-shadow:0 0 0 2px #ffe5001a!important;background:var(--input)!important}.form-textarea{min-height:100px;resize:vertical}.tag-button{padding:.375rem .75rem;font-size:14px;border-radius:.375rem;border:1px solid var(--border);background:#272c354d;color:var(--muted-foreground);cursor:pointer;transition:all .2s}.tag-button:hover{border-color:#ffe50080;color:var(--foreground)}.tag-button.selected{border-color:var(--primary);background:#ffe5001a;color:var(--foreground)}.card{padding:1.5rem;border-radius:.5rem;border:1px solid var(--border);background:#181d2580;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);transition:all .3s}.card:hover{border-color:#ffe5004d}.section-spacing{padding:6rem 0}.section-bg-alt{background:#272c3533}.hero-section{min-height:90vh;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}.text-xs{font-size:12px;line-height:16px}.text-sm{font-size:14px;line-height:20px}.text-base{font-size:16px;line-height:24px}.text-lg{font-size:18px;line-height:28px}.text-xl{font-size:20px;line-height:28px}.text-2xl{font-size:24px;line-height:32px}.text-3xl{font-size:30px;line-height:36px}.text-4xl{font-size:36px;line-height:40px}@media (min-width: 768px){.md\:text-4xl{font-size:36px}.md\:text-5xl{font-size:48px}.md\:text-xl{font-size:20px}}@media (min-width: 1024px){.lg\:text-6xl{font-size:60px}}.font-mono{font-family:JetBrains Mono,monospace}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.text-foreground{color:var(--foreground)}.text-primary{color:var(--primary)}.text-muted-foreground{color:var(--muted-foreground)}.text-destructive{color:var(--destructive)}.text-center{text-align:center}.leading-tight{line-height:1.25}.leading-relaxed{line-height:1.625}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.hidden{display:none}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-12{gap:3rem}.space-y-2>*+*{margin-top:.5rem}.space-y-3>*+*{margin-top:.75rem}.space-y-4>*+*{margin-top:1rem}.space-y-6>*+*{margin-top:1.5rem}.grid-cols-2{grid-template-columns:repeat(2,1fr)}.grid-cols-3{grid-template-columns:repeat(3,1fr)}@media (min-width: 768px){.md\:grid-cols-2{grid-template-columns:repeat(2,1fr)}.md\:grid-cols-3{grid-template-columns:repeat(3,1fr)}.md\:grid-cols-4{grid-template-columns:repeat(4,1fr)}.md\:block{display:block}}@media (min-width: 1024px){.lg\:grid-cols-2{grid-template-columns:repeat(2,1fr)}.lg\:grid-cols-3{grid-template-columns:repeat(3,1fr)}}.relative{position:relative}.absolute{position:absolute}.inset-0{top:0;right:0;bottom:0;left:0}.z-10{z-index:10}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-12{margin-top:3rem}.mt-16{margin-top:4rem}.px-4{padding-left:1rem;padding-right:1rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-20{padding-top:5rem;padding-bottom:5rem}.py-24{padding-top:6rem;padding-bottom:6rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.max-w-xl{max-width:36rem}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-lg{max-width:32rem}.mx-auto{margin-left:auto;margin-right:auto}.w-full{width:100%}.border-t{border-top-width:1px}.opacity-30{opacity:.3}svg{width:1.5rem;height:1.5rem}html{scroll-behavior:smooth}
/*# sourceMappingURL=/cdn/shop/t/27/assets/cad-request.css.map */
