:root {
  --bg: #F4F4F1;
  --bg-dark: #0A0A0A;
  --surface: #FFFFFF;
  --text: #0A0A0A;
  --text-on-dark: #FAFAFA;
  --muted: #7A7A7A;
  --line: #DDDDD8;
  --line-dark: #1F1F1F;

  --brand-orange: #de8a34;
  --brand-green: #75c33c;
  --brand-yellow: #f4dd00;
  --brand-blue-hand: #005bac;
  --brand-blue-soft: #7CB8E0;
  --brand-red: #E51E25;

  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Michroma', sans-serif;
  --font-hand: 'Caveat', cursive;
  --font-mono: 'JetBrains Mono', monospace;

  --steel-url: url("Visuels/TextureAcier2.jpg");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 14px;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; }

/* ============ HANDWRITTEN + STRIKETHROUGH ============ */
.hand {
  font-family: var(--font-hand);
  color: var(--brand-blue-hand);
  font-weight: 700;
  font-size: 1.55em;
  letter-spacing: 0.01em;
  line-height: 0.8;
  /*display: inline-block;*/
  transform: translateY(0.1em) rotate(-1deg);
  margin: 0 0.05em;
}
.strike {
  position: relative;
  display: inline-block;
  color: inherit;
}
.strike::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  top: 55%;
  height: max(2px, 0.07em);
  background: var(--brand-blue-hand);
  transform: rotate(-2deg);
  pointer-events: none;
}

/* Annotation above (correction handwriting placed over a struck word) */
.annot {
  position: relative;
  display: inline-block;
}
.annot-above {
  position: absolute;
  bottom: -25px;
  left: 65%;
  font-family: var(--font-hand);
  color: var(--brand-blue-hand);
  font-weight: 700;
  font-size: 1.7em;
  line-height: 0.9;
  white-space: nowrap;
  transform: rotate(-4deg);
}
/* Variant for big section-title annotations */
.title-annot-above {
  font-size: 0.85em;
  bottom: -0.7em;
  left: 50%;
}

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fad524;
  backdrop-filter: blur(14px);
}
nav .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 11px; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.nav-links a { color: black; text-decoration: none; }
.nav-links a:hover { color: white; }
.nav-links a.skwid-link {
  color: black;
  opacity: 1;
  border: 1px solid black;
  padding: 6px 12px;
}
.nav-links a.skwid-link:hover { background: white; color: var(--text); border: 1px solid white; }
.lang-switch {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 12px;
  background: var(--text);
  color: var(--bg);
  display: flex; gap: 8px;
  letter-spacing: 0.08em;
}
.lang-switch a { color: rgba(250,250,250,0.5); text-decoration: none; cursor: pointer; opacity: 1; }
.lang-switch a:hover { color: var(--bg); }
.lang-switch a.active { color: var(--brand-orange); cursor: default; }
.lang-switch a.active:hover { color: var(--brand-orange); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 0 160px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--bg);
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center;
}
.hero-logo {
  max-width: 100%;
  width: 100%;
  display: block;
  margin-bottom: 56px;
}
.hero-baseline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--text);
  max-width: 640px;
  margin-bottom: 72px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-bottom: 2em;
}
.hero-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 48px;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}
.hero-meta > div {
  padding: 18px 0;
  border-right: 1px solid var(--line);
}
.hero-meta > div:last-child { border-right: none; }
.hero-meta > div:first-child { padding-left: 0; }
.hero-meta > div:not(:first-child) { padding-left: 18px; }
.hero-meta span {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero-meta strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer; border: none;
}
.btn-primary { background: #fad524; color: var(--text); }
.btn-primary:hover { background: var(--text); color: #fad524; }
.btn-secondary { background: var(--text); color: var(--bg); }
.btn-secondary:hover { background: var(--brand-orange); color: var(--text); }

/* Hero visual: real capsule SVG that overflows */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  height: 100%;
}
.hero-capsule {
  width: 170%;
  max-width: 900px;
  position: relative;
  transform: rotate(-18deg) translateY(-20px);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.25));
  z-index: 1;
  margin-right: 0px;
  margin-left: 0px;
  margin-top: 30px;
  will-change: transform;
  pointer-events: none;
  animation: float 5.5s ease-in-out infinite;
}  

/*ANIMATION CAPSULE - Rotation de départ -15 ? */
@keyframes float {
      0%, 100% { transform: translateY(0px) rotate(-18deg); }
      50%       { transform: translateY(-40px) rotate(-12deg); }
    }



.hero-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px; color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-corner-tl { top: 96px; left: 32px; }
.hero-corner-br { bottom: 62px; right: 32px; text-align: right; }

/* ============ SECTION HELPERS ============ */
section { padding: 140px 0; position: relative; }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }

.section-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 28px;
  color: var(--brand-orange);
}
.section-tag::before { content: '+'; font-size: 16px; line-height: 1; }
.section-tag .num {
  background: var(--text); color: var(--bg);
  padding: 5px 10px;
  font-family: var(--font-display);
  font-weight: 800;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 80px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 32px;
}
.section-lead {
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 15px);
  max-width: 760px;
  opacity: 0.75;
  margin-bottom: 64px;
  line-height: 1.7;
}

/* ============ PITCH (01 Le concept) ============ */
.pitch { background: var(--bg); }
.pitch .container {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: center;
}
.pitch-letter {
  background: var(--surface);
  padding: 56px 56px 64px;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.pitch-letter .pitch-pills {
  position: absolute;
  top: -50px;
  right: -80px;
  width: 240px;
  max-width: 30%;
  z-index: 5;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.22));
  pointer-events: none;
}
.pitch-letter::before {
  content: '+';
  position: absolute; top: 16px; left: 22px;
  color: var(--brand-orange); font-size: 22px; font-weight: 300;
}
.pitch-letter::after {
  content: '+';
  position: absolute; bottom: 16px; right: 22px;
  color: var(--brand-orange); font-size: 22px; font-weight: 300;
}
.pitch-letter h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.pitch-letter h2 .reg { vertical-align: super; font-size: 0.4em; }
.pitch-letter p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: var(--text);
}
.pitch-letter p strong {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.pitch-letter hr {
  border: none;
  border-top: 1px dashed var(--line);
  margin: 28px 0 24px;
}
.pitch-letter .italic-tag {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 26px;
  color: var(--brand-blue-hand);
  line-height: 1.3;
  text-align: center;
  transform: rotate(-1deg);
  margin-top: 12px;
}
.pitch-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.pitch-visual img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============ VIDEO (02) ============ */
.video-section { background: var(--bg); padding-top: 60px; padding-bottom: 100px; }
.video-header {
  display: grid; grid-template-columns: 1fr 0.95fr;
  gap: 60px; align-items: center;
  margin-bottom: 80px;
  position: relative;
}
.video-header-cards {
  position: relative;
  z-index: 2;
}
.video-header-cards img {
  width: 115%;
  max-width: none;
  display: block;
  transform: rotate(4deg);
  margin-right: -60px;
  margin-left: -30px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.18));
}
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  cursor: pointer;
}
.video-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.video-wrapper:hover .video-thumb { opacity: 1; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 112px; height: 112px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
  border: 4px solid var(--bg-dark);
  box-shadow: 0 0 0 4px var(--brand-orange);
  cursor: pointer;
}
.video-wrapper:hover .play-btn { transform: translate(-50%, -50%) scale(1.05); }
.play-btn svg { width: 36px; height: 36px; color: var(--text); margin-left: 6px; }

/* ============ NOTICE (03 Notice) — fond ACIER ============ */
.notice {
  background-image: var(--steel-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-on-dark);
  position: relative;
}
.notice::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.1) 100%);
  pointer-events: none;
}
.notice .container { position: relative; z-index: 1; }
.notice .section-tag { color: var(--brand-yellow); }
.notice .section-tag .num { background: var(--bg); color: var(--text); }

.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.notice-card {
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.notice-card-banner {
  padding: 14px 20px 16px;
  color: var(--text);
  position: relative;
}
.notice-card-banner::before {
  content: '+';
  position: absolute; top: 3px; left: 16px;
  color: var(--text); font-size: 12px; font-weight: 300;
}
.notice-card-banner h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
  padding-left: 5px;
}
.notice-card.c-orange .notice-card-banner { background: var(--brand-orange); }
.notice-card.c-green .notice-card-banner { background: var(--brand-green); }
.notice-card.c-yellow .notice-card-banner { background: var(--brand-yellow); }
.notice-card.c-red .notice-card-banner { background: var(--brand-red); color: var(--text); }
.notice-card-tag {
  position: absolute;
  top: 35px;
  right: 14px;
  background: var(--text); color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 11px;
  letter-spacing: 0.06em;
  z-index: 3;
}
.notice-card-body {
  padding: 38px 22px 56px;
  text-align: center;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  gap: 14px;
  min-height: 230px;
}
.notice-card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--text);
}
.notice-card-num .unit {
  font-size: 22px;
  color: var(--brand-orange);
  margin-left: 4px;
}
.notice-card-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.notice-card-barcode {
  position: absolute; bottom: 16px; left: 16px;
  width: 60px; height: 16px;
  background:
    repeating-linear-gradient(90deg,
      var(--text) 0 2px, transparent 2px 4px,
      var(--text) 4px 5px, transparent 5px 9px,
      var(--text) 9px 11px, transparent 11px 13px);
}
.notice-card-plus {
  position: absolute; bottom: 8px; right: 14px;
  color: var(--text); font-size: 14px; font-weight: 300;
}

/* ============ TESTIMONIAL ============ */
.testimonials {
  background: var(--bg);
  color: var(--text);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '+';
  position: absolute; top: 80px; left: 80px;
  font-size: 200px; color: var(--brand-orange);
  font-weight: 300; opacity: 0.15;
  line-height: 1;
}
.testimonials::after {
  content: '+';
  position: absolute; bottom: 80px; right: 80px;
  font-size: 200px; color: var(--brand-orange);
  font-weight: 300; opacity: 0.15;
  line-height: 1;
}
.testimonial-flacon {
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 400px;
  max-width: 32vw;
  transform: rotate(-18deg);
  z-index: 0;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.25));
  pointer-events: none;
  will-change: transform;
}
.testimonial-pill {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 320px;
  max-width: 26vw;
  transform: rotate(22deg);
  z-index: 0;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.25));
  pointer-events: none;
  will-change: transform;
}
.testimonial-pill-solo {
  position: absolute;
  right: 18%;
  top: 12%;
  width: 140px;
  max-width: 14vw;
  transform: rotate(-8deg);
  z-index: 0;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.25));
  pointer-events: none;
  will-change: transform;
}
.testimonial {
  max-width: 980px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}
.testimonial blockquote {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--brand-blue-hand);
  line-height: 1.25;
  margin-bottom: 40px;
  letter-spacing: 0.005em;
  transform: rotate(-1deg);
  display: inline-block;
  max-width: 900px;
}
.testimonial cite {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-style: normal;
  color: var(--muted);
  display: block;
}
.testimonial cite strong {
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-display);
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* ============ BUY (04) ============ */
.buy {
  background: #fad524;
  color: var(--text);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.buy::before, .buy::after {
  content: '+';
  position: absolute;
  font-size: 160px; font-weight: 300;
  color: rgba(0,0,0,0.12);
  line-height: 0.5;
}
.buy::before { top: 80px; left: 60px; }
.buy::after { bottom: 80px; right: 60px; }
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.buy-image {
  display: flex; justify-content: center;
}
.buy-image img {
  width: 100%;
  max-width: 480px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.35));
}
.buy-content .section-tag { color: var(--text); }
.buy-content .section-tag .num { background: var(--text); color: var(--brand-orange); }
.buy-content .section-title { color: var(--text); }
.buy-lead {
  font-family: var(--font-body);
  font-size: 13px;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.buy-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 12px 0 36px;
  color: var(--text);
}
.buy-price .currency { font-size: 0.45em; vertical-align: top; margin-left: 6px; }
.btn-buy {
  background: var(--text); color: var(--brand-orange);
  padding: 26px 32px;
  font-size: 16px;
  min-width: 300px;
  justify-content: center;
}
.btn-buy:hover { background: var(--bg); color: var(--text); }
.btn-buy .arrow { transition: transform 0.2s; }
.btn-buy:hover .arrow { transform: translateX(4px); }

/* ============ FOOTER ============ */
footer {
  background: var(--bg-dark);
  padding: 80px 0 32px;
  color: var(--text-on-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 38px; display: block; }
.footer-credits {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.8;
}
.footer-credits div { color: rgba(250,250,250,0.85); }
.footer-credits div + div { color: rgba(250,250,250,0.7); }
.footer-credits div:last-child {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 10px;
}
footer h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--brand-orange);
  margin-bottom: 20px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: 11px; font-family: var(--font-body); }
footer a { color: rgba(250,250,250,0.7); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--brand-orange); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.disclaimer {
  background: rgba(222,138,52,0.05);
  border-left: 2px solid var(--brand-orange);
  padding: 22px 28px;
  margin-bottom: 32px;
  font-size: 11px;
  color: rgba(250,250,250,0.6);
  line-height: 1.7;
  font-family: var(--font-body);
}
.disclaimer strong {
  color: var(--brand-orange);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  display: block;
  margin-bottom: 6px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; font-size: 10px; }
  .nav-links a:not(.lang-switch):not(.skwid-link) { display: none; }
}
@media (max-width: 1000px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-capsule { width: 80%; margin: 0 auto; transform: rotate(-12deg); }
  .pitch .container { grid-template-columns: 1fr; gap: 60px; }
  .video-header { grid-template-columns: 1fr; gap: 40px; }
  .video-header-cards img { width: 100%; margin: 0; transform: rotate(2deg); }
  .notice-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 80px 0; }
  .testimonial-flacon, .testimonial-pill, .testimonial-pill-solo { display: none; }
}
@media (max-width: 600px) {
  .notice-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-meta > div { border-bottom: 1px solid var(--line); }
  .hero-meta > div:nth-child(2) { border-right: none; }
  .container { padding: 0 20px; }
  .pitch-letter { padding: 36px 28px; }
}
