/** Shopify CDN: Minification failed

Line 9:16 Expected ")" to end URL token
Line 17:14 Expected ")" to end URL token

**/
@font-face {
  font-family: 'Avérique';
    src: url({{ 'Averique-Reglar.otf' | asset_url }}) format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

@font-face {
  font-family: 'Tropical Paradise';
  src: url({{ 'tropical-paradise.woff2' | asset_url }}) format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

  
body {
  color: var(--color-foreground);
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
  font-variation-settings: 'slnt' 0;
  -webkit-font-smoothing: antialiased; 
}


:root {
  --ep: #152b14; 
  --sf: #d4e048; 
  --mh: #8095f0; 
  --cc: #ff5245; 
  --sd: #b69f80;
  --gd-white: #fff; 
  --gd-off: #f7f5f2;
  --gd-serif: 'Avérique', Georgia, serif;
  --gd-script: 'Tropical Paradise', cursive;
  --sans: 'Poppins', sans-serif;
}

.trial-hero {
  background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
  color: var(--hero-text);
  padding: 80px 0;
  overflow: hidden;
}

.trial-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.trial-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-accent);
  border: 1px solid rgba(212, 224, 72, 0.4);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.trial-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hero-accent);
  display: inline-block;
}

.trial-hero__heading {
  font-family: var(--gd-serif);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--hero-text);
}

.trial-hero__script {
  font-family: var(--gd-script);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--hero-accent);
  margin: 0 0 24px;
}

.trial-hero__paragraph {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
  margin-bottom: 32px;
}

.trial-hero__paragraph p {
  margin: 0;
}

.trial-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trial-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.trial-hero__btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.trial-hero__btn--primary {
  background: var(--hero-btn-primary-bg);
  color: var(--hero-btn-primary-text);
}

.trial-hero__btn--secondary {
  background: transparent;
  color: var(--hero-text);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.trial-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trial-hero__image {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
}

.trial-hero__image--placeholder svg {
  width: 100%;
  height: auto;
  opacity: 0.3;
}

@media screen and (max-width: 749px) {
  .trial-hero {
    padding: 56px 0;
  }
  .trial-hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .trial-hero__media {
    order: -1;
    max-width: 260px;
    margin: 0 auto 24px;
  }
  .trial-hero__paragraph {
    max-width: 100%;
  }
}
