/* ==========================================================================
   GFSL — Main Tailwind/SCSS source
   --------------------------------------------------------------------------
   Source of truth: DESIGN-SYSTEM.md
   Build target: dist/main.css
   Tailwind v3-compatible syntax is intentionally retained because the
   supplied theme already uses a Tailwind v3 configuration.
   ========================================================================== */


@layer base {
  :root {
  --color-lit: #a855f7;
    --gfsl-purple: #a855f7;
    --gfsl-lime: #DDBBFE;
    --gfsl-lime-dark: #C084FC;
    --gfsl-black: #050505;
    --gfsl-black-soft: #0B0B0B;
    --gfsl-surface: #111111;
    --gfsl-surface-transparent: rgba(17, 17, 17, 0.3);
    --gfsl-surface-2: #171717;
    --gfsl-white: #FFFFFF;
    --gfsl-muted: #B3B3B3;
    --gfsl-muted-dark: #808080;
    --gfsl-border: #303030;
    --gfsl-border-purple: #a855f7;
    --gfsl-border-soft: #222222;
    --gfsl-error: #DDBBFE;
    --gfsl-success: #C084FC;
    --gfsl-radius-sm: 4px;
    --gfsl-radius: 6px;
    --gfsl-radius-lg: 8px;
    --gfsl-container: 1440px;
    --gfsl-content: 1200px;
    --gfsl-transition: 220ms ease-out;
  }

  html {
    margin: 0;
    padding: 0;
    background: var(--gfsl-black);
    color: var(--gfsl-white);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    margin: 0;
    background: var(--gfsl-black);
    color: var(--gfsl-white);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  img,
  svg,
  video {
    display: block;
    max-width: 100%;
  }

  img {
    height: auto;
  }

  button,
  input,
  optgroup,
  select,
  textarea {
    font: inherit;
  }

  button,
  input,
  select,
  textarea {
    border-radius: var(--gfsl-radius);
  }

  a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  a:hover {
    color: var(--gfsl-lime);
  }

  :focus-visible {
    outline: 2px solid var(--gfsl-lime);
    outline-offset: 3px;
  }

  ::selection {
    background: var(--gfsl-lime);
    color: var(--gfsl-black);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 1rem;
    color: var(--gfsl-white);
    font-family: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.015em;
    text-transform: uppercase;
  }

  h1 {
    font-size: clamp(2.5rem, 7vw, 5.75rem);
  }

  h2 {
    font-size: clamp(2.125rem, 5vw, 3.5rem);
  }

  h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  }

  h4 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  }

  h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
  }

  h6 {
    font-size: 1.125rem;
  }
  h3 span{
    color:var(--gfsl-border-purple);
  }
  p {
    margin: 0 0 1rem;
    color: var(--gfsl-muted);
  }

  ul,
  ol {
    margin: 0 0 1.5rem;
    padding-left: 1.25rem;
    color: var(--gfsl-muted);
  }

  li {
    margin-bottom: .5rem;
  }

  li::marker {
    color: var(--gfsl-lime);
  }

  blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--gfsl-lime);
    background: var(--gfsl-surface);
    color: var(--gfsl-white);
    font-family: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.05;
    text-transform: uppercase;
  }

  hr {
    margin: 2.5rem 0;
    border: 0;
    border-top: 1px solid var(--gfsl-border-soft);
  }

  code,
  pre,
  kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  }

  pre {
    overflow-x: auto;
    padding: 1rem;
    border: 1px solid var(--gfsl-border);
    border-radius: var(--gfsl-radius);
    background: var(--gfsl-surface);
  }
}

@layer components {
  /* ------------------------------------------------------------------------
     Layout primitives
     ------------------------------------------------------------------------ */
  .gfsl-container {
    width: min(100% - 40px, var(--gfsl-container));
    margin-inline: auto;
  }

  .gfsl-content-container {
    width: min(100% - 40px, var(--gfsl-content));
    margin-inline: auto;
  }

  .gfsl-page-shell {
    padding-block: clamp(3.5rem, 8vw, 7.5rem);
  }

  .gfsl-section {
    position: relative;
    padding-block: clamp(3.5rem, 8vw, 1.5rem);
  }

  .gfsl-section--tight {
    padding-block: clamp(1.5rem, 5vw, 1rem);
  }

  .gfsl-section--flush {
    padding-block: 0;
  }

  .gfsl-section__inner {
    width: min(100% - 40px, var(--gfsl-container));
    margin-inline: auto;
  }

  .eyebrow {
    margin: 0 0 .75rem;
    color: var(--gfsl-lime);
    font-family: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .section-heading {
    max-width: 780px;
    margin-bottom: 2rem;
  }

  .section-heading p:last-child {
    margin-bottom: 0;
  }

  .text-lime,
  .highlight,
  .gfsl-highlight {
    color: var(--gfsl-lime);
  }

  .gfsl-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
  }

  /* ------------------------------------------------------------------------
     Buttons
     ------------------------------------------------------------------------ */
  .btn-primary,
  .btn-secondary {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    border: 1px solid transparent;
    border-radius: var(--gfsl-radius);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .8125rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .02em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--gfsl-transition), border-color var(--gfsl-transition), color var(--gfsl-transition), transform var(--gfsl-transition);
  }

  .btn-primary {
    background: var(--gfsl-purple);
    color: var(--gfsl-black);
  }
  .btn-big{
    width:100%!important;
    
    max-width: 560px;
    margin: 0 auto;
    display: table;
  }
  .btn-primary:hover {
    background: var(--gfsl-lime-dark);
    color: var(--gfsl-black);
    transform: translateY(-1px);
  }

  .btn-secondary {
    border-color: var(--gfsl-border);
    background: var(--gfsl-surface);
    color: var(--gfsl-white);
  }

  .btn-secondary:hover {
    border-color: var(--gfsl-lime);
    background: var(--gfsl-black-soft);
    color: var(--gfsl-lime);
  }

  .text-link {
    color: var(--gfsl-lime);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
  }

  .text-link:hover {
    color: var(--gfsl-white);
  }

  /* ------------------------------------------------------------------------
     Header / navigation
     ------------------------------------------------------------------------ */
  
  .site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--gfsl-border-soft);
   
  }

  .site-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .site-branding {
    flex: 0 0 auto;
  }

  .site-branding .custom-logo-link,
  .site-branding .custom-logo {
    display: block;
  }

  .site-branding .custom-logo {
    width: auto;
    max-width: 150px;
    max-height: 52px;
  }

  .site-title {
    color: var(--gfsl-white);
    font-family: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
  }

  .main-navigation {
    margin-left: auto;
  }

  .main-navigation ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .main-navigation li {
    margin: 0;
  }

  .main-navigation a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: .5rem .25rem;
    color: var(--gfsl-white);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--gfsl-transition);
  }

  .main-navigation a:hover,
  .main-navigation .current-menu-item > a,
  .main-navigation .current-menu-ancestor > a {
    color: var(--gfsl-lime);
  }

  .site-header__cta {
    flex: 0 0 auto;
    min-height: 40px;
    padding: .65rem 1rem;
    font-size: .6875rem;
  }

  .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--gfsl-border);
    background: var(--gfsl-surface);
    color: var(--gfsl-white);
    cursor: pointer;
  }

  /* ------------------------------------------------------------------------
     Footer
     ------------------------------------------------------------------------ */
  .site-footer {
    border-top: 1px solid var(--gfsl-border-soft);
    background: var(--gfsl-black-soft);
  }

  .site-footer__inner {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(150px, 1fr));
    gap: 2rem;
    padding-block: 4rem;
  }

  .site-footer__brand .site-title {
    display: inline-block;
    margin-bottom: .75rem;
  }

  .site-footer__brand p {
    max-width: 320px;
    margin: 0;
    font-size: .875rem;
  }

  .site-footer__nav ul,
  .site-footer .menu {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-footer__nav li {
    margin-bottom: .5rem;
  }

  .site-footer__nav a {
    color: var(--gfsl-muted);
    font-size: .8125rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
  }

  .site-footer__nav a:hover {
    color: var(--gfsl-lime);
  }

  .site-footer .widget-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }

  .site-footer__bottom {
    padding-block: 1.25rem;
    border-top: 1px solid var(--gfsl-border-soft);
  }

  .site-footer__bottom p {
    margin: 0;
    font-size: .75rem;
    color: var(--gfsl-muted-dark);
  }

  /* ------------------------------------------------------------------------
     Content / article typography
     ------------------------------------------------------------------------ */
  .gfsl-prose {
    max-width: 820px;
    color: var(--gfsl-muted);
  }

  .gfsl-prose > *:first-child {
    margin-top: 0;
  }

  .gfsl-prose > *:last-child {
    margin-bottom: 0;
  }

  .gfsl-prose h1,
  .gfsl-prose h2,
  .gfsl-prose h3,
  .gfsl-prose h4,
  .gfsl-prose h5,
  .gfsl-prose h6 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }

  .gfsl-prose h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
  .gfsl-prose h2 { font-size: clamp(2rem, 4vw, 3rem); }
  .gfsl-prose h3 { font-size: clamp(1.625rem, 3vw, 2.25rem); }
  .gfsl-prose h4 { font-size: clamp(1.375rem, 2vw, 1.75rem); }
  .gfsl-prose h5 { font-size: 1.375rem; }
  .gfsl-prose h6 { font-size: 1.125rem; }

  .gfsl-prose p,
  .gfsl-prose li {
    font-size: clamp(.9375rem, 1.2vw, 1.0625rem);
    line-height: 1.75;
  }

  .gfsl-prose p + p {
    margin-top: 1.25rem;
  }

  .gfsl-prose ul,
  .gfsl-prose ol {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .gfsl-prose a {
    color: var(--gfsl-lime);
    font-weight: 600;
  }

  .gfsl-prose a:hover {
    color: var(--gfsl-white);
  }

  .gfsl-prose strong,
  .gfsl-prose b {
    color: var(--gfsl-white);
    font-weight: 700;
  }

  .gfsl-prose figure,
  .gfsl-prose .wp-block-image {
    margin: 2rem 0;
  }

  .gfsl-prose figcaption {
    margin-top: .5rem;
    color: var(--gfsl-muted-dark);
    font-size: .75rem;
  }

  .gfsl-prose table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: var(--gfsl-surface);
  }

  .gfsl-prose th,
  .gfsl-prose td {
    padding: .75rem 1rem;
    border: 1px solid var(--gfsl-border);
    text-align: left;
  }

  .gfsl-prose th {
    color: var(--gfsl-white);
    font-family: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
  }

  .entry-header {
    max-width: 920px;
    margin-bottom: 2rem;
  }

  .entry-title,
  .page-title {
    max-width: 900px;
  }

  .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
    color: var(--gfsl-muted-dark);
    font-size: .75rem;
  }

  .entry-thumbnail {
    margin: 0 0 2.5rem;
    overflow: hidden;
    border: 1px solid var(--gfsl-border);
    border-radius: var(--gfsl-radius-lg);
  }

  .entry-thumbnail img {
    width: 100%;
  }

  .entry-footer {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gfsl-border-soft);
    color: var(--gfsl-muted);
    font-size: .8125rem;
  }

  /* ------------------------------------------------------------------------
     Cards / archives
     ------------------------------------------------------------------------ */
  .post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .post-card {
    overflow: hidden;
    border: 1px solid var(--gfsl-border);
    border-radius: var(--gfsl-radius-lg);
    background: var(--gfsl-surface);
  }

  .post-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--gfsl-black-soft);
  }

  .post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease-out;
  }

  .post-card:hover .post-card__media img {
    transform: scale(1.02);
  }

  .post-card__body {
    padding: 1.5rem;
  }

  .post-card__title {
    margin-bottom: .75rem;
    font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  }

  .post-card__title a {
    text-decoration: none;
  }

  .post-card__excerpt {
    margin-bottom: 1rem;
    font-size: .875rem;
  }

  .archive-header {
    margin-bottom: 3rem;
  }

  .archive-description {
    margin-top: 1rem;
  }

  .content-grid,
  .single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 4rem;
  }

  .widget-area {
    min-width: 0;
  }

  .widget {
    margin-bottom: 2rem;
    padding: 1.25rem;
    border: 1px solid var(--gfsl-border);
    border-radius: var(--gfsl-radius-lg);
    background: var(--gfsl-surface);
  }

  .widget-title {
    font-size: 1.5rem;
  }

  .widget ul {
    margin-bottom: 0;
  }

  /* ------------------------------------------------------------------------
     Hero
     ------------------------------------------------------------------------ */
  .gfsl-hero {
    position: relative;
    min-height: min(760px, 82vh);
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--gfsl-black);
    background-image: linear-gradient(90deg, rgba(5, 5, 5, .78), rgba(5, 5, 5, .38)), var(--gfsl-hero-image);
    background-position: center;
    background-size: cover;
  }

  .gfsl-hero__content {
    position: relative;
    z-index: 2;
    padding-block: 5rem;
  }

  .gfsl-hero__content h1 {
    max-width: 850px;
    margin-bottom: 1.25rem;
  }

  /* ------------------------------------------------------------------------
     Forms — Contact Form 7, using native CF7 classes
     ------------------------------------------------------------------------ */
  .gfsl-form,
  .wpcf7 {
    width: 100%;
  }
  .gfsl-form.bordered{
    border-radius: 1rem;
    border-color: white;
    border: solid 1px white;
    padding: 28px 30px 10px 30px;
  }
  .gfsl-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gfsl-form-field {
    min-width: 0;
  }

  .gfsl-form-field--full {
    grid-column: 1 / -1;
  }

  .gfsl-form label,
  .wpcf7-form label {
    display: block;
    margin-bottom: .5rem;
    color: var(--gfsl-white);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1.4;
  }
.wpcf7-form label.w-50:nth-of-type(odd) {
 
  padding-right: 10px;
}
.wpcf7-form label.w-50:nth-of-type(even) {
 
  padding-left: 10px;
}
  .gfsl-form input:not([type='checkbox']):not([type='radio']):not([type='submit']),
  .gfsl-form select,
  .gfsl-form textarea,
  .wpcf7-form-control.wpcf7-text,
  .wpcf7-form-control.wpcf7-email,
  .wpcf7-form-control.wpcf7-tel,
  .wpcf7-form-control.wpcf7-url,
  .wpcf7-form-control.wpcf7-number,
  .wpcf7-form-control.wpcf7-date,
  .wpcf7-form-control.wpcf7-select,
  .wpcf7-form-control.wpcf7-textarea,
  .wpcf7-form-control.wpcf7-quiz {
    width: 100%;
    min-height: 48px;
    padding: .75rem .875rem;
    border: 1px solid var(--gfsl-border);
    border-radius: var(--gfsl-radius);
    outline: 0;
    background: var(--gfsl-surface-transparent);
    color: var(--gfsl-white);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .875rem;
    line-height: 1.4;
    box-shadow: none;
    transition: border-color var(--gfsl-transition), box-shadow var(--gfsl-transition), background-color var(--gfsl-transition);
  }
.wpcf7-date::-webkit-calendar-picker-indicator,
.wpcf7-date::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Turns a default black icon white */
    opacity: 0.8;      /* Optional: softens the visibility slightly */
}
  .gfsl-form .title span{
        color: var(--color-lit);
  }
   .gfsl-form p{
    color: var(--gfsl-white);
   }
  .gfsl-form textarea,
  .wpcf7-form-control.wpcf7-textarea {
    min-height: 140px;
    resize: vertical;
  }

  .gfsl-form select,
  .wpcf7-form-control.wpcf7-select {
    cursor: pointer;
  }

  .gfsl-form input::placeholder,
  .gfsl-form textarea::placeholder,
  .wpcf7-form-control::placeholder {
    color: var(--gfsl-white);
    opacity: 1;
  }

  .gfsl-form input:focus,
  .gfsl-form select:focus,
  .gfsl-form textarea:focus,
  .wpcf7-form-control:focus {
    border-color: var(--gfsl-lime);
    box-shadow: 0 0 0 3px rgba(210, 234, 16, .12);
  }

  .gfsl-form input[type='checkbox'],
  .gfsl-form input[type='radio'],
  .wpcf7-form-control.wpcf7-checkbox input,
  .wpcf7-form-control.wpcf7-radio input {
    width: 20px;
    height: 20px;
    margin: 0;
    flex: 0 0 20px;
    accent-color: var(--gfsl-lime);
  }

  .wpcf7-list-item {
    display: block;
    margin: 0 0 .5rem 0;
  }

  .wpcf7-form-control-wrap {
    display: block;
        position: inherit !important;
  }

  .wpcf7-form-control.wpcf7-file {
    width: 100%;
    min-height: 48px;
    padding: .65rem .75rem;
    border: 1px solid var(--gfsl-border);
    border-radius: var(--gfsl-radius);
    background: var(--gfsl-surface);
    color: var(--gfsl-muted);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .8125rem;
  }

  .wpcf7-acceptance label {
    display: inline-flex;
    align-items: flex-start;
    gap: .625rem;
  }

  .wpcf7-spinner {
    margin: 0 0 0 .75rem;
    border-color: var(--gfsl-lime) transparent var(--gfsl-lime) transparent;
  }

  .wpcf7-list-item > label {
    display: inline-flex;
    min-height: 44px;
    align-items: flex-start;
    gap: .625rem;
    margin: 0;
    color: var(--gfsl-muted);
    cursor: pointer;
  }

  .wpcf7-list-item-label {
    padding-top: .125rem;
    font-size: .8125rem;
    line-height: 1.55;
  }
  .w-50{
    float:left;
    width:50%
  }
  .text-center{
    text-align: center;
  }
  .gfsl-form input[type='submit'],
  .wpcf7-form input[type='submit'],
  .wpcf7-submit {
    width: 100%;
    min-height: 48px;
    padding: .75rem 1.5rem;
    border: 0;
    border-radius: var(--gfsl-radius);
    background: var(--gfsl-purple);
    color: var(--gfsl-black);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .8125rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--gfsl-transition), transform var(--gfsl-transition);
  }

  .gfsl-form input[type='submit']:hover,
  .wpcf7-form input[type='submit']:hover,
  .wpcf7-submit:hover {
    background: var(--gfsl-purple);
    transform: translateY(-1px);
  }

  .wpcf7-not-valid {
    border-color: var(--gfsl-error) !important;
  }

  .wpcf7-not-valid-tip {
    display: block;
    margin-top: .375rem;
    color: var(--gfsl-error)!important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .75rem;
    line-height: 1.4;
  }

  .wpcf7-response-output {
    margin: 1.25rem 0 0 !important;
    padding: .875rem 1rem !important;
    border: 1px solid var(--gfsl-border) !important;
    border-radius: var(--gfsl-radius) !important;
    background: var(--gfsl-surface);
    color: var(--gfsl-muted);
    font-size: .8125rem;
  }

  .wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--gfsl-lime) !important;
    color: var(--gfsl-white);
  }

  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.failed .wpcf7-response-output,
  .wpcf7 form.aborted .wpcf7-response-output {
    border-color: var(--gfsl-error) !important;
  }

  /* ------------------------------------------------------------------------
     HubSpot standalone form — scoped to avoid touching CF7
     ------------------------------------------------------------------------ */
  .gfsl-hubspot-form,
  .gfsl-hubspot-form .hs-form {
    width: 100%;
  }

  .gfsl-hubspot-form .hs-form-field {
    margin-bottom: 1rem;
  }

  .gfsl-hubspot-form .hs-form--grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gfsl-hubspot-form .hs-form--grid .hs-form-field--full {
    grid-column: 1 / -1;
  }

  .gfsl-hubspot-form .hs-form-field > label,
  .gfsl-hubspot-form .hs-form-field .hs-form-label {
    display: block;
    margin-bottom: .5rem;
    color: var(--gfsl-white);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .gfsl-hubspot-form .hs-form-required {
    color: var(--gfsl-lime);
  }

  .gfsl-hubspot-form .hs-input {
    display: block;
    width: 100% !important;
    min-height: 48px;
    padding: .75rem .875rem;
    border: 1px solid var(--gfsl-border);
    border-radius: var(--gfsl-radius);
    outline: 0;
    background: var(--gfsl-surface);
    color: var(--gfsl-white);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .875rem;
    line-height: 1.4;
    box-shadow: none;
    transition: border-color var(--gfsl-transition), box-shadow var(--gfsl-transition);
  }

  .gfsl-hubspot-form textarea.hs-input {
    min-height: 140px;
    resize: vertical;
  }

  .gfsl-hubspot-form select.hs-input {
    cursor: pointer;
  }

  .gfsl-hubspot-form .hs-input::placeholder {
    color: var(--gfsl-muted-dark);
    opacity: 1;
  }

  .gfsl-hubspot-form .hs-input:focus {
    border-color: var(--gfsl-lime);
    box-shadow: 0 0 0 3px rgba(210, 234, 16, .12);
  }

  .gfsl-hubspot-form .hs-form-checkbox-display,
  .gfsl-hubspot-form .hs-form-radio-display,
  .gfsl-hubspot-form .hs-form-booleancheckbox-display {
    display: flex;
    min-height: 44px;
    align-items: flex-start;
    gap: .625rem;
    color: var(--gfsl-muted);
    font-size: .8125rem;
    line-height: 1.55;
    cursor: pointer;
  }

  .gfsl-hubspot-form input[type='checkbox'],
  .gfsl-hubspot-form input[type='radio'] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex: 0 0 20px;
    accent-color: var(--gfsl-lime);
  }

  .gfsl-hubspot-form .hs-error-msgs {
    margin: .375rem 0 0;
    padding: 0;
    list-style: none;
  }

  .gfsl-hubspot-form .hs-error-msg,
  .gfsl-hubspot-form .hs-error-msgs li {
    color: var(--gfsl-error);
    font-size: .75rem;
    line-height: 1.4;
  }

  .gfsl-hubspot-form .hs-field-desc {
    margin: .375rem 0 0;
    color: var(--gfsl-muted-dark);
    font-size: .75rem;
    line-height: 1.5;
  }

  .gfsl-hubspot-form .hs-submit {
    margin-top: 1.25rem;
  }

  .gfsl-hubspot-form .hs-button {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    border: 0;
    border-radius: var(--gfsl-radius);
    background: var(--gfsl-lime);
    color: var(--gfsl-black);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--gfsl-transition), transform var(--gfsl-transition);
  }

  .gfsl-hubspot-form .hs-button:hover {
    background: var(--gfsl-lime-dark);
    transform: translateY(-1px);
  }

  /* ------------------------------------------------------------------------
     Comments / pagination / search
     ------------------------------------------------------------------------ */
  .comments-area {
    max-width: 820px;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gfsl-border-soft);
  }

  .comment-list {
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
  }

  .comment-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid var(--gfsl-border);
    border-radius: var(--gfsl-radius);
    background: var(--gfsl-surface);
  }

  .comment-content p {
    font-size: .875rem;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
  }

  .nav-links a {
    color: var(--gfsl-lime);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }

  .search-form {
    display: flex;
    gap: .75rem;
    align-items: stretch;
  }

  .search-form label {
    flex: 1;
    margin: 0;
  }

  .search-field {
    width: 100%;
    min-height: 48px;
    padding: .75rem .875rem;
    border: 1px solid var(--gfsl-border);
    background: var(--gfsl-surface);
    color: var(--gfsl-white);
  }

  /* ------------------------------------------------------------------------
     WordPress blocks
     ------------------------------------------------------------------------ */
  .wp-block-button__link {
    border-radius: var(--gfsl-radius);
    background: var(--gfsl-lime);
    color: var(--gfsl-black);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
  }

  .wp-block-button__link:hover {
    background: var(--gfsl-lime-dark);
    color: var(--gfsl-black);
  }

  .wp-block-separator {
    border-color: var(--gfsl-border-soft);
  }

  /* ------------------------------------------------------------------------
     Four reusable scroll animations
     ------------------------------------------------------------------------ */
  html.js .gfsl-animate-fade-up,
  html.js .gfsl-animate-fade-in,
  html.js .gfsl-animate-left,
  html.js .gfsl-animate-right {
    opacity: 0;
    will-change: opacity, transform;
    transition-property: opacity, transform;
    transition-duration: 650ms;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  }
	 html.js body.single-post article.gfsl-animate-fade-up{
		opacity: 1;
	transform: translate3d(0, 0, 0);
	}
  .gfsl-animate-fade-up {
    transform: translate3d(0, 32px, 0);
  }

  .gfsl-animate-fade-in {
    transform: none;
  }

  .gfsl-animate-left {
    transform: translate3d(-42px, 0, 0);
  }

  .gfsl-animate-right {
    transform: translate3d(42px, 0, 0);
  }

  html.js .gfsl-animate-fade-up.is-visible,
  html.js .gfsl-animate-fade-in.is-visible,
  html.js .gfsl-animate-left.is-visible,
  html.js .gfsl-animate-right.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .gfsl-delay-1 { transition-delay: 80ms; }
  .gfsl-delay-2 { transition-delay: 160ms; }
  .gfsl-delay-3 { transition-delay: 240ms; }
  .gfsl-delay-4 { transition-delay: 320ms; }

  .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
}

@layer utilities {
  .gfsl-bg-surface { background-color: var(--gfsl-surface); }
  .gfsl-bg-surface-2 { background-color: var(--gfsl-surface-2); }
  .gfsl-border { border-color: var(--gfsl-border); }
  .gfsl-border-purple { border-color: var(--gfsl-border-purple); }
  .gfsl-border-soft { border-color: var(--gfsl-border-soft); }
  .gfsl-text-muted { color: var(--gfsl-muted); }
  .gfsl-text-muted-dark { color: var(--gfsl-muted-dark); }
  .gfsl-text-lime { color: var(--gfsl-lime); }
}

@media (min-width: 640px) {
  .gfsl-container,
  .gfsl-section__inner,
  .gfsl-content-container {
    width: min(100% - 64px, var(--gfsl-container));
  }
}

@media (min-width: 768px) {
  .gfsl-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .gfsl-form input:not([type='checkbox']):not([type='radio']),
  .gfsl-form select,
  .gfsl-form textarea,
  .wpcf7-form-control.wpcf7-text,
  .wpcf7-form-control.wpcf7-email,
  .wpcf7-form-control.wpcf7-tel,
  .wpcf7-form-control.wpcf7-url,
  .wpcf7-form-control.wpcf7-number,
  .wpcf7-form-control.wpcf7-date,
  .wpcf7-form-control.wpcf7-select,
  .wpcf7-form-control.wpcf7-textarea,
  .wpcf7-form-control.wpcf7-quiz,
  .gfsl-hubspot-form .hs-input {
    min-height: 50px;
    padding-inline: 1rem;
    font-size: .9375rem;
  }

  .gfsl-form textarea,
  .wpcf7-form-control.wpcf7-textarea,
  .gfsl-hubspot-form textarea.hs-input {
    min-height: 160px;
  }

  .gfsl-form input[type='submit'],
  .wpcf7-form input[type='submit'],
  .wpcf7-submit,
  .gfsl-hubspot-form .hs-button {
    min-height: 50px;
  }

  .gfsl-hubspot-form .hs-form-field {
    margin-bottom: 1.25rem;
  }

  .gfsl-hubspot-form .hs-form--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .gfsl-container,
  .gfsl-section__inner,
  .gfsl-content-container {
    width: min(100% - 96px, var(--gfsl-container));
  }

  .gfsl-form-grid {
    gap: 1.5rem;
  }

  .gfsl-form input:not([type='checkbox']):not([type='radio']),
  .gfsl-form select,
  .gfsl-form textarea,
  .wpcf7-form-control.wpcf7-text,
  .wpcf7-form-control.wpcf7-email,
  .wpcf7-form-control.wpcf7-tel,
  .wpcf7-form-control.wpcf7-url,
  .wpcf7-form-control.wpcf7-number,
  .wpcf7-form-control.wpcf7-date,
  .wpcf7-form-control.wpcf7-select,
  .wpcf7-form-control.wpcf7-textarea,
  .wpcf7-form-control.wpcf7-quiz,
  .gfsl-hubspot-form .hs-input {
    min-height: 52px;
  }

  .gfsl-form textarea,
  .wpcf7-form-control.wpcf7-textarea,
  .gfsl-hubspot-form textarea.hs-input {
    min-height: 180px;
  }

  .gfsl-form input[type='submit'],
  .wpcf7-form input[type='submit'],
  .wpcf7-submit,
  .gfsl-hubspot-form .hs-button {
    width: auto;
    min-width: 180px;
    min-height: 52px;
  }
}

@media (max-width: 1023px) {
  .site-header__inner {
    min-height: 68px;
  }

  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 1rem 20px 1.25rem;
    border-bottom: 1px solid var(--gfsl-border);
    background: var(--gfsl-black);
  }

  .main-navigation.is-open {
    display: block;
  }

  .main-navigation ul {
    display: grid;
    gap: .25rem;
  }

  .main-navigation a {
    width: 100%;
    min-height: 48px;
    padding-inline: .5rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__cta {
    display: none;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid,
  .single-layout {
    grid-template-columns: 1fr;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .gfsl-container,
  .gfsl-section__inner,
  .gfsl-content-container {
    width: min(100% - 40px, var(--gfsl-container));
  }

  .site-header__inner {
    gap: .75rem;
  }

  .site-branding .custom-logo {
    max-width: 125px;
    max-height: 46px;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding-block: 3rem;
  }

  .gfsl-button-group,
  .search-form {
    align-items: stretch;
    flex-direction: column;
  }

  .gfsl-button-group > *,
  .search-form .search-submit {
    width: 100%;
  }

  .gfsl-prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  html.js .gfsl-animate-fade-up,
  html.js .gfsl-animate-fade-in,
  html.js .gfsl-animate-left,
  html.js .gfsl-animate-right {
    opacity: 1;
    transform: none;
  }
}


/* ------------------------------------------------------------------------
   Arena-inspired homepage sections
   ------------------------------------------------------------------------ */
.gfsl-home-block {
  position: relative;
  overflow: hidden;
}

.gfsl-home-block--hero {
  min-height: min(820px, 92vh);
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at 75% 25%, rgba(192, 132, 252, .20), transparent 30%),
    linear-gradient(135deg, #09070d 0%, #050505 62%, #100b16 100%);
}

.gfsl-home-block--hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, #050505, transparent);
  pointer-events: none;
}

.gfsl-home-block__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--gfsl-container));
  margin-inline: auto;
  padding-block: clamp(72px, 10vw, 20px);
}

.gfsl-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--color-lit);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gfsl-home-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-lit);
}
.gfsl-home-title {
  max-width: 950px;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: .82;
  letter-spacing: -.035em;
}

.gfsl-home-title span { color: var(--color-lit); }

.gfsl-home-lead {
  max-width: 650px;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #c7c7c7;
}

.gfsl-home-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1px;
}

.gfsl-home-card {
  min-height: 230px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--gfsl-surface);
      margin: 10px 10px;
      border:solid 1px var(--gfsl-border-purple);
      border-radius:1em;
  transition: transform 300ms ease-out, background-color 300ms ease-out, border-color 300ms ease-out;
}

.gfsl-home-card:hover {
  background: #16121a;
  transform: translateY(-3px);
}

.gfsl-home-card__number {
  color: var(--color-lit);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.gfsl-home-card h3 {
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.gfsl-home-card p { margin-bottom: 0; }

.gfsl-home-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.gfsl-home-stat {
  border-top: 1px solid var(--gfsl-border);
  padding-top: 18px;
}

.gfsl-home-stat strong {
  display: block;
  color: var(--gfsl-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: .85;
}

.gfsl-home-stat span {
  color: var(--gfsl-muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfsl-home-event {
  border: 1px solid var(--gfsl-border);
  background: linear-gradient(135deg, #151018, #0b0b0b);
  padding: clamp(28px, 5vw, 64px);
}

.gfsl-home-event__date {
  color: var(--color-lit);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gfsl-home-coaches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gfsl-home-coach {
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid var(--gfsl-border);
  background: linear-gradient(145deg, #17131a, #0b0b0b);
}

.gfsl-home-coach strong {
  display: block;
  color: var(--gfsl-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.gfsl-home-coach span { color: var(--color-lit); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
  .gfsl-home-block--hero {
  position: relative;
}

.gfsl-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.gfsl-hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(168, 85, 247, .22), transparent 32%),
    linear-gradient(135deg, rgba(9, 7, 13, .78) 0%, rgba(5, 5, 5, .82) 62%, rgba(16, 11, 22, .78) 100%);
}

.gfsl-hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;      /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh;  /* 16:9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (max-width: 767px) {
  
}

@media (prefers-reduced-motion: reduce) {
  .gfsl-hero-video-bg iframe { display: none; }
}
  /* ==========================================================================
   HERO BLOCK & CONTENT ENTRANCE ANIMATIONS
   ========================================================================== */

/* Main Hero Container Fade-In */
.gfsl-home-block--hero {
  animation: gfslHeroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  margin-top: -4%;
  padding-top: 6%;
}

/* Left Content Column Staggered Slide In */
.gfsl-home-block--hero .w-50:first-child {
  animation: gfslSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

/* Kicker Badge Entrance */
.gfsl-home-kicker {
  display: inline-block;
  animation: gfslPopIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Title Span Glow Pulse */
.gfsl-home-title span {
  display: inline-block;
  animation: gfslGlowPulse 3s ease-in-out infinite alternate;
}

/* Buttons Entrance */
.gfsl-button-group {
  animation: gfslSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}


/* ==========================================================================
   FORM CONTAINER & HOVER EFFECTS
   ========================================================================== */

/* Form Card Entrance */
.gfsl-form.bordered {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
  animation: gfslSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Form Hover Elevation */
.gfsl-form.bordered:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Button Interactive Micro-Animations */
.btn-primary, 
.btn-secondary {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease, 
              background-color 0.3s ease, 
              color 0.3s ease;
}

.btn-primary:hover, 
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary:active, 
.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
}


/* ==========================================================================
   KEYFRAME DEFINITIONS
   ========================================================================== */

@keyframes gfslHeroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gfslSlideRight {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gfslSlideLeft {
  from {
    opacity: 0;
    transform: translateX(35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gfslSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gfslPopIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gfslGlowPulse {
  0% {
    text-shadow: 0 0 0px rgba(168, 85, 247, 0);
  }
  100% {
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
  }
}
@media (max-width: 767px) {
  .gfsl-hero-video-bg iframe {
    top: 10%;
    left: 50%;
    width: 300vw;
    height: 168.75vw;   /* 16:9 */
    min-width: 100%;
    min-height: 100vh;
    transform: translate(-50%, -50%);
  }
}
.gfsl-home-vibe {
  border-top: 1px solid var(--gfsl-border);
  border-bottom: 1px solid var(--gfsl-border);
  padding-block: 20px;
}

.gfsl-home-vibe + .gfsl-home-vibe { border-top: 0; }

.gfsl-home-vibe__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.gfsl-home-vibe h3 { margin: 0; }
.gfsl-home-vibe__index { color: var(--color-lit); font-weight: 700; font-size: .8rem; }
@media (max-width: 767px) { /* mobile only */
  .w-50 { width: 100% }
  .gfsl-section {
   
    padding-block: clamp(0rem, 0vw, 0rem);
}
   .site-header {
     background: rgba(5, 5, 5, .96)!important;
   }
   .gfsl-home-block__inner .gfsl-button-group{margin-bottom:20px}
    .gfsl-home-coaches {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .gfsl-home-coach{
     width: 100%;
    min-height: 580px;
  }
}
@media (min-width: 768px) { /*tablet*/
  .gfsl-container, .gfsl-home-block__inner { width: min(100% - 64px, var(--gfsl-container)); }
  .gfsl-home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gfsl-home-split { grid-template-columns: 1.05fr .95fr; gap: 80px; }
  .gfsl-home-coaches { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .gfsl-home-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1536px) {
  .gfsl-container, .gfsl-home-block__inner { width: min(100% - 128px, var(--gfsl-container)); }
}

@media (prefers-reduced-motion: reduce) {
  .gfsl-home-card { transition: none; }
}

@media (hover: hover){.btn-primary:hover{--tw-shadow:0 10px 35px -8px rgba(168,85,247,.65);box-shadow:0 10px 35px -8px rgba(168,85,247,.65)}}
