/* PanoptX site — styled to match Prescott AI vibe
   Dark base, angled bands, minimal tech aesthetic.
*/

:root{
  --nav-h: 68px;

  /* Black + gold palette */
  --bg-main:#000000;
  --bg-products:#070707;
  --nav-bg:#000000;

  --gold:#D6B04A;
  --gold-soft: rgba(214,176,74,.78);
  --heading: var(--gold);
  --text:#FFFFFF;

  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.56);
  --tile: rgba(214,176,74,.06);
  --tile2: rgba(214,176,74,.08);
  --stroke: rgba(214,176,74,.18);

  --radius: 18px;
  --shadow: 0 12px 40px rgba(0,0,0,.35);

  --max: 1040px;
}

*{box-sizing:border-box}
html,body{
  padding-top: 8px;
  height:100%}
body{
  margin:0;
  font-family: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text);
  line-height: 1.45;
}

a{color: inherit; text-decoration: none}
.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

h1,h2,h3{
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}
h1{font-size: clamp(2.0rem, 3.5vw, 3.1rem); line-height:1.05}
h2{font-size: clamp(1.6rem, 2.4vw, 2.1rem)}
h3{font-size: 1.05rem}

p{margin:0 0 12px 0; color: var(--muted)}
.lead{font-size: 1.05rem; color: var(--muted)}
.kicker{
  display:inline-block;
  color: var(--heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  margin-bottom: 14px;
}

.topnav{
  left: 0;
  right: 0;
  width: 100%;
  position: fixed;
  top:0;
  z-index: 50;
  height: var(--nav-h);
  background-color: rgba(0,0,0,var(--nav-alpha,0));
  backdrop-filter: blur(calc(10px * var(--nav-blur,0)));
  border-bottom: 1px solid rgba(255,255,255,var(--nav-border-alpha,0));
  transition: background-color 260ms ease, backdrop-filter 260ms ease, border-color 260ms ease;
}
.topnav.scrolled{
  --nav-alpha: .82;
  --nav-blur: 1;
  --nav-border-alpha: .06;
}
.nav-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand-wordmark{
  height: 30px;
  width: auto;
  display:block;
}
@media (max-width: 720px){
  .brand-wordmark{ height: 26px; }
}

.brand-text{
  display:block;
  padding-left: 20px;
  font-family: var(--font-head, "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 22px; /* larger than the old SVG */
  line-height: 1;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links{
  margin-left: auto;
  display:flex;
  align-items:center;
  gap: 18px;
  padding-right: 0;
}
.nav-links a{
  position: relative;
  color: rgba(255,255,255,.78);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 12px;
  border-radius: 10px;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left: 2px;
  right: 2px;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.6);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{
  opacity: 1;
  transform: scaleX(1);
}

/* While hovering the navbar, only underline the link under the cursor.
   The scroll "active" underline returns when not hovering. */
.nav-links:hover a.active::after{
  opacity: 0;
  transform: scaleX(.6);
}
.nav-links:hover a:hover::after{
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle{
  display:none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: transparent;
  padding: 10px;
}

.nav-toggle span{
  display:block;
  height:2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 2px;
}


.band{position:relative; padding: 86px 0}

/* Tighten vertical rhythm between Use cases and How it works */
#usecases.band{ padding-bottom: 42px; }
#howitworks.band{ padding-top: 42px; padding-bottom: 42px; }

.band-main{background: var(--bg-main)}
.band-products{background: var(--bg-products)}

.angle{
  position:absolute;
  left:0; right:0;
  height: 90px;
  background: inherit;
  pointer-events:none;
}
.angle-down{
  bottom:-45px;
  clip-path: polygon(0 0, 100% 0, 100% 55%, 0 100%);
}
.angle-up{
  top:-45px;
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
}

.hero{padding-top: 88px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: start;
}
.hero-actions{display:flex; gap:12px; margin-top: 18px; flex-wrap: wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.btn.primary{
  background: rgba(117,139,213,.24);
  border-color: rgba(117,139,213,.38);
}
.btn.primary:hover{background: rgba(117,139,213,.30)}
.btn.ghost:hover{background: rgba(255,255,255,.07)}

.hero-metrics{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.metric{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 12px 12px;
}
.metric-num{
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}
.metric-label{color: var(--muted2); font-size: .86rem}

.hero-card .card-surface{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.card-header h2{font-size: 1.25rem; margin-bottom: 6px}
.card-header p{margin-bottom: 14px}

.checklist{list-style:none; padding:0; margin:0}
.checklist li{
  display:flex; gap:10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
}
.checklist li:first-child{border-top: 0}
.dot{
  width: 9px; height: 9px; margin-top: 7px;
  border-radius: 999px;
  background: rgba(117,139,213,.95);
  box-shadow: 0 0 0 6px rgba(117,139,213,.16);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.section-head h2{color: var(--heading)}
.section-head p{max-width: 62ch}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tile,.feature{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px 16px;
}
.tile h3,.feature h3{margin-bottom: 8px; color:#fff}
.tile p,.feature p{margin:0; color: var(--muted)}

.product-slab{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  padding: 18px 18px;
}
.slab-left h3{color:#fff}
.slab-bullets{display:grid; gap: 10px}
.bullet{
  display:flex; align-items:center; gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 32px; height: 28px;
  border-radius: 999px;
  background: rgba(117,139,213,.18);
  border: 1px solid rgba(117,139,213,.32);
  color:#fff;
  font-weight: 800;
}

.steps{display:grid; gap: 12px}
.step{
  display:flex; gap: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 14px 14px;
}
.step-num{
  width: 36px; height: 36px;
  border-radius: 12px;
  background: rgba(117,139,213,.18);
  border: 1px solid rgba(117,139,213,.32);
  display:flex; align-items:center; justify-content:center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}
.step-body h3{margin-bottom:6px}
.step-body p{margin:0}

.callout{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(117,139,213,.26);
  background: rgba(117,139,213,.12);
  padding: 16px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.callout h3{margin-bottom: 6px}
.callout p{margin:0; color: rgba(255,255,255,.82)}

.quote{
  margin-top: 20px;
  border-left: 3px solid rgba(117,139,213,.72);
  padding: 8px 0 8px 14px;
}
.quote p{
  margin:0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,.90);
}

.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:start;
}
.contact-left h2{color: var(--heading)}
.contact-cards{
  display:flex; gap: 12px; flex-wrap: wrap;
  margin-top: 14px;
}
.mini{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 12px 12px;
  min-width: 200px;
}
.mini-title{
  color: var(--muted2);
  font-size: .82rem;
  margin-bottom: 6px;
}

.contact-form{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 16px 16px;
}
label{display:block; margin-bottom: 10px; color: rgba(255,255,255,.82); font-weight: 600; font-size: .92rem}
input,textarea{
  width:100%;
  margin-top: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color:#fff;
  padding: 12px 12px;
  font: inherit;
  outline: none;
}
input:focus,textarea:focus{border-color: rgba(117,139,213,.52)}
.tiny{font-size: .82rem}

.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.40);
  padding: 22px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}
.footer-mark{height: 18px; width:auto; opacity: .95}
.footer-right{display:flex; gap: 14px; flex-wrap: wrap}
.footer-right a{color: rgba(255,255,255,.72)}
.footer-right a:hover{color:#fff}

.muted{color: var(--muted2)}
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .hero-card{order: 2}
  .hero-metrics{grid-template-columns: 1fr; }
  .grid-3{grid-template-columns: 1fr; }
  .grid-2{grid-template-columns: 1fr; }
  .product-slab{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .section-head{flex-direction: column; align-items:flex-start}

  .hero-v2-left{ align-items: center; }
  .hero-v2-figure{ margin-left: auto; margin-right: auto; }
  .hero-v2-logo{ margin-left: auto; margin-right: auto; }
}

@media (max-width: 860px){
  .nav-toggle{display:inline-block}

  /* Mobile dropdown: right-aligned, compact tall rectangle */
  .nav-links{
    position: absolute;
    top: var(--nav-h);
    right: 12px;
    left: auto;
    display:none;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    padding: 12px 14px;
    width: max-content;
    max-width: calc(100vw - 24px);
    background: rgba(0,0,0,.78);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    backdrop-filter: blur(10px);
  }
  .nav-links.open{display:flex}

  /* Keep underline only under text (not full row) */
  .nav-links a{
    padding: 10px 12px;
    width: fit-content;
    align-self: flex-end;
    text-align: right;
  }
}



/* --- Landing hero (Orbital-inspired layout, PanoptX colors) --- */
.hero-orbital{
  background: var(--bg-main);
  color: var(--text);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: clamp(64px, 10vh, 110px) 0;
  position: relative;
  overflow: hidden;
}
.hero-orbital-grid{
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}
.hero-orbital-right{
  justify-self: start;
  max-width: 62ch;
  text-align: left;
}
.hero-orbital-lead{
  margin: 0 0 12px 0;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 5.2vw, 74px);
  line-height: 1.02;
  color: var(--text);
}
.hero-orbital-sub{
  margin: 0;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,.78);
}
.hero-orbital-spacer{
  min-height: 1px;
}

/* Intro band now follows hero */

/* Intro band now follows hero */
.band-intro{
  padding-top: clamp(56px, 7vh, 84px);
}
.band-intro .hero-card .card-surface{
  border-color: rgba(255,255,255,.08);
}

/* Make in-page anchors land below fixed nav */
section{ scroll-margin-top: calc(var(--nav-h) + 18px); }

@media (max-width: 860px){
  .hero-orbital-grid{ grid-template-columns: 1fr; }
  .hero-orbital-left{ display:none; }
}

.hero-tag{font-family: var(--font-accent); letter-spacing:.18em; font-size:12px; font-weight:700; margin:0; color: var(--gold-soft);}


/* --- Technical data section (Orbital-inspired) --- */
.tech-band{ padding-top: clamp(56px, 7vh, 92px); }
.tech-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 3.5vw, 72px);
  align-items: start;
}

.tech-right{
  padding-top: 0;
}

.tech-kicker{
  display:flex;
  align-items:center;
  gap: 12px;
  font-family: var(--font-accent);
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 26px 0;
  color: var(--gold-soft);
}
.tech-kicker .sq{
  width: 8px; height: 8px; background: var(--gold-soft); display:inline-block; border-radius:2px;
}
.tech-title{
  margin: 0 0 18px 0;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(35px, 5.5vw, 56px);
  line-height: 1.00;
  color: var(--gold);
}

.tech-figure{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  position: relative;
  overflow:hidden;
}

.tech-right-lead{
  margin: 0 0 26px 0;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  font-size: 18px;
  max-width: 70ch;
}

.tech-rows{
  border-top: 1px solid rgba(255,255,255,.10);
}
.tech-row{
  display:grid;
  grid-template-columns: 42px 180px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  align-items: start;
}
.tech-num{
  font-family: var(--font-accent);
  color: rgba(255,255,255,.70);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 12px;
  padding-top: 2px;
}
.tech-label{
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.tech-desc{
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

@media (max-width: 900px){
  .tech-grid{ grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .tech-left{ display:flex; flex-direction: column; align-items: center; }
  .tech-kicker{ justify-content: flex-start; width: 100%; }
  .tech-title{ text-align: center; }
  .tech-figure{ margin-left: auto; margin-right: auto; }
  .tech-row{ grid-template-columns: 42px 1fr; text-align: left; }
  .tech-desc{ grid-column: 2 / -1; }
}

/* --- Landing hero v2 (Orbital-inspired layout, PanoptX palette) --- */
.hero-orbital.hero-orbital-v2{
  min-height: calc(100vh - var(--nav-h));
  padding: clamp(72px, 10vh, 120px) 0 clamp(40px, 7vh, 84px);
  display:flex;
  align-items: center;
}
.hero-v2-grid{
  width: 100%;
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: center; /* keep logo + text vertically centered */
}
.hero-v2-left{
  position: relative;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-v2-figure {
  margin-top: 0;
  width: 100%;
  max-width: 400px;
  aspect-ratio: auto;
  border-radius: 0;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-v2-logo{
  display:block;
  width: min(360px, 80%);
  height: auto;
  max-height: 100%;
  opacity: 0.95;
  filter: none;
}
.hero-v2-right{
  padding-top: 0;
}
.hero-v2-title{
  margin: 0 0 22px 0;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: clamp(56px, 6.4vw, 112px);
  line-height: .94;
  color: var(--gold);
}
.hero-v2-body{
  margin: 0;
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
}

@media (max-width: 920px){
  .hero-v2-grid{ grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-v2-right{ padding-top: 0; display:flex; flex-direction: column; align-items: center; }
  .hero-v2-left{ min-height: auto; padding-left: 0; padding-top: 0; display:flex; flex-direction: column; align-items: center; }
  .hero-v2-body{ margin-left: auto; margin-right: auto; }
  .hero-v2-figure{ max-width: 100%; margin-left: auto; margin-right: auto; }
}


/* Hero spacing (final) */
.hero-orbital.hero-orbital-v2{
  padding-top: 28px;
  padding-bottom: 56px;
}
.hero-v2-left{
  padding-left: 0;
  padding-top: 0;
}
.hero-v2-right{ padding-top: 0; }


/* Wider container used for specific sections */
.container--wide{
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}


/* Cap hero/diagram media so they don't balloon on narrow layouts */
.hero-v2-figure{ max-width: 400px; }
.tech-figure{ max-width: 720px; }
@media (max-width: 920px){
  /* Keep the landing logo centered when the layout stacks */
  .hero-v2-figure{ max-width: 300px; margin-left: auto; margin-right: auto; }
  .tech-figure{ max-width: 720px; }

  /* Remove any left offset/padding in stacked layout */
  .hero-v2-left{ padding-left: 0; align-items: center; }
}


/* --- v8: benefits-style section layout --- */
.section-head{
  margin-bottom: 56px;
}
.grid-3, .grid-2{
  gap: 56px;
}
/* Card row separators like the reference */
.tile, .feature{
  background-color: rgba(0,0,0,0);
  border: 0;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px;
  position: relative;
}
/* Icon placeholder */
.tile::before, .feature::before{
  content:"";
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  display:block;
  margin-bottom: 22px;
}
.tile h3, .feature h3{
  font-size: 20px;
  letter-spacing: -0.01em;
}
.tile p, .feature p{
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: 16px;
}
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}


/* Use case strip at bottom of Platform section */
.usecase-strip{
  margin-top: 64px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.usecase-label{
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.usecase-items{
  color: rgba(255,255,255,.68);
  line-height: 1.6;
}


.tech-figure-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .55;
  filter: invert(1);
}


/* --- v11: remove tile top borders --- */
.tile, .feature{
  border-top: 0 !important;
  padding-top: 0 !important;
}


/* --- v12: ensure section titles use primary text color (not accent/blue) --- */
.section-head-kicker h2{
  color: var(--gold);
}

/* --- v12: product svg placeholder should blend with page --- */
.tech-figure{
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.tech-figure-img{
  filter: none !important;
  opacity: .9;
}

.angle{display:none !important;}

/* Improve anchor positioning under fixed nav */
section[id]{
  scroll-margin-top: calc(var(--nav-h) + 18px);
}


/* --- v13: tighter spacing for more usable content area --- */
.band{ padding: 56px 0; }
.section-head{ margin-bottom: 22px !important; }
.grid-3{ gap: 28px !important; }
.grid-2{ gap: 28px !important; }

/* More separation between How it works and Request a demo, but tighter space below the demo section */
#howitworks.band{ padding-bottom: 86px; }
#contact.band{ padding-top: 86px; padding-bottom: 40px; }

/* Stacked view: reduce perceived whitespace below the product SVG */
@media (max-width: 900px){
  .tech-figure{ aspect-ratio: 16 / 6; }
  .tech-figure-img{ object-position: center top; }
}

/* Use SVG icons instead of pseudo icons */
.tile::before, .feature::before{ content:none !important; display:none !important; }
.tile-icon{
  width: 58px;
  height: 58px;
  display:block;
  margin-bottom: 16px;
  opacity: .95;
  filter: invert(1) !important; /* make SVGs white */
}
/* Ensure product drone svg is white too */
.tech-figure-img{
  filter: invert(1) !important;
  opacity: .95;
}



/* Bottom mark replaces old bottom buttons area */
.bottom-mark{
  position: fixed;
  right: 24px;
  bottom: 18px;
  z-index: 50;
  font-family: var(--font-accent);
  letter-spacing: .08em;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  pointer-events: none;
}


.footer-meta{
  font-family: var(--font-accent);
  letter-spacing: .08em;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}
.footer-link{ color: inherit; text-decoration: none; }
.footer-link:hover{ text-decoration: underline; }



/* --- v2: contact section sizing + Formspree --- */
.contact-grid{
  align-items: start;
}
.contact-form{
  width: 100%;
  max-width: 520px;
}
@media (min-width: 1100px){
  .contact-grid{
    grid-template-columns: 1fr 520px;
    gap: 56px;
  }
}

/* Fallbacks if class names differ */
.contact .card.form-card, .contact .form-card, #contact .form-card, #contact form{
  max-width: 520px;
}


/* --- v3: contact layout (text left, form right) --- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr 520px;
    align-items: start;
    gap: 64px;
  }
}
.contact-right .contact-form,
.contact-right form{
  width: 100%;
  max-width: 520px;
}


/* --- v4: enforce side-by-side contact layout --- */
#contact .contact-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px){
  #contact .contact-grid{
    grid-template-columns: 1fr 520px;
    gap: 64px;
    align-items:start;
  }
}
#contact .contact-right .contact-form{
  width:100%;
  max-width:520px;
}
#contact .contact-left{
  max-width: 720px;
}


/* --- v5: contact grid + formspree status --- */
.container.contact{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px){
  .container.contact{
    grid-template-columns: 1fr 520px;
    gap: 64px;
  }
}
.contact-form{
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.form-status{
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.form-status.success{ color: rgba(180,255,210,.9); }
.form-status.error{ color: rgba(255,190,190,.9); }


/* --- v6: contact centering + prevent flush-left --- */
.container.contact{
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 520px){
  .container.contact{ padding-left: 20px; padding-right: 20px; }
}
#contact .contact-right{ align-self: start; }
#contact .contact-form{ align-self: start; margin-top: 0; }


/* --- v7: rebuilt contact section (tight container + right-side form) --- */
#contact .contact-wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 900px){
  #contact .contact-wrap{
    grid-template-columns: 520px 520px;
    justify-content: center;
    gap: 64px;
  }
}
#contact .contact-copy{
  max-width: 520px;
}
#contact .contact-copy h2{
  margin: 0 0 14px 0;
  color: var(--heading);
}
#contact .contact-copy p{
  margin: 0;
  max-width: 520px;
}
#contact .contact-form{
  width: 100%;
  max-width: 520px;
  justify-self: center;
  margin: 0;
}
#contact .contact-form label{
  display:block;
  margin-bottom: 14px;
}
#contact .contact-form label span{
  display:block;
  margin-bottom: 8px;
  opacity: .9;
  font-weight: 600;
}
#contact .contact-form .form-status{
  margin-top: 12px;
  font-size: 14px;
  opacity: .85;
}
#contact .contact-form .form-status.success{ color: rgba(180,255,210,.95); }
#contact .contact-form .form-status.error{ color: rgba(255,190,190,.95); }


/* --- v8: form validation UX + responsive overflow guards --- */
html, body { overflow-x: hidden; }

/* Contact: keep everything inside viewport on small screens */
#contact .contact-wrap{
  width: 100%;
  box-sizing: border-box;
}
#contact .contact-copy, #contact .contact-form{
  min-width: 0; /* allow grid items to shrink */
}
#contact .contact-form input,
#contact .contact-form textarea{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Button enabled/disabled styling */
#contact .contact-form button.btn[disabled]{
  opacity: .45;
  cursor: not-allowed;
  filter: saturate(.7);
}
#contact .contact-form button.btn:not([disabled]){
  opacity: 1;
  cursor: pointer;
}
#contact .contact-form button.btn:not([disabled]):hover{
  filter: brightness(1.08);
}
#contact .contact-form .form-hint{
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
#contact .contact-form .form-hint.error{
  color: rgba(255,190,190,.95);
}

/* Hero text buffer on small screens */
@media (max-width: 520px){
  .hero, #hero, .band-hero { padding-left: 20px !important; padding-right: 20px !important; }
  .hero * { max-width: 100%; }
}


/* --- v9: send button enabled state + contact overflow fixes --- */
#contact .contact-form .btn{
  color: #fff;
}
#contact .contact-form .btn:not([disabled]){
  background: var(--heading);
  border-color: rgba(255,255,255,.14);
}
#contact .contact-form .btn:not([disabled]):hover{
  filter: brightness(1.06);
}
#contact .contact-form .btn[disabled]{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}

/* Prevent contact grid from overflowing near breakpoint */
#contact .contact-wrap{
  max-width: min(1120px, calc(100% - 64px));
}
@media (min-width: 900px){
  #contact .contact-wrap{
    grid-template-columns: minmax(0, 520px) minmax(0, 520px);
    gap: 48px;
  }
}
@media (max-width: 899px){
  #contact .contact-wrap{
    max-width: 100%;
  }
}

/* Hero text safe padding on small screens */
@media (max-width: 520px){
  .hero, #hero{ padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
  .hero .hero-inner, #hero .hero-inner{ max-width: 100%; }
}

/* Use cases — centered flex grid: 3 → 2 → 1 */
.usecases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.usecases-grid .tile {
  flex: 0 1 calc(33.33% - 20px);
  min-width: 200px;
}
@media (max-width: 860px) {
  .usecases-grid .tile {
    flex: 0 1 calc(50% - 14px);
  }
}
@media (max-width: 520px) {
  .usecases-grid .tile {
    flex: 0 1 100%;
  }
}


/* Product kicker container spacing */
#product > .container {
  margin-bottom: 28px;
}
/* Nudge drone SVG right and up to align with body text (past the title) */
#product .tech-figure {
  margin-left: clamp(0px, 3vw, 36px);
  margin-top: -48px;
}

/* Product right column — improved text layout */
.tech-intro {
  margin: 0 0 22px 0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.8;
  max-width: 52ch;
}
.tech-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tech-bullets li {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.65;
}
.tech-bullets strong {
  color: rgba(255,255,255,.92);
  font-weight: 600;
}


.footer a[href*='prescott'] { text-decoration: underline !important; }
.footer a[href*='prescott']:hover { text-decoration: underline !important; opacity:1; transform:none; }

.footer a[href*='prescott'], .footer a[href*='prescott']:visited { color: #ffffff !important; }
.footer a[href*='prescott']:hover, .footer a[href*='prescott']:focus { color: #ffffff !important; opacity:1; transform:none; }
