:root {
  --ink: #142018;
  --ink-soft: #4a5c50;
  --paper: #f2f6f3;
  --mist: #e3ece6;
  --accent: #2f7a38;
  --accent-deep: #1e5226;
  --ice: #7eb8d4;
  --ice-bright: #c9e6f2;
  --pine: #3f9a45;
  --lime: #8fd63a;
  --surface: rgba(255, 255, 255, 0.82);
  --line: rgba(20, 32, 24, 0.12);
  --hero-text: #f4faf6;
  --footer-bg: #0c1410;
  --footer-text: rgba(244, 250, 246, 0.72);
  --font-display: "Sora", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --max: 1120px;
  --radius: 0.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(47, 122, 56, 0.14), transparent 55%),
    radial-gradient(800px 420px at 100% 8%, rgba(126, 184, 212, 0.16), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

a:hover,
a:focus-visible {
  text-decoration: underline;
}

h1,
h2,
h3,
.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  color: var(--hero-text);
  box-sizing: border-box;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(242, 246, 243, 0.96);
  color: var(--ink);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo {
  height: 3.5rem;
  width: auto;
}

.logo:hover,
.logo:focus-visible,
.footer-logo:hover,
.footer-logo:focus-visible {
  text-decoration: none;
  opacity: 0.92;
}

.logo img {
  width: auto;
  height: 3.5rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 0.65rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-header.nav-open .nav-toggle-bars {
  background: transparent;
}

.site-header.nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: none;
  gap: 1.15rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a {
  opacity: 0.85;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  opacity: 1;
  text-decoration: underline;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled .header-cta,
.site-header.is-solid .header-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.site-header.is-scrolled .header-cta-secondary,
.site-header.is-solid .header-cta-secondary {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .header-cta:focus-visible,
.site-header.is-solid .header-cta:hover,
.site-header.is-solid .header-cta:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.site-header.is-scrolled .header-cta-secondary:hover,
.site-header.is-scrolled .header-cta-secondary:focus-visible,
.site-header.is-solid .header-cta-secondary:hover,
.site-header.is-solid .header-cta-secondary:focus-visible {
  background: rgba(47, 122, 56, 0.12);
  border-color: var(--accent);
  color: var(--accent-deep);
}

.hero {
  position: relative;
  /* One viewport tall — headline + weather stack without overlap */
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  color: var(--hero-text);
  overflow: hidden;
  background: #0b140f;
}

@supports (height: 100svh) {
  .hero {
    height: 100svh;
    max-height: 100svh;
  }
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-fx {
  pointer-events: none;
}

.hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 70% 15%, rgba(126, 184, 212, 0.28), transparent 60%),
    radial-gradient(ellipse 55% 45% at 18% 48%, rgba(47, 122, 56, 0.32), transparent 55%),
    linear-gradient(165deg, #0a1210 0%, #13241a 42%, #0e1a28 100%);
}

.hero-sky::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(40vh, 340px);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6, 12, 9, 0.35) 50%,
    #060c09 100%
  );
}

.hero-treeline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(12rem, 38vh, 22rem);
  line-height: 0;
  overflow: visible;
  z-index: 1;
}

.hero-treeline svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  max-width: 100%;
  margin: 0 auto;
  /* Grow to fill space above weather so copy stays vertically centered */
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(5.5rem, 12vh, 7rem) clamp(1rem, 4vw, 2.5rem) clamp(1.25rem, 3vh, 2rem);
  box-sizing: border-box;
}

.hero-thanks {
  justify-content: center;
}

.hero-thanks .thanks-content {
  padding-top: clamp(4.5rem, 10vh, 6rem);
  padding-bottom: clamp(5.5rem, 16vh, 8.5rem);
  text-align: left;
}

.hero-thanks .lede {
  max-width: 44ch;
}

.thanks-explore {
  margin: 1.5rem 0 0;
  max-width: none;
  font-size: 0.98rem;
  color: rgba(247, 249, 252, 0.82);
  line-height: 1.55;
}

.thanks-explore a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.thanks-explore a:hover,
.thanks-explore a:focus-visible {
  color: #fff;
}

/* Soft handoff from forest floor into the page */
.hero-edge {
  display: block;
  height: clamp(2.5rem, 5vw, 3.75rem);
  margin-top: -1px;
  background: linear-gradient(180deg, #060c09 0%, var(--paper) 100%);
}

.brand-mark {
  margin: 0 0 0.85rem;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 700;
}

.brand-mark .logo-it {
  color: #8fd63a;
  background-image: linear-gradient(180deg, #9adf4a 0%, #2f7a38 100%);
}

.brand-mark .logo-north {
  color: #7eb8d4;
  background-image: linear-gradient(180deg, #c9e6f2 0%, #7eb8d4 55%, #5a9bb8 100%);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .brand-mark .logo-it,
  .brand-mark .logo-north {
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
  }
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 16ch;
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  font-weight: 500;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 44ch;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: rgba(247, 249, 252, 0.88);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (prefers-reduced-motion: no-preference) {
  .brand-mark,
  .hero h1,
  .lede,
  .cta-group {
    opacity: 0;
    transform: translateY(18px);
  }

  .brand-mark {
    animation: rise-in 0.9s ease forwards 0.12s;
  }

  .hero h1 {
    animation: rise-in 0.9s ease forwards 0.3s;
  }

  .lede {
    animation: rise-in 0.9s ease forwards 0.45s;
  }

  .cta-group {
    animation: rise-in 0.9s ease forwards 0.6s;
  }
}

.page-hero .cta-group,
.section .cta-group,
.prose .cta-group {
  opacity: 1;
  transform: none;
  animation: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(180deg, #9adf4a 0%, var(--pine) 100%);
  color: #0c140f;
}

.band .btn-primary,
.contact-form .btn-primary {
  background: var(--accent);
  color: #fff;
}

.band .btn-primary:hover,
.contact-form .btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  border-color: rgba(247, 249, 252, 0.45);
  color: var(--hero-text);
  background: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: #f7f9fc;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.section {
  padding: clamp(2.5rem, 6vw, 4.25rem) 0;
}

.hero-edge + .section {
  padding-top: clamp(2rem, 5vw, 3.25rem);
}

.section.alt {
  background: rgba(47, 122, 56, 0.07);
}

#plans,
#catalog,
#plans-preview,
#core,
#standard,
#server-standard,
#form {
  scroll-margin-top: 5.5rem;
}

.section-inner {
  width: min(100% - 2rem, var(--max));
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-inner.narrow {
  max-width: 680px;
}

.section h1,
.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
}

.section-kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-kicker-lg {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.section-lede {
  margin: 0 0 1.35rem;
  max-width: 48ch;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.page-hero {
  padding: 7.5rem 0 1.25rem;
}

.page-hero .section-lede:last-child {
  margin-bottom: 0;
}

.page-hero + .section {
  padding-top: clamp(1.5rem, 3.5vw, 2.5rem);
}

#noise {
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

#noise + .section {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

#plans {
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

#plans + .section {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

.feature-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.feature-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.feature-grid p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 42ch;
}

.band {
  background: var(--accent-deep);
  color: var(--hero-text);
}

.band-inner {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.band h2 {
  margin: 0;
}

.band p {
  margin: 0;
  max-width: 42ch;
  color: rgba(247, 249, 252, 0.88);
}

.plan {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.plan:first-of-type {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.plan:last-of-type {
  padding-bottom: 0.85rem;
}

.plan-feature-list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
}

.plan-feature-list a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.plan-feature-list a:hover,
.plan-feature-list a:focus-visible {
  text-decoration: underline;
}

.plan-feature-note {
  display: inline;
  color: var(--ink-soft);
  font-weight: 400;
}

.plan h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.plan-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
}

.plan-preview-grid {
  display: grid;
  gap: 1.25rem;
  margin: 1.75rem 0 1.5rem;
}

.plan-preview {
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
}

.plan-preview h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.plan-preview p {
  margin: 0;
  max-width: 40ch;
  color: var(--ink-soft);
}

@media (min-width: 720px) {
  .plan-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .plan-preview {
    padding: 0 0 0 1.25rem;
    border-top: none;
    border-left: 1px solid var(--line);
  }

  .plan-preview:first-child {
    padding-left: 0;
    border-left: none;
  }
}

.plan p,
.plan li,
.service-blocks p,
.service-blocks li,
.prose p {
  color: var(--ink-soft);
}

.plan ul,
.service-blocks ul {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
}

.plan li,
.service-blocks li {
  margin: 0.35rem 0;
}

.service-blocks {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.service-blocks article {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.service-blocks h3 {
  margin: 0 0 0.75rem;
}

.prose {
  max-width: 680px;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
}

.prose li {
  margin: 0.4rem 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.prose p {
  font-size: 1.08rem;
  margin: 0 0 1.15rem;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink) !important;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-card {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.contact-card ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-card li {
  display: grid;
  gap: 0.15rem;
}

.contact-card span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-card a {
  color: var(--accent);
}

.site-form {
  display: grid;
  gap: 1rem;
}

.site-form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
}

.site-form input,
.site-form textarea,
.site-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
}

.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 122, 56, 0.18);
}

.site-form .btn {
  justify-self: start;
}

.form-note {
  margin: 0;
  min-height: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.form-note.is-success {
  color: var(--accent-deep);
}

.form-note.is-error {
  color: #8a2f2f;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 5.5rem;
  border-top: 1px solid var(--line);
  color: var(--footer-text);
  background: var(--footer-bg);
}

.footer-logo {
  height: auto;
  text-decoration: none;
}

.footer-logo img {
  width: auto;
  height: 3rem;
  object-fit: contain;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.footer-meta p {
  margin: 0;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #fff;
}

.welcome-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.welcome-list li {
  padding: 0.95rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.55);
}

.welcome-list strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.plan-compare-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.plan-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 36rem;
  font-size: 0.95rem;
}

.plan-compare th,
.plan-compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.plan-compare thead th {
  font-family: var(--font-display);
  font-weight: 600;
  background: rgba(47, 122, 56, 0.1);
}

.plan-compare tbody th {
  font-weight: 600;
  width: 28%;
  color: var(--ink);
}

.plan-compare tr:last-child th,
.plan-compare tr:last-child td {
  border-bottom: 0;
}

.plan-compare .yes {
  color: var(--accent-deep);
  font-weight: 600;
}

.plan-compare .partial {
  color: var(--ink-soft);
}

.plan-note {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(126, 184, 212, 0.16);
  border: 1px solid rgba(126, 184, 212, 0.35);
}

.plan-note p {
  margin: 0;
}

.service-why {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.service-why h2 {
  margin-top: 0;
}

.audience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.audience-strip li {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55);
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.breadcrumb {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.breadcrumb a {
  color: var(--accent);
}

.service-card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.service-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.service-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-card-links a {
  color: var(--accent);
}

.check-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.check-list li {
  margin: 0.45rem 0;
  color: var(--ink-soft);
}

.check-list.detailed li {
  margin: 0.75rem 0;
}

.after-list {
  margin: 1.5rem 0 0;
  max-width: 52ch;
  color: var(--ink-soft);
}

.subhead {
  margin-top: 2.5rem !important;
}

.value-page {
  max-width: 720px;
  display: grid;
  gap: 2rem;
}

.value-page article h2 {
  margin: 0 0 0.75rem;
}

.value-page article p,
.value-page article li {
  color: var(--ink-soft);
}

.value-steps {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.85rem;
}

.glossary {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.glossary dt {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.glossary dd {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.compare {
  display: grid;
  gap: 1.25rem;
  margin: 1rem 0;
}

.compare > div {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.compare h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.compare p {
  margin: 0 0 0.65rem;
}

.compare p:last-child {
  margin-bottom: 0;
}

.band a {
  color: var(--ice-bright);
}

.process-block {
  max-width: 760px;
}

.process-steps {
  margin: 1.25rem 0 1.75rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 1rem;
}

.process-steps li {
  color: var(--ink-soft);
}

.sla-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.sla-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.sla-table th,
.sla-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.sla-table th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(47, 122, 56, 0.08);
}

.sla-table tr:last-child td {
  border-bottom: 0;
}

.sla-table td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.testimonial {
  margin: 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.testimonial p {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.testimonial footer {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.reviews-stage {
  position: relative;
  margin-top: 0.35rem;
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reviews-track.is-fading {
  opacity: 0;
  transform: translateY(0.35rem);
}

.reviews-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.reviews-card .reviews-stars {
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1;
}

.reviews-card blockquote {
  margin: 0;
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

.reviews-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.reviews-card footer strong {
  color: var(--ink);
  font-weight: 600;
}

.reviews-source {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.9;
}

.reviews-age {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.reviews-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.reviews-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.reviews-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.reviews-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
}

.reviews-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

@media (max-width: 899px) {
  .reviews-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  .reviews-track {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 799px) {
  .site-header.nav-open {
    background: rgba(242, 246, 243, 0.98);
    color: var(--ink);
    box-shadow: 0 1px 0 var(--line);
  }

  .site-header.nav-open .header-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }

  .site-header.nav-open .header-cta-secondary {
    background: transparent;
    border-color: currentColor;
    color: inherit;
  }

  .site-header.nav-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(242, 246, 243, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .site-header.nav-open .nav a {
    padding: 0.75rem 0.35rem;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    padding: 0.65rem clamp(0.75rem, 3vw, 1.25rem);
    gap: 0.5rem;
  }

  .logo,
  .logo img {
    height: 2.85rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-cta {
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
  }

  .hero-content {
    padding-top: clamp(5.25rem, 14vh, 6.5rem);
    padding-bottom: 1.25rem;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .hero-content h1 {
    font-size: clamp(1.45rem, 6.5vw, 2.15rem);
  }

  .hero .lede {
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
  }

  .hero-weather {
    margin-bottom: 0.75rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
  }

  .hero-weather .weather-strip-note {
    font-size: 0.82rem;
  }

  .season-switcher {
    bottom: clamp(0.55rem, 1.5vh, 0.85rem);
  }

  .section-inner {
    max-width: 100%;
    box-sizing: border-box;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .section-inner,
  .page-hero .section-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .site-footer {
    padding: 2rem 1rem;
  }
}

/* Keep Portal visible on phones; compact assessment label on the narrowest screens */
@media (max-width: 520px) {
  .header-cta {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
  }

  .header-cta-secondary {
    display: inline-flex;
  }
}

@media (max-width: 400px) {
  .header-cta:not(.header-cta-secondary) {
    font-size: 0;
    letter-spacing: 0;
  }

  .header-cta:not(.header-cta-secondary)::after {
    content: "Assess";
    font-size: 0.75rem;
    font-family: var(--font-display);
    font-weight: 600;
  }
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    margin-left: auto;
    margin-right: 0.75rem;
  }

  .header-actions {
    margin-left: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2.5rem;
  }

  .service-blocks {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .compare {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .brand-mark,
  .hero h1,
  .lede,
  .cta-group {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .hero-snow,
  .hero-aurora,
  .noise-panel,
  .pinecone-egg {
    animation: none !important;
    transition: none !important;
  }
}

/* â€”â€” Seasonal hero â€”â€” */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-snow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-aurora {
  position: absolute;
  inset: -10% 0 auto;
  height: 55%;
  opacity: 0;
  background:
    radial-gradient(ellipse 40% 60% at 30% 40%, rgba(80, 220, 160, 0.22), transparent 70%),
    radial-gradient(ellipse 35% 55% at 65% 30%, rgba(90, 140, 255, 0.2), transparent 70%),
    radial-gradient(ellipse 30% 50% at 80% 55%, rgba(180, 90, 220, 0.12), transparent 70%);
  filter: blur(8px);
  transform: translate3d(0, 0, 0);
}

.hero[data-season="winter"] .hero-aurora {
  opacity: 1;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.hero[data-season="winter"] .hero-sky {
  background:
    radial-gradient(ellipse 70% 50% at 72% 12%, rgba(150, 200, 255, 0.22), transparent 58%),
    radial-gradient(ellipse 50% 40% at 20% 50%, rgba(60, 100, 140, 0.25), transparent 55%),
    linear-gradient(165deg, #070d14 0%, #101c28 45%, #0a1520 100%);
}

.hero[data-season="winter"] .hero-treeline {
  filter: saturate(0.85) brightness(0.92);
}

.hero[data-season="spring"] .hero-sky {
  background:
    radial-gradient(ellipse 75% 50% at 68% 18%, rgba(160, 220, 180, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 18% 55%, rgba(90, 160, 100, 0.28), transparent 55%),
    linear-gradient(165deg, #0b1610 0%, #163022 42%, #102418 100%);
}

.hero[data-season="summer"] .hero-sky {
  background:
    radial-gradient(ellipse 80% 55% at 70% 15%, rgba(126, 184, 212, 0.28), transparent 60%),
    radial-gradient(ellipse 55% 45% at 18% 48%, rgba(47, 122, 56, 0.32), transparent 55%),
    linear-gradient(165deg, #0a1210 0%, #13241a 42%, #0e1a28 100%);
}

.hero[data-season="fall"] .hero-sky {
  background:
    radial-gradient(ellipse 70% 50% at 75% 12%, rgba(220, 150, 80, 0.2), transparent 58%),
    radial-gradient(ellipse 50% 42% at 20% 48%, rgba(120, 70, 35, 0.28), transparent 55%),
    linear-gradient(165deg, #100c0a 0%, #241810 45%, #14100e 100%);
}

.hero[data-season="fall"] .hero-treeline {
  filter: sepia(0.22) saturate(1.1) hue-rotate(-8deg);
}

@keyframes aurora-drift {
  from {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(3%, 2%, 0) scale(1.05);
  }
}

/* —— Season preview (bottom-left corner) —— */
.season-switcher {
  position: absolute;
  z-index: 5;
  left: clamp(0.65rem, 2.5vw, 1.15rem);
  top: auto;
  bottom: clamp(0.65rem, 2vh, 1.1rem);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.4rem;
  max-width: min(100% - 1.5rem, 14rem);
  color: var(--hero-text);
}

.season-switcher-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.35rem 0.55rem 0.35rem 0.4rem;
  border: 1px solid rgba(244, 250, 246, 0.12);
  border-radius: 999px;
  background: rgba(6, 12, 9, 0.35);
  color: rgba(244, 250, 246, 0.55);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  opacity: 0.45;
  backdrop-filter: blur(8px);
  transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.season-switcher-toggle:hover,
.season-switcher-toggle:focus-visible,
.season-switcher.is-open .season-switcher-toggle {
  opacity: 0.92;
  color: rgba(244, 250, 246, 0.88);
  background: rgba(6, 12, 9, 0.55);
  border-color: rgba(244, 250, 246, 0.22);
  outline: none;
}

.season-switcher-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.season-switcher-toggle-label {
  line-height: 1;
}

.season-switcher-panel {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 9.5rem;
  padding: 0.55rem 0.55rem 0.5rem;
  border: 1px solid rgba(244, 250, 246, 0.16);
  border-radius: 0.85rem;
  background: rgba(6, 12, 9, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.season-switcher-panel[hidden] {
  display: none;
}

.season-switcher-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 250, 246, 0.55);
  padding-left: 0.25rem;
}

.season-switcher-options {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.season-switcher-options button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(244, 250, 246, 0.82);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.55rem;
  border-radius: 0.55rem;
  cursor: pointer;
  text-align: left;
}

.season-switcher-options button.is-active,
.season-switcher-options button[aria-pressed="true"] {
  background: rgba(143, 214, 58, 0.2);
  color: #f4faf6;
}

.season-switcher-options button:hover,
.season-switcher-options button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

/* —— Weather strip (in-flow at hero bottom — no CTA overlap) —— */
.hero-weather {
  position: relative;
  z-index: 3;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem 0.75rem;
  width: min(100% - 2rem, 42rem);
  max-width: 100%;
  margin: 0 auto clamp(0.85rem, 2.5vh, 1.35rem);
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(244, 250, 246, 0.18);
  border-radius: 1.15rem;
  background: rgba(6, 12, 9, 0.55);
  backdrop-filter: blur(10px);
  color: var(--hero-text);
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
  box-sizing: border-box;
}

.hero-weather[hidden] {
  display: none;
}

.hero-weather .weather-strip-kicker {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
}

.hero-weather .weather-strip-temp {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #f4faf6;
}

.hero-weather .weather-strip-note {
  width: 100%;
  color: rgba(244, 250, 246, 0.82);
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  .hero-weather .weather-strip-note {
    width: auto;
  }
}

/* legacy class kept harmlessly if referenced */
.weather-strip {
  display: none;
}

/* â€”â€” Pinecone easter egg â€”â€” */
.pinecone-egg {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 8vw, 5rem);
  bottom: clamp(6.5rem, 18vh, 10rem);
  width: 2.1rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pinecone-egg:hover,
.pinecone-egg:focus-visible {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
  outline: none;
}

.pinecone-egg.is-found {
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(143, 214, 58, 0.45));
}

.pinecone-egg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pinecone-toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(1rem);
  width: min(24rem, calc(100vw - 2rem));
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pinecone-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.pinecone-toast[hidden] {
  display: none;
}

.pinecone-toast p {
  margin: 0 0 0.75rem;
}

.pinecone-toast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* —— Before / after noise —— */
.noise-stage {
  margin-top: 1rem;
  outline: none;
  cursor: pointer;
}

.noise-stack {
  display: grid;
}

.noise-stack > .noise-panel {
  grid-area: 1 / 1;
}

.noise-panel {
  position: relative;
  display: grid;
  gap: 1.25rem;
  min-height: 16rem;
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.noise-panel[data-noise-panel="chaos"] {
  background:
    radial-gradient(circle at 12% 20%, rgba(180, 60, 40, 0.16), transparent 40%),
    radial-gradient(circle at 88% 30%, rgba(180, 120, 40, 0.18), transparent 42%),
    linear-gradient(160deg, #f7f1ea, #ebe4db);
  z-index: 1;
}

.noise-panel[data-noise-panel="calm"] {
  background:
    radial-gradient(circle at 80% 20%, rgba(126, 184, 212, 0.22), transparent 45%),
    radial-gradient(circle at 15% 70%, rgba(47, 122, 56, 0.16), transparent 40%),
    linear-gradient(160deg, #eef6f1, #e4eee8);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  pointer-events: none;
}

.noise-stage.is-calm .noise-panel[data-noise-panel="chaos"],
.noise-stage:hover .noise-panel[data-noise-panel="chaos"],
.noise-stage:focus-visible .noise-panel[data-noise-panel="chaos"] {
  opacity: 0;
  visibility: hidden;
}

.noise-stage.is-calm .noise-panel[data-noise-panel="calm"],
.noise-stage:hover .noise-panel[data-noise-panel="calm"],
.noise-stage:focus-visible .noise-panel[data-noise-panel="calm"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.noise-copy {
  position: relative;
  z-index: 1;
}

.noise-panel h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.noise-panel .noise-copy > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.noise-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.noise-chips li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.noise-panel[data-noise-panel="chaos"] .noise-chips li {
  border-color: rgba(20, 32, 24, 0.18);
  transform: rotate(calc(var(--r, 0) * 1deg));
}

.noise-panel[data-noise-panel="calm"] .noise-chips li {
  border-color: rgba(47, 122, 56, 0.25);
  color: var(--accent-deep);
}

.noise-scene {
  position: relative;
  border-radius: calc(var(--radius) - 0.25rem);
}

.noise-scene-chaos {
  position: relative;
  min-height: 11rem;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(120, 40, 20, 0.03) 10px,
      rgba(120, 40, 20, 0.03) 11px
    ),
    linear-gradient(145deg, rgba(255, 248, 240, 0.55), rgba(230, 210, 190, 0.35));
  border: 1px dashed rgba(120, 60, 30, 0.28);
  border-radius: inherit;
}

.chaos-note,
.chaos-toast,
.chaos-bill,
.chaos-popup {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(40, 20, 10, 0.12);
}

.chaos-note {
  width: 5.6rem;
  padding: 0.55rem 0.5rem 0.7rem;
  background: #f6e27a;
  color: #3a2f12;
  transform: rotate(-8deg);
}

.chaos-note-a {
  top: 12%;
  left: 8%;
}

.chaos-note-b {
  top: 48%;
  left: 18%;
  background: #f3b4a0;
  transform: rotate(7deg);
}

.chaos-toast {
  padding: 0.45rem 0.65rem;
  border-radius: 0.45rem;
  background: #3a241c;
  color: #ffe8df;
}

.chaos-toast-a {
  top: 14%;
  right: 8%;
  transform: rotate(3deg);
}

.chaos-toast-b {
  top: 34%;
  right: 14%;
  background: #7a2e22;
  transform: rotate(-4deg);
}

.chaos-bill {
  bottom: 18%;
  right: 10%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.35rem;
  background: #fff;
  color: #5a2a1c;
  border: 1px solid rgba(120, 40, 20, 0.2);
  transform: rotate(6deg);
}

.chaos-popup {
  bottom: 22%;
  left: 10%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.4rem;
  background: #fff7f2;
  color: #8a2f1c;
  border: 1px solid rgba(180, 60, 40, 0.35);
  transform: rotate(-5deg);
}

.chaos-bar,
.chaos-bar-b {
  position: absolute;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #c44b32, #e0a060);
  opacity: 0.55;
}

.chaos-bar {
  width: 42%;
  top: 62%;
  left: 38%;
  transform: rotate(-2deg);
}

.chaos-bar-b {
  width: 28%;
  top: 72%;
  left: 48%;
  background: linear-gradient(90deg, #a33, #c88);
  transform: rotate(4deg);
}

.noise-scene-calm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  border-radius: inherit;
  border: 1px solid rgba(47, 122, 56, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4)),
    linear-gradient(145deg, #e8f4ec, #dceee4);
}

.calm-board {
  display: grid;
  gap: 0.4rem;
}

.calm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 122, 56, 0.12);
  font-size: 0.82rem;
}

.calm-row span {
  color: var(--ink-soft);
}

.calm-row strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.calm-row strong::before {
  content: "✓ ";
  color: var(--accent);
}

.calm-meter {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(47, 122, 56, 0.12);
  overflow: hidden;
}

.calm-meter-fill {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #7eb8d4);
}

.calm-caption {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-deep);
}

/* —— Noise stage desktop —— */
@media (min-width: 800px) {
  .noise-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    min-height: 17rem;
    padding: 1.5rem 1.6rem;
  }

  .noise-scene,
  .noise-scene-chaos,
  .noise-scene-calm {
    min-height: 100%;
    height: 100%;
  }
}

/* —— Portal sales page —— */
.portal-sales-page .site-header:not(.is-scrolled) {
  color: var(--hero-text);
}
.portal-sales-hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: grid;
  align-content: center;
  align-items: center;
  gap: 1rem;
  padding: 5.25rem 1.25rem 1rem;
  color: var(--hero-text);
  overflow: hidden;
  background: #0b140f;
  box-sizing: border-box;
}
@supports (height: 100svh) {
  .portal-sales-hero {
    height: 100svh;
    max-height: 100svh;
  }
}
.portal-sales-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.portal-sales-hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 78% 18%, rgba(126, 184, 212, 0.22), transparent 58%),
    radial-gradient(ellipse 50% 42% at 12% 62%, rgba(47, 122, 56, 0.34), transparent 55%),
    linear-gradient(165deg, #08110e 0%, #122218 45%, #0c1824 100%);
}
.portal-sales-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(244, 250, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 250, 246, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.portal-sales-hero-glow {
  position: absolute;
  width: min(34rem, 70vw);
  height: min(34rem, 70vw);
  right: -8%;
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 214, 58, 0.16), transparent 68%);
  filter: blur(8px);
  animation: portal-sales-glow 8s ease-in-out infinite alternate;
}
@keyframes portal-sales-glow {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to { transform: translate(-4%, -3%) scale(1.08); opacity: 1; }
}
.portal-sales-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  text-align: left;
  justify-self: start;
}
.portal-sales-hero-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ps-dash-caption {
  margin: 0.35rem 0 0;
  text-align: left;
  font-size: 0.72rem;
  color: rgba(244, 250, 246, 0.42);
}
.ps-dash-mock {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: min(100%, calc(100vh - 7.5rem));
}
@supports (height: 100svh) {
  .ps-dash-mock {
    max-height: min(100%, calc(100svh - 7.5rem));
  }
}
.ps-dash {
  padding: 0.55rem 0.6rem 0.65rem;
  overflow: hidden;
  color: #e7efe9;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(47, 122, 56, 0.18), transparent 55%),
    linear-gradient(180deg, #0e1712 0%, #0b1210 100%);
}
.ps-dash-welcome {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.45rem;
}
.ps-dash-greet {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(244, 250, 246, 0.55);
}
.ps-dash-company {
  margin: 0.08rem 0 0.12rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f4faf6;
}
.ps-dash-story {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(244, 250, 246, 0.62);
}
.ps-dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: flex-start;
}
.ps-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.65rem;
  border-radius: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--accent);
  color: #f4faf6;
  border: 1px solid transparent;
}
.ps-btn.is-ghost {
  background: transparent;
  border-color: rgba(244, 250, 246, 0.22);
  color: rgba(244, 250, 246, 0.85);
}
.ps-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem;
  margin-bottom: 0.45rem;
}
.ps-dash-stat {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  padding: 0.3rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 250, 246, 0.07);
  min-width: 0;
}
.ps-dash-stat strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #f4faf6;
  line-height: 1.1;
}
.ps-dash-stat strong small {
  font-size: 0.7em;
  font-weight: 600;
  color: rgba(244, 250, 246, 0.55);
}
.ps-dash-stat span {
  font-size: 0.6rem;
  color: rgba(244, 250, 246, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ps-dash-stat.is-alert {
  border-color: rgba(224, 122, 95, 0.35);
  background: rgba(224, 122, 95, 0.1);
}
.ps-dash-stat.is-alert strong {
  color: #f0b0a0;
}
.ps-dash-pulse {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.ps-dash-panel {
  padding: 0.4rem 0.45rem 0.45rem;
  border-radius: 0.4rem;
  background: rgba(8, 14, 12, 0.55);
  border: 1px solid rgba(244, 250, 246, 0.08);
  min-width: 0;
}
.ps-dash-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
}
.ps-dash-panel-head span {
  color: rgba(244, 250, 246, 0.45);
  font-size: 0.62rem;
}
.ps-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.12rem;
  height: 2.15rem;
  margin-bottom: 0;
}
.ps-dash-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 0.15rem 0.15rem 0.05rem 0.05rem;
  background: linear-gradient(180deg, var(--lime), var(--accent));
  opacity: 0.85;
}
.ps-dash-people {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ps-dash-people li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.3rem;
  align-items: center;
  font-size: 0.65rem;
  padding: 0.15rem 0;
  border-bottom: 1px solid rgba(244, 250, 246, 0.06);
}
.ps-dash-people li:last-child {
  border-bottom: 0;
}
.ps-dash-people strong {
  font-weight: 600;
  color: #f4faf6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ps-dash-people span {
  font-size: 0.58rem;
  padding: 0.08rem 0.3rem;
  border-radius: 999px;
  background: rgba(47, 122, 56, 0.28);
  color: #c8f0a0;
}
.ps-dash-people em {
  font-style: normal;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(244, 250, 246, 0.7);
  min-width: 1rem;
  text-align: right;
}
.ps-dash-msgs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ps-dash-msgs li {
  min-width: 0;
}
.ps-dash-msgs a {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #d7f0b8;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ps-dash-msgs span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.62rem;
  color: rgba(244, 250, 246, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ps-dash-msgs b {
  font-weight: 600;
  color: rgba(244, 250, 246, 0.78);
}
.ps-dash-msgs b.is-staff {
  color: var(--lime);
}
.ps-dash-tickets {
  margin-top: 0;
}
.ps-dash-ticket-actions {
  display: inline-flex;
  gap: 0.3rem;
}
.ps-dash-ticket-actions i {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(244, 250, 246, 0.18);
  color: rgba(244, 250, 246, 0.75);
}
.ps-dash-ticket-actions i.is-primary {
  background: var(--accent);
  border-color: transparent;
  color: #f4faf6;
}
.ps-dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.65rem;
}
.ps-dash-table th,
.ps-dash-table td {
  text-align: left;
  padding: 0.25rem 0.2rem;
  border-bottom: 1px solid rgba(244, 250, 246, 0.08);
  white-space: nowrap;
}
.ps-dash-table th {
  color: rgba(244, 250, 246, 0.45);
  font-weight: 600;
}
.ps-dash-table td:nth-child(2) {
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ps-dash-table td:first-child {
  color: var(--lime);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.portal-sales-brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f4faf6;
  text-shadow: 0 0 40px rgba(143, 214, 58, 0.25);
}
.portal-sales-hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.25;
  color: rgba(244, 250, 246, 0.92);
}
.portal-sales-lede {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(244, 250, 246, 0.72);
  max-width: 28rem;
}
.portal-sales-ghost {
  color: #f4faf6 !important;
  border-color: rgba(244, 250, 246, 0.35) !important;
}
.portal-sales-ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}
.ps-mock {
  border-radius: 1rem;
  border: 1px solid rgba(244, 250, 246, 0.12);
  background: linear-gradient(160deg, #101a14 0%, #0c1418 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  color: #e8f0eb;
}
.ps-mock-hero {
  animation: portal-sales-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes portal-sales-rise {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ps-dash-mock .ps-mock-chrome {
  padding: 0.4rem 0.65rem;
}
.ps-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(244, 250, 246, 0.22);
}
.ps-dot:nth-child(1) { background: #e07a5f; }
.ps-dot:nth-child(2) { background: #e9c46a; }
.ps-dot:nth-child(3) { background: #2f7a38; }
.ps-mock-url {
  margin-left: 0.5rem;
  font-size: 0.78rem;
  color: rgba(244, 250, 246, 0.45);
  font-family: var(--font-display);
}
.ps-mock-body {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  min-height: 17rem;
}
.ps-mock-rail {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 0.55rem;
  border-right: 1px solid rgba(244, 250, 246, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.ps-pill {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(244, 250, 246, 0.12);
}
.ps-pill.is-on {
  background: linear-gradient(90deg, var(--accent), var(--lime));
  box-shadow: 0 0 12px rgba(143, 214, 58, 0.35);
}
.ps-mock-main {
  padding: 0.9rem 1rem 1.1rem;
}
.ps-mock-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.ps-line {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(244, 250, 246, 0.18);
}
.ps-line-lg { width: min(11rem, 45%); height: 0.7rem; }
.ps-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(47, 122, 56, 0.35);
  color: #c8f0a0;
}
.ps-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.ps-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 250, 246, 0.06);
  font-size: 0.68rem;
  color: rgba(244, 250, 246, 0.55);
}
.ps-stat strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #f4faf6;
}
.ps-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.ps-ticket {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.45rem 0.55rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}
.ps-ticket.is-live {
  border-color: rgba(143, 214, 58, 0.28);
  background: rgba(47, 122, 56, 0.16);
  animation: portal-sales-pulse 2.8s ease-in-out infinite;
}
@keyframes portal-sales-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(143, 214, 58, 0); }
  50% { box-shadow: 0 0 0 4px rgba(143, 214, 58, 0.12); }
}
.ps-ticket-id {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lime);
}
.ps-ticket-sub {
  font-size: 0.78rem;
  color: rgba(244, 250, 246, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ps-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(126, 184, 212, 0.22);
  color: #b8dff0;
  white-space: nowrap;
}
.ps-badge.is-wait {
  background: rgba(233, 196, 106, 0.22);
  color: #f0d78a;
}
.ps-badge.is-ok {
  background: rgba(47, 122, 56, 0.35);
  color: #b7e08a;
}
.ps-chat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ps-bubble {
  max-width: 88%;
  padding: 0.45rem 0.65rem;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.35;
}
.ps-bubble-staff {
  align-self: flex-start;
  background: rgba(47, 122, 56, 0.28);
  border: 1px solid rgba(143, 214, 58, 0.18);
}
.ps-bubble-you {
  align-self: flex-end;
  background: rgba(126, 184, 212, 0.18);
  border: 1px solid rgba(126, 184, 212, 0.22);
}
.ps-bubble.is-typing {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.55rem 0.7rem;
}
.ps-bubble.is-typing span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(244, 250, 246, 0.55);
  animation: portal-sales-dot 1.2s ease-in-out infinite;
}
.ps-bubble.is-typing span:nth-child(2) { animation-delay: 0.15s; }
.ps-bubble.is-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes portal-sales-dot {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

.portal-sales-split .section-inner {
  max-width: var(--max);
}
.portal-sales-split-inner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.portal-sales-copy h2 {
  margin: 0.35rem 0 0.65rem;
}
.portal-sales-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}
.ps-mock-panel {
  color: #e8f0eb;
}
.ps-conv,
.ps-asset-grid,
.ps-bill {
  padding: 1rem;
}
.ps-conv-meta {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.85rem;
}
.ps-muted {
  font-size: 0.8rem;
  color: rgba(244, 250, 246, 0.5);
}
.ps-time-chip {
  margin-top: 0.75rem;
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(143, 214, 58, 0.12);
  color: #c8f0a0;
  border: 1px solid rgba(143, 214, 58, 0.22);
}
.ps-asset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.ps-asset {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 250, 246, 0.07);
}
.ps-asset-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
}
.ps-asset-meta {
  font-size: 0.72rem;
  color: rgba(244, 250, 246, 0.5);
}
.ps-risk {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  width: fit-content;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}
.ps-risk.is-high { background: rgba(224, 122, 95, 0.25); color: #f0b0a0; }
.ps-risk.is-mid { background: rgba(233, 196, 106, 0.22); color: #f0d78a; }
.ps-risk.is-ok { background: rgba(47, 122, 56, 0.35); color: #b7e08a; }
.ps-asset-chart { grid-column: 1 / -1; }
.ps-chart-label {
  font-size: 0.75rem;
  color: rgba(244, 250, 246, 0.55);
  margin-bottom: 0.45rem;
}
.ps-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 3.5rem;
}
.ps-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 0.3rem 0.3rem 0.1rem 0.1rem;
  background: linear-gradient(180deg, var(--lime), var(--accent));
  opacity: 0.85;
}
.ps-bill-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: rgba(244, 250, 246, 0.65);
}
.ps-bill-row strong {
  font-family: var(--font-display);
  color: #f4faf6;
  font-size: 1.05rem;
}
.ps-bill-meter {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0.35rem 0 1rem;
}
.ps-bill-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--ice));
  border-radius: inherit;
}
.ps-invoice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(244, 250, 246, 0.08);
  font-size: 0.88rem;
}

.portal-sales-mosaic-lede {
  max-width: 36rem;
  margin-bottom: 1.5rem;
}
.portal-sales-mosaic-grid {
  display: grid;
  gap: 1rem;
}
.ps-mock-tile {
  padding: 1.25rem 1.2rem 1.35rem;
  color: #e8f0eb;
}
.ps-mock-tile h3 {
  margin: 0.65rem 0 0.35rem;
  font-size: 1.15rem;
  color: #f4faf6;
}
.ps-mock-tile p {
  margin: 0 0 1rem;
  color: rgba(244, 250, 246, 0.62);
  font-size: 0.95rem;
}
.ps-tile-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background:
    linear-gradient(135deg, rgba(47, 122, 56, 0.55), rgba(126, 184, 212, 0.25));
  border: 1px solid rgba(143, 214, 58, 0.25);
  position: relative;
}
.ps-tile-icon::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 0.25rem;
  border: 2px solid rgba(244, 250, 246, 0.75);
}
.ps-tile-icon[data-icon="continuity"]::after {
  border-radius: 50%;
  border-top-color: transparent;
}
.ps-tile-icon[data-icon="users"]::after {
  border-radius: 50%;
  width: 0.7rem;
  height: 0.7rem;
  inset: auto;
  left: 50%;
  top: 0.45rem;
  transform: translateX(-50%);
  box-shadow: 0 0.85rem 0 -0.12rem rgba(244, 250, 246, 0.75);
}
.ps-doc-rows {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ps-doc-rows span {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(244, 250, 246, 0.12);
}
.ps-doc-rows span:nth-child(1) { width: 88%; }
.ps-doc-rows span:nth-child(2) { width: 72%; }
.ps-doc-rows span:nth-child(3) { width: 64%; }
.ps-cont-ring {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #c8f0a0;
  background:
    radial-gradient(circle at center, #101a14 58%, transparent 59%),
    conic-gradient(var(--lime) 0 75%, rgba(244, 250, 246, 0.12) 0);
}
.ps-avatars {
  display: flex;
  gap: 0.35rem;
}
.ps-avatars i {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--ice));
  border: 2px solid #101a14;
}
.ps-avatars i:nth-child(2) { background: linear-gradient(135deg, #7eb8d4, #2f7a38); }
.ps-avatars i:nth-child(3) { background: linear-gradient(135deg, #8fd63a, #1e5226); }

.portal-sales-demo-band {
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(47, 122, 56, 0.12), transparent 55%),
    var(--paper);
}
.portal-sales-demo-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.ps-mock-mini {
  padding: 1.25rem 1.35rem;
  color: #e8f0eb;
}
.ps-mini-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}
.ps-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(244, 250, 246, 0.6);
}
.ps-mini-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #f4faf6;
}

.ps-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ps-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .ps-mock-hero,
  .portal-sales-hero-glow,
  .ps-ticket.is-live,
  .ps-bubble.is-typing span {
    animation: none;
  }
  .ps-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 960px) {
  .portal-sales-hero {
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.55fr);
    grid-template-rows: 1fr;
    gap: 1.75rem clamp(1.25rem, 3vw, 2.75rem);
    padding: 5.5rem clamp(1.25rem, 4vw, 2.75rem) 1.15rem;
    align-items: center;
    width: 100%;
  }
  .portal-sales-hero-bg {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .portal-sales-hero-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 28rem;
  }
  .portal-sales-hero-stage {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
  }
}

@media (min-width: 800px) {
  .portal-sales-split-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem;
  }
  .portal-sales-split-flip .portal-sales-split-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
  .portal-sales-split-flip .portal-sales-copy {
    order: 2;
  }
  .portal-sales-mosaic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .portal-sales-demo-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
  }
}
@media (max-width: 959px) {
  .portal-sales-hero {
    height: auto;
    max-height: none;
    align-content: start;
    padding-top: 5.75rem;
    padding-bottom: 1.5rem;
    overflow: visible;
  }
  .ps-dash-mock {
    max-height: none;
  }
}
@media (max-width: 799px) {
  .ps-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ps-mock-body {
    grid-template-columns: 1fr;
  }
  .ps-mock-rail {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 250, 246, 0.08);
  }
  .ps-pill {
    width: 1.75rem;
  }
  .ps-dash-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ps-dash-pulse {
    grid-template-columns: 1fr;
  }
}
