﻿:root {
  --ink: #0b0f17;
  --muted: #5f6875;
  --soft: #f5f7fa;
  --line: rgba(12, 18, 28, 0.12);
  --blue: #206eb6;
  --blue-2: #0c4f96;
  --orange: #f07b16;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 80px rgba(20, 32, 52, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.78) 0%, rgba(255, 255, 255, 0.96) 34%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 15, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 15, 23, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent 72%);
  z-index: -2;
}

#signal-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(22, 31, 45, 0.10);
  backdrop-filter: blur(22px) saturate(150%);
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 46px;
  width: 178px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(11, 15, 23, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1;
  padding: 11px 14px;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(32, 110, 182, 0.08);
}

.hero {
  min-height: 92vh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 164px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: center;
  gap: 72px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: 4.6rem;
  line-height: 1.06;
  font-weight: 760;
  letter-spacing: 0;
  max-width: 820px;
}

.hero-text {
  max-width: 700px;
  color: rgba(11, 15, 23, 0.70);
  font-size: 1.24rem;
  line-height: 1.82;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-action {
  color: #fff;
  background: #111827;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.22);
}

.secondary-action {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.hero-panel {
  min-height: 430px;
  border-radius: 8px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.52)),
    linear-gradient(135deg, rgba(32, 110, 182, 0.12), rgba(240, 123, 22, 0.08));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.panel-kicker {
  display: block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-panel strong {
  display: block;
  font-size: 2rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.panel-grid span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(12, 18, 28, 0.10);
  background: rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  color: rgba(11, 15, 23, 0.74);
  font-weight: 650;
}

.metric-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 20px 52px rgba(20, 32, 52, 0.08);
}

.metric-strip div {
  min-height: 128px;
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-strip strong {
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 12px;
}

.metric-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 42px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section h2 {
  font-size: 3rem;
  line-height: 1.16;
  font-weight: 760;
  letter-spacing: 0;
  margin-bottom: 0;
}

.narrative-grid,
.cards.four,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.narrative-grid article,
.card,
.case-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(20, 32, 52, 0.07);
}

.narrative-grid article {
  min-height: 250px;
  padding: 24px;
}

.narrative-grid span,
.card-index {
  display: block;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 58px;
}

.narrative-grid h3,
.card h3,
.case-card h3 {
  font-size: 1.28rem;
  line-height: 1.35;
  margin-bottom: 14px;
}

.narrative-grid p,
.card p,
.case-card li,
.model-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.card {
  min-height: 276px;
  padding: 25px;
}

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

.model {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.model-copy p {
  font-size: 1.06rem;
  margin-top: 24px;
}

.model-board {
  border-radius: 8px;
  border: 1px solid rgba(12, 18, 28, 0.12);
  background: #101723;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(16, 23, 35, 0.20);
}

.axis {
  min-height: 76px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.axis:last-child { border-bottom: 0; }

.axis span {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 800;
}

.axis strong {
  font-size: 1.08rem;
}

.axis.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(32, 110, 182, 0.35), rgba(240, 123, 22, 0.18));
  border-radius: 8px;
  border-bottom: 0;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--line);
}

.timeline li {
  min-height: 230px;
  background: rgba(255, 255, 255, 0.86);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
}

.timeline span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  margin-bottom: 34px;
}

.timeline strong {
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.timeline em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
  font-size: 0.92rem;
}

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

.case-card {
  padding: 14px 14px 24px;
  min-height: 520px;
}

.case-visual {
  height: 210px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  background-color: #edf2f7;
}

.case-visual::before,
.case-visual::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
}

.case-visual::after {
  inset: auto 28px 28px 28px;
  height: 54px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
}

.private-home {
  background:
    linear-gradient(135deg, rgba(13, 21, 32, 0.10), rgba(13, 21, 32, 0.02)),
    linear-gradient(90deg, #d8dde4 0 30%, #f6f7f8 30% 35%, #a5afbb 35% 64%, #eff1f4 64% 100%);
}

.agriculture {
  background:
    linear-gradient(135deg, rgba(32, 110, 182, 0.12), rgba(240, 123, 22, 0.10)),
    repeating-linear-gradient(110deg, #dfe9d7 0 22px, #f2efe0 22px 44px, #b5c99a 44px 66px);
}

.beauty {
  background:
    linear-gradient(135deg, rgba(240, 123, 22, 0.12), rgba(32, 110, 182, 0.10)),
    linear-gradient(90deg, #f5f4f2, #d9e2ea 38%, #f8f7f5 68%, #c9d5df);
}

.case-card > p {
  color: var(--blue);
  font-weight: 750;
  margin: 0 10px 12px;
}

.case-card h3 {
  margin-left: 10px;
  margin-right: 10px;
}

.case-card ul {
  margin: 18px 10px 0;
  padding-left: 18px;
}

.case-card li { margin-bottom: 10px; }

.launch-card {
  border-radius: 8px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, #101723, #182338 54%, #0f1724);
  color: #fff;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  box-shadow: 0 34px 90px rgba(16, 23, 35, 0.22);
}

.launch-card .eyebrow { color: #88b8ef; }

.launch-card h2 { color: #fff; }

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

.weeks div {
  min-height: 116px;
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.weeks span {
  display: block;
  color: #f6b16f;
  font-weight: 800;
  margin-bottom: 12px;
}

.weeks strong {
  line-height: 1.55;
  font-size: 1rem;
}

.contact {
  padding-bottom: 86px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.contact-copy h2 {
  font-size: 3.25rem;
  max-width: 760px;
}

.contact-panel {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-panel img {
  width: 240px;
  height: 98px;
  object-fit: contain;
  display: block;
  margin-bottom: 28px;
}

.contact-panel p {
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-panel strong {
  display: block;
  line-height: 1.5;
  margin-bottom: 22px;
}

.contact-panel a {
  color: var(--blue-2);
  font-weight: 750;
  text-decoration: none;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .site-header { top: 10px; width: calc(100% - 20px); }
  .brand { width: 142px; }
  .nav-links a { padding: 10px 9px; }
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 126px; }
  h1 { font-size: 3.2rem; }
  .hero-text { font-size: 1.08rem; }
  .hero-panel { min-height: 320px; }
  .metric-strip, .section-heading, .model, .launch-card, .contact { grid-template-columns: 1fr; }
  .narrative-grid, .cards.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-grid { grid-template-columns: 1fr; }
  .section h2, .contact-copy h2 { font-size: 2.3rem; }
}

@media (max-width: 640px) {
  .site-header { height: 58px; padding: 0 10px; }
  .brand { width: 112px; }
  .nav-links { gap: 0; }
  .nav-links a { font-size: 0.82rem; padding: 9px 6px; }
  .hero, .section, .metric-strip, .site-footer { width: calc(100% - 28px); }
  .hero { padding-top: 112px; min-height: 90vh; }
  h1 { font-size: 2.42rem; line-height: 1.12; }
  .hero-actions a { width: 100%; }
  .metric-strip, .narrative-grid, .cards.four, .timeline, .weeks { grid-template-columns: 1fr; }
  .section { padding-top: 82px; }
  .section h2, .contact-copy h2 { font-size: 2rem; }
  .section-heading { gap: 10px; margin-bottom: 28px; }
  .launch-card { padding: 26px; }
  .contact-panel img { width: 210px; }
  .site-footer { flex-direction: column; justify-content: center; gap: 8px; text-align: center; }
}

.ai-readable {
  scroll-margin-top: 96px;
}

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

.fact-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(20, 32, 52, 0.06);
}

.fact-grid h3 {
  margin-bottom: 14px;
  font-size: 1.14rem;
}

.fact-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.74;
}

.faq {
  scroll-margin-top: 96px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(20, 32, 52, 0.05);
  overflow: hidden;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 750;
  list-style-position: inside;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.72;
}

.contact-note {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 0.86rem;
  color: rgba(95, 104, 117, 0.78) !important;
}

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

@media (max-width: 640px) {
  .fact-grid { grid-template-columns: 1fr; }
  .fact-grid article { min-height: 0; }
  .nav-links a:nth-child(3) { display: none; }
}

.contact-panel address {
  display: block;
  margin: 18px 0 22px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.62;
}

.contact-panel address span {
  display: block;
}

.people-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.person-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.person-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 800;
}

.person-card a {
  display: block;
  margin-top: 6px;
  color: var(--blue-2);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--blue-2); }

.section-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.news {
  scroll-margin-top: 96px;
}

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

.news-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(20, 32, 52, 0.06);
}

.news-card time {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 36px;
}

.news-card h3 {
  font-size: 1.24rem;
  line-height: 1.42;
  margin-bottom: 14px;
}

.news-card p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 22px;
}

.news-card a {
  margin-top: auto;
  color: var(--blue-2);
  font-weight: 760;
  text-decoration: none;
}

.news-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
}

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

@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 0; }
  .nav-links a:nth-child(4) { display: none; }
}

/* Premium brand refresh */
.hero {
  min-height: 96vh;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 92px;
  width: min(980px, 72vw);
  height: min(520px, 42vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 110, 182, 0.13), rgba(240, 123, 22, 0.06) 48%, transparent 72%);
  filter: blur(8px);
  z-index: -1;
}

.hero-copy .eyebrow::after,
.premium-copy .eyebrow::after,
.about .eyebrow::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.about {
  scroll-margin-top: 96px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.about-copy {
  padding: 34px;
  border: 1px solid rgba(12, 18, 28, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(20, 32, 52, 0.07);
}

.about-copy p {
  margin-bottom: 18px;
  color: rgba(11, 15, 23, 0.72);
  font-size: 1.06rem;
  line-height: 1.84;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-signals {
  display: grid;
  gap: 12px;
}

.about-signals div {
  min-height: 120px;
  padding: 22px 24px;
  border: 1px solid rgba(12, 18, 28, 0.10);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 252, 0.78));
  box-shadow: 0 16px 44px rgba(20, 32, 52, 0.055);
}

.about-signals strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.about-signals span {
  color: var(--muted);
  line-height: 1.62;
}

.premium-geo {
  scroll-margin-top: 96px;
}

.premium-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  padding: 48px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 20, 30, 0.98), rgba(22, 32, 48, 0.98) 46%, rgba(10, 18, 30, 0.98)),
    radial-gradient(circle at 86% 16%, rgba(240, 123, 22, 0.28), transparent 34%);
  box-shadow: 0 36px 96px rgba(16, 23, 35, 0.24);
}

.premium-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.7), transparent 76%);
  pointer-events: none;
}

.premium-copy,
.premium-steps {
  position: relative;
  z-index: 1;
}

.premium-copy .eyebrow {
  color: #87bcf2;
}

.premium-copy h2 {
  color: #fff;
  margin-bottom: 22px;
}

.premium-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.82;
}

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

.premium-steps article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
}

.premium-steps span {
  display: block;
  margin-bottom: 34px;
  color: #f6b16f;
  font-weight: 850;
}

.premium-steps h3 {
  color: #fff;
  margin-bottom: 12px;
}

.premium-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.featured-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 253, 0.84));
  border-color: rgba(32, 110, 182, 0.22);
}

@media (max-width: 980px) {
  .about-layout,
  .premium-wrap {
    grid-template-columns: 1fr;
  }

  .premium-wrap {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .hero::before {
    top: 80px;
    width: 92vw;
    height: 68vw;
  }

  .about-copy,
  .premium-wrap {
    padding: 24px;
  }

  .premium-steps {
    grid-template-columns: 1fr;
  }

  .premium-steps article {
    min-height: 0;
  }

  .nav-links a:nth-child(2),
  .nav-links a:nth-child(5) {
    display: none;
  }
}

.hero { position: relative; }


.geo-system-trigger {
  cursor: pointer;
}

.geo-system-trigger:focus-visible {
  outline: 2px solid rgba(32, 110, 182, 0.72);
  outline-offset: 4px;
}

.hero-panel.geo-system-trigger,
.model-board.geo-system-trigger,
.premium-steps .geo-system-trigger {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-panel.geo-system-trigger:hover,
.model-board.geo-system-trigger:hover,
.premium-steps .geo-system-trigger:hover {
  transform: translateY(-2px);
}

.geo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.geo-modal.is-open {
  display: flex;
}

.geo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 22, 0.42);
  backdrop-filter: blur(10px);
}

.geo-modal-dialog {
  position: relative;
  width: min(420px, 100%);
  min-height: 230px;
  padding: 34px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.92)),
    radial-gradient(circle at 82% 10%, rgba(32, 110, 182, 0.16), transparent 40%);
  box-shadow: 0 32px 100px rgba(8, 13, 22, 0.28);
  text-align: center;
  animation: geoModalIn 180ms ease-out;
}

.geo-modal-kicker {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.geo-modal-dialog h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.2;
}

.geo-modal-dialog p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 700;
}

.geo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(12, 18, 28, 0.10);
  border-radius: 50%;
  color: rgba(11, 15, 23, 0.62);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.geo-modal-close:hover {
  color: var(--ink);
  background: #fff;
}

body.geo-modal-open {
  overflow: hidden;
}

@keyframes geoModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .geo-modal-dialog {
    border-radius: 20px;
    padding: 30px 24px 28px;
  }

  .geo-modal-dialog h2 {
    font-size: 1.72rem;
  }
}

/* Section hierarchy and readability refresh */
main {
  overflow: hidden;
}

.section {
  position: relative;
  padding-top: 118px;
  padding-bottom: 44px;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 58px;
  bottom: -22px;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -2;
  pointer-events: none;
}

.about::before,
.service-matrix::before,
.system::before,
.news::before {
  background: linear-gradient(180deg, rgba(246, 248, 251, 0.92), rgba(251, 253, 255, 0.86));
}

.ai-readable::before,
.model::before,
.cases::before,
.faq::before,
.contact::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 253, 0.58));
}

.premium-geo::before,
.launch::before {
  background: linear-gradient(180deg, rgba(239, 244, 249, 0.42), rgba(255, 255, 255, 0.78));
}

.section-heading,
.section-heading.compact {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(12, 18, 28, 0.08);
}

.section-heading.compact {
  max-width: 820px;
}

.section .eyebrow {
  font-size: 0.82rem;
  font-weight: 820;
  color: var(--blue-2);
}

.section h2 {
  font-size: clamp(2.35rem, 3.6vw, 3.35rem);
  line-height: 1.12;
}

.section-intro,
.model-copy p,
.contact-copy p,
.about-copy p,
.premium-copy p {
  font-size: 1.08rem;
}

.narrative-grid h3,
.card h3,
.case-card h3,
.news-card h3,
.fact-grid h3,
.about-signals strong,
.premium-steps h3 {
  font-size: 1.34rem;
  line-height: 1.34;
}

.narrative-grid p,
.card p,
.case-card li,
.fact-grid p,
.news-card p,
.faq-list p,
.about-signals span,
.timeline em,
.premium-steps p {
  font-size: 0.98rem;
}

.metric-strip {
  margin-top: 10px;
  margin-bottom: 14px;
}

.about-copy,
.fact-grid article,
.narrative-grid article,
.card,
.case-card,
.news-card,
.faq-list details,
.contact-panel,
.about-signals div {
  background-color: rgba(255, 255, 255, 0.92);
}

.about-copy,
.fact-grid article,
.narrative-grid article,
.card,
.news-card,
.faq-list details,
.about-signals div {
  box-shadow: 0 18px 48px rgba(20, 32, 52, 0.055);
}

.service-matrix .card,
.news-card,
.fact-grid article {
  border-color: rgba(32, 110, 182, 0.12);
}

.model {
  padding-top: 132px;
  padding-bottom: 64px;
}

.model-copy {
  padding: 24px 0;
}

.cases {
  padding-bottom: 68px;
}

.news,
.faq,
.contact {
  padding-top: 104px;
}

.contact {
  padding-bottom: 104px;
}

@media (max-width: 980px) {
  .section {
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .section h2 {
    font-size: 2.24rem;
  }

  .section-heading,
  .section-heading.compact {
    padding-bottom: 14px;
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 76px;
    padding-bottom: 28px;
  }

  .section::before {
    top: 38px;
    bottom: -14px;
  }

  .section h2 {
    font-size: 1.88rem;
    line-height: 1.16;
  }

  .section .eyebrow {
    font-size: 0.76rem;
  }

  .narrative-grid h3,
  .card h3,
  .case-card h3,
  .news-card h3,
  .fact-grid h3,
  .premium-steps h3 {
    font-size: 1.18rem;
  }

  .section-intro,
  .model-copy p,
  .contact-copy p,
  .about-copy p,
  .premium-copy p {
    font-size: 1rem;
  }
}

/* Article pages for AI-readable news URLs */
.article-page {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 42%, #f5f8fb 100%);
}

.article-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.article-shell,
.article-cta {
  border: 1px solid rgba(32, 110, 182, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(20, 32, 52, 0.065);
}

.article-shell {
  padding: clamp(30px, 5vw, 64px);
}

.article-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 34px;
  color: var(--blue-2);
  font-weight: 780;
  text-decoration: none;
}

.article-shell h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  line-height: 1.05;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-lead {
  max-width: 780px;
  margin: 0 0 42px;
  color: #263446;
  font-size: 1.2rem;
  line-height: 1.72;
}

.article-content {
  max-width: 780px;
}

.article-content h2 {
  margin: 38px 0 14px;
  font-size: 1.58rem;
  line-height: 1.34;
}

.article-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.article-cta {
  position: sticky;
  top: 106px;
  padding: 26px;
}

.article-cta h2 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  line-height: 1.35;
}

.article-cta p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.article-cta .primary-action {
  width: 100%;
  justify-content: center;
}

@media (max-width: 920px) {
  .article-main {
    grid-template-columns: 1fr;
  }

  .article-cta {
    position: static;
  }
}

@media (max-width: 640px) {
  .article-main {
    width: calc(100% - 28px);
    padding-top: 112px;
  }

  .article-shell,
  .article-cta {
    padding: 24px;
  }

  .article-lead {
    font-size: 1.06rem;
  }
}

/* Realistic technology visual refresh */
body {
  background:
    radial-gradient(circle at 78% 6%, rgba(32, 110, 182, 0.13), transparent 32%),
    radial-gradient(circle at 10% 26%, rgba(240, 123, 22, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(247, 250, 253, 0.96) 0%, #ffffff 34%, #f7f9fc 100%);
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(36px, 6vw, 82px);
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 110px;
  width: min(680px, 44vw);
  height: min(680px, 44vw);
  transform: translateX(-6%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 110, 182, 0.16), rgba(32, 110, 182, 0.04) 48%, transparent 72%);
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

.hero-photo-panel {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: #0f1724;
  box-shadow: 0 34px 90px rgba(15, 23, 36, 0.22);
  isolation: isolate;
}

.hero-photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.03) contrast(1.02);
}

.hero-photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 23, 0.02), rgba(6, 12, 23, 0.34)),
    linear-gradient(135deg, rgba(32, 110, 182, 0.28), transparent 54%);
  z-index: 1;
}

.hero-photo-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(9, 17, 30, 0.58);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-photo-overlay strong {
  display: block;
  max-width: 360px;
  margin-bottom: 18px;
  font-size: clamp(1.46rem, 3vw, 2rem);
  line-height: 1.18;
}

.hero-photo-overlay .panel-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hero-photo-overlay .panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.hero-photo-overlay .panel-grid span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.9);
}

.metric-strip {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 252, 0.78)),
    linear-gradient(90deg, rgba(32, 110, 182, 0.08), rgba(240, 123, 22, 0.055));
  border-color: rgba(32, 110, 182, 0.13);
  box-shadow: 0 18px 54px rgba(20, 32, 52, 0.08);
}

.premium-copy {
  align-self: start;
}

.premium-media {
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.premium-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.premium-media figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

.case-showcase {
  position: relative;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(32, 110, 182, 0.12);
  background: #101723;
  box-shadow: 0 22px 62px rgba(20, 32, 52, 0.11);
}

.case-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.case-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 14, 24, 0.66));
  pointer-events: none;
}

.case-showcase figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.62;
}

.case-visual {
  background-image: linear-gradient(180deg, rgba(8, 14, 24, 0.02), rgba(8, 14, 24, 0.22)), url("assets/local-business-cases.jpg");
  background-size: auto 100%, 310% 100%;
  background-repeat: no-repeat;
  box-shadow: inset 0 -60px 70px rgba(10, 17, 28, 0.18);
}

.private-home { background-position: center, left center; }
.agriculture { background-position: center, center center; }
.beauty { background-position: center, right center; }

.case-visual::before {
  inset: 16px;
  border-color: rgba(255, 255, 255, 0.42);
}

.case-visual::after {
  inset: auto 18px 18px 18px;
  height: 48px;
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.28);
}

.card,
.news-card,
.fact-grid article,
.about-copy,
.about-signals div,
.faq-list details,
.contact-panel {
  backdrop-filter: blur(14px) saturate(130%);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-photo-panel {
    min-height: 460px;
  }

  .case-showcase img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .hero-photo-panel {
    min-height: 420px;
  }

  .hero-photo-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .hero-photo-overlay .panel-grid {
    grid-template-columns: 1fr;
  }

  .case-showcase img {
    aspect-ratio: 4 / 3;
  }

  .case-showcase figcaption {
    left: 16px;
    right: 16px;
    bottom: 14px;
    font-size: 0.92rem;
  }

  .premium-media img {
    aspect-ratio: 4 / 3;
  }
}


/* Official source proof strip */
.official-proof {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.official-proof div {
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(32, 110, 182, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 253, 0.82)),
    linear-gradient(120deg, rgba(32, 110, 182, 0.08), rgba(240, 123, 22, 0.05));
  box-shadow: 0 18px 48px rgba(20, 32, 52, 0.065);
  backdrop-filter: blur(14px) saturate(130%);
}

.official-proof span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 820;
}

.official-proof strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.25;
}

.official-proof em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.62;
  font-size: 0.94rem;
}

@media (max-width: 920px) {
  .official-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .official-proof {
    width: calc(100% - 28px);
  }
}

/* Customer-facing cleanup and case photo alignment */
#strengths { scroll-margin-top: 96px; }
.case-grid-photos {
  align-items: stretch;
}
.case-grid-photos .case-card {
  min-height: 0;
  padding: 0 0 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid rgba(12, 18, 28, 0.08);
}
.case-grid-photos .case-card > p {
  margin: 22px 24px 10px;
}
.case-grid-photos .case-card h3 {
  margin: 0 24px 14px;
}
.case-grid-photos .case-card ul {
  margin: 6px 24px 0;
  padding-left: 18px;
}
.case-grid-photos .case-card li {
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .case-grid-photos .case-card > p,
  .case-grid-photos .case-card h3,
  .case-grid-photos .case-card ul {
    margin-left: 18px;
    margin-right: 18px;
  }
}
