:root {
  --green: #0f3d2e;
  --green-mid: #1f7a56;
  --green-soft: #e7f3ec;
  --graphite: #596068;
  --graphite-dark: #1e1f22;
  --ink: #1e1f22;
  --muted: #596068;
  --home-muted: #1e1f22;
  --line: #d8dde1;
  --surface: #ffffff;
  --surface-soft: #f2f4f6;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 22px 48px rgba(6, 13, 22, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Aptos, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  background: var(--surface);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

.page-b2b {
  background: #f4f5f6;
}

.page-smart {
  background: #fff;
}

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

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

.text-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.icon-sprite {
  display: none;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 221, 225, .72);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

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

.brand-logo {
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.brand-logo-master {
  height: 54px;
}

.brand-logo-segment {
  height: 56px;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-lockup .brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-text strong {
  color: var(--ink);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--green);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.page-b2b .brand-text small,
.page-b2b .section-kicker,
.page-b2b .eyebrow {
  color: var(--graphite);
}

.page-b2b .header-cta {
  border-color: var(--graphite-dark);
  color: var(--graphite-dark);
}

.page-b2b .header-cta:hover,
.page-b2b .header-cta:focus-visible {
  color: #fff;
  background: var(--graphite-dark);
}

.footer-logo {
  min-width: 190px;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--graphite-dark);
  font-size: 15px;
  font-weight: 500;
}

.primary-nav a {
  position: relative;
  padding-block: 27px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav a[aria-current="page"] {
  color: var(--green);
}

.page-b2b .primary-nav a[aria-current="page"] {
  color: var(--graphite-dark);
}

.page-b2b .primary-nav a::after {
  background: var(--graphite-dark);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #fff;
  background: var(--green);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(31, 122, 86, .45);
  background: #f7fbf8;
  box-shadow: 0 0 0 4px rgba(31, 122, 86, .12);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--graphite-dark);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 34, 26, .98) 0%, rgba(15, 61, 46, .84) 42%, rgba(15, 61, 46, .28) 72%, rgba(15, 61, 46, .08) 100%),
    linear-gradient(0deg, rgba(15, 61, 46, .36), rgba(15, 61, 46, 0) 46%);
}

.hero-b2b .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 13, 22, .96) 0%, rgba(6, 13, 22, .82) 40%, rgba(30, 31, 34, .26) 72%, rgba(30, 31, 34, .08) 100%),
    linear-gradient(0deg, rgba(89, 96, 104, .32), rgba(89, 96, 104, 0) 48%);
}

.hero-smart .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 13, 22, .94) 0%, rgba(15, 61, 46, .78) 42%, rgba(15, 61, 46, .16) 72%, rgba(15, 61, 46, .04) 100%),
    linear-gradient(0deg, rgba(15, 61, 46, .42), rgba(15, 61, 46, 0) 48%);
}

.hero-smart .hero-media img {
  object-position: 64% center;
}

.hero-smart .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 14, .98) 0%, rgba(15, 61, 46, .92) 35%, rgba(15, 61, 46, .58) 52%, rgba(15, 61, 46, .16) 72%, rgba(15, 61, 46, .02) 100%),
    linear-gradient(0deg, rgba(5, 18, 14, .5), rgba(5, 18, 14, 0) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding-block: 80px;
  margin-inline: max(20px, calc((100vw - var(--max)) / 2)) auto;
}

.page-home .hero-content {
  width: min(100% - 40px, var(--max));
  max-width: var(--max);
}

.page-smart .hero-content,
.page-b2b .hero-content {
  max-width: 820px;
  padding-block: 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green-mid);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b9dccc;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .96;
  letter-spacing: 0;
  font-weight: 500;
  text-wrap: balance;
}

.headline-part {
  display: block;
}

.page-home h1 {
  max-width: 780px;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1;
}

.page-home h1 span {
  color: #83c99f;
  white-space: nowrap;
}

.page-smart h1 {
  max-width: 700px;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
}

.page-b2b h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.6vw, 68px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 500;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
}

.page-home .hero-copy {
  max-width: 760px;
}

.page-smart .hero-copy,
.page-b2b .hero-copy {
  max-width: 700px;
}

.page-smart .hero-content {
  max-width: 720px;
}

.page-smart .hero-copy {
  max-width: 640px;
}

.hero-note {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.hero-actions,
.split-copy .button {
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.page-b2b .button-primary {
  background: var(--graphite-dark);
  border-color: var(--graphite-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #14523d;
}

.page-b2b .button-primary:hover,
.page-b2b .button-primary:focus-visible {
  background: #34393f;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .34);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, .2);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}

.hero-feature-bar {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border: 1px solid rgba(185, 220, 204, .12);
  border-radius: 0;
  background: linear-gradient(90deg, rgba(5, 24, 18, .92), rgba(8, 46, 32, .86));
  backdrop-filter: blur(12px);
}

.hero-feature-bar li {
  min-height: 86px;
  justify-content: flex-start;
  gap: 18px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  padding: 18px 24px;
  background: transparent;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.25;
}

.hero-feature-bar li:last-child {
  border-right: 0;
  background: rgba(31, 122, 86, .26);
}

.hero-feature-bar svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #83c99f;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #b9dccc;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding-block: 88px;
}

.section[id] {
  scroll-margin-top: 94px;
}

.section-intro {
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.page-b2b .section-intro {
  border-color: rgba(255, 255, 255, .12);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(30, 31, 34, 1), rgba(52, 57, 63, 1)),
    var(--graphite-dark);
}

.page-b2b .section-intro .section-kicker {
  color: rgba(255, 255, 255, .62);
}

.page-b2b .section-intro p:not(.section-kicker),
.page-b2b .section-intro .intro-stat span {
  color: rgba(255, 255, 255, .72);
}

.page-b2b .section-intro .intro-stat {
  border-color: rgba(255, 255, 255, .16);
}

.page-b2b .section-intro .intro-stat strong {
  color: #fff;
}

.page-smart .section-intro {
  border-color: rgba(31, 122, 86, .16);
  background:
    linear-gradient(135deg, rgba(231, 243, 236, .94), rgba(255, 255, 255, .98)),
    var(--green-soft);
}

.page-smart .section-intro .section-kicker,
.page-smart .intro-stat strong {
  color: var(--green-mid);
}

.page-smart .section-intro .intro-stat {
  border-color: rgba(31, 122, 86, .18);
}

.page-smart .intro-grid p:not(.section-kicker),
.page-smart .intro-stat span,
.page-smart .section-heading > p:not(.section-kicker),
.page-smart .category-card p,
.page-smart .case-grid p,
.page-smart .faq-grid p,
.page-smart .timeline-grid p,
.page-smart .process-list p,
.page-smart .split-copy p:not(.section-kicker),
.page-smart .section-footnote {
  color: var(--home-muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) 190px;
  align-items: center;
  gap: 42px;
}

.intro-grid h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.intro-grid p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy {
  display: grid;
  gap: 14px;
}

.intro-stat {
  min-height: 150px;
  display: grid;
  align-content: center;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.intro-stat strong {
  display: block;
  color: var(--green);
  font-size: 74px;
  line-height: .9;
}

.intro-stat span {
  color: var(--muted);
  font-weight: 400;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading-wide {
  max-width: 850px;
}

.segment-section {
  background: #fff;
}

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

.segment-card {
  min-height: 330px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--surface-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.segment-card:hover,
.segment-card:focus-within {
  border-color: rgba(31, 122, 86, .28);
  box-shadow: 0 18px 34px rgba(6, 13, 22, .1);
  transform: translateY(-2px);
}

.segment-card span {
  margin-bottom: 64px;
  color: var(--green-mid);
  font-weight: 500;
}

.segment-card h3 {
  font-size: clamp(30px, 3vw, 42px);
}

.segment-card p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.segment-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.segment-card li {
  position: relative;
  padding-left: 18px;
}

.segment-card li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.segment-card a {
  width: fit-content;
  margin-top: 16px;
  color: var(--green);
  font-weight: 500;
}

.segment-card-logo {
  position: relative;
  overflow: hidden;
  align-content: stretch;
  grid-template-rows: 118px auto auto 1fr auto;
}

.segment-card-logo > img {
  width: min(300px, 78%);
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  opacity: 1;
}

.segment-smart {
  background:
    linear-gradient(135deg, rgba(231, 243, 236, .92), rgba(255, 255, 255, .98)),
    var(--surface-soft);
}

.segment-b2b {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 13, 22, .92), rgba(15, 61, 46, .9)),
    var(--green);
}

.segment-b2b span,
.segment-b2b a {
  color: #b9dccc;
}

.segment-b2b p {
  color: rgba(255, 255, 255, .76);
}

.segment-b2b ul {
  color: rgba(255, 255, 255, .76);
}

.segment-b2b .segment-card-logo > img,
.segment-b2b.segment-card-logo > img {
  filter: none;
}

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

.category-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card:hover,
.category-card:focus-within,
.value-card:hover,
.value-card:focus-within,
.faq-grid article:hover,
.faq-grid article:focus-within,
.partner-logo:hover,
.partner-logo:focus-within {
  border-color: rgba(31, 122, 86, .28);
  box-shadow: 0 14px 28px rgba(6, 13, 22, .08);
  transform: translateY(-2px);
}

.category-card {
  min-height: 384px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding: 28px;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green);
}

.card-icon svg,
.value-card > svg,
.contact-items svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card p {
  min-height: 54px;
  color: var(--muted);
}

.card-icon {
  color: var(--green);
}

.page-b2b .card-icon {
  color: var(--graphite-dark);
  background: #eef0f2;
}

.smart-section {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.smart-grid .category-card {
  min-height: 320px;
}

.b2b-section {
  background: #fff;
}

.b2b-grid {
  align-items: stretch;
}

.b2b-grid .split-copy {
  align-self: center;
}

.route-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface-soft);
}

.route-panel h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.route-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
}

.route-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 19px;
}

.route-item p {
  margin: 0;
  color: var(--muted);
}

.category-card ul {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.category-card li,
.product-chips span {
  border: 1px solid #d9e8df;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green);
  background: #f7fbf8;
  font-size: 14px;
  font-weight: 500;
}

.product-band {
  color: #fff;
  background: var(--green);
}

.page-b2b .product-band {
  background:
    linear-gradient(135deg, rgba(30, 31, 34, 1), rgba(52, 57, 63, 1)),
    var(--graphite-dark);
}

.product-band .section-kicker {
  color: #b9dccc;
}

.page-b2b .product-band .section-kicker {
  color: rgba(255, 255, 255, .68);
}

.page-b2b .product-chips span {
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.product-band-inner {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
}

.product-band h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 50px);
}

.product-band p:not(.section-kicker) {
  color: rgba(255, 255, 255, .75);
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-chips span {
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
  background: rgba(255, 255, 255, .11);
}

.product-chips-light span {
  border-color: #d9e8df;
  color: var(--green);
  background: #f7fbf8;
}

.product-chips-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-chips-detail span {
  border-radius: var(--radius);
  padding: 14px;
  line-height: 1.35;
}

.product-chips-detail strong {
  display: block;
  margin-bottom: 4px;
}

.proof-section {
  background: #fff;
}

.page-b2b .proof-section {
  color: #fff;
  background:
    linear-gradient(135deg, #1e1f22, #34393f),
    var(--graphite-dark);
}

.page-b2b .proof-section .section-heading > p:not(.section-kicker) {
  color: rgba(255, 255, 255, .72);
}

.page-b2b .proof-section .section-kicker {
  color: rgba(255, 255, 255, .62);
}

.page-b2b .proof-section .value-card {
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.page-b2b .proof-section .value-card p {
  color: rgba(255, 255, 255, .7);
}

.proof-grid .value-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}

.page-b2b .proof-grid .value-card strong {
  color: #fff;
}

.page-smart .proof-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 1), rgba(31, 122, 86, .92)),
    var(--green);
}

.page-smart .proof-section .section-kicker {
  color: rgba(231, 243, 236, .74);
}

.page-smart .proof-section .section-heading > p:not(.section-kicker) {
  color: rgba(255, 255, 255, .76);
}

.page-smart .proof-section .value-card {
  border-color: rgba(231, 243, 236, .18);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.page-smart .proof-section .value-card p {
  color: rgba(255, 255, 255, .74);
}

.page-smart .proof-grid .value-card strong {
  color: #e7f3ec;
}

.case-section {
  background: #fff;
}

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

.case-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface-soft);
}

.page-smart .case-grid article {
  border-color: rgba(31, 122, 86, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(231, 243, 236, .42)),
    #fff;
}

.case-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 600;
}

.case-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-b2b .case-grid span {
  color: var(--graphite-dark);
}

.inline-button {
  width: fit-content;
  margin-top: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.value-card {
  padding: 28px;
}

.value-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--green);
}

.value-symbol {
  width: 34px;
  height: 49px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 9px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-cards .value-card {
  min-height: 260px;
}

.process-cards .value-card h3 {
  min-height: 50px;
}

.partners-section {
  background: var(--green-soft);
}

.page-b2b .partners-section {
  background: var(--surface-soft);
}

.section-heading > p:not(.section-kicker) {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

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

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

.partner-logo {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.partner-logo img {
  width: min(100%, 260px);
  max-height: 80px;
  object-fit: contain;
}

.partner-more {
  align-content: center;
  color: var(--graphite-dark);
  text-align: center;
}

.partner-more strong {
  display: block;
  font-size: 24px;
}

.partner-more span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.text-panel {
  max-width: 920px;
}

.text-panel p:not(.section-kicker) {
  max-width: 820px;
  color: var(--muted);
  font-size: 19px;
}

.page-hero-section {
  background: var(--surface-soft);
}

.page-hero-section h1 {
  color: var(--green);
}

.founder-section {
  background: #fff;
}

.founder-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--surface-soft);
}

.founder-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(30, 31, 34, .96), rgba(15, 61, 46, .9)),
    var(--graphite-dark);
  font-size: clamp(54px, 7vw, 86px);
  font-weight: 600;
}

.founder-card h2 {
  margin-bottom: 14px;
}

.founder-card p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.platform-section {
  background: var(--green-soft);
}

.platform-section .section-kicker {
  color: var(--green);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content a {
  color: var(--green);
  font-weight: 500;
}

.statement-badge {
  width: fit-content;
  margin-top: 26px;
  border: 1px solid #d9e8df;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--green);
  background: #f7fbf8;
  font-weight: 500;
}

.section-footnote {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
}

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

.timeline-grid article {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.timeline-grid article:hover,
.timeline-grid article:focus-within,
.contact-route-card:hover,
.contact-route-card:focus-within {
  border-color: rgba(31, 122, 86, .28);
  box-shadow: 0 14px 28px rgba(6, 13, 22, .08);
  transform: translateY(-2px);
}

.timeline-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 600;
}

.page-b2b .timeline-grid span {
  color: var(--graphite-dark);
}

.timeline-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.notice-section {
  background: var(--surface-soft);
}

.page-smart .notice-section {
  background:
    linear-gradient(135deg, rgba(231, 243, 236, .9), rgba(255, 255, 255, 1)),
    var(--green-soft);
}

.notice-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 38px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(30, 31, 34, 1), rgba(52, 57, 63, 1)),
    var(--graphite-dark);
}

.page-smart .notice-panel {
  border-color: rgba(231, 243, 236, .18);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, .98), rgba(31, 122, 86, .9)),
    var(--green);
}

.notice-panel-light {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.page-smart .notice-panel-light {
  border-color: rgba(31, 122, 86, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(231, 243, 236, .58)),
    #fff;
}

.notice-panel .section-kicker {
  color: rgba(255, 255, 255, .68);
}

.notice-panel-light .section-kicker {
  color: var(--green);
}

.notice-panel p:not(.section-kicker),
.notice-panel .simple-list {
  color: rgba(255, 255, 255, .74);
}

.notice-panel-light p:not(.section-kicker),
.notice-panel-light .simple-list {
  color: var(--muted);
}

.page-smart .notice-panel-light p:not(.section-kicker),
.page-smart .notice-panel-light .simple-list {
  color: var(--home-muted);
}

.strong-line {
  margin-top: 22px;
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 600;
}

.notice-panel-light .strong-line {
  color: var(--green) !important;
}

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

.simple-list li {
  position: relative;
  padding-left: 20px;
}

.simple-list li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.dual-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dual-list-grid article {
  border: 1px solid #d9e8df;
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .74);
}

.dual-list-grid h3 {
  color: var(--green);
}

.page-smart .dual-list-grid article {
  border-color: rgba(31, 122, 86, .18);
  background: rgba(255, 255, 255, .82);
}

.page-smart .timeline-grid article,
.page-smart .category-card,
.page-smart .faq-grid article {
  border-color: rgba(31, 122, 86, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(231, 243, 236, .34)),
    #fff;
}

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

.contact-route-card {
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-route-card h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.contact-route-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.contact-route-card .button {
  width: fit-content;
  margin-top: 4px;
}

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

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.form-note a {
  color: #b9dccc;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-fieldset {
  min-width: 0;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  margin: 0;
  padding: 16px;
}

.form-fieldset legend {
  padding: 0 6px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

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

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

.checkbox-item {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 9px !important;
  min-width: 0;
  color: rgba(255, 255, 255, .8) !important;
  font-size: 13px !important;
  line-height: 1.35;
}

.checkbox-item input {
  width: 16px !important;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  padding: 0 !important;
  background: #fff !important;
  accent-color: var(--green-mid);
}

.insider-grid {
  align-items: start;
}

.faq-section {
  background: var(--surface-soft);
}

.page-smart .faq-section,
.page-smart .split-section {
  background:
    linear-gradient(135deg, rgba(231, 243, 236, .88), rgba(255, 255, 255, 1)),
    var(--green-soft);
}

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

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-section {
  background: var(--surface-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.split-copy p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list div {
  display: grid;
  grid-template-columns: 58px 150px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
}

.process-list span {
  color: var(--green-mid);
  font-weight: 500;
}

.process-list strong {
  font-size: 20px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.story-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, .9fr) minmax(0, .85fr);
  gap: 48px;
  align-items: center;
}

.story-logo {
  width: 250px;
  height: auto;
}

.story-grid h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.6vw, 48px);
}

.story-grid p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-section {
  background: var(--graphite-dark);
  color: #fff;
}

.page-home .contact-section {
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 1), rgba(8, 34, 26, 1)),
    var(--green);
}

.page-smart .contact-section {
  background:
    linear-gradient(135deg, rgba(15, 61, 46, .96), rgba(31, 122, 86, .92)),
    var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.contact-grid-form {
  grid-template-columns: minmax(0, .9fr) minmax(340px, .58fr);
}

.contact-grid-form-disabled {
  grid-template-columns: minmax(0, 1fr);
}

.contact-copy {
  max-width: 860px;
}

.contact-copy p:not(.section-kicker) {
  max-width: 540px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.contact-items a,
.contact-items span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}

.contact-items svg {
  width: 22px;
  height: 22px;
  color: #b9dccc;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow);
}

.contact-form[hidden] {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  outline: none;
}

.contact-form select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.contact-form option {
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #b9dccc;
  box-shadow: 0 0 0 3px rgba(185, 220, 204, .18);
}

.contact-form button {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #b9dccc;
  font-weight: 500;
}

.site-footer {
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-block: 38px;
  border-bottom: 1px solid var(--line);
}

.footer-inner img {
  width: 168px;
  height: auto;
}

.footer-inner p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  color: var(--muted);
  font-size: 14px;
}

:focus-visible {
  outline: 3px solid rgba(31, 122, 86, .45);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .header-inner {
    width: min(100% - 40px, var(--max));
    display: flex;
    justify-content: space-between;
  }

  .brand {
    margin-right: auto;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    z-index: 30;
    width: min(360px, 100%);
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    border-radius: 6px;
    padding: 12px 14px;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav a[aria-current="page"] {
    background: var(--green-soft);
  }

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

  .nav-toggle {
    flex: 0 0 auto;
    margin-left: 0;
    display: flex;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 13, 22, .94) 0%, rgba(6, 13, 22, .72) 54%, rgba(6, 13, 22, .2) 100%),
      linear-gradient(0deg, rgba(15, 61, 46, .36), rgba(15, 61, 46, 0) 42%);
  }

  .intro-grid,
  .segment-grid,
  .partner-grid,
  .case-grid,
  .timeline-grid,
  .founder-card,
  .product-band-inner,
  .split-grid,
  .story-grid,
  .contact-grid,
  .notice-panel,
  .contact-choice-grid,
  .dual-list-grid {
    grid-template-columns: 1fr;
  }

  .intro-stat {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }

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

  .segment-card {
    min-height: 280px;
  }

  .story-logo {
    width: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 660px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand-logo-master {
    height: 44px;
  }

  .brand-logo-segment {
    height: 46px;
  }

  .logo-lockup .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text small {
    font-size: 7px;
    letter-spacing: .24em;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    width: auto;
    padding: 10px;
  }

  .hero {
    min-height: 80svh;
    align-items: end;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 13, 22, .96) 0%, rgba(6, 13, 22, .9) 45%, rgba(6, 13, 22, .24) 100%),
      linear-gradient(90deg, rgba(6, 13, 22, .7), rgba(6, 13, 22, .08));
  }

  .hero-smart {
    min-height: 86svh;
  }

  .hero-smart .hero-media img {
    object-position: 68% top;
  }

  .hero-smart .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 18, 14, .98) 0%, rgba(5, 18, 14, .95) 48%, rgba(15, 61, 46, .54) 74%, rgba(15, 61, 46, .08) 100%),
      linear-gradient(90deg, rgba(5, 18, 14, .82), rgba(5, 18, 14, .08));
  }

  .hero-content {
    padding-block: 52px 30px;
    margin-inline: auto;
  }

  .page-smart .hero-content {
    max-width: none;
    padding-block: 210px 30px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .page-b2b h1,
  .page-smart h1 {
    font-size: clamp(32px, 9vw, 38px);
  }

  h2 {
    font-size: clamp(30px, 11vw, 44px);
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-feature-bar {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-feature-bar li {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    padding: 14px 16px;
    font-size: 15px;
  }

  .hero-feature-bar li:last-child {
    border-bottom: 0;
  }

  .hero-feature-bar svg {
    width: 28px;
    height: 28px;
  }

  .hero-points li {
    justify-content: center;
    padding: 8px 10px;
    text-align: center;
    font-size: 13px;
    line-height: 1.25;
  }

  .section {
    padding-block: 62px;
  }

  .section-intro {
    padding-block: 34px;
  }

  .page-b2b .hero + .section-intro,
  .page-smart .hero + .section-intro {
    padding-top: 12px;
  }

  .category-grid,
  .value-grid,
  .segment-grid,
  .partner-grid,
  .case-grid,
  .timeline-grid,
  .founder-card,
  .notice-panel,
  .contact-choice-grid,
  .dual-list-grid,
  .form-grid-two,
  .checkbox-grid,
  .product-chips-detail {
    grid-template-columns: 1fr;
  }

  .founder-card {
    gap: 24px;
    padding: 24px;
  }

  .founder-mark {
    width: min(180px, 100%);
  }

  .segment-card {
    min-height: 250px;
    padding: 24px;
  }

  .segment-card-logo > img {
    width: min(260px, 86%);
    height: auto;
    margin-bottom: 34px;
  }

  .segment-card span {
    margin-bottom: 38px;
  }

  .category-card {
    min-height: auto;
    padding: 24px;
  }

  .category-card p {
    min-height: 0;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-grid {
    gap: 34px;
  }

  .contact-items {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .notice-panel {
    padding: 24px;
  }

  .timeline-grid article {
    min-height: auto;
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

}
