/* HERO */

.hero-stack {
  position: relative;
}

.hero-centered-fpv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  justify-items: center;
}

/* SIPARIO — l'hero resta ancorata mentre il manifesto sale a coprirla.
   Attivo solo su viewport ampi e con movimento non ridotto: su mobile e con
   prefers-reduced-motion si torna allo scroll normale (nessun position:sticky).
   Il manifesto ha altezza legata al contenuto (non più 100vh), quindi da solo
   coprirebbe l'hero solo in parte: initSipario() in home.js applica un
   translateY extra, calcolato in proporzione allo scroll, che comprime la
   corsa di copertura dentro l'altezza reale del manifesto — nessuno spazio
   vuoto aggiuntivo, nessun video che sbuca da sotto. */
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  .hero-centered-fpv {
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .manifesto.section {
    position: relative;
    z-index: 2;
    background: #151514;
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    transform: none;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 32%),
    linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.48) 52%, rgba(0,0,0,0.15) 100%);
}

/* Rete di sicurezza per il Sipario: si oscura in scrub insieme alla risalita
   del manifesto, così un eventuale scarto tra le due animazioni mostra nero
   pieno (stesso tono dello sfondo del manifesto) e mai il video sottostante. */
.hero-blackout {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #151514;
  opacity: 0;
  pointer-events: none;
}

/* TOGGLE AUDIO HERO */

.hero-sound-toggle {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  background: rgba(10, 8, 6, 0.72);
  border: 1px solid rgba(200, 169, 126, 0.42);
  color: #f5f5f5;
  cursor: pointer;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.hero-sound-toggle.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-sound-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 169, 126, 0.75);
}

.hero-sound-icon {
  width: 20px;
  height: 20px;
}

.hero-sound-icon-on {
  display: none;
}

.hero-sound-toggle.is-on .hero-sound-icon-muted {
  display: none;
}

.hero-sound-toggle.is-on .hero-sound-icon-on {
  display: block;
}

@media (max-width: 640px) {
  .hero-sound-toggle {
    left: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

/* CONTENUTO PRINCIPALE */

.hero-centered-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 920px;
  padding-top: 140px;
  padding-bottom: 260px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.28);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* TITOLO — riflesso metallico liquido: gradient a bande irregolari (con
   "hot spot" quasi bianchi affiancati da zone champagne, e zone scure per
   rendere il movimento leggibile) applicato al testo via
   background-clip:text. Un passaggio di luce attraversa le lettere a
   intervalli irregolari, orchestrato da js/home.js (initHeroLightSweep)
   che anima background-position/filter via transition (mai @keyframes),
   così il movimento è sempre continuo/fluido, MAI in loop continuo. Il
   mouse sposta con smoothing la posizione del riflesso (--mouse-shift,
   aggiornata via lerp in JS), senza mai spostare il testo. Il
   mouse-parallax posizionale (translate) resta sull'h1 nel suo insieme,
   invariato. */

.hero-centered-content h1.hero-title {
  position: relative;
  margin: 0 auto 14px;
  max-width: 20ch;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 3.4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  will-change: transform;
}

@media (min-width: 900px) {
  .hero-centered-content h1.hero-title {
    max-width: none;
    white-space: nowrap;
  }
}

.hero-title-text {
  display: inline-block;
  opacity: 0;
  background-image: linear-gradient(
    100deg,
    #6f6b65 0%,
    #9f9a91 8%,
    #f4f1eb 15%,
    #ffffff 21%,
    #d5b98a 27%,
    #9f9a91 36%,
    #6f6b65 47%,
    #9f9a91 58%,
    #f4f1eb 66%,
    #ffffff 71%,
    #d5b98a 77%,
    #6f6b65 88%,
    #f5f3ee 100%
  );
  background-size: 350% 100%;
  background-position: calc(66% + var(--mouse-shift, 0%)) 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: brightness(1);
  /* background-position e filter sono guidati via JS (js/home.js,
     initHeroLightSweep/initHeroTitleParallax): usando SEMPRE una transition
     (mai @keyframes con reset istantaneo a inizio/fine) il movimento parte
     sempre da dove si trova realmente il riflesso, senza scatti — risultato
     fluido anche quando un passaggio interrompe l'altro o il mouse cambia
     la posizione di riposo a metà animazione. */
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    background-position 2.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-centered-fpv.is-ready .hero-title-text {
  opacity: 1;
}

/* interazione hover: riflesso leggermente più intenso, entrata rapida /
   uscita lenta (la transizione "lenta" vive sulla regola base sopra) */
@media (hover: hover) and (pointer: fine) {
  .hero-title:hover .hero-title-text {
    filter: brightness(1.1) contrast(1.14);
    transition: filter 0.5s ease;
  }
}

.hero-dim {
  color: rgba(255,255,255,0.2);
}

/* SOTTOTITOLO — resta semplice; una piccola variazione di luminosità
   accompagna il passaggio principale sul titolo */

.hero-centered-text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 30px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.hero-centered-fpv.is-ready .hero-centered-text {
  opacity: 1;
}

@keyframes heroSubtitleGlow {
  0% { opacity: 0.65; }
  50% { opacity: 0.95; }
  100% { opacity: 0.65; }
}

.hero-centered-fpv.is-ready .hero-centered-text.is-glowing {
  animation: heroSubtitleGlow 2.8s cubic-bezier(0.16, 1, 0.3, 1) 1;
}

/* MOBILE — passaggio automatico mantenuto, gradient un po' più semplice */
@media (max-width: 640px) {
  .hero-title-text {
    background-image: linear-gradient(
      100deg,
      #6f6b65 0%,
      #f4f1eb 18%,
      #ffffff 26%,
      #d5b98a 34%,
      #6f6b65 52%,
      #f4f1eb 70%,
      #ffffff 78%,
      #d5b98a 86%,
      #f5f3ee 100%
    );
    background-size: 300% 100%;
  }
}

.hero-centered-content .hero-actions {
  justify-content: center;
  align-items: center;
  gap: 28px;
}

/* wrapper di sola entrata: separato dai bottoni per non ritardarne l'hover */
.hero-cta-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-reveal-1 { transition-delay: 0.55s; }
.hero-cta-reveal-2 { transition-delay: 0.62s; }

.hero-centered-fpv.is-ready .hero-cta-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* CTA — gerarchia: bottone premium contenuto + link testuale */

.hero-cta-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  background: #f2efe9;
  color: #14120f;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.4s ease, transform 0.4s ease;
}

/* luce morbida che attraversa il bottone, solo on hover, mai in loop */
.hero-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-primary:hover::before {
  left: 120%;
}

.hero-cta-primary-arrow {
  display: inline-block;
  font-size: 0.78em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-primary:hover {
  background: #f8f6f2;
  transform: scale(1.015);
}

.hero-cta-primary:hover .hero-cta-primary-arrow {
  transform: translate(3px, -3px);
}

.hero-cta-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(235, 233, 228, 0.68);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.hero-cta-secondary-label {
  position: relative;
}

.hero-cta-secondary-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cta-secondary-arrow {
  display: inline-block;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.hero-cta-secondary:hover {
  color: #fff6ea;
}

.hero-cta-secondary:hover .hero-cta-secondary-label::after {
  right: 0;
}

.hero-cta-secondary:hover .hero-cta-secondary-arrow {
  transform: translateX(3px);
}

/* RESPONSIVE HERO */

@media (max-width: 900px) {
  .hero-centered-content { padding-top: 120px; padding-bottom: 210px; }
}

@media (max-width: 640px) {
  .hero-overlay {
    background:
      radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 34%),
      linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.42) 52%, rgba(0,0,0,0.08) 100%);
  }

  .hero-centered-content {
    padding-top: 34px;
    padding-bottom: 168px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 0.72rem;
    line-height: 1.35;
    color: rgba(200, 169, 126, 0.78);
  }

  .hero-centered-content h1.hero-title {
    margin-bottom: 12px;
    max-width: 18ch;
    font-size: clamp(2rem, 8.4vw, 2.6rem);
    line-height: 1.08;
  }

  .hero-centered-text {
    max-width: 30ch;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-centered-content .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  /* sequenza d'entrata leggermente più rapida su mobile */
  .hero-title-text {
    transition-duration: 0.4s;
  }

  .hero-centered-text {
    transition-delay: 0.28s;
  }

  .hero-cta-reveal {
    transition-duration: 0.32s;
  }

  .hero-cta-reveal-1 { transition-delay: 0.42s; }
  .hero-cta-reveal-2 { transition-delay: 0.48s; }

  .hero-cta-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* ACCESSIBILITÀ — titolo con colore statico elegante, nessuna animazione */
@media (prefers-reduced-motion: reduce) {
  .hero-title-text {
    opacity: 1 !important;
    background-image: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: rgba(245, 244, 240, 0.94) !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero-centered-text,
  .hero-cta-reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero-cta-primary::before {
    display: none !important;
  }

  .hero-title {
    transform: none !important;
  }
}

/* MANIFESTO */

.manifesto.section { padding: 140px 0; }

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.manifesto-title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.35;
  filter: blur(4px);
  transform: translate3d(0, 24px, 0) scale(0.985);
  will-change: transform, opacity, filter;
}

.manifesto-copy {
  position: relative;
  padding-left: 24px;
}

.manifesto-copy::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 1px;
  height: calc(100% - 16px);
  background: linear-gradient(to bottom,
    rgba(200,169,126,0),
    rgba(200,169,126,0.85),
    rgba(200,169,126,0)
  );
}

.manifesto-reveal {
  margin: 0;
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  line-height: 1.78;
  color: #dddddd;
}

.manifesto-reveal .word {
  display: inline-block;
  opacity: 0.22;
  filter: blur(5px);
  transform: translate3d(0, 12px, 0);
  color: rgba(255, 255, 255, 0.38);
  transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.manifesto-reveal .word.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  color: #f5f5f5;
}

/* DRONE TYPES */

.drone-types-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 20px;
}

.drone-types-editorial .drone-type-card {
  position: relative;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #1b1b1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.drone-type-link {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
}

.drone-type-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* wrapper "sovradimensionato": consente il parallax verticale della foto
   senza mai esporre bordi vuoti dentro il riquadro ritagliato */
.drone-type-image-inner {
  position: absolute;
  inset: -8% 0;
  will-change: transform;
}

.drone-type-image-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.04);
}

.drone-type-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.48) 44%, rgba(0,0,0,0.1) 100%);
}

.drone-type-content,
.drone-type-concept-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.drone-types-editorial .drone-type-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.05;
  font-weight: 600;
}

.drone-type-kicker {
  margin: 0 0 14px;
  color: #c8a97e;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.drone-type-content p:last-of-type {
  margin: 0;
  color: #d4d4d4;
  line-height: 1.7;
}

.drone-type-featured {
  border-color: rgba(200, 169, 126, 0.2);
}

.drone-type-concept {
  background:
    radial-gradient(circle at 20% 0%, rgba(200,169,126,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    #1b1b1a;
  border-color: rgba(200, 169, 126, 0.16);
}

.drone-type-line {
  width: 100%; height: 1px;
  margin: 26px 0 20px;
  background: linear-gradient(to right,
    rgba(200,169,126,0),
    rgba(200,169,126,0.7),
    rgba(200,169,126,0)
  );
}

.drone-type-quote {
  color: #f5f5f5 !important;
  font-size: 1.05rem;
  line-height: 1.5 !important;
}

/* SCENE — Drone tradizionale / FPV: reveal a maschera (clip-path), non una
   card cliccabile. Ogni scena si apre una sola volta al primo ingresso in
   viewport (js/home.js, initDroneScenes). */

.drone-scene .drone-type-image {
  transition: clip-path 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.drone-scene-left .drone-type-image {
  clip-path: inset(0 100% 0 0);
}

.drone-scene-right .drone-type-image {
  clip-path: inset(0 0 0 100%);
}

.drone-scene.is-revealed.drone-scene-left .drone-type-image,
.drone-scene.is-revealed.drone-scene-right .drone-type-image {
  clip-path: inset(0 0 0 0);
}

.drone-scene .drone-type-image-inner img {
  transform: scale(1.08);
  filter: brightness(0.5) saturate(1.04) blur(5px);
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1), filter 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.drone-scene.is-revealed .drone-type-image-inner img {
  transform: scale(1);
  filter: brightness(0.5) saturate(1.04) blur(0px);
}

.drone-scene .drone-type-content h3,
.drone-scene .drone-type-content p {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.drone-scene .drone-type-content h3 { transition-delay: 0.3s; }
.drone-scene .drone-type-content p { transition-delay: 0.42s; }

.drone-scene.is-revealed .drone-type-content h3,
.drone-scene.is-revealed .drone-type-content p {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .drone-scene .drone-type-image {
    transition: none !important;
    clip-path: inset(0 0 0 0) !important;
  }

  .drone-scene .drone-type-image-inner img {
    transition: none !important;
    transform: none !important;
    filter: brightness(0.5) saturate(1.04) !important;
  }

  .drone-scene .drone-type-content h3,
  .drone-scene .drone-type-content p {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* DRONE CARD — REVEAL SCALE + FADE (solo per la scheda "differenza") */

.drone-types-editorial .drone-type-card.reveal-on-scroll {
  opacity: 0;
  transform: scale(0.94) translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.drone-types-editorial .drone-type-card.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.drone-types-editorial .drone-type-card.reveal-delay-2 {
  transition-delay: 0.24s;
}

/* APPLICATIONS */

.applications-grid-cinematic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.application-card-cinematic {
  position: relative;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  background: #1b1b1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.application-card-link {
  position: relative;
  display: block;
  width: 100%; height: 100%;
  min-height: inherit;
}

.application-card-media {
  position: absolute;
  inset: 0;
}

.application-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: brightness(0.5) saturate(1.04);
  transition: transform 0.75s ease, filter 0.4s ease;
}

.application-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.46) 45%, rgba(0,0,0,0.12) 100%);
}

.application-card-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: transform 0.35s ease;
}

.application-card-cinematic h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1;
  color: #ffffff;
}

.application-card-cinematic p {
  margin: 0;
  max-width: 32ch;
  color: #dddddd;
  line-height: 1.65;
  font-size: 1rem;
  opacity: 0.78;
}

.application-arrow {
  position: absolute;
  right: 22px; bottom: 20px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.84);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .applications-grid-cinematic:hover .application-card-cinematic {
    opacity: 0.72;
  }

  .applications-grid-cinematic .application-card-cinematic:hover {
    opacity: 1;
    z-index: 5;
    transform: translateY(-8px) scale(1.045);
    border-color: rgba(200, 169, 126, 0.38);
    box-shadow: 0 24px 70px rgba(0,0,0,0.42);
  }

  .application-card-cinematic:hover .application-card-media img {
    transform: scale(1.09);
    filter: brightness(0.66) saturate(1.07);
  }

  .application-card-cinematic:hover .application-card-content {
    transform: translateY(-6px);
  }

  .application-card-cinematic:hover .application-arrow {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.about-image {
  max-width: 420px;
}

.about-image img {
  width: 100%;
  height: clamp(360px, 48vw, 520px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.about-copy {
  max-width: 620px;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.about-copy p:last-child {
  margin: 18px 0 0;
  max-width: 56ch;
  color: #dddddd;
  line-height: 1.8;
  font-size: 1.15rem;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-image {
    max-width: 520px;
  }

  .about-image img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .about-image img {
    height: 340px;
    border-radius: 22px;
  }

  .about-copy h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

/* BEYOND */

.beyond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.beyond-grid h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.beyond-grid p {
  color: #dddddd;
  line-height: 1.8;
  font-size: 1.15rem;
}

/* RESPONSIVE HOME */

@media (max-width: 1050px) {
  .drone-types-editorial {
    grid-template-columns: 1fr 1fr;
  }

  .drone-type-concept {
    grid-column: 1 / -1;
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .manifesto-grid,
  .beyond-grid,
  .about-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .manifesto-title {
    max-width: 15ch;
    font-size: clamp(2rem, 7vw, 3.1rem);
    line-height: 1.06;
  }
  .manifesto-copy { padding-left: 18px; }

  .applications-grid-cinematic {
    grid-template-columns: repeat(2, 1fr);
  }

  .drone-types-editorial {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .drone-types-editorial {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .drone-type-media {
    transform: none;
    opacity: 0.82;
    transition: border-color 0.32s ease, box-shadow 0.32s ease, opacity 0.32s ease;
  }

  .drone-type-media.is-focused {
    opacity: 1;
    border-color: rgba(200, 169, 126, 0.42);
    box-shadow: 0 18px 42px rgba(0,0,0,0.38);
  }

  .drone-type-media.is-near {
    opacity: 0.92;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .drone-scene .drone-type-image-inner img {
    filter: brightness(0.64) saturate(1.07);
  }

  .drone-scene.is-focused .drone-type-image-inner img {
    filter: brightness(0.74) saturate(1.08);
  }

  .drone-type-media .drone-type-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.34) 44%, rgba(0,0,0,0.05) 100%);
  }

  .applications-grid-cinematic {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .application-card-cinematic {
    transform: none;
    opacity: 1;
    transition: border-color 0.32s ease, box-shadow 0.32s ease;
    will-change: transform, opacity;
  }

  .application-card-cinematic.is-focused {
    border-color: rgba(200, 169, 126, 0.42);
    box-shadow: 0 18px 42px rgba(0,0,0,0.38);
  }

  .application-card-cinematic.is-near {
    border-color: rgba(255, 255, 255, 0.12);
  }

  .application-card-media img {
    filter: brightness(0.64) saturate(1.07);
  }

  .application-card-cinematic.is-focused .application-card-media img {
    filter: brightness(0.74) saturate(1.08);
  }

  .application-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.34) 45%, rgba(0,0,0,0.05) 100%);
  }

  .application-arrow {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dim {
  color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 640px) {
  .hero-dim {
    color: rgba(255, 255, 255, 0.38);
  }

  .manifesto-reveal .word {
    color: rgba(255, 255, 255, 0.48);
  }

  .manifesto.section {
    padding: 56px 0;
  }

  .manifesto-grid {
    gap: 22px;
  }

  .manifesto-title {
    max-width: 16ch;
    font-size: clamp(1.75rem, 7.2vw, 2.25rem);
    line-height: 1.1;
  }

  .manifesto-copy {
    padding-left: 16px;
  }

  .manifesto-reveal {
    font-size: 1rem;
    line-height: 1.66;
  }

  .drone-types-editorial .drone-type-card,
  .application-card-cinematic {
    min-height: 280px;
    border-radius: 14px;
  }

  .drone-scene {
    min-height: 340px;
  }

  .drone-type-content,
  .drone-type-concept-inner,
  .application-card-content {
    padding: 22px;
  }

  .drone-types-editorial .drone-type-card h3,
  .application-card-cinematic h3 {
    font-size: 1.38rem;
    line-height: 1.08;
  }

  .drone-type-content p:last-of-type,
  .application-card-cinematic p {
    font-size: 0.95rem;
    line-height: 1.58;
  }
}
