:root {
  --bg: #f4f7f1;
  --surface: #ffffff;
  --surface-soft: #edf4ee;
  --text: #102019;
  --text-soft: #526058;
  --brand: #176b54;
  --brand-dark: #0f4f3f;
  --brand-deep: #0b2f26;
  --brand-light: #dff0e7;
  --lime: #c8ed72;
  --sand: #f0e3c7;
  --blue: #dcecf4;
  --border: #d8e0d9;
  --shadow: 0 24px 70px rgba(16, 32, 25, .12);
  --shadow-soft: 0 14px 40px rgba(16, 32, 25, .08);
  --container: 1180px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { position: relative; padding: 116px 0; }
.section--light { background: #eef4ed; }
.section--dark { background: var(--brand-deep); color: #f4fbf7; overflow: hidden; }
.section--pricing { background: #e5efe7; }
.section--guides { background: #143d31; color: #eff8f2; }
.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;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Announcement */
.announcement {
  background: #102f26;
  color: #eaf4ee;
  font-size: 13px;
}
.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.announcement p { margin: 0; }
.announcement a {
  color: var(--lime);
  font-weight: 700;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 247, 241, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 224, 217, .78);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 30px rgba(16,32,25,.07);
}
.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand__mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--brand);
}
.brand__text { display: flex; flex-direction: column; gap: 1px; }
.brand__text strong { font-size: 18px; letter-spacing: -.02em; }
.brand__text small { color: var(--text-soft); font-size: 10px; letter-spacing: .04em; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding: 28px 0;
  font-size: 14px;
  color: #33453d;
  font-weight: 650;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--brand);
  transition: right .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 11px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { border-top: 1px solid var(--border); background: #fff; }
.mobile-nav__inner { padding-top: 10px; padding-bottom: 22px; display: grid; }
.mobile-nav a:not(.button) { padding: 13px 2px; font-weight: 650; border-bottom: 1px solid #edf1ed; }
.mobile-nav .button { margin-top: 16px; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.button--large { min-height: 58px; padding-inline: 26px; border-radius: 14px; }
.button--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(23,107,84,.19); }
.button--primary:hover { background: var(--brand-dark); box-shadow: 0 14px 30px rgba(23,107,84,.25); }
.button--secondary { background: #fff; border-color: var(--border); color: var(--text); }
.button--secondary:hover { border-color: #a8b7ad; box-shadow: var(--shadow-soft); }
.button--ghost { background: transparent; border-color: #aebbb2; }
.button--ghost:hover { background: #fff; }
.button--light { background: #fff; color: var(--brand-deep); }
.button--light:hover { box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 750; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Hero */
.hero { overflow: hidden; padding-top: 104px; padding-bottom: 112px; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d6dfd7, transparent);
}
.hero__grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 72px; }
.hero__content { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--lime); }
.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(54px, 6.2vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 850;
}
.hero h1 span { color: var(--brand); }
.hero__lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__microcopy { margin: 14px 0 24px; color: #6a766f; font-size: 13px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 0; list-style: none; color: #405049; font-size: 13px; font-weight: 650; }
.hero__proof span { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 6px; border-radius: 50%; background: #d9eee4; color: var(--brand); font-size: 12px; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero__glow--one { width: 520px; height: 520px; right: -210px; top: -130px; background: radial-gradient(circle, rgba(200,237,114,.25), rgba(200,237,114,0) 66%); }
.hero__glow--two { width: 430px; height: 430px; left: -220px; bottom: -260px; background: radial-gradient(circle, rgba(23,107,84,.16), rgba(23,107,84,0) 68%); }

.hero-visual { position: relative; min-height: 540px; }
.hero-visual__halo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: linear-gradient(145deg, #caed9e, #9bd5b5 52%, #d6ebdf);
  opacity: .72;
}
.dashboard-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 545px;
  max-width: 94%;
  transform: translate(-50%,-50%) rotate(-1.4deg);
  background: #fff;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  box-shadow: 0 36px 90px rgba(16,32,25,.24);
  overflow: hidden;
}
.dashboard-card__topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: #f7f9f7;
  border-bottom: 1px solid #e6ece7;
}
.dashboard-card__dots { display: flex; gap: 5px; }
.dashboard-card__dots span { width: 7px; height: 7px; border-radius: 50%; background: #bbc8bf; }
.dashboard-card__search { flex: 1; height: 18px; border-radius: 8px; background: #e5ebe6; }
.dashboard-card__avatar { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; background: var(--brand); color: #fff; font-size: 9px; font-weight: 800; }
.dashboard-card__body { min-height: 350px; display: grid; grid-template-columns: 54px 1fr; }
.dashboard-sidebar { padding: 15px 13px; background: #f4f7f4; border-right: 1px solid #e6ece7; }
.sidebar-logo { width: 25px; height: 25px; margin-bottom: 24px; border-radius: 8px; background: var(--brand); }
.dashboard-sidebar > span { display: block; width: 24px; height: 7px; margin: 0 0 18px; border-radius: 4px; background: #c8d3cb; }
.dashboard-sidebar > span.active { background: var(--brand); }
.dashboard-main { padding: 21px; }
.dashboard-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.dashboard-heading small, .dashboard-heading strong { display: block; }
.dashboard-heading small { margin-bottom: 4px; color: #7d8982; font-size: 9px; }
.dashboard-heading strong { font-size: 17px; }
.dashboard-heading button { border: 0; border-radius: 7px; padding: 7px 10px; background: #e4f1e9; color: var(--brand); font-size: 8px; font-weight: 800; }
.metric-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; }
.metric-card { position: relative; min-height: 110px; padding: 13px; border-radius: 14px; background: #f2f5f2; overflow: hidden; }
.metric-card--featured { color: #fff; background: var(--brand); }
.metric-card span, .metric-card strong { display: block; position: relative; z-index: 2; }
.metric-card span { margin-bottom: 6px; font-size: 8px; opacity: .8; }
.metric-card strong { font-size: 13px; }
.sparkline { position: absolute; left: 10px; right: 10px; bottom: 2px; width: calc(100% - 20px); color: var(--lime); }
.metric-bars { position: absolute; left: 13px; right: 13px; bottom: 12px; display: flex; align-items: end; justify-content: space-between; height: 52px; }
.metric-bars i { width: 10px; border-radius: 4px 4px 2px 2px; background: #bcd8c8; }
.metric-bars i:nth-child(1) { height: 24px; }
.metric-bars i:nth-child(2) { height: 34px; }
.metric-bars i:nth-child(3) { height: 28px; }
.metric-bars i:nth-child(4) { height: 45px; background: var(--brand); }
.metric-bars i:nth-child(5) { height: 38px; }
.orders-card { margin-top: 12px; padding: 13px; border: 1px solid #e7ece8; border-radius: 14px; }
.orders-card__header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 9px; }
.orders-card__header span { color: var(--brand); }
.order-row { display: grid; grid-template-columns: 26px 1fr 58px 48px; align-items: center; min-height: 37px; border-top: 1px solid #edf1ee; font-size: 8px; }
.order-row small { color: #637168; }
.order-row b { padding: 4px 5px; border-radius: 5px; background: #e5f2eb; color: var(--brand); text-align: center; font-size: 7px; }
.product-dot { width: 20px; height: 20px; border-radius: 6px; background: #d7e9dd; }
.product-dot--two { background: #e7dfc9; }
.product-dot--three { background: #d9e6ee; }
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 15px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(16,32,25,.18);
  backdrop-filter: blur(10px);
}
.floating-card small, .floating-card strong { display: block; }
.floating-card small { margin-bottom: 2px; color: #758179; font-size: 9px; }
.floating-card strong { font-size: 12px; }
.floating-card--markets { top: 54px; right: -15px; }
.floating-card--product { left: -24px; bottom: 48px; }
.floating-card__icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #dff1e7; color: var(--brand); }
.floating-card__icon svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.status-dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: #54b77b; box-shadow: 0 0 0 4px #e3f4e8; }
.product-thumb { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: #e6d6b8; }
.product-thumb span { width: 21px; height: 24px; border-radius: 7px 7px 5px 5px; background: #8a6c45; transform: rotate(-6deg); }
.trend { margin-left: auto; color: var(--brand); font-weight: 900; }

/* Capability strip */
.capability-strip { background: #fff; border-bottom: 1px solid var(--border); }
.capability-strip__inner { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.capability-strip p { margin: 0; font-weight: 800; font-size: 13px; color: var(--brand); }
.capability-strip ul { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 34px; padding: 0; margin: 0; list-style: none; }
.capability-strip li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #34443c; }
.capability-strip li span { color: #91a398; font-size: 10px; }

/* Section headings */
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 90px; }
.section-heading h2, .pricing-copy h2, .faq-intro h2, .guides-header h2, .final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p, .pricing-copy > p, .faq-intro > p { color: var(--text-soft); font-size: 17px; line-height: 1.8; }
.section-heading--dark p { color: #a9bdb4; }

/* Value */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { position: relative; min-height: 300px; padding: 28px; border: 1px solid #d5dfd6; border-radius: var(--radius-md); background: rgba(255,255,255,.76); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.value-card, .feature-card, .solution-card, .case-card, .plan-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 68px; border-radius: 16px; background: #dff0e7; color: var(--brand); }
.icon-box svg, .feature-icon svg, .solution-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 30px; right: 30px; color: #93a39a; font-size: 11px; font-weight: 800; }
.value-card h3 { margin-bottom: 13px; font-size: 24px; letter-spacing: -.025em; }
.value-card p { margin: 0; color: var(--text-soft); line-height: 1.75; }
.section-action { margin-top: 38px; text-align: center; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { min-height: 310px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; overflow: hidden; }
.feature-card:hover { border-color: #aebdb3; box-shadow: var(--shadow-soft); }
.feature-card--wide { grid-column: 1 / -1; min-height: 440px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; padding: 42px; background: #ecf4ed; }
.feature-card__content { padding-right: 32px; }
.feature-tag, .case-category { display: inline-block; margin-bottom: 18px; color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.feature-card h3 { margin-bottom: 15px; font-size: 30px; letter-spacing: -.03em; }
.feature-card--wide h3 { font-size: 42px; }
.feature-card p { color: var(--text-soft); line-height: 1.75; }
.feature-card a { display: inline-flex; gap: 8px; margin-top: 18px; color: var(--brand); font-weight: 800; }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 44px; border-radius: 17px; color: var(--brand); }
.feature-icon--mint { background: #dff0e7; }
.feature-icon--lime { background: #e8f4c8; }
.feature-icon--sand { background: #f2e7d4; }
.feature-icon--blue { background: #e1edf4; }
.storefront-mockup { min-height: 334px; border-radius: 18px; background: #fff; box-shadow: 0 18px 50px rgba(16,32,25,.14); overflow: hidden; transform: rotate(1deg); }
.storefront-browser { height: 30px; display: flex; align-items: center; gap: 5px; padding: 0 10px; background: #f5f6f5; border-bottom: 1px solid #e5e9e5; }
.storefront-browser span { width: 6px; height: 6px; border-radius: 50%; background: #bbc7bf; }
.storefront-browser i { flex: 1; height: 12px; margin-left: 6px; border-radius: 6px; background: #e2e7e3; }
.storefront-nav { height: 48px; display: flex; align-items: center; gap: 15px; padding: 0 20px; }
.storefront-nav b { margin-right: auto; letter-spacing: .18em; }
.storefront-nav i { width: 24px; height: 4px; border-radius: 3px; background: #cfd7d1; }
.storefront-hero { position: relative; min-height: 255px; padding: 45px 34px; background: linear-gradient(135deg, #dce8cf, #eadbc0); overflow: hidden; }
.storefront-hero small, .storefront-hero strong { position: relative; z-index: 2; display: block; }
.storefront-hero small { margin-bottom: 10px; color: #4b6254; font-size: 8px; letter-spacing: .16em; }
.storefront-hero strong { font-size: 28px; line-height: 1.08; }
.storefront-hero button { position: relative; z-index: 2; margin-top: 19px; border: 0; border-radius: 8px; padding: 9px 15px; background: #193b31; color: #fff; font-size: 9px; }
.storefront-product { position: absolute; right: 34px; bottom: -12px; width: 150px; height: 198px; border-radius: 55px 55px 18px 18px; background: linear-gradient(145deg, #815e40, #c29465); transform: rotate(7deg); box-shadow: 0 18px 30px rgba(76,52,31,.25); }
.storefront-product span { position: absolute; left: 35px; top: -31px; width: 80px; height: 74px; border: 13px solid #8d6848; border-bottom: 0; border-radius: 45px 45px 0 0; }

/* Solutions */
.section--dark::before { content: ""; position: absolute; width: 580px; height: 580px; right: -260px; top: -260px; border-radius: 50%; border: 1px solid rgba(200,237,114,.16); box-shadow: 0 0 0 90px rgba(200,237,114,.03), 0 0 0 180px rgba(200,237,114,.025); }
.solution-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.solution-card { min-height: 360px; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }
.solution-card:hover { transform: translateY(-5px); border-color: rgba(200,237,114,.55); background: rgba(255,255,255,.09); }
.solution-card--primary { background: var(--lime); color: var(--brand-deep); }
.solution-card--primary:hover { background: #d4f28b; }
.solution-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 82px; }
.solution-index { color: #91a69c; font-size: 11px; font-weight: 850; }
.solution-card--primary .solution-index { color: rgba(11,47,38,.55); }
.solution-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: rgba(255,255,255,.12); color: var(--lime); }
.solution-card--primary .solution-icon { background: rgba(11,47,38,.1); color: var(--brand-deep); }
.solution-card h3 { margin-bottom: 15px; font-size: 30px; }
.solution-card p { margin-bottom: 25px; color: #b7c8c0; line-height: 1.75; }
.solution-card--primary p { color: #305547; }
.solution-card a { display: inline-flex; gap: 8px; color: var(--lime); font-weight: 800; }
.solution-card--primary a { color: var(--brand-deep); }
.solution-secondary { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; margin-top: 20px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.04); }
.solution-secondary > span { margin-right: 8px; color: #8fa69b; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.solution-secondary a { padding: 8px 13px; border-radius: 9px; background: rgba(255,255,255,.07); font-size: 13px; font-weight: 700; }
.solution-secondary a:hover { background: rgba(255,255,255,.13); }
.solution-secondary__all { margin-left: auto; color: var(--lime); }

/* Steps */
.steps-layout { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 90px; }
.steps-list { border-top: 1px solid var(--border); }
.step-item { border-bottom: 1px solid var(--border); }
.step-item button { width: 100%; display: grid; grid-template-columns: 52px 1fr 28px; align-items: center; gap: 12px; padding: 22px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.step-number { color: #8c9c92; font-size: 11px; font-weight: 850; }
.step-item button strong, .step-item button small { display: block; }
.step-item button strong { margin-bottom: 5px; font-size: 20px; }
.step-item button small { color: var(--text-soft); font-size: 13px; }
.step-item button i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #e4ece5; color: var(--brand); font-style: normal; font-size: 20px; }
.step-item.is-active button i { background: var(--brand); color: #fff; }
.step-panel { padding: 0 40px 22px 64px; color: var(--text-soft); line-height: 1.7; }
.step-panel p { margin: 0; }
.steps-visual { position: relative; min-height: 570px; display: grid; place-items: center; border-radius: 36px; background: linear-gradient(145deg, #dcecd9, #c2ddb7 55%, #e9dec3); overflow: hidden; }
.steps-visual::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; background: rgba(255,255,255,.26); }
.phone-frame { position: relative; z-index: 2; width: 245px; height: 500px; padding: 10px; border: 7px solid #14231d; border-radius: 38px; background: #14231d; box-shadow: 0 28px 60px rgba(16,32,25,.28); transform: rotate(2deg); }
.phone-notch { position: absolute; z-index: 3; top: 11px; left: 50%; width: 78px; height: 20px; transform: translateX(-50%); border-radius: 0 0 14px 14px; background: #14231d; }
.phone-screen { height: 100%; border-radius: 26px; overflow: hidden; background: #fff; }
.phone-status { height: 32px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; font-size: 8px; font-weight: 800; }
.phone-status i { width: 24px; height: 7px; border-radius: 4px; background: #1b2822; }
.phone-brand { height: 42px; display: grid; place-items: center; border-top: 1px solid #edf0ed; border-bottom: 1px solid #edf0ed; font-size: 11px; font-weight: 900; letter-spacing: .2em; }
.phone-hero { min-height: 265px; padding: 46px 22px; color: #fff; background: linear-gradient(155deg, rgba(17,56,45,.35), rgba(17,56,45,.08)), linear-gradient(135deg, #667f68, #a9a77d); }
.phone-hero small, .phone-hero strong { display: block; }
.phone-hero small { margin-bottom: 10px; font-size: 7px; letter-spacing: .18em; }
.phone-hero strong { font-size: 26px; line-height: 1.08; }
.phone-hero button { margin-top: 20px; padding: 9px 13px; border: 0; border-radius: 7px; background: #fff; color: #17362c; font-size: 8px; font-weight: 800; }
.phone-product-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
.phone-product-row span { height: 105px; border-radius: 10px; background: linear-gradient(145deg, #d9c7aa, #886848); }
.phone-product-row span:last-child { background: linear-gradient(145deg, #cad9cf, #718a78); }
.steps-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-soft); font-size: 11px; font-weight: 750; }
.steps-badge span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #dff0e7; color: var(--brand); }
.steps-badge--one { top: 76px; right: 34px; }
.steps-badge--two { left: 30px; bottom: 84px; }

/* Pricing */
.pricing-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; align-items: center; }
.pricing-copy > p { margin-bottom: 24px; }
.pricing-copy > ul { padding: 0; margin: 0 0 30px; list-style: none; }
.pricing-copy > ul li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 650; }
.pricing-copy > ul span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #cfe6d7; color: var(--brand); font-size: 12px; }
.pricing-copy__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.pricing-copy > small { display: block; color: #6f7d74; line-height: 1.55; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 12px; }
.plan-card { position: relative; min-height: 370px; padding: 25px; border: 1px solid #d2ddd4; border-radius: 20px; background: rgba(255,255,255,.82); }
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.plan-card--featured { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); transform: translateY(-12px); }
.plan-card--featured:hover { transform: translateY(-17px); }
.plan-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 6px 11px; border-radius: 999px; background: var(--lime); color: var(--brand-deep); font-size: 10px; font-weight: 850; white-space: nowrap; }
.plan-card__head span { color: var(--brand); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.plan-card--featured .plan-card__head span { color: var(--lime); }
.plan-card h3 { margin: 8px 0 18px; font-size: 31px; }
.plan-card p { min-height: 82px; color: #5e6c63; line-height: 1.65; font-size: 14px; }
.plan-card--featured p { color: #b8c9c1; }
.plan-card ul { padding: 17px 0 0; margin: 0 0 28px; border-top: 1px solid #dce3dd; list-style: none; }
.plan-card--featured ul { border-top-color: rgba(255,255,255,.15); }
.plan-card li { margin-bottom: 11px; font-size: 13px; }
.plan-card li::before { content: "✓"; margin-right: 8px; color: var(--brand); font-weight: 850; }
.plan-card--featured li::before { color: var(--lime); }
.plan-card a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; color: var(--brand); font-size: 13px; font-weight: 800; }
.plan-card--featured a { color: var(--lime); }

/* Cases */
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.case-card { border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; overflow: hidden; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.case-visual { height: 240px; position: relative; overflow: hidden; background: #e4eee5; }
.case-visual--migration { display: flex; align-items: center; justify-content: center; gap: 9px; background: linear-gradient(135deg,#e5ece6,#d8e9df); }
.case-browser { width: 112px; height: 136px; padding: 12px; border-radius: 11px; background: #fff; box-shadow: 0 12px 25px rgba(16,32,25,.12); transform: rotate(-5deg); }
.case-browser--new { transform: rotate(5deg); background: #143d31; }
.case-browser i { display: block; height: 7px; margin-bottom: 8px; border-radius: 4px; background: #d7dfd9; }
.case-browser i:nth-child(2) { width: 70%; }
.case-browser i:nth-child(3) { width: 50%; }
.case-browser span { display: block; height: 66px; margin-top: 12px; border-radius: 8px; background: #d9e8dc; }
.case-browser--new i { background: rgba(255,255,255,.26); }
.case-browser--new span { background: var(--lime); }
.migration-arrow { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 900; }
.case-visual--global { display: grid; place-items: center; background: linear-gradient(135deg,#dbeadf,#bfd7ca); }
.globe-orbit { position: relative; width: 150px; height: 150px; border: 2px solid rgba(23,107,84,.35); border-radius: 50%; }
.globe-orbit::before, .globe-orbit::after { content: ""; position: absolute; inset: 22px 0; border: 2px solid rgba(23,107,84,.3); border-radius: 50%; }
.globe-orbit::after { inset: 0 46px; }
.globe-orbit span, .globe-orbit i, .globe-orbit b, .globe-orbit em { position: absolute; width: 15px; height: 15px; border: 4px solid #eef6ef; border-radius: 50%; background: var(--brand); box-shadow: 0 5px 14px rgba(16,32,25,.15); }
.globe-orbit span { top: 6px; left: 65px; }
.globe-orbit i { right: 3px; top: 70px; }
.globe-orbit b { left: 16px; bottom: 22px; }
.globe-orbit em { right: 28px; bottom: 13px; background: #88ad54; }
.case-visual--growth { color: var(--brand); background: linear-gradient(135deg,#eff1dc,#dce9d7); }
.case-visual--growth svg { position: absolute; inset: 55px 40px auto; width: calc(100% - 80px); }
.growth-bars { position: absolute; inset: auto 40px 38px; height: 120px; display: flex; align-items: end; justify-content: space-between; }
.growth-bars i { width: 24px; border-radius: 7px 7px 2px 2px; background: rgba(23,107,84,.12); }
.growth-bars i:nth-child(1) { height: 34px; }
.growth-bars i:nth-child(2) { height: 48px; }
.growth-bars i:nth-child(3) { height: 62px; }
.growth-bars i:nth-child(4) { height: 83px; }
.growth-bars i:nth-child(5) { height: 108px; }
.case-card__body { padding: 26px; }
.case-card h3 { margin-bottom: 14px; font-size: 23px; line-height: 1.38; letter-spacing: -.025em; }
.case-card p { color: var(--text-soft); line-height: 1.7; }
.case-card a { display: inline-flex; gap: 8px; margin-top: 10px; color: var(--brand); font-weight: 800; }

/* Guides */
.guides-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.guides-header h2 { margin-bottom: 0; }
.guides-header > a { display: inline-flex; gap: 8px; color: var(--lime); font-weight: 800; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.guide-card { border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); overflow: hidden; background: rgba(255,255,255,.05); }
.guide-card__visual { position: relative; height: 245px; display: grid; place-items: center; background: linear-gradient(135deg, #c7e589, #84c2a0); }
.guide-label { position: absolute; top: 18px; left: 18px; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.85); color: var(--brand-deep); font-size: 10px; font-weight: 850; }
.guide-orb { position: relative; width: 145px; height: 145px; border: 1px solid rgba(11,47,38,.35); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.12), 0 0 0 54px rgba(255,255,255,.08); }
.guide-orb::before, .guide-orb::after { content: ""; position: absolute; left: 50%; top: 50%; width: 210px; height: 1px; background: rgba(11,47,38,.3); transform: translate(-50%,-50%) rotate(33deg); }
.guide-orb::after { transform: translate(-50%,-50%) rotate(-33deg); }
.guide-orb i { position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-deep); border: 5px solid rgba(255,255,255,.65); }
.guide-orb i:nth-child(1) { top: 2px; left: 58px; }
.guide-orb i:nth-child(2) { right: -2px; bottom: 29px; }
.guide-orb i:nth-child(3) { left: 8px; bottom: 17px; }
.guide-card__body { padding: 28px; }
.guide-card__body > span { color: #9fb5aa; font-size: 11px; font-weight: 750; }
.guide-card h3 { margin: 12px 0 14px; font-size: 29px; line-height: 1.28; }
.guide-card p { color: #b5c6be; line-height: 1.75; }
.guide-card a { display: inline-flex; gap: 10px; margin-top: 12px; color: var(--lime); font-weight: 800; }
.guide-list { display: grid; gap: 10px; }
.guide-list__item { display: grid; grid-template-columns: 44px 1fr 24px; align-items: center; gap: 12px; min-height: 94px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(255,255,255,.04); }
.guide-list__item:hover { border-color: rgba(200,237,114,.45); background: rgba(255,255,255,.075); }
.guide-list__number { color: #779388; font-size: 11px; font-weight: 850; }
.guide-list__item small, .guide-list__item strong { display: block; }
.guide-list__item small { margin-bottom: 6px; color: #91aa9f; font-size: 10px; }
.guide-list__item strong { font-size: 16px; }
.guide-list__item b { color: var(--lime); font-size: 18px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro .text-link { margin-top: 18px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0; border: 0; background: transparent; text-align: left; font-weight: 800; font-size: 19px; cursor: pointer; }
.faq-item button i { width: 30px; height: 30px; display: grid; place-items: center; flex: none; border-radius: 50%; background: #e7eee8; color: var(--brand); font-style: normal; font-size: 20px; }
.faq-item.is-open button i { background: var(--brand); color: #fff; }
.faq-answer { max-width: 670px; padding: 0 48px 24px 0; color: var(--text-soft); line-height: 1.8; }
.faq-answer p { margin: 0; }

/* Final CTA */
.final-cta { position: relative; padding: 95px 0; overflow: hidden; background: var(--brand); color: #fff; }
.final-cta__pattern { position: absolute; right: -90px; top: 50%; width: 500px; height: 500px; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.04), 0 0 0 140px rgba(255,255,255,.025); }
.final-cta__pattern::after { content: ""; position: absolute; inset: 95px; border: 1px solid rgba(200,237,114,.42); border-radius: 50%; }
.final-cta__inner { position: relative; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.final-cta h2 { margin-bottom: 18px; }
.final-cta p { max-width: 600px; margin: 0; color: #d6e6de; font-size: 17px; line-height: 1.7; }
.final-cta__actions { flex: none; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.final-cta__actions > a:last-child { color: #e9f3ee; font-weight: 700; font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }

/* Footer */
.site-footer { padding: 72px 0 26px; background: #0a211a; color: #dce8e1; }
.site-footer__top { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand--footer .brand__mark { color: var(--lime); }
.brand--footer .brand__text small { color: #8ca198; }
.site-footer__top > p { max-width: 440px; margin: 0; color: #94aaa0; line-height: 1.65; text-align: right; }
.site-footer__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; padding: 48px 0; }
.site-footer__grid h3 { margin-bottom: 20px; color: #fff; font-size: 13px; }
.site-footer__grid a { display: block; width: fit-content; margin-bottom: 13px; color: #9db0a7; font-size: 13px; }
.site-footer__grid a:hover { color: var(--lime); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); color: #71877c; font-size: 11px; }
.site-footer__bottom p { margin: 0; }

/* Mobile CTA */
.mobile-sticky-cta { position: fixed; z-index: 900; left: 12px; right: 12px; bottom: 12px; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 15px; border: 1px solid rgba(255,255,255,.7); border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: 0 16px 40px rgba(16,32,25,.2); backdrop-filter: blur(15px); }
.mobile-sticky-cta span strong, .mobile-sticky-cta span small { display: block; }
.mobile-sticky-cta span strong { font-size: 13px; }
.mobile-sticky-cta span small { margin-top: 2px; color: var(--text-soft); font-size: 10px; }
.mobile-sticky-cta .button { min-height: 42px; padding-inline: 15px; font-size: 12px; }

/* Reveal */
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.js.reveal-ready .reveal.is-pending { opacity: 0; transform: translateY(18px); }
.js.reveal-ready .reveal.is-pending.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 13px; }
  .hero__grid { gap: 36px; }
  .dashboard-card { width: 500px; }
  .floating-card--markets { right: 0; }
  .floating-card--product { left: 0; }
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-copy { max-width: 720px; }
  .faq-layout { gap: 55px; }
}

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { padding-top: 80px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 760px; }
  .hero-visual { min-height: 520px; }
  .capability-strip__inner { flex-direction: column; align-items: flex-start; padding-top: 24px; padding-bottom: 24px; }
  .capability-strip ul { width: 100%; justify-content: space-between; gap: 12px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 12px; }
  .section-heading--split > p { max-width: 700px; }
  .steps-layout { grid-template-columns: 1fr; gap: 50px; }
  .steps-visual { max-width: 620px; width: 100%; margin-inline: auto; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .case-card:last-child { grid-column: 1 / -1; }
  .guide-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; max-width: 700px; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .final-cta__actions { align-items: flex-start; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .announcement__inner { justify-content: space-between; gap: 12px; font-size: 11px; }
  .announcement p { max-width: 210px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .site-header__inner { min-height: 68px; }
  .brand__text small { display: none; }
  .brand__mark { width: 34px; height: 34px; }
  .hero { padding-top: 65px; padding-bottom: 82px; }
  .hero h1 { font-size: clamp(48px, 13vw, 70px); }
  .hero__lead { font-size: 17px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 430px; margin-top: 20px; }
  .hero-visual__halo { width: 370px; height: 370px; }
  .dashboard-card { width: 420px; max-width: 100%; }
  .dashboard-card__body { min-height: 300px; grid-template-columns: 43px 1fr; }
  .dashboard-sidebar { padding: 12px 9px; }
  .dashboard-main { padding: 14px; }
  .order-row { grid-template-columns: 22px 1fr 42px; }
  .order-row small { display: none; }
  .floating-card { min-width: 158px; padding: 10px; }
  .floating-card--markets { top: 20px; right: -4px; }
  .floating-card--product { left: -4px; bottom: 20px; }
  .capability-strip ul { display: grid; grid-template-columns: 1fr 1fr; }
  .capability-strip li:last-child { grid-column: 1 / -1; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .pricing-copy h2, .faq-intro h2, .guides-header h2, .final-cta h2 { font-size: clamp(34px, 10vw, 48px); }
  .section-heading p, .pricing-copy > p, .faq-intro > p { font-size: 15px; }
  .value-grid, .solution-grid, .case-grid { grid-template-columns: 1fr; }
  .case-card:last-child { grid-column: auto; }
  .value-card { min-height: 265px; }
  .icon-box { margin-bottom: 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: auto; grid-template-columns: 1fr; gap: 34px; padding: 28px; }
  .feature-card--wide h3 { font-size: 34px; }
  .feature-card__content { padding-right: 0; }
  .storefront-mockup { min-height: 290px; }
  .storefront-product { right: 9px; width: 118px; height: 165px; }
  .solution-card { min-height: 320px; }
  .solution-card__top { margin-bottom: 55px; }
  .solution-secondary { display: grid; grid-template-columns: 1fr 1fr; }
  .solution-secondary > span, .solution-secondary__all { grid-column: 1 / -1; margin-left: 0; }
  .steps-visual { min-height: 500px; }
  .phone-frame { transform: scale(.88) rotate(2deg); }
  .steps-badge--one { right: 12px; }
  .steps-badge--two { left: 12px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .plan-card { min-height: auto; }
  .plan-card--featured, .plan-card--featured:hover { transform: none; }
  .guide-card__visual { height: 210px; }
  .guide-card h3 { font-size: 25px; }
  .guides-header { align-items: flex-start; flex-direction: column; }
  .faq-item button { min-height: 76px; font-size: 16px; }
  .final-cta__pattern { right: -310px; }
  .site-footer__top { align-items: flex-start; flex-direction: column; }
  .site-footer__top > p { text-align: left; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .mobile-sticky-cta.is-visible { display: flex !important; }
  body.has-sticky-cta { padding-bottom: 82px; }
}

@media (max-width: 460px) {
  .hero__proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 370px; }
  .dashboard-card { transform: translate(-50%,-50%) scale(.86) rotate(-1.4deg); width: 420px; }
  .floating-card { transform: scale(.88); }
  .floating-card--markets { transform-origin: top right; }
  .floating-card--product { transform-origin: bottom left; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-card:not(.metric-card--featured) { display: none; }
  .storefront-hero { padding-left: 21px; }
  .storefront-hero strong { font-size: 22px; }
  .storefront-product { opacity: .82; }
  .steps-badge { font-size: 9px; }
  .steps-badge--one { top: 48px; }
  .steps-badge--two { bottom: 55px; }
  .guide-list__item { grid-template-columns: 34px 1fr 18px; padding-inline: 13px; }
  .guide-list__item strong { font-size: 14px; }
  .site-footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js.reveal-ready .reveal.is-pending { opacity: 1; transform: none; }
}


/* Interior pages */
.page-hero { position: relative; overflow: hidden; padding: 54px 0 105px; background: var(--bg); }
.page-hero::after { content:""; position:absolute; width:520px; height:520px; right:-180px; top:-210px; border-radius:50%; background:radial-gradient(circle,rgba(200,237,114,.3),rgba(200,237,114,0) 68%); }
.breadcrumbs { position:relative; z-index:2; display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-bottom:70px; color:#718078; font-size:12px; }
.breadcrumbs a:hover { color:var(--brand); }
.breadcrumbs i { color:#b2bcb5; font-style:normal; }
.page-hero__grid { position:relative; z-index:2; display:grid; grid-template-columns:1fr .55fr; gap:70px; align-items:center; }
.page-hero__content h1 { max-width:820px; margin-bottom:25px; font-size:clamp(48px,6vw,76px); line-height:1.03; letter-spacing:-.055em; }
.page-hero__content h1 span { color:var(--brand); }
.page-hero__content > p { max-width:720px; margin-bottom:30px; color:var(--text-soft); font-size:18px; line-height:1.8; }
.page-hero__visual { display:grid; place-items:center; min-height:310px; }
.page-hero__image { display:block; width:min(100%,520px); height:auto; max-height:430px; object-fit:contain; }
.orbital-visual { position:relative; width:260px; height:260px; display:grid; place-items:center; border-radius:50%; background:linear-gradient(145deg,#d7efc0,#8fcbb0); box-shadow:0 35px 80px rgba(16,32,25,.18); }
.orbital-visual::before,.orbital-visual::after { content:""; position:absolute; border:1px solid rgba(255,255,255,.72); border-radius:50%; }
.orbital-visual::before { inset:26px; }.orbital-visual::after { inset:-24px; border-color:rgba(23,107,84,.18); }
.orbital-visual span { position:absolute; width:18px; height:18px; border-radius:50%; background:#fff; box-shadow:0 8px 20px rgba(0,0,0,.15); }
.orbital-visual span:nth-child(1){top:18px;left:80px}.orbital-visual span:nth-child(2){right:14px;bottom:82px;background:var(--lime)}.orbital-visual span:nth-child(3){left:24px;bottom:46px;background:var(--brand)}
.orbital-visual b { color:#123b2f; text-align:center; font-size:23px; letter-spacing:.08em; }
.notice-box { margin-bottom:34px; padding:22px 25px; border:1px solid #c9d7cd; border-radius:18px; background:#fff; }
.notice-box strong { display:block; margin-bottom:8px; color:var(--brand); }.notice-box p{margin:0;color:var(--text-soft);line-height:1.7}
.info-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.info-card { min-height:285px; padding:28px; border:1px solid var(--border); border-radius:22px; background:#fff; }
.info-card h3 { margin:18px 0 12px; font-size:25px; letter-spacing:-.03em; }.info-card p{color:var(--text-soft);line-height:1.75}.card-kicker{color:var(--brand);font-size:11px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
.clean-list,.check-list,.large-check-list,.risk-list,.source-list { padding:0; margin:20px 0 0; list-style:none; }
.clean-list li,.check-list li { position:relative; padding:8px 0 8px 24px; color:#48584f; font-size:14px; }.clean-list li::before,.check-list li::before{content:"✓";position:absolute;left:0;color:var(--brand);font-weight:900}
.content-split { display:grid; grid-template-columns:.72fr 1.28fr; gap:90px; align-items:start; }.content-split h2{font-size:clamp(38px,4.6vw,58px);line-height:1.08;letter-spacing:-.045em}.lead-copy{color:var(--text-soft);font-size:17px;line-height:1.8}
.process-list,.timeline-list { padding:0; margin:0; list-style:none; border-top:1px solid var(--border); }
.process-list li { display:grid; grid-template-columns:55px 1fr; gap:22px; padding:24px 0; border-bottom:1px solid var(--border); }.process-list b{color:var(--brand);font-size:12px}.process-list h3{margin-bottom:7px}.process-list p{margin:0;color:var(--text-soft);line-height:1.65}
.dark-feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }.dark-feature-grid article{padding:28px;border:1px solid rgba(255,255,255,.14);border-radius:22px;background:rgba(255,255,255,.045)}.dark-feature-grid strong{color:var(--lime);font-size:12px}.dark-feature-grid h3{margin:35px 0 12px;font-size:25px}.dark-feature-grid p{margin:0;color:#abc0b6;line-height:1.7}
.source-note { margin-top:28px; color:#718078; font-size:12px; }.section--dark .source-note{color:#9fb5aa}.source-note a{text-decoration:underline;text-underline-offset:3px}
.price-plan-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; }.price-plan{display:flex;flex-direction:column;min-height:510px;padding:26px;border:1px solid var(--border);border-radius:22px;background:#fff}.price-plan.is-featured{border:2px solid var(--brand);box-shadow:var(--shadow-soft)}.price-plan__head>span{color:var(--brand);font-size:11px;font-weight:800}.price-plan h2{margin:12px 0 8px;font-size:32px}.price-plan__head p{min-height:46px;color:var(--text-soft);line-height:1.5}.price-value{padding:20px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.price-value strong,.price-value small{display:block}.price-value strong{font-size:25px}.price-value small{margin-top:5px;color:#78857d;font-size:11px}.price-plan .check-list{flex:1}.price-plan .button{width:100%;margin-top:20px}
.decision-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }.decision-grid article{padding:26px;border:1px solid var(--border);border-radius:20px;background:#fff}.decision-grid b{color:var(--brand);font-size:12px}.decision-grid h3{margin:28px 0 10px;font-size:22px}.decision-grid p{color:var(--text-soft);line-height:1.7}.decision-grid strong{display:block;margin-top:18px;color:var(--brand);font-size:13px}
.cost-stack,.question-stack { display:grid; gap:12px; }.cost-stack article{position:relative;padding:24px 24px 24px 105px;border-radius:18px;background:#fff;border:1px solid var(--border)}.cost-stack span{position:absolute;left:24px;top:26px;display:grid;place-items:center;width:58px;height:58px;border-radius:15px;background:var(--brand-light);color:var(--brand);font-weight:850}.cost-stack h3{margin-bottom:7px}.cost-stack p{margin:0;color:var(--text-soft);line-height:1.6}
.question-stack article{display:grid;grid-template-columns:55px 1fr;gap:20px;padding:20px 0;border-bottom:1px solid var(--border)}.question-stack b{color:var(--brand);font-size:12px}.question-stack h3{margin-bottom:6px}.question-stack p{margin:0;color:var(--text-soft)}
.timeline-list li{display:grid;grid-template-columns:70px 1fr;align-items:center;min-height:76px;border-bottom:1px solid var(--border)}.timeline-list span{font-weight:850;color:var(--brand)}.timeline-list p{margin:0;font-weight:700}
.risk-list { display:grid; gap:14px; }.risk-list li{position:relative;padding:22px 22px 22px 56px;border:1px solid rgba(255,255,255,.13);border-radius:16px;color:#d4e1db;line-height:1.65}.risk-list li::before{content:"!";position:absolute;left:20px;top:20px;display:grid;place-items:center;width:23px;height:23px;border-radius:50%;background:var(--lime);color:var(--brand-deep);font-weight:900}
.related-links { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; }.related-link{display:flex;align-items:center;justify-content:space-between;min-height:100px;padding:24px;border:1px solid var(--border);border-radius:18px;background:#fff;font-weight:800}.related-link:hover{border-color:var(--brand);box-shadow:var(--shadow-soft)}.related-link b{color:var(--brand);font-size:22px}
.article-layout { display:grid; grid-template-columns:minmax(0,1fr) 280px; gap:75px; align-items:start; }.article-body{max-width:780px}.article-meta{display:flex;flex-wrap:wrap;gap:10px 22px;margin-bottom:34px;color:#718078;font-size:12px}.article-summary,.callout{margin-bottom:38px;padding:24px;border-radius:18px;background:#fff;border:1px solid var(--border)}.article-summary strong,.callout strong{display:block;margin-bottom:8px;color:var(--brand)}.article-summary p,.callout p{margin:0;color:var(--text-soft);line-height:1.75}.article-body section{margin-bottom:44px}.article-body h2{margin:0 0 16px;font-size:32px;letter-spacing:-.035em}.article-body p,.article-body li{color:#405149;font-size:16px;line-height:1.9}.article-body ul,.article-body ol{padding-left:24px}.article-body a{color:var(--brand);text-decoration:underline;text-underline-offset:3px}.article-sidebar{position:sticky;top:105px}.toc-card{padding:24px;border-radius:20px;background:#0b2f26;color:#fff}.toc-card>strong{display:block;margin-bottom:16px;font-size:18px}.toc-card p{color:#b6c8bf;line-height:1.7;font-size:13px}.toc-card>a:not(.button){display:block;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.1);color:#bfd0c8;font-size:13px}.toc-card .button{width:100%;margin-top:20px}
.related-article-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}.related-article-grid a{position:relative;min-height:210px;padding:25px;border:1px solid var(--border);border-radius:20px;background:#fff}.related-article-grid span{color:var(--brand);font-size:11px;font-weight:800}.related-article-grid strong{display:block;margin-top:30px;font-size:21px;line-height:1.35}.related-article-grid b{position:absolute;right:22px;bottom:20px;color:var(--brand)}
.faq-page-layout{display:grid;grid-template-columns:220px 1fr;gap:75px;align-items:start}.faq-nav{position:sticky;top:110px;display:grid;padding:22px;border:1px solid var(--border);border-radius:18px;background:#fff}.faq-nav strong{margin-bottom:12px}.faq-nav a{padding:10px 0;color:var(--text-soft);font-size:13px;border-bottom:1px solid #edf1ed}.faq-group{margin-bottom:60px;scroll-margin-top:110px}.faq-group>h2{margin-bottom:20px;font-size:32px}.faq-groups .faq-answer{max-width:none}
.guide-filter{display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin-bottom:36px}.guide-filter span{margin-right:8px;font-weight:800}.guide-filter a{padding:9px 13px;border:1px solid var(--border);border-radius:999px;background:#fff;font-size:12px;font-weight:700}.guide-index-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:17px}.guide-index-card{min-height:300px;padding:30px;border:1px solid var(--border);border-radius:22px;background:#fff}.guide-index-card>span{color:var(--brand);font-size:11px;font-weight:850}.guide-index-card h2{margin:42px 0 13px;font-size:28px;letter-spacing:-.035em}.guide-index-card p{color:var(--text-soft);line-height:1.7}.guide-index-card b{display:inline-block;margin-top:15px;color:var(--brand)}
.principle-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.principle-grid article{padding:24px;border:1px solid var(--border);border-radius:18px;background:#fff}.principle-grid b{color:var(--brand);font-size:11px}.principle-grid h3{margin:28px 0 8px}.principle-grid p{margin:0;color:var(--text-soft);line-height:1.6}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:17px;margin-bottom:30px}.contact-card{padding:28px;border:1px solid var(--border);border-radius:22px;background:#fff}.contact-card>span{color:var(--brand);font-size:11px;font-weight:850}.contact-card h2{min-height:66px;margin:35px 0 12px;font-size:25px}.contact-card p{min-height:82px;color:var(--text-soft);line-height:1.7}.contact-card .button{width:100%;font-size:12px}
.legal-hero{padding:54px 0 82px}.legal-hero h1{margin-bottom:20px;font-size:clamp(50px,7vw,78px);letter-spacing:-.055em}.legal-hero p{max-width:760px;color:var(--text-soft);font-size:18px;line-height:1.8}.legal-hero>div>span{color:#7a877f;font-size:12px}.legal-layout{max-width:900px}.legal-content{padding:45px;border:1px solid var(--border);border-radius:24px;background:#fff}.legal-content h2{margin-top:38px;font-size:26px}.legal-content h2:first-child{margin-top:0}.legal-content p{color:#405149;line-height:1.9}.legal-content a{color:var(--brand);text-decoration:underline}
.trial-content-grid{display:grid;grid-template-columns:1fr 430px;gap:70px;align-items:start}.large-check-list{display:grid;gap:12px}.large-check-list li{display:grid;grid-template-columns:50px 1fr;gap:18px;padding:22px;border:1px solid var(--border);border-radius:18px;background:#fff}.large-check-list b{color:var(--brand);font-size:12px}.large-check-list h3{margin-bottom:6px}.large-check-list p{margin:0;color:var(--text-soft)}.trial-action-card{position:sticky;top:110px;padding:32px;border-radius:24px;background:var(--brand-deep);color:#fff}.trial-action-card>span{color:var(--lime);font-size:11px;font-weight:850}.trial-action-card h2{margin:25px 0 12px;font-size:34px}.trial-action-card p{color:#b7c9c0;line-height:1.7}.trial-action-card .button{width:100%;margin:18px 0 12px}.affiliate-placeholder{padding:13px;border-radius:12px;background:#fff2c9;color:#705700;font-size:11px;line-height:1.5}.affiliate-placeholder code{font-family:ui-monospace,monospace}
@media(max-width:980px){.page-hero__grid{grid-template-columns:1fr}.page-hero__visual{display:none}.info-card-grid{grid-template-columns:1fr 1fr}.price-plan-grid{grid-template-columns:1fr 1fr}.decision-grid{grid-template-columns:1fr 1fr}.content-split{grid-template-columns:1fr;gap:45px}.article-layout{grid-template-columns:1fr}.article-sidebar{position:static}.faq-page-layout{grid-template-columns:1fr}.faq-nav{position:static;grid-template-columns:repeat(3,1fr)}.faq-nav strong{grid-column:1/-1}.trial-content-grid{grid-template-columns:1fr}.trial-action-card{position:static}.contact-grid{grid-template-columns:1fr 1fr}}
@media(max-width:760px){.page-hero{padding:35px 0 75px}.breadcrumbs{margin-bottom:48px}.page-hero__content h1{font-size:clamp(43px,12vw,60px)}.page-hero__content>p{font-size:16px}.info-card-grid,.price-plan-grid,.decision-grid,.dark-feature-grid,.related-links,.guide-index-grid,.related-article-grid,.contact-grid{grid-template-columns:1fr}.price-plan{min-height:auto}.article-body h2{font-size:27px}.faq-nav{grid-template-columns:1fr 1fr}.principle-grid{grid-template-columns:1fr}.legal-content{padding:25px}.content-split{gap:32px}}

/* =========================================================
   Version 2.0 refinements
   ========================================================= */
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(23, 107, 84, .36);
  outline-offset: 3px;
}
:where(a, button) { -webkit-tap-highlight-color: rgba(23, 107, 84, .12); }
[hidden] { display: none !important; }
html { scroll-padding-top: 105px; }

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2000;
  height: 3px;
  pointer-events: none;
  background: transparent;
}
.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] { color: var(--brand); }
.mobile-nav a.is-active { font-weight: 850; }
.dashboard-report-label {
  border-radius: 7px;
  padding: 7px 10px;
  background: #e4f1e9;
  color: var(--brand);
  font-size: 8px;
  font-weight: 800;
}
.hero__updated {
  margin: 20px 0 0;
  color: #76837b;
  font-size: 12px;
}

.fit-check-section { padding-top: 96px; padding-bottom: 96px; }
.fit-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-card {
  min-height: 390px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
}
.fit-card--yes { background: #113f33; color: #fff; border-color: #113f33; }
.fit-card--wait { background: #f7f1e4; }
.fit-card > span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
}
.fit-card--yes > span { background: rgba(200,237,114,.16); color: var(--lime); }
.fit-card h3 { max-width: 520px; margin: 54px 0 22px; font-size: 29px; line-height: 1.2; letter-spacing: -.035em; }
.fit-card ul { display: grid; gap: 12px; margin: 0 0 30px; padding: 0; list-style: none; }
.fit-card li { position: relative; padding-left: 25px; color: var(--text-soft); line-height: 1.55; }
.fit-card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 900; }
.fit-card--yes li { color: #c7d8cf; }
.fit-card--yes li::before { color: var(--lime); }
.fit-card--yes .text-link { color: var(--lime); }

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 38px 0 26px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
}
.billing-toggle > span { font-weight: 800; }
.billing-toggle > div { display: inline-flex; padding: 4px; border-radius: 12px; background: #e8eee9; }
.billing-toggle button {
  border: 0;
  border-radius: 9px;
  padding: 10px 16px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 750;
  cursor: pointer;
}
.billing-toggle button.is-active { background: #fff; color: var(--brand); box-shadow: 0 4px 15px rgba(16,32,25,.08); }
.billing-toggle small { width: 100%; text-align: center; color: #718078; }
.source-note--compact { margin-top: 8px; }

.guide-tools {
  display: grid;
  grid-template-columns: minmax(250px, 390px) 1fr auto;
  align-items: end;
  gap: 18px;
  margin-bottom: 36px;
}
.guide-search label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 800; }
.guide-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}
.guide-filter { margin: 0; }
.guide-filter button {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.guide-filter button.is-active { border-color: var(--brand); background: var(--brand); color: #fff; }
.guide-results { margin: 0 0 12px; color: var(--text-soft); white-space: nowrap; }
.guide-empty { margin-top: 20px; padding: 38px; border: 1px dashed #aab7ae; border-radius: 20px; text-align: center; }
.guide-empty p { margin-bottom: 0; color: var(--text-soft); }
.guide-index-card[hidden] { display: none; }

.article-meta { padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.article-body h2[id] { scroll-margin-top: 120px; }
.toc-card nav { display: grid; }
.toc-card nav a {
  display: block;
  padding: 10px 0 10px 12px;
  border-left: 2px solid rgba(255,255,255,.14);
  color: #bfd0c8;
  font-size: 13px;
  line-height: 1.45;
}
.toc-card nav a:hover, .toc-card nav a.is-current { border-left-color: var(--lime); color: #fff; }
.toc-note { margin: 18px 0 0; }
.check-list--boxed {
  display: grid;
  gap: 10px;
  padding: 22px !important;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  list-style: none;
}
.check-list--boxed li { position: relative; padding-left: 27px; }
.check-list--boxed li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 900; }
.article-sources {
  padding: 28px;
  border-radius: 20px;
  background: #e9f1eb;
}
.article-sources h2 { font-size: 27px; }
.article-sources ul { margin-bottom: 0; }

.case-hero .page-hero__visual { display: grid; place-items: center; }
.case-brand-mark {
  width: min(390px, 90%);
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border-radius: 34px;
  background: var(--brand-deep);
  color: #fff;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}
.case-brand-mark small { color: var(--lime); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.case-brand-mark strong { margin: 62px 0 12px; font-size: 52px; line-height: 1; letter-spacing: -.06em; }
.case-brand-mark span { color: #bad0c5; }
.case-source-badge { margin-top: 22px; color: #718078; font-size: 12px; }
.case-metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.case-metric-grid article { padding: 27px; border: 1px solid var(--border); border-radius: 20px; background: #fff; }
.case-metric-grid strong, .case-metric-grid span { display: block; }
.case-metric-grid strong { color: var(--brand); font-size: 27px; letter-spacing: -.04em; }
.case-metric-grid span { margin-top: 9px; color: var(--text-soft); font-size: 13px; }
.case-data-note { margin: 22px 0 0; color: #718078; font-size: 12px; line-height: 1.7; }
.case-story { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 78px; align-items: start; }
.case-story > article { max-width: 790px; }
.case-story h2 { margin: 48px 0 16px; font-size: 34px; letter-spacing: -.04em; }
.case-story p, .large-bullet-list li { color: #405149; font-size: 16px; line-height: 1.9; }
.large-bullet-list { display: grid; gap: 12px; padding-left: 22px; }
.source-panel { margin-top: 42px; padding: 25px; border: 1px solid var(--border); border-radius: 20px; background: #eef4ed; }
.source-panel strong { color: var(--brand); }
.source-panel p { margin: 8px 0 14px; font-size: 14px; }
.source-panel a { color: var(--brand); font-weight: 800; }

.trial-visual-card {
  width: min(410px, 95%);
  padding: 38px;
  border-radius: 30px;
  background: var(--brand-deep);
  color: #fff;
  box-shadow: var(--shadow);
}
.trial-visual-card > span { color: var(--lime); font-size: 11px; font-weight: 850; }
.trial-visual-card > strong { display: block; margin: 48px 0 24px; font-size: 29px; line-height: 1.3; }
.trial-visual-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.trial-visual-card li { padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.08); color: #d2dfd8; }
.trust-note { display: grid; gap: 3px; margin: 12px 0; padding: 13px; border-radius: 12px; background: rgba(255,255,255,.08); }
.trust-note strong { color: var(--lime); font-size: 11px; }
.trust-note span { color: #c2d2ca; font-size: 12px; }
.trial-source { display: inline-block; margin-top: 12px; color: #c7d8cf; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.trial-milestone { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 22px; padding: 30px; border: 1px solid var(--border); border-radius: 22px; background: #fff; }
.trial-milestone span { color: var(--brand); font-size: 11px; font-weight: 850; }
.trial-milestone h3 { max-width: 720px; margin: 10px 0 0; font-size: 23px; line-height: 1.4; }

.availability-note {
  margin-bottom: 32px;
  padding: 18px 22px;
  border-left: 4px solid var(--brand);
  border-radius: 0 14px 14px 0;
  background: #fff;
}
.availability-note strong { color: var(--brand); }
.availability-note p { margin: 5px 0 0; color: var(--text-soft); line-height: 1.65; }

.not-found-section { min-height: 72vh; display: grid; place-items: center; padding: 90px 0; }
.not-found { text-align: center; }
.not-found > span { display: block; color: var(--brand); font-size: clamp(90px, 18vw, 190px); font-weight: 900; line-height: .8; opacity: .14; }
.not-found h1 { margin: -10px 0 20px; font-size: clamp(43px, 7vw, 78px); letter-spacing: -.055em; }
.not-found p { max-width: 660px; margin: 0 auto 30px; color: var(--text-soft); font-size: 17px; line-height: 1.8; }
.not-found .hero__actions { justify-content: center; }
.not-found-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 20px; margin-top: 32px; color: var(--brand); font-weight: 750; }

@media (max-width: 980px) {
  .guide-tools { grid-template-columns: 1fr; align-items: stretch; }
  .guide-results { margin: 0; }
  .case-metric-grid { grid-template-columns: 1fr 1fr; }
  .case-story { grid-template-columns: 1fr; gap: 42px; }
  .fit-check-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .fit-card { min-height: auto; padding: 28px; }
  .fit-card h3 { margin-top: 38px; font-size: 25px; }
  .billing-toggle { justify-content: flex-start; }
  .billing-toggle small { text-align: left; }
  .guide-filter { align-items: flex-start; }
  .case-metric-grid { grid-template-columns: 1fr; }
  .case-brand-mark { min-height: 240px; transform: none; }
  .case-brand-mark strong { margin-top: 46px; font-size: 42px; }
  .trial-milestone { align-items: stretch; flex-direction: column; }
  .trial-milestone .button { width: 100%; }
  .article-sources { padding: 22px; }
}


/* V3 editorial article enhancements */
.article-body h3{margin:28px 0 10px;font-size:21px;line-height:1.35;letter-spacing:-.02em;color:var(--text)}
.article-body p + p{margin-top:14px}
.article-table-wrap{margin:24px 0 30px;overflow-x:auto;border:1px solid var(--border);border-radius:16px;background:#fff}
.article-table{width:100%;min-width:650px;border-collapse:collapse;text-align:left}
.article-table th,.article-table td{padding:15px 17px;border-bottom:1px solid var(--border);vertical-align:top;font-size:14px;line-height:1.65}
.article-table th{background:#edf4ef;color:var(--brand-deep);font-weight:800}
.article-table tbody tr:last-child td{border-bottom:0}
.article-body .decision-grid--article{margin:24px 0 30px}
.article-body .decision-grid--article>div{padding:24px;border:1px solid var(--border);border-radius:17px;background:#fff}
.article-faq{margin-top:54px;padding-top:36px;border-top:1px solid var(--border)}
.article-faq details{padding:18px 0;border-bottom:1px solid var(--border)}
.article-faq summary{cursor:pointer;color:var(--text);font-weight:800;line-height:1.55}
.article-faq details p{margin:12px 0 0;color:var(--text-soft)}
.article-body ol li,.article-body ul li{margin-bottom:10px}
.article-quality-note{margin:32px 0;padding:18px 22px;border-left:4px solid var(--brand);background:#edf4ef;border-radius:0 14px 14px 0;color:var(--text-soft);line-height:1.8}
@media(max-width:760px){.article-table th,.article-table td{padding:13px}.article-body h3{font-size:19px}}

/* v4 solution and case content refinements */
.info-card-grid:has(> .info-card:nth-child(4)){grid-template-columns:repeat(3,minmax(0,1fr));}
.article-body .check-list--boxed{margin-top:20px;}
.case-story .check-list--boxed{margin:20px 0 32px;}
@media(max-width:980px){.info-card-grid:has(> .info-card:nth-child(4)){grid-template-columns:1fr 1fr;}}
@media(max-width:760px){.info-card-grid:has(> .info-card:nth-child(4)){grid-template-columns:1fr;}}
