:root {
  --bg: #f4f4f3;
  --bg-soft: #ececeb;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: rgba(255, 255, 255, 0.95);
  --text: #16181c;
  --text-soft: #626973;
  --accent: #ff4d57;
  --line: rgba(22, 24, 28, 0.08);
  --shadow: 0 18px 34px rgba(22, 24, 28, 0.1), 0 42px 90px rgba(22, 24, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 3px solid rgba(255, 77, 87, 0.5);
  outline-offset: 3px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 77, 87, 0.12), transparent 24%),
    linear-gradient(135deg, #fcfcfb 0%, #f0f1f3 45%, #e9eaec 100%),
    var(--bg);
}

body.image-zoom-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  margin: 0;
  padding: 0.45rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  border: 1px solid var(--line);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(10rem, 15vw, 17rem);
  height: auto;
}

.menu-toggle {
  display: none;
  border: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}

.theme-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.theme-toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.theme-toggle-icon::after {
  position: absolute;
  top: -0.18rem;
  left: 0.32rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--panel-strong);
  content: "";
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0;
  margin-right: 1.5rem;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
}

.dropdown-trigger::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.08rem) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 18rem;
  padding: 0.55rem;
  display: grid;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 1rem;
  font-size: 0.98rem;
  line-height: 1.35;
  white-space: normal;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: var(--text-soft);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
  font-size: 1.25rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}

.site-nav .button--primary,
.site-nav .button--primary:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, #0f172a, #22345d);
  color: white;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--text);
}

.page-shell {
  width: min(80%, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(46rem, calc(100vh - 11rem));
  padding: 2.25rem;
  display: grid;
  align-items: start;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 2.5rem;
  background: #111722;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.2)),
    linear-gradient(90deg, rgba(248, 250, 252, 0.18), rgba(248, 250, 252, 0.04));
  pointer-events: none;
}

.hero .services-hero-video {
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  width: min(100%, 68rem);
  min-height: 31.6rem;
  max-height: none;
  padding: 1.75rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero h1,
.hero .lead {
  color: white;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(3.1rem, 7vw, 6rem);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  font-size: 2.85rem;
}

.section-intro h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6.5vw, 5.35rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.35rem);
}

.lead,
.section-copy,
.service-card p,
.benefit-row p,
.process-card p,
.testimonial-card p,
.feature-copy p,
.story-card p,
.team-card p,
.contact-card p,
.footer-block p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1rem;
}

.hero .lead {
  max-width: 30rem;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 1rem 0 0;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0;
  justify-content: flex-end;
}

.section {
  padding: 2rem 0;
}

.section-soft {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border-radius: 2.5rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.7));
}

.section-soft .section-intro {
  max-width: min(100%, 68rem);
  margin-bottom: 1.25rem;
  padding: 0;
}

.section-soft .section-copy {
  max-width: 58rem;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: min(32rem, 65vh);
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(90deg, rgba(8, 12, 20, 0.54), rgba(8, 12, 20, 0.28) 58%, rgba(8, 12, 20, 0.12)),
    url("./assets/hero-background-optimized.png") center 65% / cover no-repeat;
}

.about-hero .section-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  max-width: min(100%, 68rem);
  padding: 1.75rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(2px);
  box-shadow: var(--shadow);
}

.about-hero .section-intro .eyebrow,
.about-hero .section-intro h1,
.about-hero .section-intro .section-copy {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.about-hero .section-intro h1 {
  max-width: 18ch;
  font-size: clamp(2.55rem, 5.8vw, 4.85rem);
  line-height: 1.06;
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.legal-hero .section-intro {
  max-width: 62rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.legal-card {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.legal-card h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1.05rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
  line-height: 1.7;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  padding-left: 1.25rem;
}

.legal-card a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.stats,
.grid-3,
.testimonial-grid,
.contact-layout,
.about-grid {
  display: grid;
  padding-top: 1.25rem;
  gap: 1.25rem;
}

.stats {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  margin: 0 0 4rem;
}

.card,
.stat-card,
.service-card,
.process-card,
.testimonial-card,
.feature-panel,
.story-card,
.contact-card,
.cta-banner {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card,
.service-card,
.process-card,
.testimonial-card,
.story-card,
.contact-card {
  padding: 1.5rem;
  border-radius: 1.8rem;
  background: var(--panel);
  background-clip: padding-box;
  backdrop-filter: blur(16px);
}

.service-link-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-link-card p {
  align-self: start;
}

.service-link-card:hover {
  border-color: rgba(255, 77, 87, 0.28);
  box-shadow: 0 28px 80px rgba(22, 24, 28, 0.12);
  transform: translateY(-2px);
}

.service-link-card span,
.text-link {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link {
  width: fit-content;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.benefit-stack,
.feature-layout {
  display: grid;
  gap: 1rem;
}

.section-soft .benefit-stack,
.section-soft .device-points,
.section-soft .grid-3,
.section-soft .testimonial-grid {
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.section-soft .benefit-row,
.section-soft .device-point,
.section-soft .service-card,
.section-soft .testimonial-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-soft .benefit-row:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.section-soft .device-point:not(:last-child),
.section-soft .service-card:not(:last-child),
.section-soft .testimonial-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.feature-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-hero {
  --services-hero-image-position: center bottom;
  position: relative;
  overflow: hidden;
  min-height: 26rem;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.24), rgba(248, 250, 252, 0.1) 58%, rgba(248, 250, 252, 0.03)),
    url("./assets/circuit-board.png") var(--services-hero-image-position) / cover no-repeat;
}

.services-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.2), rgba(248, 250, 252, 0.08) 52%, rgba(248, 250, 252, 0.02)),
    linear-gradient(180deg, rgba(248, 250, 252, 0.12), rgba(241, 245, 249, 0.02));
  pointer-events: none;
  z-index: -1;
}

.services-hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.services-hero .section-intro {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 0;
  padding: 1.75rem 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.services-hero .section-intro .eyebrow,
.services-hero .section-intro h1,
.services-hero .section-intro .section-copy {
  position: relative;
  z-index: 1;
  color: #fff;
}

.services-hero .section-copy {
  color: #fff;
}

.benefit-row,
.feature-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.68);
}

.feature-panel {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  align-items: stretch;
  overflow: hidden;
  min-width: 0;
  background: rgba(255, 255, 255, 0.88);
}

.feature-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 13rem;
  aspect-ratio: 16 / 10;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, #edf2f7, #dbe3ee);
}

.feature-copy {
  display: grid;
  gap: 0.75rem;
  padding: 0.35rem 0;
}

.feature-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.feature-copy p {
  margin: 0;
}

.feature-media span {
  color: rgba(15, 23, 42, 0.28);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.feature-media.flip {
  min-height: 0;
  perspective: 1200px;
  background: transparent;
}

.flip-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  transform-style: preserve-3d;
  transition: transform 500ms ease;
}

.feature-media.flip:hover .flip-card {
  transform: rotateX(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  backface-visibility: hidden;
}

.flip-face.front {
  overflow: hidden;
  background: linear-gradient(180deg, #edf2f7, #dbe3ee);
}

.flip-face.front img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.flip-face.back {
  background: linear-gradient(135deg, #0f172a, #22345d);
  color: white;
  transform: rotateX(180deg);
}

.flip-face.back strong {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flip-link {
  color: inherit;
  text-decoration: none;
}

.process-grid,
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr));
}

.testimonial-card {
  display: grid;
  grid-template-rows: 1fr auto;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.testimonial-card strong {
  display: block;
  margin-top: 1.25rem;
  text-align: center;
}

.testimonial-logo {
  width: 100%;
  min-height: 3.75rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-logo svg,
.testimonial-logo img {
  display: block;
  width: auto;
  max-width: min(100%, 8rem);
  height: 3.25rem;
  object-fit: contain;
}

.testimonial-logo img[src*="proviso"] {
  height: 4rem;
}

.testimonial-logo img[src*="east-prairie"] {
  max-width: min(100%, 9rem);
}

.testimonial-logo--learn {
  --learn-logo-x: -40px;
  --learn-logo-y: 0px;
  --learn-logo-scale: 1;
}

.testimonial-logo--learn svg {
  transform: translate(var(--learn-logo-x), var(--learn-logo-y)) scale(var(--learn-logo-scale));
  transform-origin: center;
}

.testimonial-logo + strong {
  margin-top: 0.65rem;
}

.section-soft .testimonial-grid {
  gap: 1.5rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.section-soft .testimonial-card {
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 1.5rem;
  background: var(--panel);
  box-shadow:
    0 12px 22px rgba(15, 23, 42, 0.16),
    0 28px 55px rgba(15, 23, 42, 0.2);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.section-soft .testimonial-card:hover {
  z-index: 1;
  border-color: rgba(255, 55, 68, 0.72);
  box-shadow:
    0 18px 30px rgba(15, 23, 42, 0.2),
    0 38px 72px rgba(15, 23, 42, 0.3);
  transform: translateY(-8px) scale(1.015);
}

.section-soft .testimonial-card:not(:last-child) {
  border-right: 1px solid rgba(15, 23, 42, 0.14);
}

.cta-banner {
  margin-top: 2rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 238, 247, 0.9));
}

.cta-banner.prepaid-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-color: var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 70, 84, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #edf2f8 72%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.prepaid-cta-copy {
  max-width: 54rem;
}

.prepaid-cta .eyebrow {
  color: #ff6977;
}

.prepaid-cta h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1;
}

.prepaid-cta-copy > p:last-child {
  max-width: 48rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.prepaid-cta .hero-actions {
  display: grid;
  align-self: center;
  justify-items: stretch;
  min-width: 14rem;
  margin: 0;
}

.prepaid-cta .button {
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
}

.prepaid-cta .button--primary {
  background: linear-gradient(135deg, #0f172a, #22345d);
  color: #ffffff;
}

.prepaid-cta .button--secondary {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.k12-hero {
  --k12-hero-bg-y: 68%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  align-items: stretch;
  gap: 1rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.7), rgba(5, 7, 12, 0.54) 48%, rgba(5, 7, 12, 0.28)),
    url("./assets/k12-hero-background.jpg") center var(--k12-hero-bg-y) / cover no-repeat;
}

.k12-hero .section-intro {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: min(100%, 68rem);
  margin-bottom: 0;
  padding: 1.75rem 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.k12-hero .section-intro .eyebrow,
.k12-hero .section-intro h1,
.k12-hero .section-intro .section-copy {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.k12-hero .hero-actions,
.k12-program-copy .hero-actions {
  margin-top: 1.25rem;
}

.k12-hero-card,
.k12-program-card {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
}

.k12-hero-card ul,
.k12-program-card ul,
.k12-program-card ol {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.k12-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(1.35rem, 2.5vw, 1.8rem);
  border-color: rgba(255, 255, 255, 0.7);
  border-radius: 1.75rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  box-shadow:
    0 24px 60px rgba(7, 12, 22, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
}

.k12-hero-card .eyebrow {
  margin-bottom: 0.65rem;
}

.k12-hero-card > p:not(.eyebrow) {
  margin: 0 0 1.1rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.k12-hero-card ul {
  gap: 0.5rem;
  padding-left: 0;
  list-style: none;
}

.k12-hero-card li {
  position: relative;
  padding: 0.62rem 0.72rem 0.62rem 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.56);
  color: var(--text-soft);
  font-size: 0.87rem;
  line-height: 1.35;
}

.k12-hero-card li::before {
  position: absolute;
  top: 0.95rem;
  left: 0.78rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.22rem rgba(255, 75, 92, 0.12);
  content: "";
}

.prepaid-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
}

.prepaid-hero .k12-hero-card {
  align-self: center;
  justify-self: center;
  width: min(100%, 34rem);
  padding: 1.9rem;
}

.k12-guide-grid,
.k12-issue-grid,
.k12-program-grid,
.k12-lifecycle {
  display: grid;
  gap: 1rem;
}

.k12-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.k12-program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.k12-program-grid .k12-program-card {
  height: 100%;
}

.k12-lifecycle {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.k12-issue-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.k12-card-number {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.k12-program-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 1.5rem;
}

.k12-program-copy {
  position: sticky;
  top: 7rem;
}

.k12-program-card h3 {
  margin-bottom: 0.85rem;
}

.k12-flyer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.65fr);
  align-items: center;
  gap: 1.25rem;
}

.k12-flyer-section .section-intro {
  margin-bottom: 0;
}

.k12-flyer-tools {
  display: grid;
  justify-items: center;
  justify-self: end;
  gap: 0.85rem;
  width: min(100%, 34rem);
}

.k12-flyer {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
  justify-self: end;
  cursor: zoom-in;
}

.k12-flyer img {
  display: block;
  width: 100%;
  max-height: 20rem;
  height: auto;
  object-fit: contain;
}

.k12-flyer span {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.image-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(5, 7, 12, 0.82);
  backdrop-filter: blur(10px);
}

.image-zoom-modal.is-open {
  display: flex;
}

.image-zoom-modal img {
  display: block;
  width: min(100%, 76rem);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.image-zoom-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.image-zoom-close:hover {
  background: rgba(255, 55, 68, 0.88);
}

.k12-checklist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.k12-readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
}

.k12-readiness-card {
  padding-right: clamp(1.25rem, 3vw, 2.25rem);
}

.k12-readiness-card + .k12-readiness-card {
  padding-right: 0;
  padding-left: clamp(1.25rem, 3vw, 2.25rem);
  border-left: 1px solid var(--line);
}

.k12-readiness-card .eyebrow {
  margin-bottom: 1.1rem;
}

.k12-readiness-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.k12-readiness-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  font-weight: 650;
  line-height: 1.45;
}

.k12-readiness-list li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.k12-checklist span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--panel);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.k12-faq {
  display: grid;
  gap: 0.75rem;
}

.k12-faq.compact {
  align-self: stretch;
}

.k12-faq.compact details {
  height: 100%;
}

.k12-faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.k12-faq summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  color: var(--text);
  font-weight: 800;
}

.k12-faq p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--text-soft);
}

.about-grid,
.contact-layout {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.about-service-support .section-intro {
  margin-bottom: 1.25rem;
}

.about-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-support-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.85rem;
  overflow: hidden;
  padding: 1.4rem 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-support-card img {
  display: block;
  width: min(100%, 9.25rem);
  height: auto;
}

.about-support-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.about-support-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.25rem;
}

.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.team-photo {
  overflow: hidden;
  min-height: 18rem;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(34, 52, 93, 0.12));
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card-copy {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
}

.team-card-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.02;
}

.team-card-copy p {
  margin: 0;
}

.story-card.soft,
.contact-card.accent {
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.95), rgba(232, 238, 247, 0.88));
}

.detail-hero,
.detail-grid,
.device-points {
  display: grid;
  gap: 1.25rem;
}

.detail-hero,
.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 23rem), 1fr));
  min-width: 0;
}

.device-points {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.detail-card,
.device-point {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.printer-detail-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.3rem 1.5rem;
  width: min(100%, 1008px);
  height: 630px;
}

.printer-detail-card .eyebrow {
  margin-bottom: 0.35rem;
}

.printer-detail-card h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.25rem, 1.75vw, 1.55rem);
}

.printer-detail-card > p:not(.eyebrow) {
  font-size: 0.95rem;
  line-height: 1.42;
}

.printer-detail-card .printer-service-icon-grid {
  flex: 1;
  align-content: center;
  column-gap: 1rem;
  row-gap: 0.9rem;
  margin-top: 0.9rem;
}

.printer-detail-card .printer-service-icon {
  align-content: center;
  gap: 0.36rem;
}

.printer-detail-card .printer-service-icon svg {
  width: min(100%, 100px);
  max-height: 100px;
}

.printer-detail-card .printer-service-icon span {
  font-size: 0.69rem;
  line-height: 1.12;
}

.detail-card h3,
.device-point h3 {
  margin-bottom: 0.85rem;
  line-height: 1.1;
}

.detail-card p,
.device-point p {
  margin: 0;
}

.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 6rem;
  margin-top: 1.35rem;
}

.service-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto;
  text-align: center;
}

.service-icon-wrap svg {
  width: min(100%, 128px);
  height: auto;
  aspect-ratio: 1;
  overflow: visible;
}

.service-icon-wrap span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.computer-service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.phone-service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.printer-service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 2.25rem;
  margin-top: 1.5rem;
}

.printer-service-icon {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-align: center;
}

.printer-service-icon svg {
  width: min(100%, 128px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  overflow: visible;
}

.printer-inline-svg path {
  stroke: currentColor;
  stroke-width: 1.8px;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke fill;
  vector-effect: non-scaling-stroke;
}

.printer-inline-svg--filament path:not(:first-child) {
  display: none;
}

.printer-service-icon span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.desktop-service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 6rem;
  margin-top: 1.35rem;
}

.desktop-service-icon {
  --desktop-symbol-x: 0px;
  --desktop-symbol-y: 0px;
  --desktop-symbol-scale: 1;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-width: 0;
  text-align: center;
}

.desktop-service-icon svg {
  width: min(100%, 8rem);
  height: auto;
  color: #111827;
  overflow: visible;
}

.desktop-service-icon:nth-child(1) {
  --desktop-symbol-x: 0px;
  --desktop-symbol-y: -6px;
  --desktop-symbol-scale: .6;
}

.desktop-service-icon:nth-child(2) {
  --desktop-symbol-x: 0px;
  --desktop-symbol-y: -2px;
  --desktop-symbol-scale: 1;
}

.desktop-service-icon:nth-child(3) {
  --desktop-symbol-x: 0px;
  --desktop-symbol-y: 0px;
  --desktop-symbol-scale: 1;
}

.desktop-service-icon:nth-child(4) {
  --desktop-symbol-x: 0px;
  --desktop-symbol-y: 0px;
  --desktop-symbol-scale: 1;
}

.desktop-service-icon:nth-child(5) {
  --desktop-symbol-x: 0px;
  --desktop-symbol-y: -3px;
  --desktop-symbol-scale: 1;
}

.desktop-issue-position {
  transform: translate(var(--desktop-symbol-x), var(--desktop-symbol-y)) scale(var(--desktop-symbol-scale));
  transform-origin: 42px 37px;
}

.desktop-service-icon span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.console-service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
  align-items: start;
}

.console-service-icon {
  /* Adjust the whole issue symbol independently for each grid item below. */
  --console-icon-scale: 1;
  --console-symbol-x: 515px;
  --console-symbol-y: 120px;
  --console-symbol-scale: 8.5;
  display: grid;
  grid-template-rows: 9.5rem 2.5rem;
  justify-items: center;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.console-service-icon--power {
  /* Move and resize the complete No Power console and symbol together. */
  --console-no-power-whole-x: 0px;
  --console-no-power-whole-y: 76px;
  --console-no-power-whole-scale: 1.02;
  /* Original No Power symbol controls. */
  --console-icon-scale: 1.115;
  --console-original-symbol-x: 7500px;
  --console-original-symbol-y: 5575px;
  --console-original-symbol-scale: 3.5;
  --console-original-pulse-scale: 1.06;
  --console-original-power-x: 0px;
  --console-original-power-y: 0px;
  --console-original-power-scale: 23;
  --console-original-power-stroke: 2.7;
  --console-original-slash-x: 0px;
  --console-original-slash-y: 45px;
  --console-original-slash-scale: 25;
  --console-original-slash-rotate: 0deg;
  --console-original-slash-stroke: 2.5;
}

.console-no-power-whole {
  transform:
    translate(var(--console-no-power-whole-x), var(--console-no-power-whole-y))
    scale(var(--console-no-power-whole-scale));
  transform-box: view-box;
  transform-origin: center;
}

.console-service-icon--heat {
  --console-icon-scale: 1;
  --console-symbol-x: 515px;
  --console-symbol-y: 425px;
  --console-symbol-scale: 8.5;
  /* Move or resize only the middle heat-wave line. */
  --console-heat-wave-x: 0px;
  --console-heat-wave-y: 0px;
  --console-heat-wave-scale: 1;
}

.console-service-icon--hdmi {
  /* Move and resize only the HDMI port and its warning mark. */
  --console-hdmi-x: 0px;
  --console-hdmi-y: 0px;
  --console-hdmi-scale: 1;
}

.console-service-icon--disc {
  /* Move and resize only the disc and its warning mark. */
  --console-disc-x: 0px;
  --console-disc-y: 0px;
  --console-disc-scale: 1;
}

.console-service-icon--firmware {
  /* Move and resize only the firmware gear. */
  --console-firmware-x: 40px;
  --console-firmware-y: 50px;
  --console-firmware-scale: .7;
}

.console-service-icon--liquid {
  /* Move and resize only the liquid drop. */
  --console-liquid-x: -30px;
  --console-liquid-y: 50px;
  --console-liquid-scale: .7;
}

.console-heat-symbol {
  transform:
    translate(var(--console-symbol-x), var(--console-symbol-y))
    scale(var(--console-symbol-scale));
}

.hdmi-port-mark {
  transform:
    translate(var(--console-hdmi-x), var(--console-hdmi-y))
    scale(var(--console-hdmi-scale));
}

.disc-mark {
  transform:
    translate(var(--console-disc-x), var(--console-disc-y))
    scale(var(--console-disc-scale));
}

.firmware-mark {
  transform:
    translate(var(--console-firmware-x), var(--console-firmware-y))
    scale(var(--console-firmware-scale));
  filter: drop-shadow(24px 24px 12px rgba(17, 24, 39, 0.38));
}

.liquid-mark {
  transform:
    translate(var(--console-liquid-x), var(--console-liquid-y))
    scale(var(--console-liquid-scale));
}

.console-heat-symbol,
.hdmi-port-mark,
.disc-mark,
.firmware-mark,
.liquid-mark {
  transform-box: view-box;
  transform-origin: center;
}

.console-heat-symbol {
  transform-origin: 0 0;
}

.console-symbol-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.console-service-icon--set {
  --console-icon-scale: 1;
}

.console-service-icon svg {
  display: block;
  width: 8rem;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  color: #111827;
  overflow: visible;
  transform: scale(var(--console-icon-scale));
  transform-origin: center;
}

.console-body {
  stroke: currentColor;
  stroke-width: 55;
  stroke-linejoin: round;
  paint-order: stroke fill;
}

.console-icon-stroke,
.console-icon-stroke-thin {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.console-icon-stroke {
  stroke-width: 30;
}

.console-icon-stroke-thin {
  stroke-width: 30;
}

.console-hdmi-stroke,
.console-hdmi-stroke-thin {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.console-hdmi-stroke {
  stroke-width: 25;
}

.console-hdmi-stroke-thin {
  stroke-width: 22;
}

.console-set-icon .black-stroke {
  stroke: currentColor;
}

.console-set-icon .red-stroke {
  stroke: #ff2a1f;
}

.console-warning-mark {
  transform-box: fill-box;
  transform-origin: center;
  animation: console-warning-pulse 1.8s ease-in-out infinite;
}

.console-firmware-gear {
  transform-box: fill-box;
  transform-origin: center;
  animation: console-gear-spin 4s linear infinite;
}

.console-disc-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: console-disc-spin-pause 3.4s ease-in-out infinite;
}

.console-service-icon span {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.console-symbol-position {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 0 0;
}

.console-original-power-symbol {
  transform-box: fill-box;
  transform-origin: center;
  transform:
    translate(var(--console-original-symbol-x), var(--console-original-symbol-y))
    scale(var(--console-original-symbol-scale));
}

.console-original-power-upright,
.console-original-power-pulse,
.console-original-power-wrap,
.console-original-slash {
  transform-box: fill-box;
  transform-origin: center;
}

.console-original-power-pulse {
  animation: console-original-power-pulse 1.8s ease-in-out infinite;
}

.console-original-power-wrap {
  transform:
    translate(var(--console-original-power-x), var(--console-original-power-y))
    scale(var(--console-original-power-scale));
}

.console-original-power-stroke,
.console-original-slash {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.console-original-power-stroke {
  stroke-width: var(--console-original-power-stroke);
}

.console-original-slash {
  stroke-width: var(--console-original-slash-stroke);
  transform:
    translate(var(--console-original-slash-x), var(--console-original-slash-y))
    rotate(var(--console-original-slash-rotate))
    scale(var(--console-original-slash-scale));
  stroke-dasharray: 160;
  stroke-dashoffset: 0;
  animation: console-original-slash-draw 1.8s ease-in-out infinite;
}

.console-heat-rise,
.console-heat-wave,
.console-heat-base {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.console-heat-rise-group .console-heat-rise:nth-child(1) {
  animation: console-heat-rise 1.8s ease-in-out infinite;
}

.console-heat-rise-group .console-heat-rise:nth-child(2) {
  animation: console-heat-rise 1.8s ease-in-out 0.18s infinite;
}

.console-heat-rise-group .console-heat-rise:nth-child(3) {
  animation: console-heat-rise 1.8s ease-in-out 0.36s infinite;
}

.console-heat-wave {
  animation: console-heat-wave-pulse 1.8s ease-in-out infinite;
  transform:
    translate(var(--console-heat-wave-x), var(--console-heat-wave-y))
    scale(var(--console-heat-wave-scale));
  transform-box: fill-box;
  transform-origin: center;
}

.console-heat-base {
  animation: console-heat-base-pulse 1.8s ease-in-out infinite;
}

@keyframes console-original-power-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(var(--console-original-pulse-scale));
  }
}

@keyframes console-original-slash-draw {
  0% {
    stroke-dashoffset: 160;
    opacity: 0;
  }

  35%,
  70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 160;
    opacity: 0;
  }
}

@keyframes console-heat-rise {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes console-heat-wave-pulse {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

@keyframes console-heat-base-pulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes console-warning-pulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes console-gear-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes console-disc-spin-pause {
  0%,
  18% {
    transform: rotate(0deg);
  }

  68%,
  100% {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .console-original-power-pulse,
  .console-original-slash,
  .console-heat-rise,
  .console-heat-wave,
  .console-heat-base,
  .console-warning-mark,
  .console-firmware-gear,
  .console-disc-spin {
    animation: none;
  }
}

.desktop-base,
.desktop-thin {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.desktop-thin {
  stroke-width: 3;
}

.desktop-fill {
  fill: currentColor;
  stroke: none;
}

.desktop-power-mark,
.desktop-warning {
  animation: desktop-mark-pulse 1.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.desktop-power-slash {
  --desktop-power-slash-x: 0px;
  --desktop-power-slash-y: 11px;
  stroke-dasharray: 45;
  animation: desktop-slash-draw 1.8s ease-in-out infinite;
  translate: var(--desktop-power-slash-x) var(--desktop-power-slash-y);
}

.desktop-heat-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.desktop-heat-rise {
  animation: desktop-heat-rise 1.8s ease-in-out infinite;
}

.desktop-heat-rise:nth-child(2) {
  animation-delay: -0.3s;
}

.desktop-heat-rise:nth-child(3) {
  animation-delay: -0.6s;
}

.desktop-heat-wave {
  animation: desktop-heat-wave 1.8s ease-in-out infinite;
}

.desktop-display-crack {
  --desktop-display-crack-x: 3px;
  --desktop-display-crack-y: .9px;
  --desktop-display-crack-scale: 1.3;
  stroke-width: 2.7;
  transform: translate(var(--desktop-display-crack-x), var(--desktop-display-crack-y)) scale(var(--desktop-display-crack-scale));
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes desktop-mark-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.96);
  }
}

@keyframes desktop-slash-draw {
  0% {
    stroke-dashoffset: 45;
    opacity: 0.3;
  }

  35%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes desktop-heat-rise {
  0%,
  100% {
    opacity: 1;
    transform: translateY(1px);
  }

  50% {
    opacity: 0.35;
    transform: translateY(-2px);
  }
}

@keyframes desktop-heat-wave {
  0%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }

  50% {
    opacity: 0.45;
    transform: translateX(1.5px);
  }
}

@keyframes desktop-glitch {
  0%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }

  50% {
    opacity: 0.35;
    transform: translateX(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .desktop-power-mark,
  .desktop-power-slash,
  .desktop-warning,
  .desktop-heat-rise,
  .desktop-heat-wave,
  .desktop-display-crack .phone-crack-mark {
    animation: none;
  }
}

.phone-service-icon {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  min-width: 0;
  text-align: center;
}

.phone-service-icon--last {
  grid-column: 2;
}

.phone-service-icon svg {
  width: min(100%, 7rem);
  height: auto;
  aspect-ratio: 1;
  color: #111827;
  fill: currentColor;
  overflow: visible;
}

.phone-service-icon span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.phone-crack-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: phone-crack-pulse 2.2s ease-in-out infinite;
}

.phone-crack-mark--small {
  stroke-width: 0.5;
  animation-delay: -0.7s;
}

.phone-battery-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-battery-pulse {
  animation: phone-battery-pulse 1.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.phone-battery-mark--small {
  stroke-width: 0.4;
}

.phone-battery-pulse--small {
  animation-delay: -0.45s;
}

.phone-board-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-board-mark--small {
  stroke-width: 0.4;
}

.phone-board-gear {
  animation: phone-board-spin 2.8s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.phone-board-gear--small {
  animation-duration: 3.2s;
  animation-direction: reverse;
}

.phone-touch-target,
.phone-touch-hand {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.phone-touch-target {
  stroke-width: 0.55;
  animation: phone-touch-target-pulse 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.phone-touch-target--phone {
  stroke-width: 0.4;
  animation-delay: -0.5s;
}

.phone-touch-hand {
  stroke-width: 1.5;
  animation: phone-touch-hand-loop 2.8s ease-in-out infinite;
}

.phone-touch-hand--tablet {
  --touch-hand-x: 0.6px;
  --touch-hand-y: 0px;
}

.phone-touch-hand--phone {
  --touch-hand-x: 0px;
  --touch-hand-y: 0px;
  animation-delay: -0.5s;
}

.phone-camera-audio-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-camera-slash {
  stroke-dasharray: 7;
  stroke-dashoffset: 7;
  animation: phone-camera-slash-reveal 1.8s ease-in-out infinite;
}

.phone-panel-audio-symbol path {
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.phone-software-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.phone-software-fill {
  fill: currentColor;
}

.phone-software-alert {
  animation: phone-software-alert-pulse 1.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.phone-software-alert--tablet {
  animation-delay: -0.35s;
}

.phone-liquid-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.phone-liquid-mark--tablet {
  animation-delay: -0.3s;
}

.phone-liquid-mark--phone {
  --liquid-drop-x: 0px;
  --liquid-drop-y: -1px;
  --liquid-wave-x: 0px;
  --liquid-wave-y: -0.6px;
}

.phone-liquid-mark--tablet {
  --liquid-drop-x: 0px;
  --liquid-drop-y: -1px;
  --liquid-wave-x: 0px;
  --liquid-wave-y: -0.6px;
}

.phone-liquid-drop {
  animation: phone-liquid-pulse 1.5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.phone-liquid-drop-position {
  transform: translate(var(--liquid-drop-x), var(--liquid-drop-y));
}

.phone-liquid-drop--small {
  animation-delay: -0.35s;
}

.phone-liquid-wave {
  animation: phone-liquid-wave-pulse 1.5s ease-in-out infinite;
}

.phone-liquid-wave-position {
  transform: translate(var(--liquid-wave-x), var(--liquid-wave-y));
}

@keyframes phone-crack-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

@keyframes phone-battery-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.08);
  }
}

@keyframes phone-board-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes phone-touch-target-pulse {
  0%,
  15%,
  85%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }

  35%,
  65% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes phone-touch-hand-loop {
  0%,
  100% {
    opacity: 0;
    transform: translate(var(--touch-hand-x), calc(var(--touch-hand-y) + 1.4px));
  }

  15% {
    opacity: 1;
    transform: translate(var(--touch-hand-x), calc(var(--touch-hand-y) + 1.4px));
  }

  45% {
    opacity: 1;
    transform: translate(var(--touch-hand-x), calc(var(--touch-hand-y) - 0.3px));
  }

  70% {
    opacity: 1;
    transform: translate(var(--touch-hand-x), calc(var(--touch-hand-y) + 1.4px));
  }

  85% {
    opacity: 0;
    transform: translate(var(--touch-hand-x), calc(var(--touch-hand-y) + 1.4px));
  }
}

@keyframes phone-camera-slash-reveal {
  0%,
  18% {
    stroke-dashoffset: 7;
    opacity: 0.35;
  }

  42%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes phone-software-alert-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.12);
  }
}

@keyframes phone-liquid-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.08);
  }
}

@keyframes phone-liquid-wave-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-crack-mark,
  .phone-battery-pulse,
  .phone-board-gear,
  .phone-touch-target,
  .phone-touch-hand,
  .phone-camera-slash,
  .phone-software-alert,
  .phone-liquid-drop,
  .phone-liquid-wave {
    animation: none;
  }
}

.computer-service-icon {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  min-width: 0;
  text-align: center;
}

.computer-service-icon svg {
  width: min(100%, 7rem);
  height: auto;
  aspect-ratio: 1;
  color: #111827;
  overflow: visible;
}

.computer-icon-fill {
  fill: currentColor;
}

.computer-crack {
  --computer-crack-x: -150px;
  --computer-crack-y: -85px;
  --computer-crack-scale: 25;
  fill: none;
  stroke: currentColor;
  stroke-width: 0.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transform: translate(var(--computer-crack-x), var(--computer-crack-y)) scale(var(--computer-crack-scale));
  transform-origin: 0 0;
}

.computer-touch {
  /* Touch issue controls shared by the Chromebook and laptop pages. */
  --computer-touch-hand-x: 0px;
  --computer-touch-hand-y: 0px;
  --computer-touch-hand-scale: 1;
  --computer-touch-hand-travel: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.touch-rings {
  stroke-width: 10;
}

.computer-touch-target {
  animation: computer-touch-target-pulse 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.computer-touch-hand {
  animation: computer-touch-hand-loop 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes computer-touch-target-pulse {
  0%,
  15%,
  85%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }

  35%,
  65% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes computer-touch-hand-loop {
  0%,
  100% {
    opacity: 0;
    transform: translate(
        var(--computer-touch-hand-x),
        calc(var(--computer-touch-hand-y) + var(--computer-touch-hand-travel))
      )
      scale(var(--computer-touch-hand-scale));
  }

  15% {
    opacity: 1;
    transform: translate(
        var(--computer-touch-hand-x),
        calc(var(--computer-touch-hand-y) + var(--computer-touch-hand-travel))
      )
      scale(var(--computer-touch-hand-scale));
  }

  45% {
    opacity: 1;
    transform: translate(var(--computer-touch-hand-x), var(--computer-touch-hand-y))
      scale(var(--computer-touch-hand-scale));
  }

  70% {
    opacity: 1;
    transform: translate(
        var(--computer-touch-hand-x),
        calc(var(--computer-touch-hand-y) + var(--computer-touch-hand-travel))
      )
      scale(var(--computer-touch-hand-scale));
  }

  85% {
    opacity: 0;
    transform: translate(
        var(--computer-touch-hand-x),
        calc(var(--computer-touch-hand-y) + var(--computer-touch-hand-travel))
      )
      scale(var(--computer-touch-hand-scale));
  }
}

.computer-power-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.computer-power-mark {
  transform-box: view-box;
  transform-origin: 235.283px 155px;
  animation: computer-power-pulse 1.8s ease-in-out infinite;
}

.computer-power-slash {
  --computer-slash-x: 0px;
  --computer-slash-y: 7px;
  --computer-slash-rotate: 0deg;
  transform-box: fill-box;
  transform-origin: center;
  transform: translate(var(--computer-slash-x), var(--computer-slash-y)) rotate(var(--computer-slash-rotate));
  stroke-dasharray: 160;
  stroke-dashoffset: 0;
  animation: computer-power-slash-draw 1.8s ease-in-out infinite;
}

.computer-liquid-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.water-drop {
  transform-box: fill-box;
  transform-origin: center;
  animation: water-drop-bounce 1.8s ease-in-out infinite;
}

.water-drop:nth-of-type(2) {
  animation-delay: 0.25s;
}

.water-drop:nth-of-type(3) {
  animation-delay: 0.5s;
}

.water-splash {
  animation: water-splash-fade 1.8s ease-in-out infinite;
}

.computer-battery-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.battery-body {
  --battery-x: 6px;
  --battery-y: 0px;
  transform: translate(var(--battery-x), var(--battery-y));
}

.battery-fill {
  fill: currentColor;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: battery-pulse 1.8s ease-in-out infinite;
}

.charge-bolt {
  --bolt-x: 0px;
  --bolt-y: 0px;
  transform: translate(var(--bolt-x), var(--bolt-y));
  animation: bolt-flash 2.5s ease-in-out infinite;
}

.computer-port-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.port-icon {
  animation: port-pulse 1.8s ease-in-out infinite;
}

.port-icon-2 {
  animation-delay: 0.2s;
}

.port-icon-3 {
  animation-delay: 0.4s;
}

.board-repair-mark {
  /* Board Repair inner circuit controls */
  --board-repair-x: -45px;
  --board-repair-y: -34px;
  --board-repair-scale: 1.22;
  /* Spinning gear size: try 0.25 through 0.55 */
  --board-gear-scale: 0.30;
  /* Center ring size: try 0.3 through 1.2 */
  --board-gear-inner-circle-size: 0.65;
  /* Center ring line thickness: try 4px through 14px */
  --board-gear-inner-circle-thickness: 1px;
  color: currentColor;
  transform: translate(var(--board-repair-x), var(--board-repair-y)) scale(var(--board-repair-scale));
  transform-origin: 0 0;
}

.board-gear-size {
  transform: translate(235px, 155px) scale(var(--board-gear-scale));
  transform-origin: 0 0;
}

.board-gear-inner-circle-size {
  transform: translate(248px, 248px) scale(var(--board-gear-inner-circle-size)) translate(-248px, -248px);
  transform-origin: 0 0;
}

.board-gear-inner-circle {
  fill: #fff;
  stroke: currentColor;
  stroke-width: var(--board-gear-inner-circle-thickness);
  vector-effect: non-scaling-stroke;
}

.keyboard-notch-section {
  animation: keyboard-notch-pulse 1.5s ease-in-out infinite;
}

.software-issue-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.software-issue-mark .alert-bang,
.software-issue-mark .alert-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: software-bang-pulse 1.4s ease-in-out infinite;
}

.software-issue-mark .alert-dot {
  fill: currentColor;
  stroke: none;
}

.computer-camera-audio-mark {
  /* Laptop + Chromebook > NO AUDIO/CAMERA ISSUES icon controls */
  --computer-audio-stroke-width: 3;
  --computer-camera-stroke-width: 10;
  --computer-audio-x: -10px;
  --computer-audio-y: -15px;
  --computer-audio-scale: 3;
  --computer-camera-x: 260px;
  --computer-camera-y: 105px;
  --computer-camera-scale: 1;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.computer-audio-symbol {
  stroke-width: var(--computer-audio-stroke-width);
  transform: translate(var(--computer-audio-x), var(--computer-audio-y)) scale(var(--computer-audio-scale));
  transform-origin: 0 0;
}

.computer-camera-symbol {
  stroke-width: var(--computer-camera-stroke-width);
  transform: translate(var(--computer-camera-x), var(--computer-camera-y)) scale(var(--computer-camera-scale));
  transform-origin: 0 0;
}

.computer-camera-audio-mark .sound-wave {
  animation: sound-wave-fade 1.6s ease-in-out infinite;
}

.computer-camera-audio-mark .mute-slash {
  stroke-dasharray: 58;
  stroke-dashoffset: 58;
  animation: mute-slash-reveal 1.8s ease-in-out infinite;
}

.computer-camera-slash {
  stroke-dasharray: 128;
  stroke-dashoffset: 128;
  animation: computer-camera-slash-reveal 1.8s ease-in-out infinite;
}

@keyframes keyboard-notch-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes software-bang-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.12);
  }
}

@keyframes computer-camera-slash-reveal {
  0%,
  18% {
    stroke-dashoffset: 128;
    opacity: 0.35;
  }

  42%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes computer-power-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes computer-power-slash-draw {
  0% {
    stroke-dashoffset: 160;
    opacity: 0.3;
  }

  35%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes water-drop-bounce {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0.45;
    transform: translateY(10px);
  }
}

@keyframes water-splash-fade {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes battery-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

@keyframes bolt-flash {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

@keyframes port-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.computer-service-icon span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-icon {
  color: #111827;
}

.service-icon .stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.service-icon .stroke-thin {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.service-icon .fill {
  fill: currentColor;
}

.polish-stroke,
.polish-stroke-thin {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.polish-stroke {
  stroke-width: 4.2;
}

.polish-stroke-thin {
  stroke-width: 3;
}

.no-power-symbol {
  transform-origin: 60px 53px;
  transform: translateY(-5px) scale(0.9);
  animation: power-pulse 1.8s ease-in-out infinite;
}

.no-power-slash {
  --panel-slash-x: 0px;
  --panel-slash-y: 7px;
  --panel-slash-rotate: 0deg;
  transform-box: fill-box;
  transform-origin: center;
  transform: translate(var(--panel-slash-x), var(--panel-slash-y)) rotate(var(--panel-slash-rotate));
  stroke-dasharray: 80;
  stroke-dashoffset: 0;
  animation: slash-draw 1.8s ease-in-out infinite;
}

.glitch-line,
.glitch-dot {
  transform-box: fill-box;
  transform-origin: center;
}

.glitch-symbol {
  transform: translateY(-5px);
}

.glitch-line {
  animation: glitch-soft 1.8s steps(2, end) infinite;
}

.glitch-line:nth-of-type(2) {
  animation-delay: -0.25s;
}

.glitch-line:nth-of-type(3) {
  animation-delay: -0.45s;
}

.glitch-dot {
  animation: blink-soft 1.4s steps(2, end) infinite;
}

.blank-screen {
  animation: screen-fade 2s ease-in-out infinite;
}

.panel-port-screen {
  animation: none;
}

.no-display-slash {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: no-display-slash-reveal 2s ease-in-out infinite;
}

.sound-wave {
  transform-box: fill-box;
  transform-origin: center;
  animation: sound-wave-fade 1.6s ease-in-out infinite;
}

.audio-symbol {
  transform: translateY(-7px);
}

.sound-wave:nth-of-type(2) {
  animation-delay: -0.2s;
}

.mute-slash {
  stroke-dasharray: 58;
  stroke-dashoffset: 58;
  animation: mute-slash-reveal 1.8s ease-in-out infinite;
}

.chip {
  transform-box: fill-box;
  transform-origin: center;
  animation: chip-flicker 1.8s ease-in-out infinite;
}

.firmware-symbol {
  transform: translateY(-6px);
}

.polish-symbol {
  transform: translateY(-5px);
}

.polish-sparkle {
  transform-box: fill-box;
  transform-origin: center;
  animation: polish-twinkle 1.6s ease-in-out infinite;
}

.polish-sparkle:nth-of-type(2) {
  animation-delay: -0.35s;
}

.polish-sparkle:nth-of-type(3) {
  animation-delay: -0.7s;
}

.polish-wipe {
  transform-box: fill-box;
  transform-origin: center;
  animation: polish-wipe 2.2s ease-in-out infinite;
}

.panel-touch-symbol {
  /* Commercial Panels > No Touch icon controls */
  --panel-touch-x: 9px;
  --panel-touch-y: 20px;
  --panel-touch-scale: 0.22;
  --computer-touch-hand-travel: 12px;
  transform: translate(var(--panel-touch-x), var(--panel-touch-y)) scale(var(--panel-touch-scale));
  transform-origin: 0 0;
}

.panel-port-symbol {
  /* Commercial Panels > Port Issue icon controls */
  --panel-port-x: 6.5px;
  --panel-port-y: 16px;
  --panel-port-scale: 0.22;
  stroke-width: 5.5;
  transform: translate(var(--panel-port-x), var(--panel-port-y)) scale(var(--panel-port-scale));
  transform-origin: 0 0;
}

.warning {
  transform-box: fill-box;
  transform-origin: center;
  animation: warning-pulse 1.7s ease-in-out infinite;
}

@keyframes power-pulse {
  0%,
  100% {
    opacity: 1;
    transform: translateY(-5px) scale(0.9);
  }

  50% {
    opacity: 0.45;
    transform: translateY(-5px) scale(0.86);
  }
}

@keyframes slash-draw {
  0% {
    stroke-dashoffset: 80;
    opacity: 0.25;
  }

  40%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes glitch-soft {
  0%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }

  40% {
    opacity: 0.76;
    transform: translateX(-2px);
  }

  70% {
    opacity: 1;
    transform: translateX(2px);
  }
}

@keyframes blink-soft {
  0%,
  100% {
    opacity: 0.95;
  }

  50% {
    opacity: 0.22;
  }
}

@keyframes screen-fade {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes no-display-slash-reveal {
  0% {
    stroke-dashoffset: 70;
    opacity: 0.25;
  }

  35%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes sound-wave-fade {
  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.18;
  }
}

@keyframes mute-slash-reveal {
  0% {
    stroke-dashoffset: 58;
    opacity: 0.3;
  }

  35%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes chip-flicker {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

@keyframes warning-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.95);
  }
}

@keyframes polish-twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.75);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes polish-wipe {
  0%,
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(4px) rotate(2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .computer-touch-target,
  .computer-touch-hand,
  .computer-power-mark,
  .computer-power-slash,
  .water-drop,
  .water-splash,
  .battery-fill,
  .charge-bolt,
  .port-icon,
  .board-gear-spin,
  .keyboard-notch-section,
  .software-issue-mark .alert-bang,
  .software-issue-mark .alert-dot,
  .no-power-symbol,
  .no-power-slash,
  .glitch-line,
  .glitch-dot,
  .blank-screen,
  .no-display-slash,
  .sound-wave,
  .mute-slash,
  .computer-camera-slash,
  .chip,
  .warning,
  .polish-sparkle,
  .polish-wipe {
    animation: none;
  }
}

.device-visual {
  overflow: hidden;
  min-height: 24rem;
  aspect-ratio: 16 / 10;
}

.device-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-point {
  display: grid;
  gap: 0.6rem;
}

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

.list-card li {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
}

.video-frame,
.map-frame {
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.about-video-section {
  padding-top: 1.5rem;
}

.about-video-section .video-frame {
  margin-top: 0;
}

.about-video-section .section-copy {
  width: min(100%, 1290px);
  margin: 1rem auto 0;
}

.video-frame {
  width: min(100%, 1290px);
  margin-left: auto;
  margin-right: auto;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 550px;
  border: 0;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 24rem;
  border: 0;
}

.contact-card.map-card {
  margin-top: 1.25rem;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: transparent;
}

.contact-hero::before,
.contact-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.contact-hero::before {
  z-index: -2;
  background: #17202c url("./assets/front-desk.jpg") center 38% / cover no-repeat;
}

.contact-hero::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 12, 22, 0.82), rgba(7, 12, 22, 0.48) 68%, rgba(7, 12, 22, 0.3));
}

.contact-hero .section-intro.contact-hero-copy {
  position: relative;
  overflow: hidden;
  width: min(100%, 85rem);
  max-width: 85rem;
  min-height: 23rem;
  margin-bottom: 0;
  padding: 2.35rem 2.65rem 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.contact-hero .eyebrow,
.contact-hero h1,
.contact-hero .section-copy {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.contact-hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}

.contact-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

.contact-hero .section-copy {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
}

.contact-hero-actions,
.contact-card-actions {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
}

.contact-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.contact-card > p:not(.eyebrow) {
  margin-bottom: 0;
}

.contact-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-steps div,
.contact-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.58);
}

.contact-steps div {
  padding: 1rem;
}

.contact-steps span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.contact-steps p {
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-item {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.contact-item span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.contact-item a {
  text-decoration: none;
}

.site-footer {
  width: 100%;
  margin-top: auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem 1.5rem;
  color: #f7f8fb;
  text-align: left;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 71, 82, 0.12), transparent 25rem),
    linear-gradient(180deg, #111722, #080c12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem);
  width: min(100%, 74rem);
  margin: 0 auto;
}

.footer-brand-column,
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-brand-column > img {
  width: min(100%, 13rem);
  height: auto;
  margin-bottom: 0.35rem;
}

.footer-social-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.footer-social-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.footer-social-logos a:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.footer-social-logos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-column p,
.footer-column p,
.footer-bottom p {
  margin: 0;
  color: #aeb7c5;
  line-height: 1.65;
}

.footer-brand-column p {
  max-width: 20rem;
}

.footer-column h2 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand-column a,
.footer-column a,
.footer-bottom a {
  color: #c7cfda;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease, background 160ms ease;
}

.footer-brand-column a:hover,
.footer-column a:not(.footer-cta):hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-column a:not(.footer-cta):hover {
  transform: translateX(3px);
}

.footer-visit p strong {
  color: #fff;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 800;
}

.footer-cta:hover {
  background: #ff626c;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 74rem);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090b0f;
  --bg-soft: #11151b;
  --panel: rgba(20, 24, 31, 0.9);
  --panel-strong: rgba(25, 30, 38, 0.98);
  --text: #ffffff;
  --text-soft: #c1c8d2;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 34px rgba(0, 0, 0, 0.34), 0 42px 90px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 77, 87, 0.14), transparent 24%),
    linear-gradient(135deg, #080a0d 0%, #11151b 48%, #080a0d 100%),
    var(--bg);
}

html[data-theme="dark"] .site-header {
  background: rgba(9, 11, 15, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] .brand {
  padding: 0;
  background: transparent;
}

html[data-theme="dark"] .brand img {
  filter: none;
}

html[data-theme="dark"] .theme-toggle {
  background: #ffffff;
  color: #11151b;
}

html[data-theme="dark"] .theme-toggle-icon::after {
  opacity: 0;
  transform: scale(0);
}

html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .site-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .nav-dropdown {
  background: rgba(15, 18, 24, 0.97);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .button--primary,
html[data-theme="dark"] .site-nav .button--primary,
html[data-theme="dark"] .site-nav .button--primary:hover {
  background: #ffffff;
  color: #0b0e13;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

html[data-theme="dark"] .section-soft {
  background: linear-gradient(180deg, rgba(22, 27, 35, 0.96), rgba(11, 14, 19, 0.88));
}

html[data-theme="dark"] .about-hero {
  background:
    linear-gradient(90deg, rgba(8, 12, 20, 0.68), rgba(8, 12, 20, 0.38) 58%, rgba(8, 12, 20, 0.18)),
    url("./assets/hero-background-optimized.png") center 65% / cover no-repeat;
}

html[data-theme="dark"] .section-soft .benefit-stack,
html[data-theme="dark"] .section-soft .device-points,
html[data-theme="dark"] .section-soft .grid-3,
html[data-theme="dark"] .benefit-row,
html[data-theme="dark"] .feature-panel {
  background: rgba(20, 24, 31, 0.88);
}

html[data-theme="dark"] .section-soft .testimonial-grid {
  background: transparent;
}

html[data-theme="dark"] .section-soft .testimonial-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(20, 24, 31, 0.94);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.42),
    0 34px 68px rgba(0, 0, 0, 0.52);
}

html[data-theme="dark"] .section-soft .testimonial-card:not(:last-child) {
  border-right-color: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .section-soft .testimonial-card:hover {
  border-color: rgba(255, 64, 76, 0.82);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.5),
    0 42px 82px rgba(0, 0, 0, 0.66);
}

html[data-theme="dark"] .cta-banner,
html[data-theme="dark"] .story-card.soft,
html[data-theme="dark"] .contact-card.accent {
  background: linear-gradient(135deg, rgba(29, 35, 45, 0.96), rgba(15, 19, 26, 0.96));
}

html[data-theme="dark"] .cta-banner.prepaid-cta {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 70, 84, 0.2), transparent 30%),
    linear-gradient(135deg, #182231, #0c111a 72%);
  box-shadow: 0 24px 60px rgba(7, 12, 22, 0.28);
}

html[data-theme="dark"] .prepaid-cta h2 {
  color: #ffffff;
}

html[data-theme="dark"] .prepaid-cta-copy > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

html[data-theme="dark"] .prepaid-cta .button--primary {
  background: #ffffff;
  color: #111827;
}

html[data-theme="dark"] .prepaid-cta .button--secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

html[data-theme="dark"] .about-support-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(24, 29, 38, 0.94), rgba(13, 17, 24, 0.94));
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .about-support-card h3 {
  color: var(--text);
}

html[data-theme="dark"] .about-support-card p {
  color: var(--text-soft);
}

html[data-theme="dark"] .about-support-card img {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  mix-blend-mode: screen;
}

html[data-theme="dark"] .k12-hero-card,
html[data-theme="dark"] .k12-program-card,
html[data-theme="dark"] .k12-readiness-layout,
html[data-theme="dark"] .k12-checklist span,
html[data-theme="dark"] .k12-faq details {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(24, 29, 38, 0.94), rgba(13, 17, 24, 0.94));
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .k12-faq p {
  color: var(--text-soft);
}

html[data-theme="dark"] .k12-readiness-card + .k12-readiness-card {
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .k12-hero {
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.82), rgba(5, 7, 12, 0.66) 48%, rgba(5, 7, 12, 0.38)),
    url("./assets/k12-hero-background.jpg") center var(--k12-hero-bg-y) / cover no-repeat;
}

html[data-theme="dark"] .k12-hero-card ul,
html[data-theme="dark"] .k12-program-card ul,
html[data-theme="dark"] .k12-program-card ol {
  color: var(--text-soft);
}

html[data-theme="dark"] .k12-hero-card > p:not(.eyebrow) {
  color: var(--text);
}

html[data-theme="dark"] .k12-hero-card li {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-soft);
}

html[data-theme="dark"] .k12-flyer {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(13, 17, 24, 0.94);
}

html[data-theme="dark"] .feature-media,
html[data-theme="dark"] .flip-face.front {
  background: linear-gradient(180deg, #1c222c, #10141b);
}

html[data-theme="dark"] .services-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.3), rgba(5, 7, 10, 0.18) 52%, rgba(5, 7, 10, 0.08)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.18), rgba(5, 7, 10, 0.06));
}

html[data-theme="dark"] .services-hero {
  background:
    linear-gradient(90deg, rgba(8, 12, 20, 0.36), rgba(8, 12, 20, 0.2) 58%, rgba(8, 12, 20, 0.08)),
    url("./assets/circuit-board.png") var(--services-hero-image-position) / cover no-repeat;
}

html[data-theme="dark"] .services-hero .section-copy {
  color: #fff;
}

html[data-theme="dark"] .service-icon,
html[data-theme="dark"] .computer-service-icon svg,
html[data-theme="dark"] .phone-service-icon svg,
html[data-theme="dark"] .desktop-service-icon svg,
html[data-theme="dark"] .console-service-icon svg,
html[data-theme="dark"] .service-icon-wrap span,
html[data-theme="dark"] .computer-service-icon span,
html[data-theme="dark"] .phone-service-icon span,
html[data-theme="dark"] .desktop-service-icon span,
html[data-theme="dark"] .console-service-icon span {
  color: var(--text);
}

html[data-theme="dark"] .board-gear-inner-circle {
  fill: #11151b;
}

html[data-theme="dark"] .contact-steps div,
html[data-theme="dark"] .contact-item,
html[data-theme="dark"] .list-card li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

html[data-theme="dark"] .contact-steps strong,
html[data-theme="dark"] .contact-item strong,
html[data-theme="dark"] .contact-item a,
html[data-theme="dark"] .list-card li {
  color: var(--text);
}

html[data-theme="dark"] .contact-steps p,
html[data-theme="dark"] .contact-item span {
  color: var(--text-soft);
}

html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  border-color: var(--line);
  background: var(--panel-strong);
  color: var(--text);
}

html[data-theme="dark"] .site-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 71, 82, 0.14), transparent 25rem),
    linear-gradient(180deg, #111722, #080c12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media screen and (min-width: 961px) and (max-width: 1180px) {
  .feature-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero,
  .detail-grid,
  .device-points {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  }

  .section-soft .device-points {
    width: min(100%, 58rem);
    margin-left: auto;
    margin-right: auto;
  }

  .device-visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .device-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  html[data-theme="dark"] .site-nav {
    background: rgba(15, 18, 24, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  }

  html[data-theme="dark"] .site-header .site-nav > a,
  html[data-theme="dark"] .site-header .nav-group > .dropdown-trigger {
    color: #c1c8d2;
  }

  .service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 0.45rem;
  }

  .computer-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 0.45rem;
  }

  .phone-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 0.45rem;
  }

  .printer-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 0.45rem;
  }

  .printer-detail-card {
    height: auto;
    min-height: 630px;
    overflow: visible;
  }

  .desktop-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 0.45rem;
  }

  .console-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 0.45rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0.35rem 0 0.1rem 0.9rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .site-nav.is-open .nav-group .nav-dropdown {
    display: grid;
  }

  .site-nav a,
  .site-nav .button {
    width: 100%;
  }

  .page-shell {
    width: calc(100% - 2rem);
  }

  .stats,
  .grid-3,
  .process-grid,
  .team-grid,
  .device-points {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  }

  .feature-layout,
  .k12-hero,
  .k12-flyer-section,
  .k12-program-section,
  .about-grid,
  .contact-layout,
  .detail-hero,
  .detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
  }

  .feature-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  }

  .about-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .k12-guide-grid,
  .k12-issue-grid,
  .k12-program-grid,
  .k12-lifecycle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .k12-program-copy {
    position: static;
  }

  .k12-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .k12-readiness-layout {
    grid-template-columns: 1fr;
  }

  .k12-readiness-card {
    padding-right: 0;
  }

  .k12-readiness-card + .k12-readiness-card {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .k12-flyer {
    justify-self: start;
  }

  .k12-flyer-tools {
    justify-self: start;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner.prepaid-cta {
    grid-template-columns: 1fr;
  }

  .prepaid-cta .hero-actions {
    justify-self: start;
    width: min(100%, 24rem);
  }

  .benefit-row,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .benefit-row,
  .cta-banner {
    display: grid;
  }

  .section-soft .device-point:not(:last-child),
  .section-soft .service-card:not(:last-child),
  .section-soft .testimonial-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 32rem;
    padding: 1.5rem;
  }

  .hero-copy {
    width: min(100%, 68rem);
    min-height: 24rem;
    max-height: none;
    padding: 1.5rem;
  }

  .hero .lead {
    max-width: 100%;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .hero-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .contact-hero {
    padding: 1.5rem;
  }

  .contact-hero h1 {
    max-width: 13ch;
  }

  .contact-card h2 {
    font-size: clamp(1.8rem, 7vw, 2.55rem);
  }

  .section-intro h1 {
    max-width: 18ch;
    font-size: clamp(2.35rem, 6vw, 4rem);
    line-height: 1.08;
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 20px;
  }

  .feature-panel,
  .detail-card,
  .device-point {
    min-width: 0;
  }

  .feature-media,
  .feature-media.flip,
  .flip-card,
  .device-visual {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .flip-face.front img,
  .device-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 641px) and (max-width: 960px) {
  .page-shell {
    padding-top: 5rem;
  }

  .page-shell > .section-soft:first-child {
    padding-top: 3rem;
  }

  .section-intro h1 {
    max-width: 18ch;
    font-size: clamp(2.6rem, 6vw, 4rem);
    line-height: 1.08;
  }

  .services-hero {
    min-height: 24rem;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 2.75rem 1.25rem 1.25rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }

  .stats,
  .grid-3,
  .feature-layout,
  .process-grid,
  .testimonial-grid,
  .about-grid,
  .about-support-grid,
  .k12-hero,
  .k12-guide-grid,
  .k12-issue-grid,
  .k12-program-section,
  .k12-program-grid,
  .k12-lifecycle,
  .k12-flyer-section,
  .k12-checklist,
  .k12-readiness-layout,
  .team-grid,
  .contact-layout,
  .detail-hero,
  .detail-grid,
  .device-points {
    grid-template-columns: 1fr;
  }

  .service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.3rem;
  }

  .computer-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.3rem;
  }

  .phone-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.3rem;
  }

  .printer-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.3rem;
  }

  .printer-detail-card {
    min-height: 0;
  }

  .desktop-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.3rem;
  }

  .console-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.3rem;
  }

  .k12-flyer {
    width: min(100%, 24rem);
    justify-self: center;
  }

  .k12-flyer img {
    max-height: 15rem;
  }

  .console-service-icon {
    grid-template-rows: 6.25rem 2.25rem;
    gap: 0.35rem;
  }

  .console-service-icon svg {
    width: min(100%, 5.5rem);
  }

  .console-service-icon span {
    min-height: 2.25rem;
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .desktop-service-icon {
    gap: 0.35rem;
  }

  .desktop-service-icon svg {
    width: min(100%, 5.5rem);
  }

  .desktop-service-icon span {
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .service-icon-wrap,
  .computer-service-icon,
  .printer-service-icon {
    gap: 0.35rem;
  }

  .service-icon-wrap svg,
  .computer-service-icon svg,
  .printer-service-icon svg {
    width: min(100%, 5.5rem);
  }

  .service-icon-wrap span,
  .computer-service-icon span,
  .printer-service-icon span {
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .phone-service-icon {
    gap: 0.35rem;
  }

  .phone-service-icon svg {
    width: min(100%, 5rem);
  }

  .phone-service-icon span {
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .page-shell {
    width: calc(100% - 1rem);
  }

  .site-header {
    padding: 0.45rem 0.65rem;
  }

  .brand img {
    width: min(8rem, 100%);
  }

  .hero {
    min-height: 26rem;
    padding: 0.85rem;
  }

  .hero-copy {
    width: 100%;
    min-height: 0;
    padding: 1.15rem;
    border-radius: 1.5rem;
  }

  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1;
  }

  .contact-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero .lead {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-bottom {
    gap: 0.9rem;
    margin-top: 1.1rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .video-frame iframe {
    height: 300px;
  }
}
