:root {
  --ink: #102a32;
  --ink-soft: #45606a;
  --deep: #063f4b;
  --deep-2: #075968;
  --teal: #0f8f8a;
  --teal-bright: #28c3b5;
  --teal-pale: #e6f7f4;
  --orange: #d76132;
  --orange-pale: #fff1e9;
  --sand: #f4f1e9;
  --paper: #fbfcfb;
  --white: #ffffff;
  --line: #dce7e8;
  --line-dark: rgba(255,255,255,.16);
  --shadow-sm: 0 12px 30px rgba(4,49,59,.08);
  --shadow-lg: 0 28px 75px rgba(4,49,59,.16);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

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

button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--deep);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

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

.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.mt-24 { margin-top: 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-muted { background: #f0f5f4; }
.section-dark { background: var(--deep); color: var(--white); }
.section-sand { background: var(--sand); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow { color: #8fe5dc; }

.display-title {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5.4vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.section-title {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.78;
}

.section-dark .section-lead { color: rgba(255,255,255,.72); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading > div { max-width: 790px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}

.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251,252,251,.88);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(15,143,138,.12);
  box-shadow: 0 10px 28px rgba(5,53,62,.07);
}

.launch-notice {
  position: relative;
  z-index: 900;
  border-bottom: 1px solid rgba(40,195,181,.24);
  background: linear-gradient(90deg, #073f4b, #0b777b);
  color: var(--white);
}

.launch-notice-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding-block: 9px;
  text-align: center;
}

.launch-notice strong { font-size: .82rem; }
.launch-notice span { color: rgba(255,255,255,.78); font-size: .76rem; }
.launch-notice a {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
}
.launch-notice a:hover { background: rgba(255,255,255,.1); }

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-home { display: inline-flex; flex: 0 0 auto; }
.brand img { width: 45px; height: 45px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-name { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }
.brand-by { margin-top: 5px; color: var(--ink-soft); font-size: .68rem; font-weight: 500; }

.site-nav { display: flex; align-items: center; gap: 29px; }
.site-nav > .button { display: none; }
.site-nav > a:not(.button) {
  position: relative;
  color: #3d555e;
  font-size: .84rem;
  font-weight: 600;
}
.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.lang-link {
  display: inline-grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--deep);
  font-size: .72rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--deep);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--deep-2), var(--teal));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(15,143,138,.18);
}
.button-primary:hover { box-shadow: 0 16px 32px rgba(15,143,138,.24); }
.button-secondary { border-color: var(--line); background: var(--white); color: var(--deep); }
.button-ghost { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.07); color: var(--white); }
.button-small { min-height: 40px; padding-inline: 15px; font-size: .74rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 86px;
  background:
    radial-gradient(circle at 8% 10%, rgba(40,195,181,.15), transparent 31%),
    radial-gradient(circle at 92% 12%, rgba(215,97,50,.10), transparent 25%),
    linear-gradient(180deg, #fbfcfb, #f0f7f5);
}

.hero::before {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -190px;
  bottom: -250px;
  border: 76px solid rgba(15,143,138,.05);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: 68px;
}

.hero-copy { padding-block: 30px; }
.hero-copy .display-title em { color: var(--teal); font-style: normal; }
.hero-copy > p {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 620px;
  margin-top: 25px;
  color: #60747b;
  font-size: .76rem;
  line-height: 1.6;
}
.hero-note::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-visual { position: relative; display: grid; gap: 12px; min-width: 0; }
.hero-image-frame {
  position: relative;
  height: 510px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 32px;
  background: #dceeed;
  box-shadow: var(--shadow-lg);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(1,35,43,.45));
  content: "";
}
.hero-signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.hero-signal {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 82px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-sm);
}

.hero-signal strong { color: var(--deep); font-size: .74rem; line-height: 1.35; }
.hero-signal span { color: var(--ink-soft); font-size: .68rem; line-height: 1.45; }

.proof-strip {
  border-top: 1px solid rgba(15,143,138,.13);
  border-bottom: 1px solid rgba(15,143,138,.13);
  background: var(--white);
}
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 24px 25px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: 5px; color: var(--deep); font-size: .84rem; }
.proof-item span { color: var(--ink-soft); font-size: .7rem; line-height: 1.5; }

.integration-section {
  background:
    radial-gradient(circle at 100% 0, rgba(40,195,181,.12), transparent 34%),
    var(--paper);
}
.integration-panel {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 38px 42px;
  border: 1px solid rgba(15,143,138,.2);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.integration-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--deep-2), var(--teal));
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 16px 30px rgba(15,143,138,.2);
}
.integration-panel .eyebrow { margin-bottom: 9px; }
.integration-panel h2 { margin-bottom: 12px; font-size: clamp(1.45rem, 2.8vw, 2.15rem); line-height: 1.24; letter-spacing: -.025em; }
.integration-panel p { max-width: 920px; margin-bottom: 11px; color: var(--ink-soft); font-size: .82rem; }
.integration-panel .integration-note { margin-bottom: 0; padding-top: 10px; border-top: 1px solid var(--line); font-size: .75rem; }

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(5,58,67,.04);
}

.myth-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 25px;
}
.myth-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 10px;
  border-radius: 99px;
  background: var(--orange-pale);
  color: #aa3f1c;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.myth-card h3 { margin-bottom: 12px; font-size: 1.04rem; line-height: 1.4; }
.myth-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.7; }
.myth-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 100px;
  height: 100px;
  border: 20px solid rgba(15,143,138,.05);
  border-radius: 50%;
  content: "";
}

.feature-card { padding: 27px; }
.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-pale);
  color: var(--teal);
}
.icon-box svg { width: 23px; height: 23px; stroke: currentColor; }
.feature-card h3 { margin-bottom: 9px; font-size: .98rem; }
.feature-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .8rem; line-height: 1.7; }
.feature-card .micro-link { display: inline-block; margin-top: 16px; color: var(--teal); font-size: .71rem; font-weight: 700; }

.visual-split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: stretch;
  gap: 56px;
}
.visual-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.visual-card img { width: 100%; height: 100%; object-fit: cover; }
.visual-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3,38,45,.55));
  content: "";
}
.visual-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--white);
}
.visual-caption strong { display: block; margin-bottom: 4px; font-size: .88rem; }
.visual-caption span { color: rgba(255,255,255,.78); font-size: .72rem; }

.check-list { display: grid; gap: 15px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
  font-size: .84rem;
}
.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  content: "✓";
  font-size: .72rem;
  font-weight: 700;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
  counter-reset: flow;
}
.workflow-step {
  position: relative;
  min-height: 160px;
  padding: 20px 17px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  counter-increment: flow;
}
.workflow-step::before {
  width: 28px;
  height: 28px;
  display: grid;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 9px;
  background: rgba(40,195,181,.2);
  color: #9bf1e7;
  content: counter(flow, decimal-leading-zero);
  font-size: .7rem;
  font-weight: 700;
}
.workflow-step h3 { margin-bottom: 8px; font-size: .82rem; }
.workflow-step p { margin-bottom: 0; color: rgba(255,255,255,.68); font-size: .72rem; line-height: 1.6; }

.source-card { overflow: hidden; }
.source-image { height: 240px; overflow: hidden; }
.source-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.source-card:hover .source-image img { transform: scale(1.035); }
.source-copy { padding: 28px; }
.source-copy h3 { margin-bottom: 10px; font-size: 1.18rem; }
.source-copy p { color: var(--ink-soft); font-size: .8rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 19px; }
.tag {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #4f686f;
  font-size: .7rem;
  font-weight: 600;
}

.dataset-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px; }
.dataset-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.dataset-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(40,195,181,.18);
  color: #9bf1e7;
  font-size: .7rem;
  font-weight: 700;
}
.dataset-card h3 { margin: 2px 0 6px; font-size: .86rem; }
.dataset-card p { margin: 0; color: rgba(255,255,255,.68); font-size: .73rem; line-height: 1.6; }
.dataset-card a { display: inline-block; margin-top: 9px; color: #9bf1e7; font-size: .7rem; font-weight: 700; }

.disclaimer-box {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid #eed3c5;
  border-left: 4px solid var(--orange);
  border-radius: 15px;
  background: #fff8f4;
  color: #684f44;
  font-size: .76rem;
  line-height: 1.7;
}
.section-dark .disclaimer-box {
  border-color: rgba(255,255,255,.17);
  border-left-color: #ef956b;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.72);
}

.role-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.role-card { padding: 23px; border-top: 3px solid var(--teal); }
.role-number { display: block; margin-bottom: 25px; color: var(--teal); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.role-card h3 { margin-bottom: 8px; font-size: .9rem; }
.role-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .76rem; line-height: 1.65; }

.article-card { overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.article-thumb { height: 210px; overflow: hidden; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-thumb img { transform: scale(1.04); }
.article-copy { padding: 24px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 12px; color: var(--teal); font-size: .69rem; font-weight: 700; text-transform: uppercase; }
.article-copy h3 { margin-bottom: 10px; font-size: 1rem; line-height: 1.45; }
.article-copy p { margin-bottom: 15px; color: var(--ink-soft); font-size: .78rem; line-height: 1.65; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 48px;
  border-radius: 30px;
  background: linear-gradient(125deg, var(--deep), #087a7d);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.cta-panel::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -130px;
  border: 38px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { margin-bottom: 9px; font-size: clamp(1.7rem, 3vw, 2.35rem); letter-spacing: -.03em; }
.cta-panel p { max-width: 690px; margin-bottom: 0; color: rgba(255,255,255,.72); font-size: .86rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.site-footer { padding: 64px 0 25px; background: #052f39; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.05fr .65fr .72fr 1.35fr; gap: 42px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.footer-brand strong { display: block; font-size: 1.02rem; }
.footer-brand small { color: rgba(255,255,255,.62); font-size: .69rem; }
.footer-about { max-width: 350px; color: rgba(255,255,255,.62); font-size: .76rem; }
.footer-heading { margin: 3px 0 17px; color: #8ee6dd; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .76rem; }
.footer-links a:hover { color: var(--white); }
.footer-powered { display: block; margin: 1px 0 9px; color: #8ee6dd; font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.wangoon-link { display: inline-block; }
.wangoon-lockup { width: 138px; max-height: 62px; margin-bottom: 13px; object-fit: contain; object-position: left center; }
.footer-contact { display: grid; gap: 6px; margin: 0 0 16px; color: rgba(255,255,255,.7); font-size: .75rem; font-style: normal; line-height: 1.55; }
.footer-contact a:hover { color: var(--white); }
.footer-disclaimer { color: rgba(255,255,255,.58); font-size: .71rem; line-height: 1.65; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 45px;
  padding-top: 23px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,.5);
  font-size: .7rem;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 75px 0 72px;
  background: linear-gradient(135deg, #eaf7f4, #fbfcfb 58%, #fff2ea);
}
.page-hero::after {
  position: absolute;
  width: 330px;
  height: 330px;
  right: -130px;
  top: -185px;
  border: 60px solid rgba(15,143,138,.06);
  border-radius: 50%;
  content: "";
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; color: var(--ink-soft); font-size: .73rem; }
.breadcrumb span { color: #8ea0a5; }
.page-hero .display-title { max-width: 890px; }
.page-hero .section-lead { max-width: 800px; }

.page-hero-split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 60px; }
.page-hero-media { height: 430px; overflow: hidden; border: 7px solid var(--white); border-radius: 28px; box-shadow: var(--shadow-lg); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.feature-band { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-band-card { padding: 29px; }
.feature-band-card .mini { color: var(--teal); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.feature-band-card h3 { margin: 11px 0 9px; font-size: 1.08rem; }
.feature-band-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .77rem; }

.output-list { display: grid; gap: 12px; }
.output-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.output-item > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--teal-pale); color: var(--teal); font-size: .68rem; font-weight: 700; }
.output-item h3 { margin: 2px 0 4px; font-size: .83rem; }
.output-item p { margin: 0; color: var(--ink-soft); font-size: .74rem; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.faq-item summary { position: relative; cursor: pointer; padding: 21px 52px 21px 22px; font-size: .84rem; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; right: 22px; top: 19px; color: var(--teal); content: "+"; font-size: 1.2rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 22px 22px; color: var(--ink-soft); font-size: .76rem; }

.method-flow { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.method-step { padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.method-step > span { display: block; margin-bottom: 22px; color: var(--teal); font-size: .65rem; font-weight: 700; letter-spacing: .1em; }
.method-step h3 { margin-bottom: 8px; font-size: .85rem; }
.method-step p { margin: 0; color: var(--ink-soft); font-size: .73rem; line-height: 1.6; }

.status-table { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.status-row { display: grid; grid-template-columns: .75fr 1.25fr; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: 0; }
.status-cell { padding: 21px 24px; color: var(--ink-soft); font-size: .76rem; }
.status-cell:first-child { background: #f4f8f7; color: var(--ink); font-weight: 700; }

.insight-hero { padding-bottom: 52px; }
.insight-featured { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; }
.insight-featured-media { min-height: 440px; }
.insight-featured-media img { width: 100%; height: 100%; object-fit: cover; }
.insight-featured-copy { display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.insight-featured-copy h2 { margin-bottom: 16px; font-size: clamp(1.55rem, 3vw, 2.3rem); line-height: 1.25; letter-spacing: -.025em; }
.insight-featured-copy p { color: var(--ink-soft); font-size: .82rem; }

.article-hero { padding: 70px 0 55px; background: linear-gradient(180deg, #eef8f6, var(--paper)); }
.article-hero .display-title { max-width: 930px; font-size: clamp(2.1rem, 5vw, 3.35rem); }
.article-deck { max-width: 790px; color: var(--ink-soft); font-size: 1rem; }
.article-byline { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 26px; color: #698087; font-size: .74rem; }
.article-cover { width: min(calc(100% - 40px), 1180px); height: min(58vw, 620px); margin: 0 auto 60px; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow-lg); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 250px; justify-content: center; gap: 70px; }
.article-body { color: #2f4851; font-size: .94rem; line-height: 1.86; }
.article-body h2 { margin: 48px 0 16px; color: var(--ink); font-size: 1.65rem; line-height: 1.3; letter-spacing: -.025em; }
.article-body h3 { margin: 35px 0 12px; color: var(--ink); font-size: 1.15rem; }
.article-body p { margin-bottom: 22px; }
.article-body ul, .article-body ol { margin-bottom: 24px; padding-left: 23px; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--teal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-callout { margin: 35px 0; padding: 25px 27px; border-left: 4px solid var(--teal); border-radius: 0 16px 16px 0; background: var(--teal-pale); color: var(--deep); font-size: .86rem; font-weight: 600; }
.article-warning { border-left-color: var(--orange); background: var(--orange-pale); color: #74432f; }
.article-aside { align-self: start; position: sticky; top: 105px; display: grid; gap: 16px; }
.aside-card { padding: 21px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.aside-card h3 { margin-bottom: 13px; font-size: .77rem; }
.aside-card p, .aside-card li, .aside-card a { color: var(--ink-soft); font-size: .72rem; line-height: 1.65; }
.aside-card ul { margin: 0; padding-left: 17px; }
.share-button { width: 100%; }

.legal-layout { display: grid; grid-template-columns: 220px minmax(0,760px); justify-content: center; gap: 70px; }
.legal-nav { align-self: start; position: sticky; top: 110px; display: grid; gap: 8px; }
.legal-nav a { padding: 8px 0; color: var(--ink-soft); font-size: .7rem; }
.legal-nav a:hover { color: var(--teal); }
.legal-body h2 { margin: 42px 0 14px; font-size: 1.42rem; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: .82rem; line-height: 1.8; }

.not-found { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 80px 20px; background: linear-gradient(145deg, #eef9f7, #fff4ed); text-align: center; }
.not-found img { width: 112px; margin: 0 auto 24px; }
.not-found strong { display: block; color: var(--teal); font-size: 4rem; line-height: 1; }
.not-found h1 { margin: 15px 0 10px; font-size: 2rem; }
.not-found p { max-width: 540px; margin: 0 auto 24px; color: var(--ink-soft); }

.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .site-nav { gap: 18px; }
  .site-nav > a:not(.button) { font-size: .76rem; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 38px; }
  .hero-image-frame { height: 460px; }
  .workflow { grid-template-columns: repeat(3, 1fr); }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .method-flow { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-actions .button { display: none; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    max-height: calc(100vh - 76px);
    overflow: auto;
    display: grid;
    gap: 0;
    padding: 22px 20px 30px;
    border-top: 1px solid var(--line);
    background: rgba(251,252,251,.98);
    box-shadow: 0 22px 45px rgba(5,53,62,.12);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav > a:not(.button) { padding: 14px 2px; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { display: flex; margin-top: 18px; }
  .hero { padding-top: 35px; }
  .hero-grid, .visual-split, .page-hero-split { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-image-frame { height: 500px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .visual-split { gap: 38px; }
  .visual-card { min-height: 440px; }
  .dataset-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; padding: 38px; }
  .cta-actions { justify-content: flex-start; }
  .page-hero-media { height: 390px; }
  .insight-featured { grid-template-columns: 1fr; }
  .insight-featured-media { min-height: 360px; }
  .article-layout { grid-template-columns: minmax(0,760px); }
  .article-aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: minmax(0,760px); }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 10px 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .brand { min-width: 0; }
  .brand-by { display: none; }
  .brand img { width: 41px; height: 41px; }
  .hero { padding: 28px 0 65px; }
  .hero-grid { gap: 23px; }
  .hero-copy > p { font-size: .94rem; }
  .hero-actions .button { width: 100%; }
  .launch-notice-inner { align-items: flex-start; flex-direction: column; gap: 5px; padding-block: 12px; text-align: left; }
  .launch-notice a { margin-top: 4px; }
  .hero-image-frame { height: 390px; border-width: 5px; border-radius: 24px; }
  .hero-signal-row { grid-template-columns: 1fr; }
  .hero-signal { min-height: 0; }
  .integration-panel { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; border-radius: 22px; }
  .integration-mark { width: 64px; height: 64px; border-radius: 19px; font-size: .88rem; }
  .proof-grid, .grid-2, .grid-3, .grid-4, .feature-band, .role-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .workflow-step { min-height: 145px; }
  .source-image { height: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 55px 0; }
  .page-hero-media { height: 300px; }
  .method-flow { grid-template-columns: 1fr; }
  .status-row { grid-template-columns: 1fr; }
  .status-cell:first-child { padding-bottom: 12px; }
  .status-cell:last-child { padding-top: 12px; }
  .insight-featured-media { min-height: 260px; }
  .insight-featured-copy { padding: 28px; }
  .article-cover { width: calc(100% - 28px); height: 62vw; margin-bottom: 42px; border-radius: 21px; }
  .article-body { font-size: .88rem; }
  .article-aside { grid-template-columns: 1fr; }
  .cta-panel { padding: 29px 24px; border-radius: 23px; }
  .cta-actions { display: grid; }
}

@media (max-width: 420px) {
  .brand-name { font-size: .94rem; }
  .lang-link { min-width: 35px; min-height: 35px; }
  .nav-toggle { width: 39px; height: 39px; }
  .workflow { grid-template-columns: 1fr; }
  .hero-image-frame { height: 345px; }
}

@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 [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .launch-notice, .site-footer, .cta-panel, .article-aside { display: none !important; }
  body { background: #fff; color: #000; font-family: Arial, sans-serif; }
  .article-cover { box-shadow: none; }
  .article-layout { display: block; }
  a { color: #000; text-decoration: underline; }
}
