:root {
  --ink: #071312;
  --ink-soft: #1c3130;
  --paper: #f7fbf7;
  --paper-2: #e9f4ef;
  --glass: rgba(255, 255, 255, 0.18);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --line: rgba(7, 19, 18, 0.16);
  --line-light: rgba(255, 255, 255, 0.32);
  --teal: #02a896;
  --mint: #c9f55b;
  --amber: #ffc857;
  --rose: #ef476f;
  --shadow: 0 26px 70px rgba(4, 12, 11, 0.22);
  --radius: 8px;
  --font-ui: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Unbounded", "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #f8fbf7 0%, #e9f4ef 44%, #10201e 100%),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 168, 150, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 19, 18, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 72%, transparent 100%);
  opacity: 0.45;
  z-index: -2;
}

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

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

p,
li {
  line-height: 1.65;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 16px;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(9, 24, 23, 0.48);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 10px;
  background: #050505;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 11px 13px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.service-ribbon {
  position: fixed;
  top: 84px;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  z-index: 9;
  display: flex;
  gap: 6px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(9, 24, 23, 0.42);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(20px) saturate(150%);
  scrollbar-width: none;
}

.service-ribbon::-webkit-scrollbar {
  display: none;
}

.service-ribbon a {
  flex: 0 0 auto;
  padding: 9px 11px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.service-ribbon a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  padding: 118px max(22px, calc((100vw - 1220px) / 2)) 84px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 10, 10, 0.86) 0%, rgba(2, 10, 10, 0.62) 38%, rgba(2, 10, 10, 0.14) 72%),
    linear-gradient(180deg, rgba(2, 10, 10, 0.14) 0%, rgba(2, 10, 10, 0.32) 64%, rgba(2, 10, 10, 0.86) 100%);
}

.hero-content {
  align-self: center;
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker,
.panel-tag {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 8.2vw, 96px);
  line-height: 1.02;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--mint);
  color: #071312;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(18px);
}

.hero-strip {
  position: absolute;
  left: max(22px, calc((100vw - 1220px) / 2));
  right: max(22px, calc((100vw - 1220px) / 2));
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(160%);
}

.hero-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-align: center;
}

.section,
.faq-section,
.contact-section,
.media-band,
.video-section,
.page-hero {
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  margin-bottom: 34px;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 4.8vw, 60px);
  line-height: 1.06;
}

.section-heading p,
.media-copy p,
.contact-copy p,
.page-hero p {
  margin: 0;
  color: rgba(7, 19, 18, 0.72);
  font-size: 17px;
}

.page-hero {
  padding: 174px 0 74px;
}

.page-hero h1 {
  max-width: 940px;
  color: var(--ink);
  font-size: clamp(40px, 7vw, 86px);
  line-height: 1.04;
}

.page-hero p {
  max-width: 820px;
  margin-top: 24px;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(2, 168, 150, 0.35);
  text-underline-offset: 5px;
}

.button-ghost.button-dark {
  border-color: rgba(7, 19, 18, 0.24);
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
}

.intro {
  padding-top: 76px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metrics article,
.service-card,
.feature-panel,
.profile-card,
.proposal-grid article,
.detail-grid article,
.price-grid article,
.process-list li,
.faq-list details,
.contact-link,
.media-grid figure {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.32)),
    rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(160%);
}

.metrics article {
  min-height: 142px;
  padding: 22px;
}

.metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: rgba(7, 19, 18, 0.66);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.service-grid-single,
.price-grid-single {
  grid-template-columns: minmax(280px, 520px);
}

.service-card {
  min-height: 294px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-card summary {
  display: block;
  list-style: none;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.card-index {
  width: 42px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(2, 168, 150, 0.36);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 900;
  font-size: 12px;
}

.service-card h3,
.feature-panel h3,
.profile-card h3,
.detail-grid h3,
.price-grid h3,
.process-list h3 {
  margin-top: 22px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.service-card p,
.feature-panel p,
.profile-card p,
.detail-grid p,
.price-grid p,
.process-list p,
.faq-list p {
  color: rgba(7, 19, 18, 0.68);
  font-size: 15px;
}

.service-card a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(2, 168, 150, 0.45);
  text-underline-offset: 5px;
}

.product-band {
  padding-top: 44px;
}

.proposal-section {
  padding-top: 64px;
}

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

.proposal-grid article {
  min-height: 236px;
  padding: 24px;
}

.proposal-grid span {
  display: inline-grid;
  width: 44px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(2, 168, 150, 0.36);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 900;
  font-size: 12px;
}

.proposal-grid h3 {
  margin-top: 24px;
  color: var(--ink);
  font-size: 22px;
}

.proposal-grid p {
  color: rgba(7, 19, 18, 0.68);
}

.product-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-panel {
  min-height: 440px;
  padding: 28px;
}

.feature-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-panel li {
  padding: 10px 12px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.38);
  font-weight: 700;
}

.profiles-section {
  padding-top: 64px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.profile-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.profile-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(2, 168, 150, 0.34);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
}

.profile-card p {
  margin-bottom: 22px;
}

.profile-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.profile-facts li {
  padding: 8px 10px;
  border: 1px solid rgba(7, 19, 18, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  color: rgba(7, 19, 18, 0.76);
  font-size: 12px;
  font-weight: 900;
}

.media-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: end;
  padding: 72px 0;
}

.video-section {
  padding: 76px 0 40px;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(160%);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #071312;
}

.media-copy {
  padding-right: 22px;
}

.media-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 246px;
  gap: 12px;
}

.media-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.media-grid figure:first-child {
  grid-row: span 2;
}

.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.media-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(7, 19, 18, 0.42);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.details {
  padding-top: 44px;
}

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

.detail-grid article {
  min-height: 270px;
  padding: 24px;
}

.price-section {
  color: #fff;
}

.price-section h2,
.price-section .section-heading p {
  color: #fff;
}

.price-section .section-kicker {
  color: var(--amber);
}

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

.price-grid article {
  min-height: 218px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(10, 30, 28, 0.58);
  color: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.price-grid span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--ink);
  font-weight: 900;
}

.price-grid h3,
.price-grid p {
  color: #fff;
}

.price-grid p {
  opacity: 0.74;
}

.process {
  color: #fff;
}

.process h2,
.process .section-heading p {
  color: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 248px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(8, 24, 23, 0.5);
}

.process-list span {
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 22px;
}

.process-list h3,
.process-list p {
  color: #fff;
}

.process-list p {
  opacity: 0.74;
}

.detail-page {
  padding-top: 34px;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: stretch;
}

.content-split article,
.quote-panel {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.32)),
    rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(160%);
}

.content-split article {
  padding: 28px;
}

.content-split h2 {
  font-size: clamp(28px, 4vw, 48px);
}

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

.check-list li {
  padding: 12px 14px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 800;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.quote-panel span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-panel strong {
  margin: 32px 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.quote-panel p {
  margin: 0;
  color: rgba(7, 19, 18, 0.68);
}

.pill-grid,
.seo-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-links-disclosure {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(160%);
}

.seo-links-disclosure summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.seo-links-disclosure .seo-link-grid {
  padding: 0 20px 20px;
}

.pill-grid span,
.seo-link-grid a {
  padding: 12px 14px;
  border: 1px solid rgba(7, 19, 18, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.seo-link-grid a {
  text-decoration: underline;
  text-decoration-color: rgba(2, 168, 150, 0.4);
  text-underline-offset: 5px;
}

.faq-section {
  padding: 86px 0;
  color: #fff;
}

.faq-section h2,
.faq-section .section-heading p {
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(5, 22, 21, 0.62);
  color: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: stretch;
  padding: 86px 0 98px;
  color: #fff;
}

.contact-copy h2,
.contact-copy p {
  color: #fff;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-link {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(5, 22, 21, 0.64);
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 245, 91, 0.7);
}

.contact-link span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.24;
}

.contact-link-accent {
  background: var(--mint);
  color: var(--ink);
}

.contact-link-accent span {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .service-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics,
  .product-layout,
  .profile-grid,
  .detail-grid,
  .proposal-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-band,
  .contact-section,
  .content-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    background: rgba(9, 24, 23, 0.88);
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    backdrop-filter: blur(22px);
  }

  .site-header.is-open .site-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 88svh;
    padding: 168px 22px 72px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 10, 10, 0.84), rgba(2, 10, 10, 0.48)),
      linear-gradient(180deg, rgba(2, 10, 10, 0.12), rgba(2, 10, 10, 0.82));
  }

  .hero-strip {
    display: none;
  }

  .section,
  .faq-section,
  .contact-section,
  .media-band,
  .video-section,
  .page-hero {
    width: min(100% - 32px, 1220px);
  }

  .service-ribbon {
    top: 86px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 5px;
    padding: 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .service-ribbon a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .page-hero {
    padding-top: 168px;
  }

  .section {
    padding: 48px 0;
  }

  .video-section {
    padding: 48px 0 28px;
  }

  .proposal-section,
  .profiles-section {
    padding-top: 42px;
  }

  .product-band,
  .details {
    padding-top: 28px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-grid,
  .metrics,
  .product-layout,
  .profile-grid,
  .detail-grid,
  .proposal-grid,
  .price-grid,
  .process-list,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 8px;
  }

  .service-card {
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .service-card summary {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 28px;
    gap: 12px;
    align-items: center;
    min-height: 64px;
    padding: 14px 14px;
    cursor: pointer;
  }

  .service-card summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(2, 168, 150, 0.26);
    border-radius: var(--radius);
    color: var(--teal);
    font-weight: 900;
  }

  .service-card[open] summary::after {
    content: "-";
  }

  .service-card h3 {
    margin-top: 0;
    font-size: 17px;
  }

  .service-card p {
    margin: 0;
    padding: 0 14px 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .service-card a {
    display: inline-flex;
    margin: 0 14px 16px;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 236px;
  }

  .media-grid figure:first-child {
    grid-row: span 1;
  }

  .site-footer {
    width: min(100% - 32px, 1220px);
    flex-direction: column;
  }

  .seo-links-disclosure {
    margin-top: 14px;
  }

  .seo-links-disclosure summary {
    padding: 16px;
  }

  .seo-links-disclosure .seo-link-grid {
    padding: 0 16px 16px;
  }
}

@media (max-width: 460px) {
  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 152px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-strip {
    bottom: 12px;
    left: 16px;
    right: 16px;
  }
}
