/* ============================================================
   ICT Audit — base.css
   Reset · Variables · Layout · Typography · Components
   ============================================================ */

@import url('_logo-sprite.generated.css');

/* --- Start: Variables --- */
:root {
  /* Colour palette */
  --ink:        #0c1417;
  --ink-2:      #1a262b;
  --paper:      #f6f4ee;
  --paper-2:    #ecebe4;
  --line:       #d6d3c8;
  --brand:      #3e6878;
  --brand-deep: #2b4c58;
  --brand-soft: #cfdde2;
  --risk:       #c8503b;
  --ok:         #5a8f6b;
  --mute:       #6a7a80;

  /* Font families */
  --ff-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  --ff-mono:  ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  --ff-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;

  /* Font-size scale */
  --fs-xs:   20px;
  --fs-sm:   22px;
  --fs-base: 24px;
  --fs-lg:   clamp(32px, 3vw, 42px);
  --fs-xl:   clamp(42px, 4.6vw, 64px);
  --fs-2xl:  clamp(56px, 6vw, 84px);
  --fs-huge: clamp(48px, 6.5vw, 104px);

  /* Spacing */
  --shell-pad: 40px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}
/* --- End: Variables --- */

/* --- Start: Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}
/* --- End: Reset --- */

/* --- Start: Typography --- */
.mono {
  font-family: var(--ff-mono);
  font-feature-settings: "ss01";
}

.serif {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
}

/* Italic accent used in headlines */
.ser {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.01em;
  color: var(--brand);
  line-height: .9;
}
/* --- End: Typography --- */

/* --- Start: Layout --- */
.shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--shell-pad);
}

@media (max-width: 720px) {
  .shell { padding: 0 22px; }
}
/* --- End: Layout --- */

/* --- Start: Nav --- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 244, 238, .78);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 24px;
}

/* Brand / logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand .mark {
  width: 28px;
  height: 32px;
}

.brand .name {
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: var(--fs-base);
  color: var(--ink);
}

.brand .tag {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  padding-left: 18px;
  margin-left: 16px;
  border-left: 1px solid var(--line);
}

/* Center nav links */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: var(--fs-xs);
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-2);
}

.nav-links a:hover {
  color: var(--brand);
}

/* Right-side CTA (Configure · Plans · Sign Up) */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-cta .nav-secondary {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: var(--fs-xs);
  font-weight: 500;
}

.nav-cta .nav-secondary a {
  color: var(--ink-2);
}

.nav-cta .nav-secondary a:hover {
  color: var(--brand);
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta .nav-secondary { display: none; }
}

@media (max-width: 640px) {
  .nav-row {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand .tag { display: none; }
  .nav-cta .btn { height: 36px; padding: 0 14px; }
}
/* --- End: Nav --- */

/* --- Start: Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: -.005em;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--ink);
}

.btn-ghost:hover {
  color: var(--brand);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-brand {
  background: var(--brand);
  color: #fff;
}

.btn-brand:hover {
  background: var(--brand-deep);
}

/* Large CTA size, matches the .cta-actions buttons in banners. */
.btn-lg {
  height: 50px;
  justify-content: center;
  padding: 0 28px;
  font-size: var(--fs-sm);
}
/* --- End: Buttons --- */

/* --- Start: Shield SVG --- */
.shield-mark path {
  fill: var(--brand);
}
/* --- End: Shield SVG --- */

/* --- Start: Hero --- */
.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
}

/* Background sphere */
.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: min(1700px, 130vw);
  aspect-ratio: 1700 / 740;
  background: url('../img/sphere.webp') center bottom / contain no-repeat;
  opacity: .85;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  transform: translate3d(-50%, 0, 0) scale(1);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
  animation:
    hero-sphere-breathe 22s ease-in-out infinite,
    hero-sphere-fade    17s ease-in-out infinite;
}

@keyframes hero-sphere-breathe {
  0%, 100% {
    transform: translate3d(-50%, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-50%, -0.6%, 0) scale(1.012);
  }
}

@keyframes hero-sphere-fade {
  0%, 100% { opacity: .55; }
  50%      { opacity: .95; }
}

.hero > .shell {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 60px;
  align-items: end;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

/* --- Start: PulseDot --- */
/* Reusable pulsing indicator. Default colour is --risk; add a modifier
   class (e.g. .pulse-dot--paper) to recolor on dark backgrounds. */
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--risk);
  box-shadow: 0 0 0 4px rgba(200, 80, 59, .16);
  animation: pulse 1.8s ease-in-out infinite;
  will-change: transform, opacity;
  flex-shrink: 0;
}

.pulse-dot--paper {
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(246, 244, 238, .16);
}
/* --- End: PulseDot --- */

@keyframes pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.6); opacity: .35; }
}

h1.headline {
  font-weight: 600;
  font-size: var(--fs-huge);
  line-height: .96;
  letter-spacing: -.045em;
  color: var(--ink);
  text-wrap: balance;
}

.hero-sub {
  margin-top: 32px;
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 540px;
}
/* --- End: Hero --- */

/* --- Start: Scan composer --- */
.scanner {
  margin-top: 44px;
  max-width: 620px;
}

.scanner-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 24px 48px -28px rgba(12,20,23,.18);
  display: flex;
  align-items: center;
  gap: 4px;
}

.scanner-frame .prefix {
  padding: 0 6px 0 16px;
  color: var(--mute);
  font-family: var(--ff-mono);
  font-size: var(--fs-sm);
  user-select: none;
  white-space: nowrap;
}

.scanner-frame input {
  flex: 1 1 0;
  min-width: 0;
  height: 52px;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ff-mono);
  font-size: var(--fs-sm);
  color: var(--ink);
  padding: 0 10px 0 0;
}

.scanner-frame input::placeholder {
  color: #a9b1b3;
}

.scanner-frame button {
  height: 52px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .15s ease;
}

.scanner-frame button:hover {
  background: var(--brand-deep);
}

.scanner-frame button:disabled,
.scanner-frame button[disabled] {
  background: var(--mute);
  cursor: not-allowed;
  opacity: .55;
}

.scanner-frame.is-invalid {
  border-color: var(--risk);
  box-shadow: 0 0 0 3px rgba(200, 80, 59, .12);
}

.scanner-frame .arrow {
  width: 14px;
  height: 14px;
}

@media (max-width: 640px) {
  .scanner-frame { flex-wrap: wrap; }
  .scanner-frame .prefix { display: none; }
  .scanner-frame input { flex-basis: 100%; height: 48px; }
  .scanner-frame button { width: 100%; justify-content: center; }
}
/* --- End: Scan composer --- */

/* --- Start: Live feed panel --- */
.hero-panel {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 40px 80px -40px rgba(12, 20, 23, .35);
  border: 1px solid rgba(255, 255, 255, .06);
}

.feed-compact {
  --feed-fs-label: 13px;
  --feed-fs-row: 15px;
  --feed-fs-badge: 10px;
  --feed-fs-meta: 11px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.panel-head .label {
  font-family: var(--ff-mono);
  font-size: var(--feed-fs-label);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-soft);
}

.panel-head .live {
  font-family: var(--ff-mono);
  font-size: var(--feed-fs-label);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--risk);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

.feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: var(--feed-fs-row);
  color: var(--brand-soft);
  padding: 6px 0;
}

.sev {
  font-family: var(--ff-mono);
  font-size: var(--feed-fs-badge);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 6px;
  text-align: center;
}

.sev.crit { background: rgba(200, 80, 59, .22); color: #f08070; }
.sev.high { background: rgba(200, 130, 59, .22); color: #e0a060; }
.sev.med  { background: rgba(200, 180, 59, .22); color: #c8b040; }
.sev.low  { background: rgba(90, 143, 107, .22); color: #88c09a; }

.feed-row .ttl {
  min-width: 0;
  color: #d0dde0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-row .host {
  font-family: var(--ff-mono);
  font-size: var(--feed-fs-meta);
  color: var(--mute);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .feed-row { grid-template-columns: 48px 1fr; }
  .feed-row .host { display: none; }
}
/* --- End: Live feed panel --- */

/* --- Start: Trusted-by bar --- */
.trusted-bar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 80px;
  overflow: hidden;
}

.trusted-label {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  max-width: none;
  line-height: 1.5;
  text-align: center;
}

.logo-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  --set-w: 0px;
  animation: scroll-logos var(--marquee-duration, 30s) linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.logo-set .logo-sprite {
  opacity: .78;
  filter: grayscale(1) contrast(.95);
  transition: opacity .2s ease;
  flex-shrink: 0;
}

.logo-set .logo-sprite:hover {
  opacity: 1;
}

@keyframes scroll-logos {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(var(--set-w) * -1), 0, 0);
  }
}

@media (max-width: 900px) {
  .trusted-bar {
    gap: 24px;
  }
}

/* --- End: Trusted-by bar --- */

/* --- Start: Value grid --- */
.value {
  padding: 80px 0;
}

.value-head {
  margin-bottom: 48px;
  max-width: 820px;
}

.value-head h2 {
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-top: 14px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.v-card {
  background: var(--paper);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  transition: background .2s ease;
}

.v-card:hover {
  background: var(--paper-2);
}

.v-card .num {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

.v-card h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--ink);
}

.v-card p {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.6;
}

/* Big stat card */
.v-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--brand);
  color: var(--paper);
}

.v-stat:hover {
  background: var(--brand);
}

.v-stat .num,
.v-stat h3,
.v-stat p {
  color: var(--paper);
}

.v-stat .num {
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}

.v-stat .big {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: var(--fs-2xl);
  line-height: .9;
  letter-spacing: -.05em;
}

.v-stat .big sup {
  font-size: var(--fs-xs);
  vertical-align: top;
  font-weight: 500;
  margin-left: 6px;
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}

.v-stat p:not(.num):not(.big) {
  font-size: var(--fs-xs);
  opacity: .85;
}
/* Feature card with SVG rings */
.v-feature {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.v-feature:hover {
  background: var(--ink);
}

.v-feature .num {
  color: var(--brand-soft);
}

.v-feature h3 {
  color: var(--paper);
}

.v-feature p {
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}

.ring-cluster {
  position: absolute;
  right: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 60%, transparent);
  z-index: 1;
}

.ringviz {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 260px;
  height: 260px;
  opacity: .9;
  pointer-events: none;
  stroke-width: 1;
}

.ringviz-base,
.ringviz-active {
  fill: none;
}

.ringviz-base {
  stroke: color-mix(in srgb, var(--brand-soft) 18%, transparent);
}

.ringviz-active {
  stroke: color-mix(in srgb, var(--brand-soft) 55%, transparent);
}

.ringviz-core {
  fill: var(--brand-soft);
}

.v-feature-title {
  position: relative;
  z-index: 1;
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
  max-width: 650px;
  margin-top: 48px;
}

.v-feature-body {
  position: relative;
  z-index: 1;
  font-size: var(--fs-sm);
  line-height: 1.6;
  max-width: 550px;
}

/* Column spans */
.span-4  { grid-column: span 4; }
.span-6  { grid-column: span 6; }
.span-8  { grid-column: span 8; }
.span-12 { grid-column: span 12; }

@media (max-width: 1024px) {
  .span-4  { grid-column: span 6; }
  .span-8  { grid-column: span 12; }
}

@media (max-width: 720px) {
  .span-4, .span-6, .span-8 { grid-column: span 12; }
}
/* --- End: Value grid --- */

/* --- Start: Process steps --- */
.process {
  padding: 60px 0 80px;
}

.process-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.process-head h2 {
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
  max-width: 820px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.p-step {
  padding: 36px;
  border-right: 1px solid var(--line);
}

.p-step:last-child {
  border-right: none;
}

.p-step h4 {
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  color: var(--ink);
}

.p-step p {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .p-step { border-right: none; border-bottom: 1px solid var(--line); }
  .p-step:nth-child(odd) { border-right: 1px solid var(--line); }
  .p-step:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .p-step { border-right: none; border-bottom: 1px solid var(--line); }
  .p-step:nth-child(odd) { border-right: none; }
}
/* --- End: Process steps --- */

/* --- Start: CTA banner --- */
.cta {
  padding: 40px 0 100px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 80px;
}

.cta-copy {
  flex: 1 1 0;
  min-width: 0;
}

.cta-card h2 {
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--paper);
}

.cta-card p {
  margin-top: 14px;
  font-size: var(--fs-sm);
  color: var(--brand-soft);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  flex: 0 0 260px;
}

.cta-actions .btn {
  height: 50px;
  justify-content: center;
  padding: 0 28px;
  font-size: var(--fs-sm);
}

.cta-card .btn-brand {
  background: var(--paper);
  color: var(--ink);
}

.cta-card .btn-brand:hover {
  background: #fff;
}

.cta-card .btn-ghost {
  color: var(--paper);
  border: 1px solid rgba(246, 244, 238, .25);
}

.cta-card .btn-ghost:hover {
  background: rgba(246, 244, 238, .06);
  color: #fff;
}

.cta-card::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 104, 120, .45) 0%, transparent 60%);
  pointer-events: none;
}

@media (max-width: 820px) {
  .cta-card { padding: 44px 32px; flex-direction: column; align-items: stretch; }
  .cta-actions { flex-basis: auto; }
}
/* --- End: CTA banner --- */

/* --- Start: Footer --- */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 36px;
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.foot-brand {
  max-width: 300px;
}

.foot-brand p {
  margin-top: 14px;
  font-size: var(--fs-sm);
  color: var(--mute);
  line-height: 1.6;
}

.foot-cols {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.foot-col h5 {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 14px;
  font-weight: 500;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-col a {
  font-size: var(--fs-sm);
  color: var(--ink-2);
}

.foot-col a:hover {
  color: var(--brand);
}

.foot-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 0;
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  color: var(--mute);
}
/* --- End: Footer --- */

/* --- Start: Inner page shared --- */
.page-hero {
  padding: 90px 0 48px;
}

.page-hero .headline {
  font-weight: 600;
  font-size: var(--fs-xl);
  line-height: 1;
  letter-spacing: -.04em;
  margin-top: 16px;
}

.page-hero .hero-sub {
  max-width: 700px;
  font-size: var(--fs-sm);
}

.page-band {
  padding-top: 70px;
}
/* --- End: Inner page shared --- */

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

/* --- Start: PauseWhenHidden --- */
html.is-hidden *,
html.is-hidden *::before,
html.is-hidden *::after {
  animation-play-state: paused !important;
}
/* --- End: PauseWhenHidden --- */
