/* ShootOffice — layout editoriale per il sito pubblico.
   Estende public.css senza cambiare gli stili delle pagine tecniche esistenti. */

:root {
  --paper: #f7f5f0;
  --paper-deep: #ece8df;
  --navy: #102b48;
  --navy-soft: #1e456d;
  --blue: #1979b7;
  --blue-pale: #e6f2f8;
  --coral: #d16b4c;
  --warm-ink: #1c252e;
  --warm-muted: #5e6871;
  --site-radius: 18px;
  --site-radius-lg: 28px;
  --site-shadow: 0 16px 44px rgba(17, 43, 72, .10);
}

html { scroll-behavior: smooth; }
body { color: var(--warm-ink); }
/* Gli attributi width/height nel markup riservano spazio durante il caricamento.
   Senza questo reset, su uno schermo stretto il solo width CSS può lasciare
   attiva l'altezza dell'attributo e deformare l'immagine. */
main img { max-width: 100%; height: auto; }
body:has(.mobile-nav[open]) { overflow: hidden; }
a { text-underline-offset: .16em; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #57a9de;
  outline-offset: 3px;
}
main:focus { outline: none; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -64px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 9px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transition: top .16s ease;
}
.skip-link:focus { top: 14px; }

/* ---------- Navigazione ---------- */
.site-nav {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(16, 43, 72, .11);
}
.site-nav .site-nav-inner { height: 72px; gap: 24px; }
.site-menu,
.site-account {
  display: flex;
  align-items: center;
}
.site-menu { gap: clamp(14px, 1.65vw, 25px); margin-left: auto; }
.nav-link,
.login-link {
  color: #394957;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link { padding: 25px 0 22px; border-bottom: 3px solid transparent; }
.nav-link:hover,
.nav-link.is-current,
.login-link:hover { color: var(--blue); }
.nav-link.is-current { border-bottom-color: var(--blue); }
.site-account { gap: 16px; }
.btn {
  border-radius: 11px;
  min-height: 44px;
  padding: 10px 17px;
  font-weight: 700;
}
.btn-primary,
.nav-links a.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 7px 16px rgba(16, 43, 72, .16);
}
.btn-primary:hover,
.nav-links a.btn-primary:hover { color: #fff; background: #071e35; }
.btn-ghost { border-color: #bdc7d0; color: var(--navy); background: transparent; }
.btn-ghost:hover { border-color: var(--navy); background: #fff; }
.btn-light { color: var(--navy); }
.btn-large { min-height: 50px; padding: 13px 20px; }
.btn-nav { min-height: 40px; padding: 8px 14px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover { color: var(--navy-soft); text-decoration: underline; }
.mobile-nav { display: none; }

/* ---------- Scaffolding ---------- */
.section { padding: 104px 0; }
.section-alt { background: var(--paper); }
.section-kicker,
.section-head .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-kicker::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}
.section-head h2,
.editorial-intro h2,
.resources-band h2,
.inline-cta h2 {
  max-width: 19ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-head p,
.section-head-wide p { max-width: 61ch; font-size: 1.04rem; }
.section-head-wide { max-width: 65ch; }
.page-intro {
  padding: 94px 0 64px;
  background: linear-gradient(114deg, var(--paper) 0%, #fbfaf7 63%, #e7f1f6 100%);
}
.page-intro h1 {
  max-width: 18ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 5.4vw, 4.65rem);
  line-height: 1.01;
  letter-spacing: -.06em;
}
.page-intro > .wrap > p:not(.section-kicker) {
  max-width: 61ch;
  margin: 22px 0 0;
  color: var(--warm-muted);
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
}

/* ---------- Home ---------- */
.product-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 96px) 0;
  background: linear-gradient(106deg, #f6f2eb 0%, #faf8f4 54%, #dfeef5 100%);
}
.product-hero::before {
  position: absolute;
  right: -8%;
  bottom: -22%;
  width: 47vw;
  height: 47vw;
  border: 1px solid rgba(25, 121, 183, .13);
  border-radius: 50%;
  content: "";
}
.product-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
}
.hero-label {
  margin: 0 0 19px;
  color: var(--blue);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .115em;
  text-transform: uppercase;
}
.product-hero h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.1rem, 6vw, 5.45rem);
  line-height: .98;
  letter-spacing: -.068em;
}
.product-hero-lead {
  max-width: 48ch;
  margin: 25px 0 0;
  color: #435362;
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}
.product-hero-actions { margin-top: 31px; }
.hero-supporting-note {
  max-width: 50ch;
  margin: 17px 0 0;
  color: #5c6872;
  font-size: .86rem;
}
.product-hero-image { position: relative; margin: 0; }
.product-hero-image::before {
  position: absolute;
  z-index: 0;
  top: -16px;
  right: -14px;
  width: 78%;
  height: 73%;
  border-radius: var(--site-radius-lg);
  content: "";
  background: var(--blue);
  transform: rotate(4deg);
}
.product-hero-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.24 / 1;
  border-radius: var(--site-radius-lg);
  object-fit: cover;
  object-position: 58% center;
  box-shadow: 0 25px 60px rgba(21, 42, 61, .22);
}
.product-hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  max-width: 23ch;
  padding: 10px 13px;
  border-radius: 9px;
  color: #fff;
  background: rgba(16, 43, 72, .88);
  font-size: .76rem;
  font-weight: 600;
}
.editorial-intro { padding-bottom: 80px; }
.editorial-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, .75fr);
  justify-content: space-between;
  gap: 72px;
  align-items: end;
}
.editorial-intro-grid > p { max-width: 46ch; margin: 0; color: var(--warm-muted); font-size: 1.1rem; }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 62px;
  border: 1px solid #dae1e6;
  border-radius: var(--site-radius);
  overflow: hidden;
  background: #dae1e6;
}
.workflow-step { min-height: 230px; padding: 33px 32px; background: #fff; }
.workflow-number { display: block; margin-bottom: 37px; color: var(--blue); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.workflow-step h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.32rem; letter-spacing: -.025em; }
.workflow-step p { margin: 0; color: var(--warm-muted); font-size: .96rem; }
.product-overview { overflow: hidden; }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.overview-card {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  padding: 29px;
  border: 1px solid #d8e0e6;
  border-radius: var(--site-radius);
  background: #fff;
}
.overview-card-featured { grid-column: span 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 25px; padding: 0; overflow: hidden; }
.overview-card-featured .overview-card-copy { padding: 29px; }
.overview-card-featured img { width: 100%; height: 100%; min-height: 245px; object-fit: cover; object-position: left top; }
.overview-index { color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.overview-card h3 { max-width: 14ch; margin: 18px 0 10px; color: var(--navy); font-size: 1.5rem; line-height: 1.12; letter-spacing: -.035em; }
.overview-card p { margin: 0; color: var(--warm-muted); }
.overview-card .text-link { margin-top: auto; padding-top: 22px; }
.project-documents { background: var(--navy); color: #fff; overflow: hidden; }
.project-documents-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(310px, .78fr); align-items: center; gap: clamp(50px, 9vw, 140px); }
.project-documents .section-kicker { color: #77c2ed; }
.project-documents h2 { max-width: 13ch; margin: 0; color: #fff; font-size: clamp(2rem, 3.8vw, 3.3rem); line-height: 1.05; letter-spacing: -.045em; }
.project-documents-copy > p { max-width: 51ch; margin: 21px 0 26px; color: #c7d5e0; font-size: 1.06rem; }
.project-documents .btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.project-documents .btn-ghost:hover { background: rgba(255,255,255,.09); }
.document-stack { position: relative; min-height: 302px; }
.document-card {
  position: absolute;
  display: flex;
  width: min(100%, 370px);
  min-height: 155px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(16, 43, 72, .09);
  border-radius: 14px;
  box-shadow: 0 17px 35px rgba(0,0,0,.22);
}
.document-card span { color: #617182; font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.document-card strong { margin-top: 17px; color: var(--navy); font-size: 1.2rem; line-height: 1.2; }
.document-card small { margin-top: auto; color: #617182; }
.document-card-note { top: 0; left: 0; background: #f9f7f0; transform: rotate(-3deg); }
.document-card-script { top: 75px; right: 0; background: #e5f1f7; transform: rotate(3deg); }
.document-card-shotlist { right: 33px; bottom: -8px; z-index: 2; background: #fff; transform: rotate(-1deg); }
.delivery-preview { background: #fdfdfc; }
.delivery-preview-grid { display: grid; grid-template-columns: minmax(330px, 1fr) minmax(0, .8fr); align-items: center; gap: clamp(40px, 7vw, 94px); }
.delivery-preview-image { display: block; width: 100%; border-radius: var(--site-radius); box-shadow: var(--site-shadow); }
.delivery-preview h2 { max-width: 14ch; margin: 0; color: var(--navy); font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.06; letter-spacing: -.045em; }
.delivery-preview p { margin: 21px 0 25px; color: var(--warm-muted); font-size: 1.06rem; }
.inline-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

/* ---------- Prova e risorse ---------- */
.trial-panel {
  display: grid;
  grid-template-columns: minmax(260px, .76fr) minmax(360px, 1.25fr);
  gap: 42px 65px;
  padding: clamp(29px, 4vw, 52px);
  border: 1px solid #cbdde8;
  border-radius: var(--site-radius-lg);
  background: linear-gradient(130deg, #e9f5fb 0%, #f7fbfd 51%, #fff 100%);
  box-shadow: 0 14px 32px rgba(16,43,72,.06);
}
.trial-panel h2 { max-width: 15ch; margin: 0; color: var(--navy); font-size: clamp(1.8rem, 3.4vw, 2.65rem); line-height: 1.1; letter-spacing: -.04em; }
.trial-panel-intro p { max-width: 46ch; margin: 17px 0 0; color: var(--warm-muted); }
.trial-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; align-items: stretch; }
.trial-facts div { padding: 17px; border-radius: 12px; background: rgba(255,255,255,.83); }
.trial-facts dt { margin-bottom: 8px; color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.trial-facts dd { margin: 0; color: var(--navy); font-size: .87rem; line-height: 1.45; }
.trial-panel-actions { display: flex; flex-wrap: wrap; grid-column: 1 / -1; align-items: center; gap: 19px; }
.resources-band-inner,
.inline-cta { display: flex; justify-content: space-between; align-items: center; gap: 45px; }
.resources-band-inner > div:first-child,
.inline-cta > div:first-child { max-width: 65ch; }
.resources-band p,
.inline-cta p { max-width: 58ch; margin: 17px 0 0; color: var(--warm-muted); }
.resources-band-actions { display: flex; min-width: max-content; flex-wrap: wrap; gap: 12px; }

/* ---------- Pagina funzionalità ---------- */
.feature-page-intro h1 { max-width: 16ch; }
.feature-anchor-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.feature-anchor-nav a { padding: 8px 11px; border: 1px solid #bdd2df; border-radius: 999px; color: var(--navy-soft); font-size: .85rem; font-weight: 700; text-decoration: none; }
.feature-anchor-nav a:hover { color: #fff; background: var(--navy); border-color: var(--navy); }
.feature-chapter { padding: 112px 0; scroll-margin-top: 72px; }
.feature-chapter-head { display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: 25px; max-width: 870px; }
.chapter-number { color: var(--blue); font-size: 1rem; font-weight: 800; letter-spacing: .08em; padding-top: 7px; }
.feature-chapter-head h2 { max-width: 17ch; margin: 0; color: var(--navy); font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.07; letter-spacing: -.046em; }
.feature-chapter-head p { max-width: 60ch; margin: 19px 0 0; color: var(--warm-muted); font-size: 1.06rem; }
.feature-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.feature-card-grid-three { grid-template-columns: repeat(3, 1fr); }
.feature-detail-card { min-height: 215px; padding: 28px; border: 1px solid #d8e0e6; border-radius: var(--site-radius); background: #fff; box-shadow: 0 4px 12px rgba(16,43,72,.025); }
.feature-detail-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.36rem; letter-spacing: -.028em; }
.feature-detail-card p { margin: 0; color: var(--warm-muted); }
.feature-detail-card-wide { display: grid; grid-template-columns: minmax(230px, .9fr) minmax(0, 1fr); align-items: center; gap: 28px; padding: 0; overflow: hidden; }
.feature-detail-card-wide img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.feature-detail-card-wide > div { padding: 29px 29px 29px 0; }
.feature-showcase { display: grid; grid-template-columns: minmax(0, .8fr) minmax(300px, 1.2fr); align-items: center; gap: clamp(35px, 7vw, 86px); margin-top: 53px; padding: 38px; border-radius: var(--site-radius-lg); background: #e6f2f8; }
.feature-showcase > div { max-width: 42ch; }
.feature-showcase h3 { margin: 0; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.3rem); line-height: 1.1; letter-spacing: -.04em; }
.feature-showcase p { margin: 17px 0 20px; color: var(--warm-muted); }
.feature-showcase img { display: block; width: 100%; border: 1px solid rgba(16,43,72,.1); border-radius: 13px; box-shadow: 0 13px 28px rgba(16,43,72,.11); }
.feature-showcase-reverse { grid-template-columns: minmax(300px, 1.2fr) minmax(0, .8fr); }
.feature-detail-card-accent { background: var(--navy); border-color: var(--navy); }
.feature-detail-card-accent h3 { color: #fff; }
.feature-detail-card-accent p { color: #d0deeb; }
.feature-card-label { display: block; margin-bottom: 35px; color: #80c8ef; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.feature-spaced-grid { margin-top: 18px; }
.chapter-callout { display: flex; flex-wrap: wrap; align-items: center; gap: 19px; margin-top: 50px; padding: 24px 28px; border-radius: 13px; background: var(--paper); }
.chapter-callout p { margin: 0 auto 0 0; color: var(--navy); font-size: 1.06rem; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-page-intro h1 { max-width: 17ch; }
.faq-section { padding-top: 72px; }
.faq-layout { display: grid; grid-template-columns: 215px minmax(0, 1fr); gap: clamp(36px, 7vw, 100px); }
.faq-aside { align-self: start; position: sticky; top: 102px; }
.faq-topic-nav { display: flex; flex-direction: column; gap: 7px; padding-left: 16px; border-left: 1px solid #bed0dc; }
.faq-topic-nav p { margin: 0 0 5px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.faq-topic-nav a { color: var(--warm-muted); font-size: .9rem; font-weight: 600; text-decoration: none; }
.faq-topic-nav a:hover { color: var(--blue); }
.faq-aside-link { display: inline-flex; margin-top: 25px; color: var(--blue); font-size: .86rem; font-weight: 700; text-decoration: none; }
.faq-search-shell { padding: 27px; border: 1px solid #d6e1e8; border-radius: var(--site-radius); background: #f1f7fa; }
.faq-search-shell label { display: block; margin-bottom: 10px; color: var(--navy); font-size: .92rem; font-weight: 800; }
.faq-search-field { display: flex; align-items: center; gap: 11px; padding: 0 14px; border: 1px solid #b5cbd8; border-radius: 10px; background: #fff; }
.faq-search-field svg { width: 19px; flex: 0 0 19px; color: var(--blue); }
.faq-search-field input { width: 100%; min-height: 48px; border: 0; color: var(--navy); font: inherit; outline: 0; background: transparent; }
.faq-search-field input::placeholder { color: #80909b; }
.faq-search-status { margin: 10px 0 0; color: var(--warm-muted); font-size: .84rem; }
.faq-groups { margin-top: 54px; }
.faq-group { margin-top: 56px; scroll-margin-top: 98px; }
.faq-group:first-child { margin-top: 0; }
.faq-group-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 19px; }
.faq-group-head > span { color: var(--blue); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.faq-group-head h2 { margin: 0; color: var(--navy); font-size: clamp(1.35rem, 2.6vw, 1.8rem); letter-spacing: -.034em; }
.faq-items { display: grid; gap: 10px; }
.faq-item { margin: 0; border-color: #dbe2e6; border-radius: 13px; box-shadow: none; scroll-margin-top: 95px; }
.faq-item summary { padding: 20px 58px 20px 22px; color: var(--navy); font-size: 1rem; }
.faq-item summary::after { right: 25px; }
.faq-body { max-width: 78ch; padding: 0 52px 23px 22px; }
.faq-body p { color: var(--warm-muted); line-height: 1.68; }
.faq-no-results { margin: 33px 0 0; padding: 21px; border: 1px solid #d6e1e8; border-radius: 12px; color: var(--warm-muted); background: var(--paper); }

/* ---------- Guide ---------- */
.guide-index-intro { background: linear-gradient(120deg, #102b48 0%, #173b5d 56%, #2978a9 155%); }
.guide-index-intro .section-kicker,
.guide-index-intro h1 { color: #fff; }
.guide-index-intro .section-kicker::before { background: #7bc7ec; }
.guide-index-intro > .wrap > p:not(.section-kicker) { color: #d5e4ee; }
.guide-index-intro-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 19px; margin-top: 31px; }
.guide-index-intro .btn-primary { color: var(--navy); background: #fff; box-shadow: none; }
.guide-index-intro .btn-primary:hover { color: var(--navy); background: #ecf4f8; }
.guide-index-intro .text-link { color: #a8d8ef; }
.guide-start-panel { padding: 56px 0; }
.guide-start-grid { display: grid; grid-template-columns: minmax(0, .84fr) minmax(330px, .76fr); align-items: center; gap: 70px; }
.guide-start-grid h2 { max-width: 14ch; margin: 0; color: var(--navy); font-size: clamp(1.7rem, 3.1vw, 2.45rem); line-height: 1.1; letter-spacing: -.04em; }
.guide-start-grid p { max-width: 52ch; margin: 16px 0 0; color: var(--warm-muted); }
.guide-start-link { display: grid; grid-template-columns: 38px 1fr 17px; align-items: center; gap: 14px; padding: 22px; border-radius: 14px; color: var(--navy); background: var(--blue-pale); text-decoration: none; }
.guide-start-link:hover { background: #d7ebf5; }
.guide-card-index { color: var(--blue); font-size: .78rem; font-weight: 800; }
.guide-start-link strong { display: block; font-size: 1.1rem; }
.guide-start-link small { display: block; margin-top: 5px; color: var(--warm-muted); }
.guide-start-link > span:last-child { color: var(--blue); font-size: 1.4rem; }
.guide-index-section { padding-top: 55px; }
.guide-category { margin-top: 80px; }
.guide-category:first-child { margin-top: 0; }
.guide-category-head { display: flex; gap: 15px; align-items: baseline; margin-bottom: 23px; }
.guide-category-count { color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.guide-category h2 { margin: 0; color: var(--navy); font-size: clamp(1.45rem, 2.6vw, 2rem); letter-spacing: -.04em; }
.guide-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.guide-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid #d8e1e7; border-radius: var(--site-radius); background: #fff; box-shadow: 0 5px 15px rgba(16,43,72,.035); }
.guide-card-image { display: block; overflow: hidden; background: var(--paper-deep); }
.guide-card-image img { display: block; width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; transition: transform .23s ease; }
.guide-card:hover .guide-card-image img { transform: scale(1.025); }
.guide-card-body { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.guide-card-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .065em; text-transform: uppercase; }
.guide-card h3 { margin: 14px 0 8px; font-size: 1.29rem; line-height: 1.17; letter-spacing: -.03em; }
.guide-card h3 a { color: var(--navy); text-decoration: none; }
.guide-card h3 a:hover { color: var(--blue); }
.guide-card p { margin: 0; color: var(--warm-muted); font-size: .93rem; }
.guide-card .text-link { margin-top: auto; padding-top: 20px; font-size: .91rem; }
.guide-help-band { padding: 85px 0; }

/* ---------- Articolo guida ---------- */
.guide-article-hero { padding: 65px 0; background: var(--paper); }
.guide-article-hero-grid { display: grid; grid-template-columns: minmax(0, .91fr) minmax(340px, .85fr); gap: clamp(42px, 8vw, 105px); align-items: center; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: var(--warm-muted); font-size: .86rem; }
.breadcrumb a { color: var(--blue); font-weight: 700; }
.guide-article-meta { display: flex; gap: 14px; margin-top: 27px; color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.guide-article-hero h1 { max-width: 12ch; margin: 15px 0 0; color: var(--navy); font-size: clamp(2.65rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -.06em; }
.guide-article-hero p { max-width: 55ch; margin: 21px 0 0; color: var(--warm-muted); font-size: 1.11rem; }
.guide-article-hero img { display: block; width: 100%; border-radius: var(--site-radius); box-shadow: var(--site-shadow); }
.guide-article { padding-top: 78px; }
.guide-article-layout { display: grid; grid-template-columns: 225px minmax(0, 690px); gap: clamp(42px, 9vw, 130px); justify-content: center; }
.guide-article-aside { align-self: start; position: sticky; top: 102px; }
.guide-toc { display: flex; flex-direction: column; gap: 9px; padding-left: 16px; border-left: 1px solid #bdcfdc; }
.guide-toc p { margin: 0 0 7px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.guide-toc a { color: var(--warm-muted); font-size: .87rem; line-height: 1.35; text-decoration: none; }
.guide-toc a:hover { color: var(--blue); }
.guide-outcome { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid #d5e0e7; border-radius: 14px; overflow: hidden; background: #d5e0e7; }
.guide-outcome > div { padding: 21px; background: #f4f9fb; }
.guide-outcome span,
.guide-tip span { display: block; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.guide-outcome p { margin: 10px 0 0; color: var(--warm-muted); font-size: .91rem; }
.guide-steps { display: grid; gap: 45px; margin: 58px 0; padding: 0; list-style: none; }
.guide-steps li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; scroll-margin-top: 100px; }
.guide-step-number { color: var(--blue); font-size: .86rem; font-weight: 800; letter-spacing: .08em; padding-top: 7px; }
.guide-steps h2 { margin: 0; color: var(--navy); font-size: clamp(1.38rem, 2.3vw, 1.78rem); line-height: 1.16; letter-spacing: -.035em; }
.guide-steps p { margin: 12px 0 0; color: var(--warm-muted); font-size: 1.01rem; line-height: 1.72; }
.guide-tip { padding: 26px; border-radius: 15px; background: #fdf2df; }
.guide-tip span { color: #a75635; }
.guide-tip p { margin: 9px 0 0; color: #5c4a3d; }
.guide-next { margin-top: 60px; padding: 38px; border-radius: var(--site-radius); color: #fff; background: var(--navy); }
.guide-next .section-kicker { color: #81c8ed; }
.guide-next h2 { max-width: 14ch; margin: 0; color: #fff; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.1; letter-spacing: -.04em; }
.guide-next p { max-width: 55ch; margin: 15px 0 24px; color: #d4e1ea; }
.guide-next .btn-primary { color: var(--navy); background: #fff; box-shadow: none; }
.guide-next .btn-primary:hover { color: var(--navy); background: #eaf5fa; }
.guide-article-help { padding: 76px 0; }

/* ---------- Video ---------- */
.video-page-intro { background: linear-gradient(115deg, #f3ece4 0%, #faf7f2 57%, #e1eef5 100%); }
.video-page-intro h1 { max-width: 16ch; }
.video-status-section { padding: 80px 0; }
.video-status-grid { display: grid; grid-template-columns: minmax(300px, .95fr) minmax(0, .8fr); gap: clamp(40px, 9vw, 125px); align-items: center; }
.video-status-visual { padding: 17px; border-radius: var(--site-radius-lg); background: linear-gradient(135deg, #173b5d, #2384ba); box-shadow: var(--site-shadow); }
.video-status-window { min-height: 274px; padding: 18px; border-radius: 15px; color: #fff; background: #0b2138; }
.video-status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: #6a8295; }
.video-status-play { display: grid; width: 72px; height: 72px; place-items: center; margin: 61px auto 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #aadcf4; background: rgba(255,255,255,.07); font-size: 1.45rem; }
.video-status-window p { margin: 0; color: #b7cedb; font-size: .9rem; text-align: center; }
.coming-badge { color: var(--blue); background: var(--blue-pale); }
.video-status-grid h2 { max-width: 15ch; margin: 14px 0 0; color: var(--navy); font-size: clamp(2rem, 3.5vw, 2.95rem); line-height: 1.08; letter-spacing: -.045em; }
.video-status-grid p { max-width: 52ch; margin: 19px 0 0; color: var(--warm-muted); font-size: 1.05rem; }
.video-status-grid .video-status-note { color: var(--navy); font-size: .92rem; font-weight: 700; }
.video-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.video-guide-card { position: relative; display: flex; min-height: 207px; flex-direction: column; padding: 24px; border: 1px solid #d5e0e6; border-radius: var(--site-radius); color: var(--navy); background: #fff; text-decoration: none; }
.video-guide-card:hover { border-color: #9ec5da; box-shadow: 0 10px 23px rgba(16,43,72,.08); transform: translateY(-2px); }
.video-guide-card span { color: var(--blue); font-size: .71rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.video-guide-card strong { max-width: 15ch; margin-top: 17px; font-size: 1.28rem; line-height: 1.15; letter-spacing: -.03em; }
.video-guide-card small { margin-top: 10px; color: var(--warm-muted); font-size: .88rem; }
.video-guide-card i { margin-top: auto; color: var(--blue); font-size: 1.28rem; font-style: normal; }
.video-guide-cta { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 37px; }

/* ---------- Pricing refinements ---------- */
.pricing-main-section { padding-top: 40px; }
.pricing-trial-wrap { margin-top: 42px; }
.pricing-trial-wrap .trial-panel { grid-template-columns: minmax(245px, .65fr) minmax(385px, 1.35fr); }
.pricing-storage-card { margin-top: 24px; }
.pricing-beta-note { margin-top: 14px; }
.cta-band-actions { margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #0b2138; }
.footer-col h2 { margin: 0 0 14px; color: #8193a3; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-brand p { color: #a5b6c3; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .site-menu,
  .site-account-desktop { display: none; }
  .mobile-nav { display: block; margin-left: auto; }
  .mobile-nav summary { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 8px 12px; border: 1px solid #c7d2da; border-radius: 9px; color: var(--navy); cursor: pointer; font-size: .9rem; font-weight: 800; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav-icon,
  .mobile-nav-icon::before,
  .mobile-nav-icon::after { display: block; width: 17px; height: 2px; border-radius: 2px; background: currentColor; content: ""; transition: transform .18s ease; }
  .mobile-nav-icon { position: relative; }
  .mobile-nav-icon::before { position: absolute; top: -5px; }
  .mobile-nav-icon::after { position: absolute; top: 5px; }
  .mobile-nav[open] .mobile-nav-icon { background: transparent; }
  .mobile-nav[open] .mobile-nav-icon::before { top: 0; transform: rotate(45deg); }
  .mobile-nav[open] .mobile-nav-icon::after { top: 0; transform: rotate(-45deg); }
  .mobile-nav-panel { position: absolute; z-index: 80; top: calc(100% + 8px); right: 0; width: min(360px, calc(100vw - 32px)); padding: 12px; border: 1px solid #cbd7df; border-radius: 14px; background: #fff; box-shadow: 0 16px 38px rgba(16,43,72,.16); }
  .mobile-nav-panel nav { display: flex; flex-direction: column; }
  .mobile-nav-panel nav a { padding: 12px; border-radius: 8px; color: var(--navy); font-weight: 700; text-decoration: none; }
  .mobile-nav-panel nav a:hover,
  .mobile-nav-panel nav a[aria-current="page"] { color: var(--blue); background: var(--blue-pale); }
  .mobile-nav-account { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 8px; padding-top: 13px; border-top: 1px solid #dbe3e8; }
  .product-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); gap: 45px; }
  .product-hero h1 { font-size: clamp(2.85rem, 6.3vw, 4.35rem); }
  .guide-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .product-hero-grid,
  .editorial-intro-grid,
  .project-documents-grid,
  .delivery-preview-grid,
  .guide-start-grid,
  .guide-article-hero-grid,
  .video-status-grid { grid-template-columns: 1fr; }
  .product-hero-copy { max-width: 660px; }
  .product-hero-image { max-width: 680px; }
  .product-hero-image img { aspect-ratio: 1.55 / 1; }
  .editorial-intro-grid { gap: 22px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-step { min-height: auto; padding: 25px; }
  .workflow-number { margin-bottom: 18px; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-card-featured { grid-column: span 2; }
  .project-documents-grid { gap: 61px; }
  .document-stack { max-width: 470px; }
  .trial-panel,
  .pricing-trial-wrap .trial-panel { grid-template-columns: 1fr; }
  .trial-facts { grid-template-columns: repeat(3, 1fr); }
  .feature-chapter { padding: 80px 0; }
  .feature-card-grid-three { grid-template-columns: repeat(2, 1fr); }
  .feature-card-grid-three > :last-child { grid-column: span 2; }
  .faq-layout,
  .guide-article-layout { grid-template-columns: 1fr; }
  .faq-aside,
  .guide-article-aside { position: static; }
  .faq-topic-nav { flex-direction: row; flex-wrap: wrap; padding: 0; border: 0; }
  .faq-topic-nav p { width: 100%; }
  .faq-topic-nav a { padding: 7px 10px; border: 1px solid #c8d8e2; border-radius: 999px; }
  .guide-toc { display: none; }
  .guide-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wrap { padding-right: 19px; padding-left: 19px; }
  .site-nav .site-nav-inner { height: 64px; }
  .brand { font-size: 1rem; }
  .section { padding: 65px 0; }
  .page-intro { padding: 62px 0 48px; }
  .page-intro h1 { font-size: clamp(2.38rem, 12.3vw, 3.45rem); }
  .product-hero { padding: 43px 0 56px; }
  .product-hero h1 { font-size: clamp(2.85rem, 14vw, 4rem); }
  .product-hero-image::before { top: -9px; right: -8px; }
  .product-hero-image img { aspect-ratio: 1.18 / 1; object-position: 62% center; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .product-hero-image figcaption { right: 11px; bottom: 11px; }
  .editorial-intro h2,
  .section-head h2,
  .resources-band h2,
  .inline-cta h2 { font-size: 2rem; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-card-featured { grid-column: auto; grid-template-columns: 1fr; }
  .overview-card-featured img { min-height: 190px; order: -1; }
  .document-stack { min-height: 276px; }
  .document-card { min-height: 130px; padding: 18px; }
  .document-card-script { top: 68px; }
  .document-card-shotlist { right: 5px; }
  .trial-panel { gap: 28px; padding: 24px; border-radius: var(--site-radius); }
  .trial-facts { grid-template-columns: 1fr; }
  .trial-panel-actions { align-items: stretch; }
  .trial-panel-actions .btn { width: 100%; }
  .resources-band-inner,
  .inline-cta { align-items: flex-start; flex-direction: column; gap: 27px; }
  .resources-band-actions { width: 100%; }
  .resources-band-actions .btn { flex: 1; }
  .feature-anchor-nav { flex-wrap: nowrap; margin-right: -19px; padding-right: 19px; overflow-x: auto; scrollbar-width: thin; }
  .feature-anchor-nav a { flex: 0 0 auto; }
  .feature-chapter-head { grid-template-columns: 1fr; gap: 10px; }
  .chapter-number { padding: 0; }
  .feature-card-grid,
  .feature-card-grid-three { grid-template-columns: 1fr; }
  .feature-card-grid-three > :last-child { grid-column: auto; }
  .feature-detail-card-wide,
  .feature-showcase,
  .feature-showcase-reverse { grid-template-columns: 1fr; }
  .feature-detail-card-wide img { min-height: auto; }
  .feature-detail-card-wide > div { padding: 0 25px 25px; }
  .feature-showcase { gap: 26px; padding: 22px; }
  .feature-showcase-reverse img { order: -1; }
  .chapter-callout { align-items: flex-start; flex-direction: column; }
  .chapter-callout p { margin: 0; }
  .faq-section { padding-top: 48px; }
  .faq-groups { margin-top: 43px; }
  .faq-group { margin-top: 43px; }
  .faq-search-shell { padding: 19px; }
  .faq-item summary { padding: 18px 47px 18px 18px; font-size: .96rem; }
  .faq-item summary::after { right: 19px; }
  .faq-body { padding: 0 18px 20px; }
  .guide-start-panel { padding: 47px 0; }
  .guide-card-grid { grid-template-columns: 1fr; }
  .guide-category { margin-top: 57px; }
  .guide-article-hero { padding: 45px 0; }
  .guide-article-hero h1 { font-size: clamp(2.45rem, 12.4vw, 3.55rem); }
  .guide-article { padding-top: 52px; }
  .guide-outcome { grid-template-columns: 1fr; }
  .guide-steps { gap: 34px; margin: 45px 0; }
  .guide-steps li { grid-template-columns: 1fr; gap: 8px; }
  .guide-next { padding: 27px; }
  .video-guide-grid { grid-template-columns: 1fr; }
  .video-status-window { min-height: 230px; }
  .video-status-play { margin-top: 44px; }
  .mobile-nav-panel { right: -1px; }
}

@media (max-width: 370px) {
  .resources-band-actions { min-width: 0; flex-direction: column; }
  .resources-band-actions .btn { width: 100%; flex: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
