
:root {
  --green: #0b815f;
  --green-dark: #10513f;
  --green-deep: #092d2d;
  --ink: #080f1e;
  --muted: #536174;
  --soft: #f3f7fb;
  --cream: #f1eee7;
  --line: #dfe7f0;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(8, 15, 30, .12);
  --radius-lg: 44px;
  --radius-md: 26px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

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

a {
  color: inherit;
}

.site-header {
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding-inline: max(28px, calc((100vw - 1280px) / 2));
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  border-bottom: 1px solid rgba(8, 15, 30, .09);
  box-shadow: 0 14px 36px rgba(8, 15, 30, .055);
  position: sticky;
  top: 0;
  z-index: 50;
}


@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, .96);
  }
}


.brand {
  display: inline-flex;
  gap: .72rem;
  align-items: center;
  font-weight: 950;
  text-decoration: none;
  letter-spacing: -.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  font-weight: 950;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.3vw, 2.8rem);
}

.nav-item {
  position: relative;
  z-index: 2;
}

.nav-trigger {
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
}

.nav-item.nav-open > .nav-trigger {
  color: var(--green);
}

.nav-item.nav-open > .nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.35rem;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}

.nav-trigger,
.nav-link {
  position: relative;
  display: block;
  padding: 2.1rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
}

.nav-item.is-active .nav-trigger,
.nav-link.is-active {
  color: var(--green);
}

.nav-item.is-active .nav-trigger::after,
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.35rem;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - .35rem);
  width: min(820px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .2s ease;
  z-index: 60;
}

.nav-item.nav-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 2rem;
}

.mega-menu-inner p {
  grid-column: 1 / -1;
  margin: 0 0 .5rem;
  color: var(--green);
  font-size: .95rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mega-menu-inner a {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  font-weight: 850;
}

.mega-menu-inner a:hover {
  border-color: var(--green);
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.text-link {
  font-weight: 780;
  text-decoration: none;
}

.pill-button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 1.55rem;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.pill-button.small {
  min-height: 48px;
  padding-inline: 1.3rem;
}

.pill-button.light {
  color: var(--green-dark);
  border-color: var(--cream);
  background: var(--cream);
}

.pill-button.ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}

.pill-button.outline {
  color: var(--green);
  background: transparent;
}

.pill-button.full {
  width: 100%;
}

.mobile-menu-button {
  display: none;
}

.hero-shell {
  padding: 1.25rem 1.75rem 2.4rem;
}

.hero-card {
  width: min(1260px, calc(100% - 80px));
  min-height: 565px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 60px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 120%, rgba(255,255,255,.16), transparent 34rem),
    linear-gradient(180deg, #15513f 0%, #087755 100%);
}

.hero-copy {
  width: min(920px, calc(100% - 64px));
  margin: 0 auto;
  padding: 3.2rem 0 0;
  text-align: center;
  position: relative;
  z-index: 4;
}

.hero-copy h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.65rem, 3.85vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.hero-copy p {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

.button-row.centered {
  justify-content: center;
  margin-top: 1.45rem;
  margin-bottom: 1.9rem;
  position: relative;
  z-index: 8;
}

.hero-screens {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: min(940px, 78%);
  height: 160px;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-screen {
  position: absolute;
  bottom: 0;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  object-fit: cover;
  object-position: top left;
  opacity: .96;
}

.screen-left {
  left: 0;
  width: 34%;
  height: 112px;
}

.screen-centre {
  left: 30%;
  width: 40%;
  height: 155px;
  z-index: 2;
}

.screen-right {
  right: 0;
  width: 34%;
  height: 112px;
}

.role-strip {
  padding: 3rem 0 3.6rem;
  overflow: hidden;
  background: var(--cream);
}

.role-strip h2 {
  margin: 0 1rem 2.1rem;
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.role-marquee {
  overflow: hidden;
}

.role-track {
  display: flex;
  width: max-content;
  gap: 4.8rem;
  animation: marquee 110s linear infinite;
}

.role-track span {
  color: rgba(8, 15, 30, .72);
  font-size: clamp(1.45rem, 2.5vw, 2.65rem);
  font-weight: 950;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  width: min(1540px, calc(100% - 72px));
  margin: 0 auto;
  padding: 6.2rem 0;
}

.role-strip + .section {
  width: 100%;
  padding: 6.8rem clamp(2rem, 7vw, 8rem);
  background:
    radial-gradient(circle at 10% 10%, rgba(11,129,95,.10), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f2f8f8 100%);
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .72fr);
  gap: 4rem;
  align-items: end;
}

.section-label {
  margin: 0 0 1.15rem;
  color: var(--green);
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.light-label {
  color: #a7fff1;
}

.section-heading h2,
.video-copy h2,
.positioning-section h2,
.route-card h2,
.management-panel h2 {
  margin: 0;
  font-size: clamp(3rem, 5.75vw, 6rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.section-heading > p,
.section-heading.split > p,
.video-copy p,
.positioning-section p,
.route-card p,
.page-hero p,
.comparison-panel p,
.management-panel p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.feature-card,
.tab-panel article,
.output-grid article,
.price-card,
.three-grid article,
.method-grid article,
.management-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.feature-card {
  min-height: 500px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.feature-card.tint-blue { background: linear-gradient(180deg, #fff 0%, #f0f6fb 100%); }
.feature-card.tint-green { background: linear-gradient(180deg, #fff 0%, #edf8f4 100%); }
.feature-card.tint-cream { background: linear-gradient(180deg, #fff 0%, #f7f2ea 100%); }

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  height: 215px;
  margin-bottom: 1.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
  background: #f2f6fa;
  padding: .65rem;
}

.feature-card h3,
.tab-panel h3,
.output-grid h3,
.price-card h2,
.three-grid h3,
.method-grid h3,
.comparison-panel h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.feature-card p,
.tab-panel p,
.output-grid p,
.price-card p,
.price-card li,
.three-grid p,
.method-grid p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.feature-card a,
.tab-panel a {
  margin-top: auto;
  color: var(--green);
  font-weight: 950;
  text-decoration: none;
}

.use-section {
  width: 100%;
  padding-left: clamp(2rem, 6vw, 7rem);
  padding-right: clamp(2rem, 6vw, 7rem);
}

.tab-nav {
  display: flex;
  gap: 1.4rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.4rem;
  overflow-x: auto;
}

.tab-nav button {
  padding: 0 0 1rem;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: rgba(8,15,30,.66);
  font-size: 1.1rem;
  font-weight: 950;
  cursor: pointer;
}

.tab-nav button.active {
  color: var(--ink);
  border-color: var(--green);
}

.tab-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.tab-panel.active {
  display: grid;
}

.tab-panel article {
  min-height: 300px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.video-block {
  width: min(1540px, calc(100% - 72px));
  margin: 3rem auto 5rem;
  padding: clamp(2rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.video-placeholder {
  min-height: 395px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 82%, rgba(255,255,255,.18), transparent 14rem),
    repeating-linear-gradient(0deg, rgba(255,255,255,.12) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.1) 0 1px, transparent 1px 36px),
    linear-gradient(180deg, #10513f, #087755);
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  min-height: 395px;
  object-fit: cover;
  display: none;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
}

.play-symbol {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(5, 11, 18, .3);
  font-size: 3rem;
}

.video-fallback p {
  position: absolute;
  bottom: 2rem;
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 950;
}

.positioning-section {
  width: min(1540px, calc(100% - 72px));
  margin: 0 auto 5rem;
  padding: 5rem;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), #07111e);
}

.positioning-section .section-label {
  color: #a7fff1;
}

.positioning-section p {
  color: rgba(255,255,255,.78);
}

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}

.positioning-grid article {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
}

.positioning-grid article.highlight {
  background: rgba(11,129,95,.42);
  border-color: rgba(167,255,241,.4);
}

.positioning-grid span {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 950;
  margin-bottom: .8rem;
}

.page-hero {
  width: min(1540px, calc(100% - 72px));
  margin: 2rem auto 0;
  padding: 5.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eff8f7, #fff);
}

.page-hero.dark {
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(8, 129, 95, .55), transparent 28rem),
    linear-gradient(135deg, #07111e, #0b2f3a);
}

.page-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(3.4rem, 6.1vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.page-hero p:not(.section-label) {
  max-width: 770px;
}

.page-hero.dark p:not(.section-label) {
  color: rgba(255,255,255,.78);
}

.route-card.large,
.comparison-panel,
.image-text-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 70px rgba(8, 15, 30, .08);
}

.route-card.reversed > div,
.image-text-grid.reversed > img {
  order: 2;
}

.route-card img,
.comparison-panel img,
.image-text-grid img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top left;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.route-card ul {
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.output-grid article {
  padding: 2rem;
}

.output-grid img {
  width: 100%;
  height: 330px;
  margin-bottom: 1.7rem;
  object-fit: cover;
  object-position: top left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.method-grid.expanded {
  grid-template-columns: repeat(4, 1fr);
}

.method-grid article {
  padding: 2.2rem;
}

.pricing-section {
  padding-top: 4rem;
}

.billing-toggle {
  display: inline-flex;
  padding: .35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 2rem;
  background: #fff;
}

.billing-toggle button {
  min-height: 42px;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-weight: 950;
  cursor: pointer;
}

.billing-toggle button.active {
  color: #fff;
  background: var(--ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.price-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.price {
  margin: .5rem 0 1rem;
  font-size: clamp(2.3rem, 3.2vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -.05em;
}

.price span {
  font-size: 1rem;
  letter-spacing: 0;
}

.price-card ul {
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.price-card .pill-button {
  margin-top: auto;
}

body:not(.show-annual) .annual-price {
  display: none;
}

body.show-annual .monthly-price {
  display: none;
}

.management-panel {
  padding: 3rem;
  max-width: 900px;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: start;
}

.side-note h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.side-note p,
.side-note li {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.request-list {
  display: grid;
  gap: .8rem;
  margin-top: 1.5rem;
}

.request-list span {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: .4rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  font-size: 2.4rem;
}

.legal-copy p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.talk-band {
  padding: 5rem clamp(2rem, 8vw, 12rem);
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(320px, 1fr);
  gap: 4rem;
  align-items: center;
  background: var(--cream);
}

.talk-band h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.talk-band p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.62;
}

.talk-visual {
  min-height: 310px;
  position: relative;
  overflow: hidden;
}

.talk-visual span {
  position: absolute;
  bottom: 0;
  width: 110px;
  height: 230px;
  background: linear-gradient(180deg, #c9e5df, #0b815f);
  border-radius: 999px 999px 20px 20px;
  box-shadow: 0 18px 50px rgba(8,15,30,.14);
}

.talk-visual span::before {
  content: "";
  position: absolute;
  top: -64px;
  left: 20px;
  width: 70px;
  height: 70px;
  background: #ead2be;
  border-radius: 999px;
}

.talk-visual span:nth-child(1) { left: 3%; height: 205px; }
.talk-visual span:nth-child(2) { left: 19%; height: 255px; background: linear-gradient(180deg, #d9edf7, #245f76); }
.talk-visual span:nth-child(3) { left: 36%; height: 280px; background: linear-gradient(180deg, #eee7dd, #1b2738); }
.talk-visual span:nth-child(4) { left: 53%; height: 240px; background: linear-gradient(180deg, #d9efe7, #167655); }
.talk-visual span:nth-child(5) { left: 69%; height: 260px; background: linear-gradient(180deg, #f2e0c8, #6a4c2f); }

.site-footer {
  padding: 5rem clamp(2rem, 7vw, 8rem) 2rem;
  color: rgba(255,255,255,.68);
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 3rem;
}

.footer-brand {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-intro p {
  max-width: 360px;
  color: rgba(255,255,255,.58);
  line-height: 1.6;
}

.site-footer h3 {
  margin: 0 0 1.4rem;
  color: #fff;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 0 0 1rem;
  color: rgba(255,255,255,.64);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .role-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    width: 100%;
    padding-inline: 20px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: .8rem;
  }

  .header-actions {
    justify-self: end;
  }

  .feature-grid,
  .tab-panel,
  .method-grid,
  .method-grid.expanded,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .section-heading.split,
  .video-block,
  .talk-band,
  .route-card.large,
  .comparison-panel,
  .image-text-grid,
  .form-section {
    grid-template-columns: 1fr;
  }

  .route-card.reversed > div,
  .image-text-grid.reversed > img {
    order: initial;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: unset;
    padding: 1rem 16px;
    gap: 1rem;
  }

  .header-actions .pill-button {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    justify-self: end;
    min-height: 40px;
    align-items: center;
    padding: 0 .9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-weight: 850;
  }

  body.mobile-nav-open .main-nav {
    display: grid;
  }

  .mega-menu {
    display: none;
  }

  .nav-item.nav-open > .mega-menu {
    display: block;
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: .45rem;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: .7rem;
  }

  .nav-trigger,
  .nav-link {
    padding: .65rem 0;
  }

  .nav-item {
    width: 100%;
  }

  .hero-shell {
    padding: .75rem .75rem 3rem;
  }

  .hero-card {
    width: 100%;
    min-height: 610px;
    border-radius: 38px;
  }

  .hero-copy {
    width: calc(100% - 40px);
    padding-top: 4.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-screens {
    width: 105%;
    height: 245px;
  }

  .screen-left,
  .screen-right {
    display: none;
  }

  .screen-centre {
    left: 50%;
    transform: translateX(-50%);
    width: 86%;
    height: 230px;
  }

  .section,
  .page-hero,
  .video-block,
  .positioning-section {
    width: calc(100% - 28px);
  }

  .page-hero,
  .positioning-section {
    padding: 2.2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .feature-grid,
  .tab-panel,
  .method-grid,
  .method-grid.expanded,
  .pricing-grid,
  .output-grid,
  .footer-grid,
  .three-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: unset;
  }

  .feature-card img,
  .output-grid img {
    height: 240px;
  }

  .use-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .video-block {
    padding: 1rem;
  }

  .talk-band {
    padding: 3.5rem 1rem;
  }
}


.why-heading {
  max-width: 1180px;
}

.why-heading h2 {
  max-width: 1080px;
}



/* v26 global desktop scale correction */
@media (min-width: 900px) {
  .site-header {
    width: 100%;
    min-height: 70px;
    padding-inline: max(28px, calc((100vw - 1280px) / 2));
  }

  .nav-trigger,
  .nav-link {
    padding: 1.45rem 0;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .pill-button,
  .btn {
    min-height: 42px;
    padding: .66rem 1.18rem;
    font-size: .95rem;
  }

  .pill-button.small {
    min-height: 42px;
    padding: .66rem 1.22rem;
  }

  .hero-shell {
    padding: 1.35rem 1.25rem 2.2rem;
  }

  .hero-card {
    width: min(1120px, calc(100% - 96px));
    min-height: 520px;
    border-radius: 46px;
  }

  .hero-copy {
    width: min(820px, calc(100% - 64px));
    padding-top: 3rem;
  }

  .hero-copy h1 {
    max-width: 790px;
    font-size: clamp(2.5rem, 3.45vw, 3.75rem);
    line-height: 1.04;
    letter-spacing: -.055em;
  }

  .hero-copy p {
    max-width: 610px;
    margin-top: .95rem;
    font-size: clamp(.94rem, 1vw, 1.05rem);
    line-height: 1.45;
  }

  .button-row.centered {
    margin-top: 1.35rem;
    margin-bottom: 0;
  }

  .hero-screens {
    width: min(790px, 74%);
    height: 132px;
    bottom: -14px;
  }

  .screen-left,
  .screen-right {
    height: 96px;
  }

  .screen-centre {
    height: 128px;
  }

  .role-strip {
    padding: 2.6rem 0 2.2rem;
  }

  .role-strip h2 {
    font-size: clamp(1.65rem, 2.3vw, 2.35rem);
    margin-bottom: 1.45rem;
  }

  .role-track {
    gap: 4.8rem;
  }

  .role-track span {
    font-size: clamp(1.35rem, 2vw, 2.1rem);
  }

  .stat-band {
    padding: 3.2rem 2rem;
  }

  .stat-grid strong {
    font-size: clamp(1.9rem, 3vw, 3.2rem);
  }

  .section,
  .use-section,
  .positioning-section,
  .video-block,
  .talk-band {
    width: min(1200px, calc(100% - 72px));
  }

  .section {
    padding: 5.4rem 0;
  }

  .section-label {
    font-size: clamp(.92rem, 1vw, 1.05rem);
    letter-spacing: .22em;
    margin-bottom: .85rem;
  }

  .section-heading {
    margin-bottom: 2.4rem;
  }

  .section-heading h2,
  .video-copy h2,
  .positioning-section h2,
  .route-card h2,
  .management-panel h2,
  .page-hero h1 {
    font-size: clamp(2.35rem, 3.85vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: -.055em;
  }

  .section-heading > p,
  .section-heading.split > p,
  .video-copy p,
  .positioning-section p,
  .route-card p,
  .page-hero p,
  .comparison-panel p,
  .management-panel p {
    font-size: clamp(.98rem, 1.1vw, 1.08rem);
    line-height: 1.55;
  }

  .feature-grid {
    gap: 1.25rem;
  }

  .feature-card {
    min-height: 405px;
    padding: 1.45rem;
    border-radius: 22px;
  }

  .feature-card img {
    height: 165px;
    margin-bottom: 1.3rem;
    padding: .45rem;
  }

  .feature-card h3,
  .tab-panel h3,
  .output-grid h3,
  .price-card h2,
  .three-grid h3,
  .method-grid h3,
  .comparison-panel h3 {
    font-size: clamp(1.25rem, 1.55vw, 1.55rem);
    margin-bottom: .75rem;
  }

  .feature-card p,
  .tab-panel p,
  .output-grid p,
  .price-card p,
  .three-grid p,
  .method-grid p {
    font-size: clamp(.95rem, 1.02vw, 1.02rem);
    line-height: 1.52;
  }

  .feature-card a,
  .tab-panel a {
    font-size: .95rem;
  }

  .tabs {
    margin-top: 1.6rem;
  }

  .tab-panel {
    gap: 1.25rem;
  }

  .tab-panel article {
    min-height: 215px;
    padding: 1.7rem;
    border-radius: 22px;
  }

  .video-block {
    min-height: auto;
    padding: 3.8rem 3.4rem;
    border-radius: 42px;
    grid-template-columns: .92fr 1fr;
    gap: 3rem;
  }

  .video-placeholder {
    min-height: 320px;
  }

  .video-copy h2 {
    font-size: clamp(2.5rem, 4vw, 4.2rem);
  }

  .positioning-section {
    padding: 4.5rem 3.4rem;
    border-radius: 42px;
  }

  .positioning-section h2 {
    max-width: 980px;
    font-size: clamp(2.65rem, 4.2vw, 4.7rem);
  }

  .positioning-grid {
    gap: 1.25rem;
    margin-top: 2.4rem;
  }

  .positioning-grid article {
    min-height: 175px;
    padding: 1.55rem;
    border-radius: 22px;
  }

  .positioning-grid span {
    font-size: 1.22rem;
  }

  .positioning-grid p {
    font-size: 1rem;
  }

  .talk-band {
    padding: 3rem 4rem;
    grid-template-columns: .8fr 1fr;
    gap: 3rem;
  }

  .talk-band h2 {
    font-size: clamp(2.4rem, 3.7vw, 4rem);
  }

  .footer-grid {
    width: min(1200px, calc(100% - 72px));
  }
}

@media (min-width: 1300px) {
  .hero-card {
    width: min(1160px, calc(100% - 128px));
  }
}


/* v27 marquee and talk band correction */
@media (min-width: 900px) {
  .role-strip {
    padding: 2.15rem 0 2rem;
  }

  .role-strip h2 {
    font-size: clamp(1.55rem, 1.9vw, 2rem);
    margin-bottom: 1.25rem;
  }

  .role-track {
    gap: 3.2rem;
    animation-duration: 170s;
  }

  .role-track span {
    font-size: clamp(1.05rem, 1.35vw, 1.45rem);
    letter-spacing: -.025em;
  }

  .talk-band {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 3.2rem max(4rem, calc((100vw - 1180px) / 2));
    grid-template-columns: minmax(280px, .7fr) minmax(420px, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    justify-content: center;
  }

  .talk-visual {
    min-height: 270px;
    max-width: 470px;
    width: 100%;
    justify-self: center;
  }

  .talk-visual span {
    width: 86px;
    height: 200px;
  }

  .talk-visual span::before {
    top: -52px;
    left: 16px;
    width: 56px;
    height: 56px;
  }

  .talk-visual span:nth-child(1) { height: 176px; }
  .talk-visual span:nth-child(2) { height: 220px; }
  .talk-visual span:nth-child(3) { height: 242px; }
  .talk-visual span:nth-child(4) { height: 210px; }
  .talk-visual span:nth-child(5) { height: 225px; }

  .talk-band h2 {
    font-size: clamp(2.15rem, 3vw, 3.25rem);
  }

  .talk-band p {
    max-width: 620px;
    font-size: 1.02rem;
  }
}

@media (max-width: 899px) {
  .talk-band {
    width: 100%;
    margin: 0;
  }
}


/* v29 feature tile image correction */
.feature-card img {
  object-fit: contain;
  object-position: center;
  padding: .85rem;
}

@media (min-width: 900px) {
  .feature-card img {
    height: 195px;
  }
}


/* v31 checked dashboard asset correction */
.feature-card img {
  object-fit: contain;
  object-position: center;
  padding: .75rem;
}

@media (min-width: 900px) {
  .feature-card img {
    height: 205px;
  }
}


/* v32 final clean tile asset correction */
.feature-card img {
  object-fit: contain;
  object-position: center;
  padding: .65rem;
}

@media (min-width: 900px) {
  .feature-card img {
    height: 220px;
  }
}


/* v33 canonical PNG sizing */
.feature-card img {
  object-fit: contain;
  object-position: center;
  padding: .7rem;
}

@media (min-width: 900px) {
  .feature-card img {
    height: 220px;
  }
}


/* v34 graphic-only tile assets */
.feature-card img {
  object-fit: contain;
  object-position: center;
  padding: .65rem;
}

@media (min-width: 900px) {
  .feature-card img {
    height: 220px;
  }
}

/* v37 product page optimisation */
.product-page .site-header {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.product-page .product-hero {
  width: min(1200px, calc(100% - 72px));
  margin-top: 2rem;
  padding: clamp(2.4rem, 4.6vw, 4.6rem);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  overflow: hidden;
}

.product-page .product-hero h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4.3vw, 4.55rem);
  line-height: 1.01;
  letter-spacing: -.058em;
}

.product-page .product-hero p:not(.section-label) {
  max-width: 670px;
  margin: 1.15rem 0 0;
  color: rgba(255,255,255,.82);
}

.product-page .product-hero-actions {
  margin-top: 1.8rem;
}

.product-hero-visual {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.product-hero-visual img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.product-hero-main {
  min-height: 250px;
  padding: .55rem;
}

.product-hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-hero-mini-grid img {
  height: 145px;
  padding: .45rem;
}

.product-summary {
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}

.product-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.product-summary-grid article,
.product-route-card,
.product-output-grid article,
.product-certificate-panel,
.product-method-grid article {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(8,15,30,.06);
}

.product-summary-grid article {
  padding: 1.7rem;
}

.product-summary-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 950;
}

.product-summary-grid h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.product-summary-grid p,
.product-route-card li,
.product-output-grid p,
.product-certificate-panel li,
.product-method-grid p {
  color: var(--muted);
  font-size: clamp(.96rem, 1.03vw, 1.03rem);
  line-height: 1.55;
}

.product-routes {
  padding-top: 4rem;
}

.product-section-heading h2 {
  max-width: 920px;
}

.product-section-heading.stacked-heading {
  display: block;
  max-width: 980px;
}

.product-section-heading.stacked-heading h2 {
  margin-bottom: 1.1rem;
}

.product-section-heading.stacked-heading > p:not(.section-label) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.28vw, 1.28rem);
  line-height: 1.55;
}

.product-route-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: 1.4rem;
  padding: clamp(1.6rem, 3vw, 3rem);
  scroll-margin-top: 92px;
}

.product-route-card.reversed {
  grid-template-columns: minmax(360px, 1fr) minmax(320px, .9fr);
}

.product-route-card.reversed .product-route-copy {
  order: 2;
}

.product-route-copy h3 {
  margin: 0;
  font-size: clamp(2.15rem, 3.6vw, 3.9rem);
  line-height: 1.01;
  letter-spacing: -.055em;
}

.product-route-copy p:not(.section-label) {
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.58;
}

.product-route-copy ul,
.product-certificate-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.product-route-copy li + li,
.product-certificate-panel li + li {
  margin-top: .45rem;
}

.product-route-figure {
  margin: 0;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #f6f9fc, #fff);
}

.product-route-figure img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f2f5f9;
}

.product-route-figure.compact-figure img {
  max-height: 350px;
  background: #fff;
}

.building-workflow-figure img {
  max-height: 360px;
  background: #f2f5f9;
}

.product-route-figure.composite-figure {
  padding: 1rem;
}

.workflow-composite {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
  align-items: stretch;
}

.workflow-composite-main,
.workflow-composite-side > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.workflow-composite span {
  padding: .75rem .85rem .45rem;
  color: var(--green);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.workflow-composite img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  object-fit: contain;
}

.workflow-composite-main img {
  height: 178px;
  padding: .55rem;
}

.workflow-composite-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.workflow-composite-side img {
  height: 150px;
  padding: .45rem;
}

.anchor-offset {
  display: block;
  height: 1px;
  margin-top: -1px;
  scroll-margin-top: 92px;
}

.product-output-section {
  padding-top: 4.5rem;
}

.product-output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-output-grid article {
  padding: 1.35rem;
  overflow: hidden;
}

.product-output-grid img {
  width: 100%;
  height: 205px;
  margin-bottom: 1.2rem;
  padding: .65rem;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f3f7fb;
}

.product-output-grid h3 {
  margin: 0 0 .55rem;
  font-size: clamp(1.2rem, 1.45vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.product-output-grid p {
  margin: 0;
}

.product-certificate-section {
  padding-top: 2.8rem;
}

.product-certificate-panel {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.8rem, 3vw, 3rem);
  background: linear-gradient(135deg, #ffffff 0%, #f5faf8 100%);
}

.product-certificate-panel h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.6vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.product-certificate-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.6;
}

.product-certificate-panel figure {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(8,15,30,.08);
}

.product-certificate-panel img {
  width: 100%;
  max-height: 370px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f3f7fb;
}

.product-use-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.product-method-grid article {
  padding: 1.8rem;
}

@media (max-width: 1180px) {
  .product-page .product-hero,
  .product-route-card,
  .product-route-card.reversed,
  .product-certificate-panel {
    grid-template-columns: 1fr;
  }

  .product-route-card.reversed .product-route-copy {
    order: initial;
  }

  .product-output-grid,
  .product-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .product-page .product-hero {
    width: calc(100% - 28px);
    padding: 2rem;
  }

  .product-hero-mini-grid,
  .product-output-grid,
  .product-summary-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-main,
  .product-hero-mini-grid img,
  .product-output-grid img {
    height: auto;
    min-height: 0;
  }

  .product-route-card,
  .product-certificate-panel {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .product-route-figure,
  .product-certificate-panel figure {
    padding: .7rem;
  }

  .workflow-composite {
    grid-template-columns: 1fr;
  }

  .workflow-composite-side {
    grid-template-columns: 1fr;
  }
}



/* v42: stable grouped navigation */
.nav-item.nav-open > .nav-trigger::after,
.nav-item.is-active .nav-trigger::after,
.nav-link.is-active::after {
  pointer-events: none;
}

@media (max-width: 760px) {
  .nav-item.nav-open > .nav-trigger::after,
  .nav-item.is-active .nav-trigger::after,
  .nav-link.is-active::after {
    bottom: .25rem;
  }
}

/* Use cases page optimisation */
.use-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 0;
  padding: clamp(3rem, 5vw, 5.25rem);
  background:
    radial-gradient(circle at 86% 20%, rgba(11, 129, 95, .13), transparent 24rem),
    linear-gradient(135deg, #eff8f7, #fff 72%);
}

.use-hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 5.55vw, 6rem);
}

.use-hero-copy > p:not(.section-label) {
  max-width: 760px;
}

.use-hero-actions {
  margin-top: 2rem;
}

.use-hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-output-card {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 60px rgba(8, 15, 30, .08);
}

.hero-output-card img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(223, 231, 240, .9);
  border-radius: 16px;
  background: #f3f7fb;
}

.hero-output-card figcaption {
  margin-top: .85rem;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.02em;
}

.hero-output-main {
  grid-column: 1 / -1;
}

.hero-output-main img {
  height: 210px;
}

.compact-heading {
  margin-bottom: 2.4rem;
}

.compact-heading h2 {
  font-size: clamp(2.7rem, 5vw, 5.25rem);
}

.use-audience-section {
  padding-top: 5rem;
}

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

.audience-card {
  min-height: 270px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f7fbfa);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 129, 95, .42);
  box-shadow: 0 22px 70px rgba(8, 15, 30, .10);
}

.audience-card span,
.research-copy-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.35rem;
  border-radius: 14px;
  color: var(--green);
  background: rgba(11, 129, 95, .10);
  font-weight: 950;
}

.audience-card h3 {
  margin: 0 0 .85rem;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.audience-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.use-case-block {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.use-card {
  min-height: 330px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 50px rgba(8, 15, 30, .045);
  overflow: hidden;
}

.use-card.tint-green { background: linear-gradient(180deg, #fff, #eff8f4); }
.use-card.tint-blue { background: linear-gradient(180deg, #fff, #f0f6fb); }
.use-card.tint-cream { background: linear-gradient(180deg, #fff, #f7f2ea); }

.use-card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.25rem;
  border-radius: 15px;
  color: #fff;
  background: var(--green);
  font-weight: 950;
}

.mini-label {
  margin: auto 0 .75rem;
  color: var(--green) !important;
  font-size: .78rem !important;
  line-height: 1 !important;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 .75rem;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(11, 129, 95, .10);
  font-size: .9rem;
  font-weight: 850;
}

.use-card img {
  width: 100%;
  height: 190px;
  margin-top: auto;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f3f7fb;
  padding: .65rem;
}

.facade-use-panel,
.teaching-panel,
.research-panel {
  box-shadow: 0 20px 75px rgba(8, 15, 30, .07);
}

.facade-composite {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f5f8fb);
}

.facade-composite img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: .55rem;
}

.facade-main-img {
  height: 360px;
}

.facade-mini-grid {
  display: grid;
  gap: 1rem;
}

.facade-mini-grid img {
  height: 172px;
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin: .75rem 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .46rem;
  width: .78rem;
  height: .78rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(11, 129, 95, .11);
}

.research-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff, #f3f8f8);
}

.research-panel > img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: .75rem;
}

.research-copy-grid {
  display: grid;
  gap: 1rem;
}

.research-copy-grid article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.84);
}

.research-copy-grid h3 {
  margin: 0 0 .5rem;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.research-copy-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.teaching-panel > img {
  object-fit: contain;
  object-position: center;
  background: #f3f7fb;
  padding: 1rem;
}

.teaching-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1.4rem;
}

.teaching-mini-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fbfa;
}

.teaching-mini-grid h4 {
  margin: 0 0 .45rem;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.teaching-mini-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .use-hero,
  .research-panel {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facade-composite {
    grid-template-columns: 1fr;
  }

  .facade-mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .facade-main-img,
  .facade-mini-grid img {
    height: auto;
    max-height: 330px;
  }
}

@media (max-width: 760px) {
  .use-hero {
    width: calc(100% - 28px);
    padding: 2.2rem;
  }

  .use-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .use-hero-visual,
  .audience-grid,
  .teaching-mini-grid,
  .facade-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-output-main img,
  .hero-output-card img {
    height: auto;
    max-height: 210px;
  }

  .use-card,
  .research-panel {
    padding: 1.35rem;
  }
}

/* v44 methodology, pricing and legal refinements */
.methodology-hero,
.pricing-hero,
.legal-hero {
  margin-bottom: 4.5rem;
}

.compact-heading {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.compact-heading h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.compact-heading p:not(.section-label) {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-chain {
  padding-top: 1rem;
}

.process-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.process-chain article,
.method-deep-card,
.method-route-card,
.output-method-grid article,
.qa-list,
.contact-price-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(14, 27, 44, .06);
}

.process-chain article {
  padding: 1.45rem;
}

.process-chain span,
.product-summary-grid span {
  color: var(--green);
  font-weight: 950;
  letter-spacing: .12em;
}

.process-chain h3 {
  font-size: 1.25rem;
  margin: .85rem 0 .5rem;
}

.process-chain p,
.method-deep-card p,
.method-route-card p,
.output-method-grid p,
.qa-list li,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.65;
}

.method-card-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.4rem;
}

.method-deep-card {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: grid;
  gap: 1.5rem;
}

.method-deep-card h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin: .7rem 0 1rem;
  line-height: .98;
}

.muted-card {
  background: var(--cream);
}

.check-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: .75rem;
  font-weight: 650;
}

.compact-list {
  font-weight: 600;
}

.method-route-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.method-route-card {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.method-route-card h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: .98;
  margin: .8rem 0 1rem;
}

.method-route-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

.method-route-card > img,
.method-image-stack,
.output-method-grid img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #f7fafc;
}

.method-route-card > img,
.output-method-grid img {
  object-fit: contain;
}

.method-image-stack {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: .8rem;
  padding: .85rem;
}

.method-image-stack img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.method-image-stack img:first-child {
  grid-row: 1 / span 2;
}

.methodology-modules {
  background: var(--cream);
  width: 100%;
  padding: 5rem max(24px, calc((100vw - 1180px) / 2));
}

.compact-feature-grid {
  margin-top: 2rem;
}

.outputs-method-section {
  padding-top: 4rem;
}

.output-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.output-method-grid article {
  padding: 1.25rem;
}

.output-method-grid img {
  height: 170px;
  padding: .7rem;
  margin-bottom: 1.1rem;
}

.output-method-grid h3 {
  font-size: 1.35rem;
  margin: 0 0 .55rem;
}

.qa-panel {
  align-items: start;
}

.qa-list {
  padding: 1.6rem;
}

.qa-list p {
  color: var(--ink);
  font-weight: 900;
  margin-top: 0;
}

.qa-list ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}

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

.contact-price {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  font-weight: 950;
  margin: 1.25rem 0;
  color: var(--green);
}

.contact-price-card .price,
.contact-price-card .monthly-price,
.contact-price-card .annual-price {
  display: none;
}

.legal-copy {
  max-width: 920px;
}

.legal-copy h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  margin-top: 2.4rem;
  margin-bottom: .75rem;
}

.legal-copy a {
  color: var(--green);
  font-weight: 800;
}

.legal-updated {
  display: inline-flex;
  padding: .55rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .process-chain,
  .output-method-grid,
  .pricing-grid-v44 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-card-grid,
  .method-route-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .process-chain,
  .output-method-grid,
  .pricing-grid-v44 {
    grid-template-columns: 1fr;
  }

  .method-image-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .method-image-stack img:first-child {
    grid-row: auto;
  }

  .methodology-modules {
    padding-left: 18px;
    padding-right: 18px;
  }
}


/* v46 demo and pricing polish */
.pricing-hero-v46 {
  min-height: 420px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(11, 129, 95, .12), transparent 32%),
    linear-gradient(135deg, #f6fbf8 0%, #ffffff 62%);
}

.pricing-hero-v46 h1 {
  max-width: 880px;
}

.pricing-hero-v46 p:not(.section-label) {
  max-width: 760px;
}

.pricing-packages-v46 {
  padding-top: 4.5rem;
}

.pricing-grid-v46 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: stretch;
}

.price-card-v46 {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 24px 70px rgba(8, 15, 30, .08);
}

.price-card-v46.featured {
  border-color: var(--green);
  box-shadow: 0 30px 90px rgba(11, 129, 95, .18);
  transform: translateY(-18px);
}

.popular-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .7rem 1rem;
  color: #fff;
  background: var(--green);
  font-weight: 950;
}

.price-card-top {
  padding: 2rem 1.85rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.price-card-v46.featured .price-card-top {
  border-top: 0;
}

.price-card-top h2 {
  margin: .6rem 0 1.1rem;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.price-card-top p:not(.section-label),
.price-card-features li {
  color: var(--ink);
  line-height: 1.55;
}

.price-card-top .contact-price {
  margin: 1.35rem 0 1.5rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.price-card-top .pill-button {
  width: 100%;
}

.price-card-features {
  padding: 1.8rem 1.85rem 2rem;
}

.price-card-features h3 {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
}

.price-card-features ul {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card-features li {
  position: relative;
  padding-left: 1.45rem;
}

.price-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 950;
}

.feature-comparison-section {
  padding-top: 2rem;
}

.section-heading.compact {
  max-width: 920px;
  margin-bottom: 2rem;
}

.section-heading.compact p:not(.section-label) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(8, 15, 30, .08);
}

.comparison-table-v46 {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: .98rem;
}

.comparison-table-v46 th,
.comparison-table-v46 td {
  padding: 1rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid rgba(223, 231, 240, .9);
}

.comparison-table-v46 thead th {
  color: #fff;
  background: var(--green-dark);
  font-weight: 950;
}

.comparison-table-v46 thead th:first-child,
.comparison-table-v46 td:first-child {
  text-align: left;
}

.comparison-table-v46 td:not(:first-child) {
  font-weight: 800;
}

.comparison-table-v46 .group-row th {
  text-align: left;
  color: var(--ink);
  background: #e8f7ee;
  font-weight: 950;
  letter-spacing: .01em;
}

.comparison-table-v46 tbody tr:nth-child(even):not(.group-row) {
  background: rgba(243, 247, 251, .55);
}

.demo-page-section {
  width: min(1380px, calc(100vw - 56px));
  margin: 2rem auto 5rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 5.2rem);
  align-items: start;
  border-radius: 44px;
  background:
    radial-gradient(circle at 18% 24%, rgba(11,129,95,.08), transparent 28%),
    linear-gradient(135deg, #eef9f4 0%, #f8fbf7 60%, #fff 100%);
}

.demo-intro h1 {
  margin: 1rem 0 1.8rem;
  font-size: clamp(3.1rem, 6vw, 5.75rem);
  line-height: .95;
  letter-spacing: -.065em;
}

.demo-lead {
  max-width: 580px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.65;
  font-weight: 780;
}

.demo-check-list {
  display: grid;
  gap: 1rem;
  max-width: 620px;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.demo-check-list li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 1.12rem;
  line-height: 1.55;
}

.demo-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 950;
}

.demo-proof-card {
  max-width: 560px;
  margin-top: 2.2rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(11, 129, 95, .18);
  border-radius: 22px;
  background: rgba(255,255,255,.7);
}

.demo-proof-card strong {
  display: block;
  margin-bottom: .45rem;
}

.demo-proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.demo-form-card {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(190, 207, 220, .9);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 26px 80px rgba(8, 15, 30, .11);
  backdrop-filter: blur(10px);
}

.form-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.demo-form-card label {
  display: grid;
  gap: .5rem;
  color: var(--ink);
  font-weight: 850;
  font-size: 1.05rem;
}

.demo-form-card label span {
  color: #e4582e;
}

.demo-form-card input,
.demo-form-card select,
.demo-form-card textarea {
  width: 100%;
  min-height: 54px;
  padding: .9rem 1rem;
  border: 1px solid #c9d7e5;
  border-radius: 16px;
  background: rgba(247, 250, 253, .9);
  color: var(--ink);
  font: inherit;
}

.demo-form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox-line {
  grid-template-columns: auto 1fr !important;
  align-items: center;
  gap: .75rem !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

.form-note a {
  color: var(--green);
  font-weight: 850;
}

@media (max-width: 1180px) {
  .pricing-grid-v46 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card-v46.featured {
    transform: none;
  }

  .demo-page-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pricing-grid-v46,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .demo-page-section {
    width: min(100% - 24px, 1380px);
    margin-top: 1rem;
    border-radius: 28px;
  }

  .demo-intro h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .comparison-table-v46 {
    min-width: 760px;
  }
}


/* v48 contact polish */
.contact-demo-section {
  align-items: stretch;
}

.contact-demo-section .demo-form-card {
  align-self: stretch;
}

.demo-proof-card a {
  color: var(--green);
  font-weight: 800;
}

.contact-route-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 760px) {
  .form-grid.two {
    grid-template-columns: 1fr;
  }
}
