/* HERO */

.hero-centered-fpv {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.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%);
}

/* FRAME ANGOLI */

.hero-hud-frame {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
}

.hud-corner {
  position: absolute;
  width: 22px;
  height: 22px;
}

.hud-corner.tl {
  top: -1px; left: -1px;
  border-top: 2px solid rgba(200,169,126,0.65);
  border-left: 2px solid rgba(200,169,126,0.65);
}

.hud-corner.tr {
  top: -1px; right: -1px;
  border-top: 2px solid rgba(200,169,126,0.65);
  border-right: 2px solid rgba(200,169,126,0.65);
}

.hud-corner.bl {
  bottom: -1px; left: -1px;
  border-bottom: 2px solid rgba(200,169,126,0.65);
  border-left: 2px solid rgba(200,169,126,0.65);
}

.hud-corner.br {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid rgba(200,169,126,0.65);
  border-right: 2px solid rgba(200,169,126,0.65);
}

/* RETICLE */

.hero-reticle-centered {
  position: absolute;
  left: 50%; top: 50%;
  width: 150px; height: 150px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.72;
}

.reticle-ring {
  position: absolute;
  border-radius: 999px;
}

.reticle-ring.outer {
  inset: 0;
  border: 1px solid rgba(255,255,255,0.075);
}

.reticle-ring.inner {
  inset: 28px;
  border: 1px solid rgba(255,255,255,0.05);
}

.reticle-line {
  position: absolute;
  left: 50%; top: 50%;
  background: rgba(255,255,255,0.095);
  transform: translate(-50%, -50%);
}

.reticle-line.x { width: 60px; height: 1px; }
.reticle-line.y { width: 1px; height: 60px; }

.reticle-dot {
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(200,169,126,0.78);
  box-shadow: 0 0 10px rgba(200,169,126,0.34);
  transform: translate(-50%, -50%);
}

/* SCANLINE */

.hero-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(200,169,126,0.28), transparent);
  animation: heroScanline 5.2s linear infinite;
}

@keyframes heroScanline {
  0%   { top: 5%; opacity: 0; }
  12%  { opacity: 0.45; }
  88%  { opacity: 0.45; }
  100% { top: 95%; opacity: 0; }
}

/* HUD OVERLAY GENERALE */

.hero-hud-centered {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-centered-fpv.is-ready .hero-hud-centered {
  opacity: 0.82;
}

/* TOP BAR */

.hud-topbar {
  position: absolute;
  top: 24px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.hud-topleft {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hud-topright {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
}

.hud-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: 3px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.58);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hud-badge-gold {
  border-color: rgba(200,169,126,0.28);
  color: rgba(200,169,126,0.85);
}

.hud-rec-badge {
  border-color: rgba(200,169,126,0.34);
  color: rgba(255,255,255,0.72);
}

.hud-readout {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 3px;
  background: rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.075);
  color: rgba(255,255,255,0.66);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.hud-readout-right {
  justify-content: flex-end;
}

.hud-readout-label {
  color: rgba(255,255,255,0.32);
}

.hud-readout-value {
  color: rgba(255,255,255,0.82);
}

.hud-battery {
  position: relative;
  width: 24px;
  height: 9px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 2px;
  padding: 1px;
}

.hud-battery::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -4px;
  width: 2px;
  height: 3px;
  border-radius: 0 1px 1px 0;
  background: rgba(255,255,255,0.34);
}

.hud-battery-fill {
  display: block;
  width: 87%;
  height: 100%;
  border-radius: 1px;
  background: rgba(200,169,126,0.78);
}

.rec-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c8a97e;
  box-shadow: 0 0 8px rgba(200,169,126,0.8);
  flex-shrink: 0;
  animation: recBlink 1.6s ease-in-out infinite;
}

@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* SIDEBAR SINISTRA E DESTRA */

.hud-sidebar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hud-sidebar-left { left: 24px; }
.hud-sidebar-right { right: 24px; align-items: flex-end; }

.hud-data {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hud-data-right { align-items: flex-end; }

.hud-data-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.hud-data-value {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.72);
  line-height: 1;
}

.hud-data-gold { color: #c8a97e; }

.hud-data-sm { font-size: 12px; }

.hud-data-divider {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
  margin: 2px 0;
}

.hud-sidebar-right .hud-data-divider {
  align-self: flex-end;
}

/* SIGNAL BARS */

.hud-signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-top: 3px;
}

.hud-bar {
  width: 4px;
  border-radius: 1px;
  background: rgba(200,169,126,0.6);
}

.hud-bar:nth-child(1) { height: 5px; }
.hud-bar:nth-child(2) { height: 8px; }
.hud-bar:nth-child(3) { height: 11px; }
.hud-bar:nth-child(4) { height: 14px; }
.hud-bar-dim { opacity: 0.2; }

/* BOTTOM BAR */

.hud-bottombar {
  position: absolute;
  bottom: 22px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hud-bottomleft {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hud-bottomright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hud-coords {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.22);
  font-variant-numeric: tabular-nums;
}

.hud-small {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

.hud-small-active {
  color: rgba(200,169,126,0.65);
}

/* CONTENUTO PRINCIPALE */

.hero-centered-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 920px;
  padding-top: 140px;
  padding-bottom: 88px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-centered-fpv.is-ready .hero-centered-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.28);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-centered-content h1 {
  margin: 0 auto 24px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.hero-dim {
  color: rgba(255,255,255,0.2);
}

.hero-centered-text {
  color: rgba(255,255,255,0.72);
  font-size: 1.35rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-centered-content .hero-actions {
  justify-content: center;
}

/* BOTTONI HERO */

.hero-centered-content .btn-primary {
  background: #ffffff;
  color: #111111;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-centered-content .btn-primary:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}

.hero-centered-content .btn-secondary {
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 126, 0.4);
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.hero-centered-content .btn-secondary:hover {
  border-color: rgba(200, 169, 126, 0.75);
  background: rgba(200, 169, 126, 0.08);
  transform: translateY(-2px);
}

/* RESPONSIVE HERO */

@media (max-width: 900px) {
  .hud-sidebar { display: none; }

  .hud-topbar {
    top: 76px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .hud-topleft,
  .hud-topright {
    max-width: calc(50% - 5px);
  }

  .hud-topright {
    align-items: flex-end;
  }

  .hud-bottombar { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hud-bottomright { align-items: flex-start; }

  .hero-centered-content { padding-top: 120px; padding-bottom: 72px; }
}

@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-hud-frame { inset: 8px; }
  .hud-corner { width: 16px; height: 16px; }

  .hero-reticle-centered {
    opacity: 0.42;
  }

  .reticle-ring.outer,
  .reticle-ring.inner {
    border-color: rgba(255,255,255,0.06);
  }

  .reticle-line {
    background: rgba(255,255,255,0.08);
  }

  .reticle-dot {
    opacity: 0.62;
    box-shadow: 0 0 9px rgba(200,169,126,0.34);
  }

  .hud-topbar {
    top: 68px;
    left: 18px;
    right: 18px;
  }

  .hud-badge,
  .hud-readout {
    min-height: 22px;
    font-size: 8px;
    padding: 0 7px;
  }

  .hud-topleft,
  .hud-topright {
    gap: 5px;
  }

  .hud-readout {
    gap: 5px;
  }

  .hud-readout-label {
    display: none;
  }

  .hero-centered-content {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 0.72rem;
    line-height: 1.35;
    color: rgba(200, 169, 126, 0.78);
  }

  .hero-centered-content h1 {
    margin-bottom: 18px;
    font-size: clamp(3.1rem, 13.5vw, 4rem);
    line-height: 0.9;
  }

  .hero-centered-text {
    max-width: 34ch;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.16rem;
    line-height: 1.55;
  }

  .hero-centered-content .hero-actions { flex-direction: column; }
  .hero-centered-content .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    font-size: 1rem;
  }

  .hero-centered-content .btn-primary {
    background: #ffffff;
    color: #0b0b0b;
    opacity: 1;
    filter: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(255,255,255,0.92);
  }
}

/* MANIFESTO */

.manifesto.section { padding: 36px 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: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #1b1b1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.drone-type-link {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
}

.drone-type-image {
  position: absolute;
  inset: 0;
}

.drone-type-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.04);
  transform: scale(1.02);
  transition: transform 0.65s ease, filter 0.35s ease;
}

.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;
  transition: transform 0.32s ease;
}

.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.28);
}

.drone-type-arrow {
  position: absolute;
  right: 24px; bottom: 22px;
  opacity: 0;
  transform: translateY(8px);
  color: rgba(255,255,255,0.86);
  font-size: 1.2rem;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.drone-type-media:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 126, 0.34);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.drone-type-media:hover .drone-type-image img {
  transform: scale(1.06);
  filter: brightness(0.62) saturate(1.06);
}

.drone-type-media:hover .drone-type-content {
  transform: translateY(-6px);
}

.drone-type-media:hover .drone-type-arrow {
  opacity: 1;
  transform: translateY(0);
}

.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;
}

/* DRONE CARDS — REVEAL SCALE + FADE */

.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-1 {
  transition-delay: 0.12s;
}

.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) {
  .hero-hud-top {
    top: 76px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-hud-bottom { font-size: 0.6rem; }

  .hero-corners-centered { inset: 12px; }
  .hero-corners-centered .corner { width: 22px; height: 22px; }

  .hero-reticle-centered { width: 140px; height: 140px; }
  .reticle-ring.inner { inset: 24px; }
  .reticle-line.x { width: 46px; }
  .reticle-line.y { height: 46px; }

  .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-type-media .drone-type-image img {
    filter: brightness(0.64) saturate(1.07);
  }

  .drone-type-media.is-focused .drone-type-image 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,
  .drone-type-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: 46px 0 54px;
  }

  .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-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;
  }
}
