/* ==================================================================
   Job Autopilot — shared stylesheet for the whole site.
   Vanilla CSS, no framework. Utility classes were hand-ported from the
   Tailwind set the markup uses, so no in-browser JIT compiler is needed.
   ================================================================== */

/* ============================================================= */
/* BASE                                                          */
/* ============================================================= */
:root{
  --bg:#060608;
  --text:#f5f5f7;
  --muted:#86868b;            /* Apple's signature secondary gray */
  --hair:rgba(255,255,255,.09);
  --glass:rgba(22,22,26,.55);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
::selection{ background:rgba(150,120,255,.35); }

h1,h2,h3{ letter-spacing:-.03em; line-height:1.08; }

/* Apple-Intelligence style iridescent text */
.iris{
  background:linear-gradient(100deg,#ff8ab6 0%,#c084fc 28%,#7aa2ff 55%,#54e6d0 80%,#ffd27a 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:200% 100%;
  animation:irisShift 8s ease-in-out infinite;
}
@keyframes irisShift{ 0%,100%{ background-position:0% 50% } 50%{ background-position:100% 50% } }

.metal{
  background:linear-gradient(180deg,#ffffff 0%,#c9c9d1 48%,#8f8f99 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
/* Gradient-clipped text only paints inside the element's box, so at tight
   line-heights descenders get cut off. Extending the paint box downward with
   padding (cancelled by a negative margin) keeps layout identical. */
.metal,.iris{ padding-bottom:.12em; margin-bottom:-.12em; }

/* ============================================================= */
/* AMBIENT BACKGROUND — soft aurora orbs drifting behind content */
/* ============================================================= */
.aurora{ position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden; contain:strict; }
.orb{ position:absolute; border-radius:50%; filter:blur(60px); opacity:.5;
      will-change:transform; transform:translateZ(0); }
.orb-1{ width:46vw; height:46vw; left:-10vw; top:-12vw;
        background:radial-gradient(circle at 30% 30%,#7c5cff,transparent 70%); animation:float1 18s ease-in-out infinite; }
.orb-2{ width:40vw; height:40vw; right:-8vw; top:6vw;
        background:radial-gradient(circle at 60% 40%,#ff5c9d,transparent 70%); opacity:.35; animation:float2 22s ease-in-out infinite; }
.orb-3{ width:38vw; height:38vw; left:28vw; bottom:-14vw;
        background:radial-gradient(circle at 50% 50%,#31c8b0,transparent 70%); opacity:.28; animation:float3 26s ease-in-out infinite; }
@keyframes float1{ 0%,100%{ transform:translate(0,0) } 50%{ transform:translate(6vw,4vw) } }
@keyframes float2{ 0%,100%{ transform:translate(0,0) } 50%{ transform:translate(-5vw,6vw) } }
@keyframes float3{ 0%,100%{ transform:translate(0,0) } 50%{ transform:translate(4vw,-5vw) } }

.grain{
  position:fixed; inset:0; z-index:2; pointer-events:none; opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================= */
/* GLASSMORPHISM                                                 */
/* ============================================================= */
.glass{
  background:var(--glass);
  border:1px solid var(--hair);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06), 0 20px 60px -20px rgba(0,0,0,.7);
}
.glass-blur{
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
}

/* ============================================================= */
/* BUTTONS                                                       */
/* ============================================================= */
.metal-btn{ position:relative; display:inline-flex; border-radius:11px; padding:0; overflow:hidden;
            transition:transform .25s ease, box-shadow .25s ease; }
.metal-btn:hover{ transform:translateY(-1px); }
.metal-btn__inner{
  position:relative; border-radius:11px; padding:.85rem 1.7rem; font-weight:600; font-size:.95rem;
  color:#fff;
  background:linear-gradient(135deg,#8b6cff,#ff5c9d);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.25), 0 10px 26px -10px rgba(124,92,255,.8);
  transition:box-shadow .25s ease, filter .25s ease;
}
.metal-btn:hover .metal-btn__inner{ filter:brightness(1.06); box-shadow:inset 0 1px 0 rgba(255,255,255,.3), 0 16px 34px -10px rgba(124,92,255,.95); }

.ghost-btn{ display:inline-flex; border:1px solid var(--hair); border-radius:11px; padding:.85rem 1.6rem; font-weight:500; font-size:.95rem;
            color:var(--text); background:rgba(255,255,255,.02); transition:background .25s,border-color .25s; }
.ghost-btn:hover{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.2); }

/* ============================================================= */
/* NAV                                                           */
/* ============================================================= */
.site-header .glass{ transition:box-shadow .3s ease, background .3s ease; }
.site-header.scrolled .glass{ box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 24px 70px -24px rgba(0,0,0,.85); }
.nav-toggle{ display:inline-grid; place-items:center; width:2.4rem; height:2.4rem; border-radius:9px;
             border:1px solid var(--hair); background:rgba(255,255,255,.02); color:var(--text); cursor:pointer; }
.nav-toggle:hover{ background:rgba(255,255,255,.06); }
.nav-menu{ display:none; flex-direction:column; gap:.25rem; padding:.5rem .5rem .75rem; border-top:1px solid var(--hair); }
.nav-menu.open{ display:flex; }
.nav-menu a{ padding:.7rem .8rem; border-radius:9px; color:var(--muted); font-size:.95rem; }
.nav-menu a:hover{ background:rgba(255,255,255,.05); color:var(--text); }
.nav-menu .metal-btn{ margin-top:.4rem; }
.nav-menu .metal-btn__inner{ width:100%; justify-content:center; }
@media (min-width:768px){ .nav-menu{ display:none !important; } }

/* ============================================================= */
/* PRODUCT MOCKUP (landing)                                       */
/* ============================================================= */
.browser{ border-radius:14px; overflow:hidden; }
.dot{ width:11px; height:11px; border-radius:50%; }
.ext-panel{
  background:linear-gradient(180deg,#17181d,#0d0e12);
  border:1px solid var(--hair); border-radius:12px;
  box-shadow:0 30px 80px -30px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.05);
}
.field{ background:rgba(255,255,255,.04); border:1px solid var(--hair); border-radius:7px;
        display:flex; align-items:center; min-height:2.25rem; padding:.4rem .65rem;
        font-size:.8rem; color:rgba(255,255,255,.85);
        transition:border-color .3s ease, box-shadow .3s ease; }
.field.done{ border-color:rgba(120,220,170,.4); box-shadow:0 0 0 1px rgba(120,220,170,.15); }
.field .val{ opacity:0; transition:opacity .3s ease; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.field.done .val{ opacity:1; }
.field.area{ align-items:flex-start; min-height:5rem; }
.field.area .val{ white-space:normal; line-height:1.5; }
html:not(.js) .field .val{ opacity:1; }
.demo-label{ font-size:11px; font-weight:600; color:rgba(255,255,255,.45); margin-bottom:.375rem; text-align:left; }
#demoStatus .ok{ color:#6ee7b7; }
.tag{ border:1px solid var(--hair); background:rgba(255,255,255,.03); }
.mock-grid{ display:grid; }
@media (min-width:768px){ .mock-grid{ grid-template-columns:.92fr 1.08fr; } }
.shot{ text-align:left; }
.shot img{ width:100%; height:auto; border-radius:12px;
           border:1px solid rgba(255,255,255,.08);
           box-shadow:0 24px 60px -24px rgba(0,0,0,.85); }
.shot-cap{ font-size:12px; color:var(--muted); line-height:1.5; margin-bottom:.6rem; }
.shot-cap b{ display:block; color:var(--text); font-weight:600; margin-bottom:.1rem; }

/* ============================================================= */
/* REVEAL SYSTEM                                                  */
/* ============================================================= */
html.js .reveal{ opacity:0; transform:translateY(24px);
                 transition:opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in{ opacity:1; transform:none; }
html.js .hero-line{ opacity:0; transform:translateY(36px);
                    transition:opacity .9s ease, transform 1s cubic-bezier(.2,.8,.2,1); }
html.js .hero-line.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  html.js .reveal, html.js .hero-line{ opacity:1 !important; transform:none !important; }
  .iris,.orb{ animation:none !important; }
  html{ scroll-behavior:auto; }
}

.link-muted{ color:var(--muted); transition:color .2s; }
.link-muted:hover{ color:var(--text); }

.fcard{ transition:transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s; }
.fcard:hover{ transform:translateY(-6px); border-color:rgba(255,255,255,.18); }

/* ============================================================= */
/* SHARED PAGE COMPONENTS (used across the multi-page site)       */
/* ============================================================= */

/* eyebrow + section header helpers */
.eyebrow{ font-size:.8rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; }

/* generic card */
.card{ background:var(--glass); border:1px solid var(--hair); border-radius:14px;
       box-shadow:inset 0 1px 0 rgba(255,255,255,.06), 0 20px 60px -20px rgba(0,0,0,.7); }

/* soft brand-tinted icon tile */
.icon-tile{ display:grid; place-items:center; width:3rem; height:3rem; border-radius:10px;
            background:linear-gradient(135deg,rgba(124,92,255,.25),rgba(124,92,255,.05));
            border:1px solid rgba(124,92,255,.3); }

/* pill / badge */
.badge{ display:inline-flex; align-items:center; gap:.4rem; border:1px solid var(--hair);
        background:rgba(255,255,255,.03); border-radius:999px; padding:.35rem .8rem;
        font-size:.75rem; font-weight:500; color:var(--muted); }

/* PROSE — long-form copy for legal & article pages */
.prose{ color:var(--muted); font-size:1rem; line-height:1.75; max-width:70ch; }
.prose h2{ color:var(--text); font-size:1.6rem; font-weight:700; letter-spacing:-.02em; margin:2.4rem 0 .9rem; }
.prose h3{ color:var(--text); font-size:1.15rem; font-weight:600; margin:1.8rem 0 .6rem; }
.prose p{ margin:0 0 1.05rem; }
.prose ul,.prose ol{ margin:0 0 1.2rem; padding-left:1.2rem; }
.prose ul{ list-style:disc; }
.prose ol{ list-style:decimal; }
.prose li{ margin:.4rem 0; padding-left:.2rem; }
.prose li::marker{ color:rgba(124,92,255,.7); }
.prose a{ color:#a9b6ff; text-decoration:underline; text-underline-offset:2px; }
.prose a:hover{ color:#c9d2ff; }
.prose strong{ color:var(--text); font-weight:600; }
.prose code{ background:rgba(255,255,255,.06); border:1px solid var(--hair); border-radius:6px;
             padding:.1rem .4rem; font-size:.85em; font-family:ui-monospace,SFMono-Regular,Menlo,monospace; }
.prose hr{ border:0; border-top:1px solid var(--hair); margin:2.2rem 0; }

/* FAQ — native <details>/<summary>, zero JS */
details.faq{ border:1px solid var(--hair); background:var(--glass); border-radius:12px;
             padding:0 1.25rem; margin-bottom:.75rem; transition:border-color .2s; }
details.faq[open]{ border-color:rgba(124,92,255,.35); }
details.faq summary{ list-style:none; cursor:pointer; padding:1.15rem 0; font-weight:600;
                     color:var(--text); display:flex; align-items:center; justify-content:space-between; gap:1rem; }
details.faq summary::-webkit-details-marker{ display:none; }
details.faq summary::after{ content:""; width:11px; height:11px; flex:none;
                            border-right:2px solid var(--muted); border-bottom:2px solid var(--muted);
                            transform:rotate(45deg); transition:transform .25s; margin-right:.2rem; }
details.faq[open] summary::after{ transform:rotate(-135deg); }
details.faq .faq-body{ color:var(--muted); line-height:1.7; padding:0 0 1.2rem; max-width:66ch; }
details.faq .faq-body a{ color:#a9b6ff; text-decoration:underline; }

/* PRICING cards */
.price-card{ position:relative; display:flex; flex-direction:column; height:100%;
             background:var(--glass); border:1px solid var(--hair); border-radius:16px; padding:2rem; }
.price-card--featured{ border-color:rgba(124,92,255,.5);
             box-shadow:0 0 0 1px rgba(124,92,255,.25), 0 30px 80px -30px rgba(124,92,255,.4); }
.price-amount{ font-size:3rem; font-weight:800; letter-spacing:-.03em; line-height:1; }
.price-card ul{ display:flex; flex-direction:column; gap:.7rem; margin:1.5rem 0; }
.price-card li{ display:flex; align-items:flex-start; gap:.6rem; color:var(--muted); font-size:.92rem; line-height:1.5; }
.price-card li svg{ flex:none; margin-top:.15rem; }

/* COMPARISON / spec table */
.ftable{ width:100%; border-collapse:collapse; font-size:.92rem; }
.ftable th,.ftable td{ text-align:left; padding:.85rem 1rem; border-bottom:1px solid var(--hair); }
.ftable thead th{ color:var(--text); font-weight:600; font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; }
.ftable tbody td{ color:var(--muted); }
.ftable tbody tr:hover{ background:rgba(255,255,255,.02); }
.ftable td:not(:first-child),.ftable th:not(:first-child){ text-align:center; }

/* STEP row (how it works) */
.step-num{ display:grid; place-items:center; width:2.6rem; height:2.6rem; flex:none; border-radius:12px;
           font-weight:700; background:linear-gradient(135deg,#7c5cff,#ff5c9d); color:#fff; }

/* avatar */
.avatar{ width:3.5rem; height:3.5rem; border-radius:50%; display:grid; place-items:center;
         font-weight:700; color:#fff; background:linear-gradient(135deg,#7c5cff,#ff5c9d); }

/* footer columns */
.footer-grid{ display:grid; grid-template-columns:1fr; gap:2.5rem; }
@media (min-width:768px){ .footer-grid{ grid-template-columns:1.6fr 1fr 1fr 1fr; } }
.footer-col h4{ color:var(--text); font-size:.8rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; margin-bottom:1rem; }
.footer-col a{ display:block; color:var(--muted); font-size:.9rem; padding:.3rem 0; transition:color .2s; }
.footer-col a:hover{ color:var(--text); }

/* ============================================================= */
/* STATIC UTILITY LAYER                                           */
/* ============================================================= */

/* minimal reset */
h1,h2,h3,h4,h5,h6,p,figure{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; height:auto; }
svg{ display:block; }

/* display / position */
.block{display:block}.inline-block{display:inline-block}
.flex{display:flex}.inline-flex{display:inline-flex}
.grid{display:grid}.inline-grid{display:inline-grid}
.hidden{display:none}
.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}
.overflow-hidden{overflow:hidden}
.z-10{z-index:10}.z-50{z-index:50}
.top-4{top:1rem}.inset-x-0{left:0;right:0}.-top-6{top:-1.5rem}.-right-5{right:-1.25rem}

/* flex / grid */
.flex-1{flex:1 1 0%}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}
.items-center{align-items:center}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-baseline{align-items:baseline}
.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-start{justify-content:flex-start}
.place-items-center{place-items:center}
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.gap-0{gap:0}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}
.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-7{gap:1.75rem}.gap-8{gap:2rem}.gap-10{gap:2.5rem}.gap-12{gap:3rem}
.space-y-2>*+*{margin-top:.5rem}.space-y-3>*+*{margin-top:.75rem}.space-y-4>*+*{margin-top:1rem}
.space-y-5>*+*{margin-top:1.25rem}.space-y-6>*+*{margin-top:1.5rem}.space-y-8>*+*{margin-top:2rem}

/* sizing */
.w-full{width:100%}.w-px{width:1px}.w-7{width:1.75rem}.w-8{width:2rem}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}
.w-14{width:3.5rem}.w-16{width:4rem}.w-20{width:5rem}.w-24{width:6rem}.w-\[220px\]{width:220px}
.h-2\.5{height:.625rem}.h-3{height:.75rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-10{height:2.5rem}.h-11{height:2.75rem}
.h-9{height:2.25rem}.h-12{height:3rem}.h-16{height:4rem}.h-20{height:5rem}.h-auto{height:auto}
.min-h-screen{min-height:100vh}
.max-w-sm{max-width:24rem}.max-w-md{max-width:28rem}.max-w-lg{max-width:32rem}.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-6xl{max-width:72rem}.max-w-7xl{max-width:80rem}.max-w-\[320px\]{max-width:320px}

/* margin */
.mx-auto{margin-left:auto;margin-right:auto}
.mb-1{margin-bottom:.25rem}.mb-1\.5{margin-bottom:.375rem}.mb-2{margin-bottom:.5rem}
.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}
.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-20{margin-bottom:5rem}
.mt-\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}
.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-7{margin-top:1.75rem}.mt-8{margin-top:2rem}.mt-10{margin-top:2.5rem}.mt-12{margin-top:3rem}.mt-16{margin-top:4rem}.mt-20{margin-top:5rem}

/* padding */
.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-7{padding:1.75rem}.p-8{padding:2rem}.p-10{padding:2.5rem}
.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}
.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}
.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}
.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}
.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-16{padding-top:4rem;padding-bottom:4rem}
.py-20{padding-top:5rem;padding-bottom:5rem}.py-24{padding-top:6rem;padding-bottom:6rem}.py-28{padding-top:7rem;padding-bottom:7rem}.py-32{padding-top:8rem;padding-bottom:8rem}
.pl-5{padding-left:1.25rem}.pr-2{padding-right:.5rem}
.pt-28{padding-top:7rem}.pt-32{padding-top:8rem}.pt-36{padding-top:9rem}.pt-40{padding-top:10rem}.pt-44{padding-top:11rem}
.pb-16{padding-bottom:4rem}.pb-20{padding-bottom:5rem}.pb-24{padding-bottom:6rem}

/* typography */
.text-xs{font-size:.75rem;line-height:1rem}.text-sm{font-size:.875rem;line-height:1.25rem}
.text-\[13px\]{font-size:13px}.text-\[15px\]{font-size:15px}
.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}
.text-xl{font-size:1.25rem;line-height:1.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}
.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}
.text-5xl{font-size:3rem;line-height:1}.text-6xl{font-size:3.75rem;line-height:1}.text-\[11px\]{font-size:11px}
.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.font-extrabold{font-weight:800}
.leading-none{line-height:1}.leading-tight{line-height:1.15}.leading-snug{line-height:1.35}.leading-relaxed{line-height:1.625}
.text-white{color:#fff}.text-white\/30{color:rgba(255,255,255,.3)}.text-white\/40{color:rgba(255,255,255,.4)}
.text-white\/50{color:rgba(255,255,255,.5)}.text-white\/60{color:rgba(255,255,255,.6)}.text-white\/70{color:rgba(255,255,255,.7)}
.text-white\/75{color:rgba(255,255,255,.75)}.text-white\/80{color:rgba(255,255,255,.8)}
.text-white\/85{color:rgba(255,255,255,.85)}.text-white\/90{color:rgba(255,255,255,.9)}
.text-\[var\(--muted\)\]{color:var(--muted)}.text-\[\#7c5cff\]{color:#7c5cff}
.text-\[\#e9eaf0\]{color:#e9eaf0}.text-emerald-300{color:#6ee7b7}
.line-through{text-decoration-line:line-through}.decoration-white\/20{text-decoration-color:rgba(255,255,255,.2)}
.underline{text-decoration:underline;text-underline-offset:2px}
.uppercase{text-transform:uppercase}.tracking-tight{letter-spacing:-.025em}.tracking-widest{letter-spacing:.1em}
.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}
.whitespace-nowrap{white-space:nowrap}

/* backgrounds / borders / radius / effects */
.bg-\[\#0b0c10\]{background-color:#0b0c10}.bg-white\/15{background-color:rgba(255,255,255,.15)}
.bg-white\/\[\.02\]{background-color:rgba(255,255,255,.02)}.bg-white\/\[\.03\]{background-color:rgba(255,255,255,.03)}
.bg-white\/\[\.04\]{background-color:rgba(255,255,255,.04)}.bg-white\/\[\.06\]{background-color:rgba(255,255,255,.06)}
.border{border-width:1px;border-style:solid;border-color:var(--hair)}
.border-b{border-bottom-width:1px;border-bottom-style:solid;border-color:var(--hair)}
.border-t{border-top-width:1px;border-top-style:solid;border-color:var(--hair)}
.border-white\/10{border-color:rgba(255,255,255,.1)}
.rounded-\[4px\]{border-radius:4px}.rounded-\[6px\]{border-radius:6px}.rounded-\[7px\]{border-radius:7px}
.rounded-\[8px\]{border-radius:8px}.rounded-\[9px\]{border-radius:9px}.rounded-\[10px\]{border-radius:10px}.rounded-\[11px\]{border-radius:11px}
.rounded-\[12px\]{border-radius:12px}.rounded-\[14px\]{border-radius:14px}.rounded-\[16px\]{border-radius:16px}
.rounded-\[18px\]{border-radius:18px}.rounded-\[20px\]{border-radius:20px}.rounded-full{border-radius:999px}
.ring-1{outline:1px solid var(--ring,rgba(0,0,0,.05));outline-offset:-1px}.ring-black\/5{--ring:rgba(0,0,0,.05)}
.shadow-\[0_30px_70px_-20px_rgba\(0\2c 0\2c 0\2c \.85\)\]{box-shadow:0 30px 70px -20px rgba(0,0,0,.85)}
.perspective-\[1600px\]{perspective:1600px}

/* responsive — sm (>=640px) */
@media (min-width:640px){
  .sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sm\:flex-row{flex-direction:row}
  .sm\:text-5xl{font-size:3rem;line-height:1}
}
/* responsive — md (>=768px) */
@media (min-width:768px){
  .md\:block{display:block}.md\:inline-flex{display:inline-flex}.md\:flex{display:flex}.md\:hidden{display:none}.md\:flex-row{flex-direction:row}
  .md\:justify-end{justify-content:flex-end}
  .md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
  .md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
  .md\:grid-cols-\[1fr_minmax\(300px\2c 340px\)\]{grid-template-columns:1fr minmax(300px,340px)}
  .md\:p-9{padding:2.25rem}.md\:p-16{padding:4rem}.md\:pr-7{padding-right:1.75rem}
  .md\:pt-8{padding-top:2rem}.md\:pt-52{padding-top:13rem}
  .md\:py-32{padding-top:8rem;padding-bottom:8rem}
  .md\:text-lg{font-size:1.125rem;line-height:1.75rem}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}
  .md\:text-3xl{font-size:1.875rem;line-height:2.25rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}
  .md\:text-5xl{font-size:3rem;line-height:1}.md\:text-6xl{font-size:3.75rem;line-height:1}
  .md\:text-7xl{font-size:4.5rem;line-height:1}
}
/* responsive — lg (>=1024px) */
@media (min-width:1024px){
  .lg\:text-\[5\.4rem\]{font-size:5.4rem;line-height:1}
  .lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
}
