/** Shopify CDN: Minification failed

Line 24:0 All "@import" rules must come first

**/
/* =============================================
   STRYŌ — stryo.css
   À placer dans : Assets/stryo.css
   ============================================= */

:root {
  --stryo-cream: #F7F3EE;
  --stryo-nude: #E8DDD4;
  --stryo-warm: #D4C4B5;
  --stryo-sage: #A8B5A0;
  --stryo-charcoal: #2C2C2A;
  --stryo-dark: #1A1A18;
  --stryo-accent: #C4956A;
  --stryo-accent-light: #E8C9A8;
  --stryo-white: #FDFCFB;
}

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@200;300;400;500&display=swap');

/* ── LOGO SIGNATURE ── */
.stryo-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--stryo-charcoal);
}
.stryo-logo .o {
  color: var(--stryo-accent);
  position: relative;
  display: inline-block;
}
.stryo-logo .o::after {
  content: '';
  position: absolute;
  bottom: 0.05em; left: 50%;
  transform: translateX(-50%);
  width: 0.08em; height: 0.08em;
  background: var(--stryo-accent);
  border-radius: 50%;
}

/* ── BUTTONS ── */
.stryo-btn-primary {
  background: var(--stryo-accent);
  color: var(--stryo-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stryo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 149, 106, 0.35);
  color: var(--stryo-white);
}

.stryo-btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.stryo-btn-ghost::after { content: ' →'; }
.stryo-btn-ghost:hover { color: var(--stryo-white); }

/* ── SECTION HELPERS ── */
.stryo-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stryo-accent);
  margin-bottom: 16px;
}
.stryo-section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--stryo-accent);
}

.stryo-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--stryo-charcoal);
  margin-bottom: 60px;
}
.stryo-section-heading em {
  font-style: italic;
  color: var(--stryo-accent);
}

/* ── HERO SECTION ── */
.stryo-hero {
  min-height: 100vh;
  background: var(--stryo-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.stryo-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196,149,106,0.12) 0%, transparent 65%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.stryo-hero__left {
  padding: 80px 60px 80px 80px;
  position: relative; z-index: 2;
}
.stryo-hero__right {
  padding: 80px 80px 80px 40px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 2;
}
.stryo-hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--stryo-accent);
  margin-bottom: 32px;
}
.stryo-hero__eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--stryo-accent);
}
.stryo-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--stryo-white);
  margin-bottom: 28px;
}
.stryo-hero__title em { font-style: italic; color: var(--stryo-accent); }
.stryo-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,0.5);
  max-width: 400px; margin-bottom: 48px;
}
.stryo-hero__actions {
  display: flex; align-items: center; gap: 32px;
}
.stryo-hero__stats {
  display: flex; gap: 40px;
  margin-top: 60px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stryo-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300;
  color: var(--stryo-white); display: block;
}
.stryo-stat__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 4px; display: block;
}

/* ── PRODUCT PREVIEW CARDS (hero) ── */
.stryo-product-preview {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  text-decoration: none;
}
.stryo-product-preview:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196,149,106,0.3);
  transform: translateX(-4px);
}
.stryo-pp__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.stryo-pp__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 300;
  color: var(--stryo-white); margin-bottom: 2px;
}
.stryo-pp__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.4);
}
.stryo-pp__info { flex: 1; }
.stryo-pp__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: var(--stryo-accent); font-weight: 300;
}

/* ── MARQUEE ── */
.stryo-marquee {
  background: var(--stryo-accent);
  overflow: hidden; padding: 13px 0; white-space: nowrap;
}
.stryo-marquee__track {
  display: inline-flex;
  animation: stryo-marquee 22s linear infinite;
}
.stryo-marquee__item {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--stryo-white); padding: 0 28px; opacity: 0.85;
}
.stryo-marquee__dot { color: rgba(255,255,255,0.35); padding: 0 6px; }
@keyframes stryo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── HOW IT WORKS ── */
.stryo-how { padding: 100px 80px; max-width: 1300px; margin: 0 auto; }
.stryo-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.stryo-step {
  padding: 48px 40px; background: var(--stryo-white);
  position: relative; overflow: hidden; transition: background 0.3s;
}
.stryo-step:hover { background: var(--stryo-dark); }
.stryo-step:hover .stryo-step__num { color: var(--stryo-accent); }
.stryo-step:hover .stryo-step__title,
.stryo-step:hover .stryo-step__text { color: var(--stryo-white); }
.stryo-step:hover .stryo-step__bar { background: var(--stryo-accent); }
.stryo-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300;
  color: rgba(44,44,42,0.08); line-height: 1;
  margin-bottom: 28px; transition: color 0.3s;
}
.stryo-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300;
  margin-bottom: 12px; transition: color 0.3s;
}
.stryo-step__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; line-height: 1.9;
  color: rgba(44,44,42,0.6); transition: color 0.3s;
}
.stryo-step__bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--stryo-nude); transition: background 0.3s;
}

/* ── PRODUCTS GRID ── */
.stryo-products-bg { background: var(--stryo-dark); padding: 100px 0; }
.stryo-products-inner { max-width: 1300px; margin: 0 auto; padding: 0 80px; }
.stryo-products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 56px;
}
.stryo-product-card {
  border-radius: 18px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none; display: block;
}
.stryo-product-card:hover { transform: translateY(-8px); }
.stryo-pc__series {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  margin-bottom: 44px; opacity: 0.5;
}
.stryo-pc__icon { font-size: 28px; margin-bottom: 16px; display: block; }
.stryo-pc__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; line-height: 1.1; margin-bottom: 6px;
}
.stryo-pc__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.1em; opacity: 0.5; margin-bottom: 24px;
}
.stryo-pc__benefit {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; line-height: 1.8; opacity: 0.6; margin-bottom: 32px;
}
.stryo-pc__footer {
  display: flex; align-items: center; justify-content: space-between;
}
.stryo-pc__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300;
}
.stryo-pc__btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; opacity: 0.45;
  transition: opacity 0.3s, background 0.3s;
}
.stryo-product-card:hover .stryo-pc__btn {
  opacity: 1; background: rgba(255,255,255,0.12);
}
.stryo-pc__line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
}

/* ── WHY ── */
.stryo-why { padding: 100px 80px; max-width: 1300px; margin: 0 auto; }
.stryo-why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px;
}
.stryo-why-card {
  padding: 48px; background: var(--stryo-white);
  display: flex; gap: 28px; align-items: flex-start;
  transition: background 0.3s;
}
.stryo-why-card:hover { background: var(--stryo-nude); }
.stryo-why__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--stryo-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; transition: background 0.3s;
}
.stryo-why-card:hover .stryo-why__icon { background: var(--stryo-white); }
.stryo-why__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; margin-bottom: 10px;
}
.stryo-why__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; line-height: 1.9; color: rgba(44,44,42,0.6);
}

/* ── TESTIMONIALS ── */
.stryo-testi-bg { background: var(--stryo-nude); padding: 100px 0; }
.stryo-testi-inner { max-width: 1300px; margin: 0 auto; padding: 0 80px; }
.stryo-testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 56px;
}
.stryo-testi-card {
  background: var(--stryo-white); border-radius: 18px;
  padding: 36px; position: relative;
}
.stryo-testi__stars { color: var(--stryo-accent); font-size: 12px; letter-spacing: 3px; margin-bottom: 18px; }
.stryo-testi__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 300; font-style: italic;
  line-height: 1.6; color: var(--stryo-charcoal); margin-bottom: 24px;
}
.stryo-testi__author { display: flex; align-items: center; gap: 12px; }
.stryo-testi__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--stryo-nude);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.stryo-testi__name { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; }
.stryo-testi__detail { font-family: 'DM Sans', sans-serif; font-size: 11px; color: rgba(44,44,42,0.4); margin-top: 2px; }
.stryo-testi__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--stryo-cream); border-radius: 6px;
  padding: 5px 10px; font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stryo-accent); font-weight: 400;
}

/* ── CTA BAND ── */
.stryo-cta {
  background: var(--stryo-dark); padding: 100px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.stryo-cta::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,149,106,0.1) 0%, transparent 65%);
  left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.stryo-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 72px); font-weight: 300;
  color: var(--stryo-white); line-height: 1.1; margin-bottom: 20px; position: relative;
}
.stryo-cta h2 em { color: var(--stryo-accent); font-style: italic; }
.stryo-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 48px; letter-spacing: 0.05em; position: relative;
}

/* ── REVEAL ANIMATION ── */
.stryo-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.stryo-reveal.visible { opacity: 1; transform: translateY(0); }
.stryo-reveal--d1 { transition-delay: 0.1s; }
.stryo-reveal--d2 { transition-delay: 0.2s; }
.stryo-reveal--d3 { transition-delay: 0.3s; }
.stryo-reveal--d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stryo-hero { grid-template-columns: 1fr; }
  .stryo-hero__right { display: none; }
  .stryo-hero__left { padding: 100px 24px 60px; }
  .stryo-how, .stryo-why { padding: 80px 24px; }
  .stryo-steps { grid-template-columns: 1fr; }
  .stryo-products-inner, .stryo-testi-inner { padding: 0 24px; }
  .stryo-products-grid { grid-template-columns: 1fr 1fr; }
  .stryo-why-grid { grid-template-columns: 1fr; }
  .stryo-testi-grid { grid-template-columns: 1fr; }
  .stryo-cta { padding: 80px 24px; }
}