@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/Source_Sans_3/SourceSans3-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/Source_Sans_3/SourceSans3-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: var(--gl-color-ink, #192839);
  --ink-2: #26394c;
  --muted: var(--gl-color-muted, #5d717f);
  --line: rgba(25, 40, 57, 0.13);
  --paper: var(--gl-color-surface, #fbfffc);
  --card: rgba(255, 255, 255, 0.84);
  --green: var(--gl-color-live, #02ca7c);
  --green-dark: #02a866;
  --sky: #45d7ff;
  --mint: #e2fff0;
  --lime: #d7ff8c;
  --violet: #6d72ff;
  --rose: #ff6f91;
  --shadow: 0 24px 70px rgba(25, 40, 57, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--gl-font-body, "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  background:
    radial-gradient(circle at 12% 12%, rgba(2, 202, 124, .18), transparent 34rem),
    radial-gradient(circle at 88% 5%, rgba(69, 215, 255, .18), transparent 28rem),
    linear-gradient(180deg, #f7fff9 0%, #ffffff 42%, #f6fbff 100%);
  line-height: 1.58;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(25, 40, 57, .034) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 40, 57, .034) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

h1, h2, h3, h4, .nav-links, .nav-actions, .eyebrow, .button, .stat-value, .post-card-meta, .logo {
  font-family: var(--gl-font-heading, "Manrope", system-ui, sans-serif);
  letter-spacing: 0;
}
h1 { font-size: clamp(3rem, 7vw, 6.7rem); line-height: .93; margin: 0; }
h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1.03; margin: 0 0 1rem; }
h3 { font-size: 1.35rem; line-height: 1.18; margin: 0 0 .55rem; }
p { color: var(--muted); font-size: 1.1rem; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.preview-banner { position: sticky; top: 0; z-index: 50; padding: 10px 16px; background: var(--ink); color: #fff; text-align: center; font-weight: 800; }

.container { width: min(1160px, calc(100% - 38px)); margin-inline: auto; }
.container.narrow { width: min(820px, calc(100% - 38px)); }
.site-header { position: sticky; top: 14px; z-index: 20; margin: 14px auto 0; width: min(1160px, calc(100% - 24px)); }
.nav-shell {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .72rem .82rem .72rem 1rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255, 255, 255, .76); backdrop-filter: blur(18px); box-shadow: 0 18px 45px rgba(25, 40, 57, .08);
}
.logo { display: flex; align-items: center; gap: .7rem; font-weight: 800; }
.logo img { width: 138px; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.1rem; color: #385062; font-weight: 750; }
.nav-item { position: relative; }
.nav-item > a, .nav-links > a { display: inline-flex; padding: .45rem .1rem; }
.subnav {
  position: absolute; top: 100%; left: 0; display: grid; gap: .25rem; min-width: 180px;
  padding: .55rem; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(-6px); transition: .16s ease;
}
.nav-item { padding-bottom: 12px; margin-bottom: -12px; }
.nav-item:hover .subnav, .nav-item:focus-within .subnav { opacity: 1; pointer-events: auto; transform: translateY(0); }
.subnav a { padding: .55rem .7rem; border-radius: 10px; }
.subnav a:hover { background: var(--mint); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: white; }
.nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 999px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 44px; padding: .78rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(25, 40, 57, .12); font-weight: 850;
  font-family: var(--gl-font-button, var(--gl-font-heading, "Manrope", system-ui, sans-serif));
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #052015; box-shadow: 0 12px 30px rgba(2, 202, 124, .34); border-color: rgba(2, 202, 124, .6); }
.button-dark { background: var(--ink); color: white; border-color: var(--ink); }
.button-ghost { background: rgba(255,255,255,.7); color: var(--ink); }

.hero { padding: 6.5rem 0 5rem; position: relative; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 3.2rem; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; color: #03784e; font-weight: 850; text-transform: uppercase; font-size: .85rem; letter-spacing: .08em; margin-bottom: 1.2rem; }
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgba(2,202,124,.14); }
.hero-copy p { max-width: 660px; font-size: clamp(1.18rem, 2vw, 1.42rem); margin: 1.35rem 0 1.8rem; }
.hero-title .accent { color: var(--green-dark); position: relative; }
.hero-title .accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: .03em; height: .16em; background: rgba(2,202,124,.18); z-index: -1; border-radius: 999px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.browser-card {
  border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(240,255,247,.78));
  box-shadow: var(--shadow); overflow: hidden; transform: rotate(1.2deg);
}
.browser-bar { display: flex; gap: .45rem; padding: 1rem; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.64); }
.dot { width: 12px; height: 12px; border-radius: 50%; background: #d7e2e7; }
.dot:nth-child(1) { background: #ff6b6b; } .dot:nth-child(2) { background: #ffd166; } .dot:nth-child(3) { background: var(--green); }
.browser-content { padding: 1.2rem; }
.code-window { background: #102030; color: #d9ffe9; border-radius: 22px; padding: 1.25rem; font: 650 1rem/1.7 ui-monospace, SFMono-Regular, Menlo, monospace; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.code-window .comment { color: #89a7b9; } .code-window .green { color: #68ffb3; } .code-window .blue { color: #75ddff; }
.speed-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1rem; }
.speed-pill { border-radius: 20px; padding: .9rem; background: white; border: 1px solid var(--line); }
.stat-value { font-size: 1.45rem; font-weight: 850; color: var(--ink); display: block; }
.speed-pill span:last-child { color: var(--muted); font-weight: 700; font-size: .88rem; }

.logo-cloud { padding: 1rem 0 4rem; }
.cloud-shell { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; justify-content: center; color: #496273; }
.cloud-pill { padding: .75rem 1rem; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid var(--line); font-weight: 700; }
.section { padding: 5.5rem 0; }
.section-tight { padding: 3.2rem 0; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card, .story-card, .cta-card, .post-list-card, .contact-aside, .team-card, .case-study-facts {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; box-shadow: 0 14px 38px rgba(25, 40, 57, .07); backdrop-filter: blur(12px);
}
.icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, var(--mint), white); color: #027348; font-weight: 900; margin-bottom: 1rem;
}
.story { background: linear-gradient(135deg, #132335, #203951); color: white; border-radius: 42px; padding: clamp(1.4rem, 4vw, 3.5rem); overflow: hidden; position: relative; }
.story::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; right: -90px; top: -110px; background: rgba(2,202,124,.26); filter: blur(8px); }
.story p, .story-card p { color: rgba(255,255,255,.72); }
.story h2 { color: white; max-width: 720px; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; position: relative; z-index: 1; }
.story-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.story-card h3 { color: white; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: center; }
.checklist { display: grid; gap: .8rem; }
.check { display: flex; gap: .75rem; padding: 1rem; border-radius: 20px; background: rgba(255,255,255,.74); border: 1px solid var(--line); font-weight: 700; color: #2a4052; }
.check::before { content: "+"; display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #052015; font-weight: 900; }
.cta-card { text-align: center; padding: clamp(2rem, 5vw, 4.5rem); background: linear-gradient(135deg, #e9fff2, #ffffff 54%, #eaf8ff); }
.cta-card p { max-width: 660px; margin: 0 auto 1.4rem; }

.page-hero { padding: 6.5rem 0 3rem; }
.compact-hero { padding-bottom: 2rem; }
.page-hero p { max-width: 720px; font-size: 1.25rem; margin-top: 1rem; }
.content { color: var(--ink-2); }
.content > * + * { margin-top: 1rem; }
.content h2 { margin-top: 2.4rem; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.content h3 { margin-top: 1.8rem; }
.content p, .content li { color: var(--muted); font-size: 1.1rem; }
.content a { color: #027348; font-weight: 800; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.content ul, .content ol { padding-left: 1.25rem; }
.content blockquote { margin: 1.5rem 0; padding: 1rem 1.2rem; border-left: 4px solid var(--green); background: rgba(255,255,255,.72); border-radius: 0 16px 16px 0; }
.marketing-content { border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.62); padding: clamp(1.2rem, 3vw, 2rem); }
.docs-content { display: grid; gap: .2rem; }
.blank-page { padding: 7rem 0; }

.post-list { display: grid; gap: 1rem; padding-bottom: 5rem; }
.post-list-card h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
.post-card-grid { align-items: stretch; }
.post-card-meta { display: flex; flex-wrap: wrap; gap: .45rem .9rem; margin: .8rem 0 1rem; color: var(--muted); font-size: .9rem; font-weight: 750; }
.post-card-meta a { color: #027348; }
.contact-grid, .case-study-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 2rem; align-items: start; padding-bottom: 5rem; }
.contact-aside, .case-study-facts { position: sticky; top: 120px; }
.case-study-facts { display: grid; gap: .35rem; }
.case-study-facts strong { color: var(--ink); margin-top: .7rem; }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.team-card { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 1.2rem; align-items: center; }
.team-card img { width: 120px; height: 120px; object-fit: cover; border-radius: 24px; background: white; }
.team-card .codex-avatar { object-fit: contain; padding: 16px; }
.author-header { display: flex; gap: 1.2rem; align-items: center; }
.author-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.author-socials { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; }

.golive-form { display: grid; gap: 1rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.78); }
.golive-form label { display: grid; gap: .35rem; font-weight: 800; color: var(--ink); }
.golive-form input, .golive-form textarea, .golive-form select,
.golive-comment-form input, .golive-comment-form textarea {
  width: 100%; padding: .82rem .95rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); font: inherit;
}
.golive-form textarea, .golive-comment-form textarea { min-height: 140px; resize: vertical; }
.golive-form button, .golive-comment-form button[type="submit"], .golive-comment-load-more, .golive-comment-reply {
  justify-self: start; border: 0; border-radius: 999px; padding: .78rem 1.1rem; background: var(--green); color: #052015; font-weight: 850; cursor: pointer;
}
.golive-comments { width: min(820px, calc(100% - 38px)); margin: 4rem auto; padding-top: 2rem; border-top: 1px solid var(--line); }
.golive-comments h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.golive-comment { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.golive-comment-meta { display: flex; flex-wrap: wrap; gap: .45rem .7rem; align-items: center; color: var(--muted); }
.golive-comment-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.golive-comment-body { margin-top: .65rem; color: var(--ink-2); }
.golive-comment-children { margin-left: 1.3rem; padding-left: 1rem; border-left: 2px solid rgba(2,202,124,.22); }
.golive-comment-actions { margin-top: .75rem; display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.golive-comment-form { display: grid; gap: .9rem; margin-top: 1.4rem; }
.golive-comment-form label { display: grid; gap: .4rem; font-weight: 800; }
.golive-comment-form label.golive-choice, .golive-comment-thread-subscribe { display: flex; align-items: flex-start; gap: .65rem; font-weight: 650; color: var(--muted); }
.golive-comment-form label.golive-choice input, .golive-comment-thread-subscribe input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: .24rem; }
.golive-comment-replying, .golive-commenter-verification, .golive-form-response { padding: .8rem 1rem; border-radius: 14px; background: var(--mint); border: 1px solid rgba(2,202,124,.28); }
.golive-honeypot { position: absolute; left: -9999px; }
.golive-comment-pagination { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.golive-comment-pagination button { border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: .45rem .7rem; }
.golive-comment-pagination button[aria-current="page"] { background: var(--ink); color: #fff; }
.golive-comment-order button { border: 1px solid var(--line); border-radius: 999px; background: #fff; padding: .25rem .6rem; color: var(--ink); font: inherit; font-weight: 800; cursor: pointer; }

.site-footer { padding: 2.2rem 0 3rem; color: var(--muted); }
.footer-shell { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.footer-shell img { width: 110px; display: block; }
.footer-shell nav { display: flex; flex-wrap: wrap; gap: .8rem 1.1rem; justify-content: center; font-weight: 800; color: var(--ink); }
.footer-shell span { text-align: right; }

.gl-video-embed {
  display: grid;
  gap: .7rem;
  margin: 2rem 0;
}
.gl-video-embed-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--ink), #25415a);
  color: #fff;
  padding: 1.4rem;
  text-align: center;
  box-shadow: 0 24px 70px rgba(25, 40, 57, .16);
}
.gl-video-embed[data-gl-video-aspect="4:3"] .gl-video-embed-frame { aspect-ratio: 4 / 3; }
.gl-video-embed[data-gl-video-aspect="1:1"] .gl-video-embed-frame { aspect-ratio: 1; }
.gl-video-embed[data-gl-video-aspect="9:16"] .gl-video-embed-frame { aspect-ratio: 9 / 16; }
.gl-video-embed-frame a {
  color: inherit;
  font-weight: 900;
}
.gl-video-embed figcaption {
  color: var(--muted);
  font-size: .94rem;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
  margin: 2rem 0;
}
.logo-cloud span {
  display: inline-flex;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  color: var(--muted);
  font-family: var(--font-heading);
  font-weight: 900;
  padding: .85rem 1.15rem;
  box-shadow: 0 14px 40px rgba(25, 40, 57, .08);
}
.logo-cloud img {
  display: block;
  max-width: 170px;
  max-height: 42px;
  object-fit: contain;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.pricing-card {
  display: grid;
  gap: .85rem;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 38px rgba(25, 40, 57, .08);
  padding: 1.35rem;
}
.pricing-card h3,
.pricing-card p {
  margin: 0;
}
.pricing-card .price {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 950;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.process-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 38px rgba(25, 40, 57, .08);
  padding: 1.35rem;
}
.process-step .step {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 950;
  margin-bottom: 1rem;
}
.process-step h3,
.process-step p {
  margin: 0 0 .65rem;
}
.faq-list {
  display: grid;
  gap: .85rem;
  margin: 2rem 0;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 30px rgba(25, 40, 57, .06);
  padding: 1.1rem 1.2rem;
}
.faq-item summary {
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 900;
}
.faq-item p {
  color: var(--muted);
  margin: .8rem 0 0;
}

[data-gl-responsive-type] {
  font-size: var(--gl-font-size, inherit);
  line-height: var(--gl-line-height, normal);
  font-weight: var(--gl-font-weight, inherit);
}

@media (max-width: 920px) {
  [data-gl-responsive-type] {
    font-size: var(--gl-tablet-font-size, var(--gl-font-size, inherit));
    line-height: var(--gl-tablet-line-height, var(--gl-line-height, normal));
    font-weight: var(--gl-tablet-font-weight, var(--gl-font-weight, inherit));
  }
  [data-gl-tablet-columns="1"] { grid-template-columns: 1fr !important; }
  [data-gl-tablet-columns="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  [data-gl-tablet-columns="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  [data-gl-tablet-columns="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  [data-gl-tablet-span="1"] { grid-column: span 1 !important; }
  [data-gl-tablet-span="2"] { grid-column: span 2 !important; }
  [data-gl-tablet-span="3"] { grid-column: span 3 !important; }
  [data-gl-tablet-span="4"] { grid-column: span 4 !important; }
  [data-gl-tablet-order="-3"] { order: -3 !important; }
  [data-gl-tablet-order="-2"] { order: -2 !important; }
  [data-gl-tablet-order="-1"] { order: -1 !important; }
  [data-gl-tablet-order="0"] { order: 0 !important; }
  [data-gl-tablet-order="1"] { order: 1 !important; }
  [data-gl-tablet-order="2"] { order: 2 !important; }
  [data-gl-tablet-order="3"] { order: 3 !important; }
  [data-gl-tablet-order="4"] { order: 4 !important; }
  [data-gl-tablet-order="5"] { order: 5 !important; }
  [data-gl-tablet-order="6"] { order: 6 !important; }
  [data-gl-tablet-spacing="tight"] { padding-block: 1.5rem !important; }
  [data-gl-tablet-spacing="normal"] { padding-block: 3rem !important; }
  [data-gl-tablet-spacing="loose"] { padding-block: 5rem !important; }
  [data-gl-tablet-gap="none"] { gap: 0 !important; }
  [data-gl-tablet-gap="tight"] { gap: .75rem !important; }
  [data-gl-tablet-gap="normal"] { gap: 1.25rem !important; }
  [data-gl-tablet-gap="loose"] { gap: 2rem !important; }
  [data-gl-tablet-align="left"] { text-align: left !important; }
  [data-gl-tablet-align="center"] { text-align: center !important; }
  [data-gl-tablet-align="right"] { text-align: right !important; }
  [data-gl-tablet-padding-top] { padding-top: var(--gl-tablet-padding-top) !important; }
  [data-gl-tablet-padding-bottom] { padding-bottom: var(--gl-tablet-padding-bottom) !important; }
  [data-gl-tablet-margin-top] { margin-top: var(--gl-tablet-margin-top) !important; }
  [data-gl-tablet-margin-bottom] { margin-bottom: var(--gl-tablet-margin-bottom) !important; }
  [data-gl-responsive-spacer] { height: var(--gl-tablet-spacer-height, inherit) !important; }
  [data-gl-visibility="desktop-only"] { display: none !important; }
  .nav-toggle { display: inline-block; }
  .nav-shell { border-radius: 28px; flex-wrap: wrap; }
  .nav-links { display: none; order: 4; width: 100%; padding: .5rem 0 .2rem; }
  .nav-links.is-open { display: grid; gap: .2rem; }
  .nav-item > a, .nav-links > a { padding: .75rem .4rem; }
  .subnav { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; margin: 0 0 .4rem 1rem; }
  .hero { padding-top: 4.8rem; }
  .hero-grid, .split, .contact-grid, .case-study-layout { grid-template-columns: 1fr; }
  .browser-card { transform: none; }
  .card-grid, .story-grid, .team-grid { grid-template-columns: 1fr; }
  .contact-aside, .case-study-facts { position: static; }
  .footer-shell { grid-template-columns: 1fr; justify-items: start; }
  .footer-shell nav { justify-content: start; }
  .footer-shell span { text-align: left; }
}

@media (max-width: 560px) {
  [data-gl-responsive-type] {
    font-size: var(--gl-mobile-font-size, var(--gl-tablet-font-size, var(--gl-font-size, inherit)));
    line-height: var(--gl-mobile-line-height, var(--gl-tablet-line-height, var(--gl-line-height, normal)));
    font-weight: var(--gl-mobile-font-weight, var(--gl-tablet-font-weight, var(--gl-font-weight, inherit)));
  }
  [data-gl-mobile-columns="1"] { grid-template-columns: 1fr !important; }
  [data-gl-mobile-columns="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  [data-gl-mobile-span="1"] { grid-column: span 1 !important; }
  [data-gl-mobile-span="2"] { grid-column: span 2 !important; }
  [data-gl-mobile-order="-3"] { order: -3 !important; }
  [data-gl-mobile-order="-2"] { order: -2 !important; }
  [data-gl-mobile-order="-1"] { order: -1 !important; }
  [data-gl-mobile-order="0"] { order: 0 !important; }
  [data-gl-mobile-order="1"] { order: 1 !important; }
  [data-gl-mobile-order="2"] { order: 2 !important; }
  [data-gl-mobile-order="3"] { order: 3 !important; }
  [data-gl-mobile-order="4"] { order: 4 !important; }
  [data-gl-mobile-order="5"] { order: 5 !important; }
  [data-gl-mobile-order="6"] { order: 6 !important; }
  [data-gl-mobile-spacing="tight"] { padding-block: 1.25rem !important; }
  [data-gl-mobile-spacing="normal"] { padding-block: 2.25rem !important; }
  [data-gl-mobile-spacing="loose"] { padding-block: 3.5rem !important; }
  [data-gl-mobile-gap="none"] { gap: 0 !important; }
  [data-gl-mobile-gap="tight"] { gap: .65rem !important; }
  [data-gl-mobile-gap="normal"] { gap: 1rem !important; }
  [data-gl-mobile-gap="loose"] { gap: 1.5rem !important; }
  [data-gl-mobile-align="left"] { text-align: left !important; }
  [data-gl-mobile-align="center"] { text-align: center !important; }
  [data-gl-mobile-align="right"] { text-align: right !important; }
  [data-gl-mobile-padding-top] { padding-top: var(--gl-mobile-padding-top) !important; }
  [data-gl-mobile-padding-bottom] { padding-bottom: var(--gl-mobile-padding-bottom) !important; }
  [data-gl-mobile-margin-top] { margin-top: var(--gl-mobile-margin-top) !important; }
  [data-gl-mobile-margin-bottom] { margin-bottom: var(--gl-mobile-margin-bottom) !important; }
  [data-gl-responsive-spacer] { height: var(--gl-mobile-spacer-height, var(--gl-tablet-spacer-height, inherit)) !important; }
  [data-gl-visibility="tablet-up"] { display: none !important; }
  .container, .container.narrow { width: min(100% - 28px, 1160px); }
  .nav-actions .button-ghost { display: none; }
  .logo img { width: 112px; }
  h1 { font-size: clamp(2.5rem, 14vw, 4.2rem); }
  .hero-actions, .button { width: 100%; }
  .speed-strip { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .team-card img { width: 96px; height: 96px; }
  .golive-comment-children { margin-left: .35rem; padding-left: .65rem; }
  .golive-comment-actions { display: grid; align-items: stretch; }
  .golive-comment-thread-subscribe { width: calc(100% - 72px); max-width: 100%; line-height: 1.35; }
  .golive-comment-order { display: grid; gap: .45rem; align-items: start; }
  .golive-comment-order button { justify-self: start; }
}

@media (min-width: 561px) {
  [data-gl-visibility="mobile-only"] { display: none !important; }
}
