:root {
  color-scheme: light;
  --canvas: #f7f8f6;
  --surface: #ffffff;
  --surface-muted: #eef3ef;
  --surface-strong: #dfe8e1;
  --ink: #14231e;
  --muted: #5b6862;
  --soft: #7b8781;
  --line: #cdd8cf;
  --accent: #006c58;
  --accent-dark: #0f3f36;
  --accent-soft: #dceee8;
  --brand-charge: #0b1c30;
  --brand-stack: #20b987;
  --radius: 8px;
  font-family: Satoshi, Geist, Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(20, 35, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 35, 30, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  border-bottom: 1px solid rgba(205, 216, 207, 0.72);
  background: rgba(247, 248, 246, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nav {
  display: grid;
  grid-template-columns: minmax(160px, 0.64fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1320px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, auto);
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 1.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 38px;
  object-fit: contain;
}

.brand-text {
  white-space: nowrap;
}

.brand-text span:first-child {
  color: var(--brand-charge);
}

.brand-text span:last-child {
  color: var(--brand-stack);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 640;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  gap: 7px;
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-trigger::after {
  width: 6px;
  height: 6px;
  margin-top: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  opacity: 0.55;
  transform: rotate(45deg);
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(460px, 1fr);
  gap: 24px;
  width: min(980px, calc(100vw - 52px));
  padding: 22px;
  border: 1px solid rgba(205, 216, 207, 0.74);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(20, 35, 30, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.985);
  transition: opacity 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu::before {
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
  content: "";
}

.mega-menu.compact {
  grid-template-columns: minmax(260px, 0.5fr) minmax(420px, 0.82fr);
  width: min(820px, calc(100vw - 52px));
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.mega-list {
  display: grid;
  gap: 6px;
  align-content: start;
}

.mega-list-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--muted);
  line-height: 1.35;
  transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-list-item strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 680;
}

.mega-list-item span {
  color: #8b9a93;
  font-size: 0.95rem;
  font-weight: 500;
}

.mega-list-item:hover,
.mega-list-item.active {
  background: var(--canvas);
  color: var(--ink);
  transform: translateX(2px);
}

.mega-feature {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 268px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #13211d;
  color: #ffffff;
  isolation: isolate;
}

.mega-feature img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
  transform: scale(1.02);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-feature::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(0deg, rgba(14, 27, 23, 0.9) 0%, rgba(14, 27, 23, 0.54) 46%, rgba(14, 27, 23, 0.18) 100%),
    linear-gradient(90deg, rgba(14, 27, 23, 0.68), rgba(14, 27, 23, 0.08));
}

.mega-feature:hover img {
  transform: scale(1.055);
}

.mega-feature-copy {
  display: grid;
  gap: 10px;
  padding: 28px;
  max-width: 620px;
}

.mega-feature-copy strong {
  font-size: 1.15rem;
  font-weight: 680;
  line-height: 1.1;
}

.mega-feature-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.platform-link {
  width: fit-content;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--accent);
  font-weight: 680;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms cubic-bezier(0.16, 1, 0.3, 1), border-color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.button:active {
  transform: scale(0.98);
}

.button.secondary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.76);
}

.button.secondary:hover {
  color: #ffffff;
  background: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: min(980px, calc(100dvh - 76px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.86) contrast(1.03);
  transform: scale(1.03);
  animation: settle-image 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 248, 246, 0.98) 0%, rgba(247, 248, 246, 0.92) 28%, rgba(247, 248, 246, 0.42) 56%, rgba(247, 248, 246, 0.06) 100%),
    linear-gradient(0deg, rgba(247, 248, 246, 0.96) 0%, rgba(247, 248, 246, 0) 38%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
  width: min(1320px, calc(100% - 40px));
  min-height: min(980px, calc(100dvh - 76px));
  margin: 0 auto;
  padding: clamp(80px, 11vw, 146px) 0 42px;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
  animation: rise-in 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: none;
}

h1 {
  max-width: 860px;
  font-size: clamp(3.15rem, 7vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 0.04em;
}

.hero-title-static {
  display: block;
}

.hero-title-rotator {
  position: relative;
  display: block;
  min-height: 2.84em;
  overflow: hidden;
  color: var(--accent);
  contain: paint;
}

.hero-title-rotator span {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: min(780px, 100%);
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 0.38em, 0) skewY(2deg);
  animation: hero-phrase-cycle 8.4s cubic-bezier(0.16, 1, 0.3, 1) infinite both;
  will-change: opacity, transform, filter;
}

.hero-title-rotator span:nth-child(2) {
  animation-delay: 2.8s;
}

.hero-title-rotator span:nth-child(3) {
  animation-delay: 5.6s;
}

h1 span:not(.hero-title-static):not(.hero-title-rotator) {
  color: var(--accent);
}

.hero-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 28px 70px rgba(20, 35, 30, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel strong {
  display: block;
  color: var(--accent-dark);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  color: var(--ink);
  line-height: 1.42;
}

.hero-panel li::before,
.check-list li::before {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.section {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section.muted {
  background: var(--surface-muted);
}

.section.dark {
  color: #e4ece8;
  background: #14231e;
}

.section-inner {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 118px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: 44px;
}

h2 {
  max-width: 880px;
  font-size: clamp(2.25rem, 5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.section-intro {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.64;
}

.use-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.6fr) minmax(220px, 0.72fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
}

.use-card,
.story-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 55px rgba(20, 35, 30, 0.07);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card {
  color: inherit;
  text-decoration: none;
}

.use-card[href] {
  color: inherit;
  text-decoration: none;
}

.use-card:hover,
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 68px rgba(20, 35, 30, 0.11);
}

.use-card:focus-visible,
.story-card:focus-visible {
  outline: 3px solid rgba(0, 122, 97, 0.34);
  outline-offset: 4px;
}

.use-card:active,
.story-card:active {
  transform: scale(0.99);
}

.use-card:first-child {
  grid-row: span 2;
}

.use-card:nth-child(3) {
  grid-column: span 2;
}

.media-space {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: var(--surface-strong);
}

.use-card .media-space {
  height: 220px;
}

.use-card:first-child .media-space {
  height: 360px;
}

.use-card:nth-child(3) .media-space {
  height: 280px;
}

.media-space img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.use-card:hover .media-space img,
.story-card:hover .media-space img {
  transform: scale(1.045);
}

.use-body,
.story-body {
  padding: 24px;
}

.index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.24rem, 2vw, 1.6rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.use-body p,
.story-body p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.58;
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  color: #dbe6e1;
  line-height: 1.54;
}

.platform-copy p {
  margin-top: 18px;
  color: #aebbb5;
  line-height: 1.65;
}

.platform-shot {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #0e1b17;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.platform-shot img {
  width: 100%;
  aspect-ratio: 1280 / 750;
  object-fit: cover;
}

.diagram-placeholder-kicker {
  color: #8fe2c2;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-flow-image {
  background: #0e1b17;
}

.session-flow-image a {
  display: block;
}

.session-flow-image img {
  width: 100%;
  aspect-ratio: 1600 / 1220;
  object-fit: contain;
}

.portal-gallery-section {
  background: var(--surface);
}

.portal-gallery-heading {
  align-items: end;
}

.portal-gallery-heading .section-intro {
  max-width: 640px;
}

.portal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: clamp(34px, 5vw, 56px);
}

.portal-feature {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(20, 35, 30, 0.08);
  transition:
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-feature:hover,
.portal-feature:focus-within {
  border-color: rgba(0, 108, 88, 0.32);
  box-shadow: 0 26px 66px rgba(20, 35, 30, 0.13);
  transform: translateY(-2px);
}

.portal-feature[open] {
  grid-column: 1 / -1;
  border-color: rgba(0, 108, 88, 0.4);
}

.portal-feature summary {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}

.portal-feature summary::-webkit-details-marker {
  display: none;
}

.portal-feature summary::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 108, 88, 0.22);
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 1.2rem;
  font-weight: 520;
  content: "+";
  background: rgba(255, 255, 255, 0.92);
  transition:
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-feature[open] summary::after {
  color: #ffffff;
  content: "-";
  background: var(--accent);
  transform: rotate(180deg);
}

.portal-feature[open] summary > img {
  display: none;
}

.portal-feature summary > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(205, 216, 207, 0.78);
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: top left;
  background: #edf2f0;
}

.driver-display-feature summary > img {
  object-fit: contain;
  object-position: center;
  background: #f6f8fc;
}

.portal-feature-copy {
  display: grid;
  gap: 10px;
  padding: 0 42px 8px 2px;
}

.portal-feature-copy strong {
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.16;
}

.portal-feature-copy span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.portal-feature-expanded {
  display: grid;
  padding: 0 14px 14px;
}

.portal-feature-expanded img {
  width: 100%;
  max-height: 760px;
  border: 1px solid rgba(205, 216, 207, 0.78);
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  background: #edf2f0;
}

.driver-display-feature .portal-feature-expanded img {
  background: #f6f8fc;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.66fr);
  gap: 18px;
}

.story-card:first-child {
  grid-row: span 2;
}

.story-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 880;
}

.cta-band {
  background: var(--canvas);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) auto;
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(0, 108, 88, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 238, 232, 0.82), rgba(255, 255, 255, 0.95)),
    var(--surface);
  box-shadow: 0 24px 70px rgba(20, 35, 30, 0.09);
}

.cta-box p {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.keep-contact-band {
  background: var(--surface);
}

.keep-contact-band .section-inner {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(62px, 8vw, 104px);
}

.keep-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.44fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.keep-contact-copy h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.keep-contact-copy p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.keep-contact-form-shell {
  grid-column: 2;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.keep-contact-sib-container {
  min-width: 0;
}

.keep-contact-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid rgba(0, 108, 88, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 16px 42px rgba(20, 35, 30, 0.07);
  transition: border-color 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.keep-contact-panel:hover,
.keep-contact-panel:focus-within {
  border-color: rgba(0, 108, 88, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 22px 54px rgba(20, 35, 30, 0.1);
  transform: translateY(-1px);
}

.keep-contact-panel h3 {
  color: var(--accent-dark);
  font-size: clamp(1.22rem, 2vw, 1.45rem);
}

.keep-contact-panel .sib-form-block,
.keep-contact-panel .form__entry,
.keep-contact-panel .form__label-row {
  min-width: 0;
}

.keep-contact-panel .button {
  width: 100%;
}

.keep-contact-panel .sib-form-block__button-with-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.keep-contact-panel .progress-indicator__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.keep-contact-panel .sib-hide-loader-icon {
  display: none;
}

.keep-contact-panel .keep-contact-loader-visible {
  display: block;
  animation: keep-contact-spin 900ms linear infinite;
}

.keep-contact-panel button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

@keyframes keep-contact-spin {
  to {
    transform: rotate(360deg);
  }
}

.keep-contact-fields {
  display: grid;
  gap: 10px;
}

.keep-contact-field {
  display: grid;
  gap: 7px;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 760;
}

.keep-contact-panel .entry__field {
  min-width: 0;
}

.keep-contact-panel .entry__error {
  display: block;
  min-height: 0;
  margin-top: 6px;
  border-radius: var(--radius);
  color: #9d2f25;
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.35;
}

.keep-contact-panel .entry__error:empty {
  display: none;
}

.keep-contact-field + .entry__field,
.keep-contact-panel .entry__field {
  margin-top: 7px;
}

.keep-contact-field input,
.keep-contact-panel .entry__field input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(20, 35, 30, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

.keep-contact-field input:focus,
.keep-contact-panel .entry__field input:focus {
  outline: 2px solid rgba(0, 108, 88, 0.22);
  outline-offset: 2px;
  border-color: rgba(0, 108, 88, 0.5);
}

.keep-contact-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.keep-contact-note a {
  color: var(--accent-dark);
  font-weight: 760;
}

.sib-form-message-panel .sib-notification__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.sib-form-message-panel__text {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.sib-form-message-panel {
  display: none;
}

.keep-contact-message {
  border: 1px solid rgba(0, 108, 88, 0.18);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 680;
  line-height: 1.4;
}

#success-message.keep-contact-message {
  border-color: rgba(0, 108, 88, 0.24);
  color: var(--accent-dark);
}

#error-message.keep-contact-message {
  border-color: rgba(157, 47, 37, 0.26);
  color: #9d2f25;
}

.input--hidden {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.child-hero {
  position: relative;
  min-height: min(760px, calc(100dvh - 76px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.child-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.86) contrast(1.03);
  transform: scale(1.03);
  animation: settle-image 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.child-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 248, 246, 0.98) 0%, rgba(247, 248, 246, 0.9) 34%, rgba(247, 248, 246, 0.36) 68%, rgba(247, 248, 246, 0.06) 100%),
    linear-gradient(0deg, rgba(247, 248, 246, 0.94) 0%, rgba(247, 248, 246, 0) 38%);
}

.child-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(1320px, calc(100% - 40px));
  min-height: min(760px, calc(100dvh - 76px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0 54px;
}

.child-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.child-hero h1 {
  max-width: 840px;
}

.child-hero p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.child-section {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.child-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.46fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) 0;
}

.child-placeholder-copy p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.placeholder-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--muted);
  list-style: none;
}

.placeholder-list li {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

.placeholder-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
  box-shadow: 0 20px 58px rgba(20, 35, 30, 0.08);
}

.placeholder-panel strong {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.placeholder-panel p {
  color: var(--muted);
  line-height: 1.62;
}

.placeholder-panel a {
  color: var(--accent-dark);
  font-weight: 760;
}

.placeholder-panel a.button {
  color: #ffffff;
}

.placeholder-panel a.button.secondary {
  color: var(--accent-dark);
}

.placeholder-panel a.button.secondary:hover {
  color: #ffffff;
}

.article-masthead {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.installer-article-masthead {
  position: relative;
  min-height: clamp(560px, 72svh, 760px);
  overflow: hidden;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(11, 22, 38, 0.92) 0%, rgba(11, 22, 38, 0.76) 42%, rgba(11, 22, 38, 0.34) 72%, rgba(11, 22, 38, 0.12) 100%),
    linear-gradient(0deg, rgba(11, 22, 38, 0.76) 0%, rgba(11, 22, 38, 0.08) 48%),
    url("images/switchboard-electrician.jpeg") center right / cover no-repeat;
}

.article-masthead-inner {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 112px) 0 clamp(42px, 6vw, 72px);
}

.installer-article-masthead .article-masthead-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.28fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: end;
  min-height: inherit;
  padding-top: clamp(78px, 11vw, 132px);
}

.article-masthead h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.installer-article-masthead h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 0.98;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.article-masthead p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.installer-article-masthead p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.installer-article-masthead .child-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.article-author-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(8, 18, 33, 0.52);
  backdrop-filter: blur(14px);
}

.article-author-photo {
  display: grid;
  width: min(100%, 220px);
  aspect-ratio: 1 / 1;
  place-items: center;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.article-author-meta {
  display: grid;
  gap: 5px;
}

.article-author-meta strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.35;
}

.article-author-meta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.article-shell {
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.32fr);
  gap: clamp(38px, 7vw, 92px);
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.article-body {
  max-width: 720px;
}

.article-body h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.article-body p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.article-inline-image {
  margin: 34px 0 10px;
}

.article-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(20, 35, 30, 0.1);
}

.article-list {
  display: grid;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.article-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.58;
}

.article-bullet-list {
  gap: 14px;
  padding-left: 1.25rem;
  list-style: disc;
  border-top: 0;
}

.article-bullet-list li {
  padding: 0;
  border-bottom: 0;
}

.article-bullet-list li::marker {
  color: var(--accent);
}

.article-aside {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 20px;
}

.article-aside img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(20, 35, 30, 0.1);
}

.article-aside img.article-screenshot {
  aspect-ratio: 1 / 1;
  background: #eef3fb;
  object-fit: contain;
}

.article-note {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.article-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 840;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-note p {
  color: var(--muted);
  line-height: 1.55;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-panel address {
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.62;
}

.child-nav-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-section {
  background: var(--surface);
}

.contact-section .section-inner {
  padding-top: clamp(58px, 8vw, 96px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(420px, 0.88fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.contact-copy h2 {
  max-width: 620px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.contact-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
  box-shadow: 0 20px 58px rgba(20, 35, 30, 0.08);
}

.contact-field {
  display: grid;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 760;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(20, 35, 30, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
}

.contact-form textarea {
  min-height: 176px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 108, 88, 0.24);
  outline-offset: 2px;
  border-color: rgba(0, 108, 88, 0.5);
}

.contact-form .button {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 180px;
}

.pricing-plans-section {
  background: var(--surface);
}

.pricing-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.pricing-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-plan-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 64px rgba(20, 35, 30, 0.08);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-plan-card:hover {
  border-color: rgba(0, 108, 88, 0.36);
  box-shadow: 0 26px 78px rgba(20, 35, 30, 0.12);
  transform: translateY(-3px);
}

.pricing-plan-card.selected {
  border-color: rgba(0, 108, 88, 0.46);
  background: var(--accent-soft);
}

.pricing-plan-card.recommended {
  border-color: rgba(0, 108, 88, 0.3);
}

.pricing-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 180px;
  padding: 12px 18px;
  color: #ffffff;
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.pricing-plan-content {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
}

.pricing-plan-content h3 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.pricing-price {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 760;
  line-height: 1;
}

.pricing-price span {
  font-size: clamp(4.4rem, 8vw, 6.25rem);
  letter-spacing: 0;
}

.pricing-price-rotator {
  position: relative;
  display: inline-block;
  width: 3.05ch;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
  contain: paint;
}

.pricing-price-rotator span {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 0.38em, 0) skewY(2deg);
  animation: hero-phrase-cycle 8.4s cubic-bezier(0.16, 1, 0.3, 1) infinite both;
  will-change: opacity, transform, filter;
}

.pricing-price-rotator span:nth-child(2) {
  animation-delay: 2.8s;
}

.pricing-price-rotator span:nth-child(3) {
  animation-delay: 5.6s;
}

.pricing-price .pricing-price-term {
  font-size: inherit;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-price.accent {
  color: var(--accent);
}

.pricing-price-struck {
  text-decoration: line-through;
  text-decoration-thickness: 0.08em;
  text-decoration-color: currentColor;
  text-decoration-skip-ink: none;
}

.pricing-price-struck > span,
.pricing-price-struck .pricing-price-rotator span {
  text-decoration: line-through;
  text-decoration-thickness: 0.08em;
  text-decoration-color: currentColor;
  text-decoration-skip-ink: none;
}

.pricing-promo {
  margin-top: -10px;
  color: var(--accent-dark);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  font-weight: 820;
  line-height: 1.2;
}

.pricing-feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
  list-style: none;
}

.pricing-feature-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
}

.pricing-feature-list li::before {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  content: "";
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) 8px 9px / 6px 2px no-repeat,
    linear-gradient(-45deg, transparent 50%, currentColor 50%) 5px 9px / 5px 2px no-repeat;
}

.pricing-plan-content .button {
  align-self: end;
  width: 100%;
  margin-top: 10px;
}

.pricing-plan-footnote {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.pricing-note {
  width: 100%;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 108, 88, 0.22);
  border-radius: var(--radius);
  background: rgba(220, 238, 232, 0.52);
}

.pricing-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.pricing-note p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-feature {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.pricing-feature span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 760;
}

.pricing-feature p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.site-map {
  background: #111d19;
  color: #dbe6e1;
}

.site-map .section-inner {
  padding: 44px 0;
}

.site-map-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.62fr) repeat(4, minmax(120px, 1fr));
  gap: 24px;
}

.site-map h2 {
  font-size: 1.2rem;
  line-height: 1.1;
}

.site-map h3 {
  color: #ffffff;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-map ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  color: #aebbb5;
  list-style: none;
}

.site-map a {
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-map a:hover {
  color: #ffffff;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #111d19;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  gap: 18px;
  padding: 26px 0;
  color: #aebbb5;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 760;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settle-image {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1.03);
  }
}

@keyframes hero-phrase-cycle {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 0.42em, 0) skewY(2deg);
  }
  7%,
  27% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) skewY(0);
  }
  36%,
  100% {
    opacity: 0;
    filter: blur(16px);
    transform: translate3d(0, -0.46em, 0) skewY(-2deg);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(32, 185, 135, 0.28);
  }
  55% {
    box-shadow: 0 0 0 9px rgba(32, 185, 135, 0);
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: minmax(160px, 1fr) auto;
    gap: 14px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 0 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-trigger,
  .nav-link {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(205, 216, 207, 0.86);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
  }

  .nav-trigger::after,
  .mega-menu {
    display: none;
  }

  .hero-inner,
  .section-heading,
  .platform-grid,
  .installer-article-masthead .article-masthead-inner,
  .article-layout,
  .cta-box,
  .keep-contact-layout,
  .child-placeholder,
  .contact-layout,
  .pricing-plan-grid,
  .pricing-detail-grid,
  .site-map-grid {
    grid-template-columns: 1fr;
  }

  .keep-contact-form-shell {
    grid-column: 1;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 780px;
    align-items: end;
  }

  .hero-panel {
    max-width: 520px;
  }

  .use-case-grid,
  .story-grid,
  .portal-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-feature[open] {
    grid-column: 1 / -1;
  }

  .use-case-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .use-card:first-child,
  .story-card:first-child {
    grid-row: auto;
  }

  .use-card:nth-child(3) {
    grid-column: auto;
  }

  .article-aside {
    position: static;
  }

  .article-author-panel {
    grid-template-columns: minmax(110px, 150px) minmax(0, 1fr);
    align-items: end;
  }

  .article-author-photo {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero-inner,
  .child-hero-inner,
  .child-placeholder,
  .article-masthead-inner,
  .article-layout,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1320px);
  }

  .actions .button.secondary {
    display: none;
  }

  .button {
    min-height: 44px;
    padding: 0 13px;
    font-size: 0.92rem;
  }

  .brand {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.4rem);
  }

  .installer-article-masthead .article-masthead-inner {
    padding-top: 54px;
  }

  .installer-article-masthead h1 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .article-author-panel {
    grid-template-columns: minmax(88px, 112px) minmax(0, 1fr);
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(247, 248, 246, 0.99) 0%, rgba(247, 248, 246, 0.9) 58%, rgba(247, 248, 246, 0.2) 100%),
      linear-gradient(90deg, rgba(247, 248, 246, 0.84), rgba(247, 248, 246, 0.12));
  }

  .child-hero::after {
    background:
      linear-gradient(0deg, rgba(247, 248, 246, 0.99) 0%, rgba(247, 248, 246, 0.91) 58%, rgba(247, 248, 246, 0.2) 100%),
      linear-gradient(90deg, rgba(247, 248, 246, 0.84), rgba(247, 248, 246, 0.12));
  }

  .hero-inner {
    min-height: 820px;
    padding-top: 66px;
  }

  .child-hero,
  .child-hero-inner {
    min-height: 640px;
  }

  .hero-actions .button,
  .cta-box > .button {
    width: 100%;
  }

  .hero-panel {
    padding: 18px;
  }

  .use-body,
  .story-body {
    padding: 20px;
  }

  .portal-gallery-grid {
    grid-template-columns: 1fr;
  }

  .portal-feature[open] {
    grid-column: auto;
  }

  .portal-feature summary {
    padding: 12px;
  }

  .portal-feature-copy {
    padding-right: 38px;
  }
}

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

  .hero-title-rotator span,
  .pricing-price-rotator span {
    animation: none !important;
    filter: none;
    transform: none;
  }

  .hero-title-rotator span:first-child,
  .pricing-price-rotator span:first-child {
    opacity: 1;
  }
}
