/* ============================================================
   custom-acrylic-lightstick / style.css
   Static replacement for Tailwind CDN + inline <style>
   Sections:
     1.  Global Reset & Base
     2.  Custom Components
     3.  HubSpot Form (#hubspot-form-wrapper)
     4.  Animations
     5-27. Tailwind Utility Classes
    28-30. Responsive Breakpoints sm / md / lg
   ============================================================ */

/* ============================================================
   1. GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #030407;
  color: #e2e8f0;
  overflow-x: hidden;
  font-size: 1.15rem;
  line-height: 1.75;
}

/* ============================================================
   2. CUSTOM COMPONENTS
   ============================================================ */

/* B2B gradient-border callout block */
.b2b-gradient-border {
  background: linear-gradient(90deg, rgba(99,102,241,0.1) 0%, rgba(255,255,255,0.03) 100%);
  border-left: 4px solid #6366f1;
}

/* Tech spec table row styling */
.tech-spec-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.2s ease;
}
.tech-spec-table tr:hover {
  background: rgba(255,255,255,0.01);
}

/* ============================================================
   3. HUBSPOT FORM — #hubspot-form-wrapper
   ============================================================ */
#hubspot-form-wrapper .hs-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
#hubspot-form-wrapper .hs-form .hs-form-field { grid-column: span 1; }
#hubspot-form-wrapper .hs-form .hs-form-field.hs-fieldtype-textarea { grid-column: span 2; }
#hubspot-form-wrapper .hs-form label {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
#hubspot-form-wrapper .hs-form input,
#hubspot-form-wrapper .hs-form textarea,
#hubspot-form-wrapper .hs-form select {
  background: #0b0d12;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem;
  color: #fff;
  width: 100% !important;
  border-radius: 2px;
  font-size: 1.05rem;
}
#hubspot-form-wrapper .hs-form input:focus {
  border-color: #6366f1;
  outline: none;
}
#hubspot-form-wrapper .hs-form .hs-submit { grid-column: span 2; }
#hubspot-form-wrapper .hs-form .hs-button {
  background: #6366f1;
  color: #fff;
  padding: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ============================================================
   4. ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }

/* ============================================================
   5. POSITION / OVERFLOW
   ============================================================ */
.static   { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }

.top-0  { top: 0; }
.bottom-8 { bottom: 2rem; }
.right-8  { right: 2rem; }
.inset-0  { inset: 0; }

.z-10  { z-index: 10; }
.z-50  { z-index: 50; }

.overflow-hidden   { overflow: hidden; }
.overflow-x-auto   { overflow-x: auto; }
.overflow-x-hidden { overflow-x: hidden; }

/* ============================================================
   6. DISPLAY
   ============================================================ */
.block        { display: block; }
.inline-block { display: inline-block; }
.inline       { display: inline; }
.flex         { display: flex; }
.inline-flex  { display: inline-flex; }
.grid         { display: grid; }
.hidden       { display: none; }
.table        { display: table; }

/* ============================================================
   7. FLEX
   ============================================================ */
.flex-row     { flex-direction: row; }
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.flex-nowrap  { flex-wrap: nowrap; }
.flex-1       { flex: 1 1 0%; }
.flex-none    { flex: none; }
.shrink-0     { flex-shrink: 0; }

.items-start    { align-items: flex-start; }
.items-end      { align-items: flex-end; }
.items-center   { align-items: center; }
.items-stretch  { align-items: stretch; }

.justify-start   { justify-content: flex-start; }
.justify-end     { justify-content: flex-end; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around  { justify-content: space-around; }

.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-12 { gap: 3rem; }

.order-first { order: -9999; }
.order-last  { order: 9999; }

/* ============================================================
   8. GRID
   ============================================================ */
.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)); }
.grid-cols-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }

.col-span-1  { grid-column: span 1 / span 1; }
.col-span-2  { grid-column: span 2 / span 2; }
.col-span-4  { grid-column: span 4 / span 4; }
.col-span-5  { grid-column: span 5 / span 5; }
.col-span-7  { grid-column: span 7 / span 7; }
.col-span-8  { grid-column: span 8 / span 8; }
.col-span-12 { grid-column: span 12 / span 12; }

/* ============================================================
   9. SIZING — WIDTH
   ============================================================ */
.w-auto    { width: auto; }
.w-full    { width: 100%; }
.w-screen  { width: 100vw; }
.w-2       { width: 0.5rem; }
.w-6       { width: 1.5rem; }
.w-12      { width: 3rem; }
.w-16      { width: 4rem; }
.w-24      { width: 6rem; }
.w-1\/3    { width: 33.333333%; }
.w-1\/2    { width: 50%; }
.w-1\/4    { width: 25%; }

.min-w-0   { min-width: 0; }

.max-w-xl          { max-width: 36rem; }
.max-w-2xl         { max-width: 42rem; }
.max-w-3xl         { max-width: 48rem; }
.max-w-\[1000px\]  { max-width: 1000px; }
.max-w-\[1100px\]  { max-width: 1100px; }
.max-w-\[1440px\]  { max-width: 1440px; }

/* ============================================================
   10. SIZING — HEIGHT
   ============================================================ */
.h-auto    { height: auto; }
.h-full    { height: 100%; }
.h-screen  { height: 100vh; }
.h-2       { height: 0.5rem; }
.h-6       { height: 1.5rem; }
.h-12      { height: 3rem; }
.h-16      { height: 4rem; }
.h-22      { height: 5.5rem; }
.h-\[400px\] { height: 400px; }
.h-\[450px\] { height: 450px; }
.h-\[500px\] { height: 500px; }
.h-\[550px\] { height: 550px; }

/* ============================================================
   11. PADDING
   ============================================================ */
.p-4    { padding: 1rem; }
.p-6    { padding: 1.5rem; }
.p-8    { padding: 2rem; }

.px-6   { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8   { padding-left: 2rem;   padding-right: 2rem; }

.py-3   { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4   { padding-top: 1rem;    padding-bottom: 1rem; }
.py-6   { padding-top: 1.5rem;  padding-bottom: 1.5rem; }
.py-8   { padding-top: 2rem;    padding-bottom: 2rem; }
.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-32  { padding-top: 8rem;    padding-bottom: 8rem; }

.pt-2   { padding-top: 0.5rem; }
.pt-4   { padding-top: 1rem; }
.pt-8   { padding-top: 2rem; }

.pb-6   { padding-bottom: 1.5rem; }

/* first child selector */
.first\:pt-0:first-child { padding-top: 0; }

/* ============================================================
   12. MARGIN
   ============================================================ */
.mx-auto  { margin-left: auto; margin-right: auto; }
.mx-2     { margin-left: 0.5rem; margin-right: 0.5rem; }

.mt-0   { margin-top: 0; }
.mt-1   { margin-top: 0.25rem; }
.mt-2   { margin-top: 0.5rem; }
.mt-3   { margin-top: 0.75rem; }
.mt-8   { margin-top: 2rem; }

.mb-2   { margin-bottom: 0.5rem; }
.mb-12  { margin-bottom: 3rem; }
.mb-16  { margin-bottom: 4rem; }

.mr-2   { margin-right: 0.5rem; }

/* ============================================================
   13. SPACE (gap via child margins)
   ============================================================ */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12> * + * { margin-top: 3rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* ============================================================
   14. TYPOGRAPHY — SIZE
   ============================================================ */
.text-\[10px\]  { font-size: 10px; }
.text-\[11px\]  { font-size: 11px; }
.text-xs   { font-size: 0.75rem;  line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.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; }

/* ============================================================
   15. TYPOGRAPHY — WEIGHT / STYLE / TRANSFORM / ALIGN
   ============================================================ */
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 900; }

.italic        { font-style: italic; }
.uppercase     { text-transform: uppercase; }
.lowercase     { text-transform: lowercase; }
.capitalize    { text-transform: capitalize; }

.tracking-tight    { letter-spacing: -0.025em; }
.tracking-wide     { letter-spacing: 0.025em; }
.tracking-wider    { letter-spacing: 0.05em; }
.tracking-widest   { letter-spacing: 0.1em; }

.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-loose   { line-height: 2; }

.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

.text-transparent { color: transparent; }
.bg-clip-text     { -webkit-background-clip: text; background-clip: text; }

/* ============================================================
   16. COLORS — TEXT
   ============================================================ */
.text-white      { color: #ffffff; }
.text-black      { color: #000000; }
.text-slate-200  { color: #e2e8f0; }
.text-slate-300  { color: #cbd5e1; }
.text-slate-400  { color: #94a3b8; }
.text-slate-500  { color: #64748b; }
.text-slate-600  { color: #475569; }
.text-slate-700  { color: #334155; }
.text-indigo-400 { color: #818cf8; }
.text-indigo-500 { color: #6366f1; }
.text-indigo-600 { color: #4f46e5; }

/* ============================================================
   17. COLORS — BACKGROUND
   ============================================================ */
.bg-white         { background-color: #ffffff; }
.bg-black         { background-color: #000000; }
.bg-black\/40     { background-color: rgba(0,0,0,0.4); }
.bg-white\/\[0\.01\] { background-color: rgba(255,255,255,0.01); }
.bg-\[\#030407\]  { background-color: #030407; }
.bg-\[\#080a0f\]  { background-color: #080a0f; }
.bg-\[\#090b11\]  { background-color: #090b11; }
.bg-\[\#0b0d12\]  { background-color: #0b0d12; }
.bg-\[\#25D366\]  { background-color: #25D366; }
.bg-indigo-500    { background-color: #6366f1; }
.bg-indigo-600    { background-color: #4f46e5; }
.bg-indigo-700    { background-color: #4338ca; }
.bg-indigo-600\/10 { background-color: rgba(79,70,229,0.1); }
.bg-slate-900     { background-color: #0f172a; }

/* ============================================================
   18. BACKGROUND GRADIENT
   ============================================================ */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

:root {
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-indigo-400 { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129,140,248,0)); }
.from-indigo-500 { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99,102,241,0)); }
.from-indigo-600 { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79,70,229,0)); }
.from-slate-700  { --tw-gradient-from: #334155; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51,65,85,0)); }
.from-black      { --tw-gradient-from: #000;    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0,0,0,0)); }

.via-slate-200   { --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgba(226,232,240,0)); }
.via-slate-800   { --tw-gradient-stops: var(--tw-gradient-from), #1e293b, var(--tw-gradient-to, rgba(30,41,59,0)); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0,0,0,0)); }

.to-white        { --tw-gradient-to: #fff; }
.to-slate-900    { --tw-gradient-to: #0f172a; }
.to-indigo-600   { --tw-gradient-to: #4f46e5; }
.to-transparent  { --tw-gradient-to: transparent; }

/* ============================================================
   19. BORDER
   ============================================================ */
.border      { border-width: 1px; border-style: solid; }
.border-0    { border-width: 0; }
.border-b    { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t    { border-top-width: 1px; border-top-style: solid; }
.border-l    { border-left-width: 1px; border-left-style: solid; }
.border-r    { border-right-width: 1px; border-right-style: solid; }
.border-y    { border-top-width: 1px; border-top-style: solid; border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-2  { border-left-width: 2px; border-left-style: solid; }

.border-white\/5   { border-color: rgba(255,255,255,0.05); }
.border-white\/10  { border-color: rgba(255,255,255,0.10); }
.border-white\/20  { border-color: rgba(255,255,255,0.20); }
.border-white\/30  { border-color: rgba(255,255,255,0.30); }
.border-black      { border-color: #000; }
.border-indigo-500 { border-color: #6366f1; }
.border-indigo-500\/20 { border-color: rgba(99,102,241,0.20); }
.border-indigo-500\/30 { border-color: rgba(99,102,241,0.30); }
.border-slate-700  { border-color: #334155; }

.divide-y > * + *    { border-top-width: 1px; border-top-style: solid; }
.divide-white\/5 > * + * { border-color: rgba(255,255,255,0.05); }

.rounded-sm  { border-radius: 0.125rem; }
.rounded     { border-radius: 0.25rem; }
.rounded-md  { border-radius: 0.375rem; }
.rounded-lg  { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* ============================================================
   20. OPACITY
   ============================================================ */
.opacity-0   { opacity: 0; }
.opacity-50  { opacity: 0.5; }
.opacity-70  { opacity: 0.7; }
.opacity-80  { opacity: 0.8; }
.opacity-90  { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* ============================================================
   21. SHADOW
   ============================================================ */
.shadow      { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); }
.shadow-md   { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -2px rgba(0,0,0,0.3); }
.shadow-xl   { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5), 0 8px 10px -6px rgba(0,0,0,0.5); }
.shadow-2xl  { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8); }

/* ============================================================
   22. BACKDROP / FILTER
   ============================================================ */
.backdrop-blur-sm  { backdrop-filter: blur(4px); }
.backdrop-blur-md  { backdrop-filter: blur(12px); }
.backdrop-blur-lg  { backdrop-filter: blur(16px); }
.backdrop-blur-xl  { backdrop-filter: blur(24px); }

.blur        { filter: blur(8px); }
.blur-sm     { filter: blur(4px); }
.brightness-50  { filter: brightness(0.5); }
.brightness-75  { filter: brightness(0.75); }
.brightness-90  { filter: brightness(0.9); }
.brightness-110 { filter: brightness(1.1); }
.grayscale      { filter: grayscale(100%); }

/* ============================================================
   23. TRANSITION / TRANSFORM
   ============================================================ */
.transition         { transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-colors  { transition-property: color,background-color,border-color,text-decoration-color,fill,stroke; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-all     { transition-property: all; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-transform { transition-property: transform; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.duration-300       { transition-duration: 300ms; }

.scale-100  { transform: scale(1); }
.scale-105  { transform: scale(1.05); }
.scale-110  { transform: scale(1.1); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }

/* ============================================================
   24. OBJECT FIT
   ============================================================ */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center  { object-position: center; }

/* ============================================================
   25. HOVER STATES
   ============================================================ */
.hover\:text-white:hover       { color: #fff; }
.hover\:text-indigo-400:hover  { color: #818cf8; }
.hover\:text-slate-300:hover   { color: #cbd5e1; }
.hover\:bg-indigo-600:hover    { background-color: #4f46e5; }
.hover\:bg-indigo-700:hover    { background-color: #4338ca; }
.hover\:border-white:hover     { border-color: #fff; }
.hover\:border-indigo-500\/30:hover { border-color: rgba(99,102,241,0.30); }
.hover\:scale-105:hover        { transform: scale(1.05); }
.hover\:opacity-100:hover      { opacity: 1; }

/* ============================================================
   26. TABLE
   ============================================================ */
table { border-collapse: collapse; width: 100%; }
.w-full     { width: 100%; }
.text-left  { text-align: left; }
th, td { padding: 0; }

/* ============================================================
   27. MISCELLANEOUS
   ============================================================ */
.cursor-pointer { cursor: pointer; }
.select-none    { user-select: none; }
.pointer-events-none { pointer-events: none; }
.list-none      { list-style: none; }
.whitespace-nowrap  { white-space: nowrap; }
.truncate       { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sr-only        { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* border-l accent shorthand */
.pl-2 { padding-left: 0.5rem; }
.pl-4 { padding-left: 1rem; }

/* ============================================================
   28. RESPONSIVE — sm: (min-width: 640px)
   ============================================================ */
@media (min-width: 640px) {
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .sm\:col-span-5  { grid-column: span 5 / span 5; }
  .sm\:text-left   { text-align: left; }
  .sm\:flex        { display: flex; }
  .sm\:hidden      { display: none; }
  .sm\:block       { display: block; }
  .sm\:px-8        { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-24       { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:items-center { align-items: center; }
}

/* ============================================================
   29. RESPONSIVE — md: (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
  .md\:block       { display: block; }
  .md\:flex        { display: flex; }
  .md\:hidden      { display: none; }
  .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\:col-span-6  { grid-column: span 6 / span 6; }
  .md\:text-right  { text-align: right; }
  .md\:items-end   { align-items: flex-end; }
  .md\:items-center { align-items: center; }
  .md\:mt-0        { margin-top: 0; }

  /* HubSpot 768px collapse override */
  #hubspot-form-wrapper .hs-form { grid-template-columns: 1fr; }
  #hubspot-form-wrapper .hs-form .hs-form-field.hs-fieldtype-textarea { grid-column: span 1; }
  #hubspot-form-wrapper .hs-form .hs-submit { grid-column: span 1; }
}

/* ============================================================
   30. RESPONSIVE — lg: (min-width: 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .lg\:block       { display: block; }
  .lg\:flex        { display: flex; }
  .lg\:hidden      { display: none; }
  .lg\:inline-flex { display: inline-flex; }
  .lg\:grid        { display: grid; }

  .lg\:grid-cols-2  { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .lg\:grid-cols-3  { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12,minmax(0,1fr)); }

  .lg\:col-span-4  { grid-column: span 4 / span 4; }
  .lg\:col-span-5  { grid-column: span 5 / span 5; }
  .lg\:col-span-7  { grid-column: span 7 / span 7; }
  .lg\:col-span-8  { grid-column: span 8 / span 8; }

  .lg\:order-first { order: -9999; }

  .lg\:px-12  { padding-left: 3rem; padding-right: 3rem; }
  .lg\:py-24  { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32  { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:p-12   { padding: 3rem; }
  .lg\:mt-24  { margin-top: 6rem; }

  .lg\:text-xl   { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-4xl  { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl  { font-size: 3rem;    line-height: 1; }
  .lg\:text-6xl  { font-size: 3.75rem; line-height: 1; }
  .lg\:text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }

  .lg\:text-right  { text-align: right; }
  .lg\:text-center { text-align: center; }
  .lg\:text-left   { text-align: left; }

  .lg\:items-center { align-items: center; }
  .lg\:items-start  { align-items: flex-start; }

  .lg\:gap-12  { gap: 3rem; }

  .lg\:w-auto  { width: auto; }
  .lg\:w-full  { width: 100%; }

  /* Re-enable HubSpot 2-col at desktop */
  #hubspot-form-wrapper .hs-form { grid-template-columns: repeat(2,1fr); }
  #hubspot-form-wrapper .hs-form .hs-form-field.hs-fieldtype-textarea { grid-column: span 2; }
  #hubspot-form-wrapper .hs-form .hs-submit { grid-column: span 2; }
}
