    :root {
      color-scheme: dark;
      /* Mix: logo EO cyan + field agriculture green */
      --gs-void: #07140f;
      --gs-surface: #0c1814;
      --gs-cyan: #1ad4e8;
      --gs-cyan-soft: #9ae8f2;
      --gs-green: #2f9a68;
      --gs-green-soft: #7dcca3;
      --gs-teal: #1aad9a;
      --gs-mint: #2bb88a;
      --gs-ice: #eaf6f2;
      --gs-muted: #849690;
      --gs-paper: #eef2ef;
      --gs-ink-text: #0e1a14;
      font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    @keyframes slideIn {
      from { transform: translateX(-20px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
    @keyframes slideUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @keyframes scaleIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    @keyframes glow {
      0%, 100% { box-shadow: 0 0 20px rgba(26, 212, 232, 0.22); }
      50% { box-shadow: 0 0 30px rgba(26, 212, 232, 0.38); }
    }
    @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes slideDown {
      from { transform: translateY(-20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes shimmerText {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes borderGlow {
      0%, 100% { border-color: rgba(26, 212, 232, 0.22); box-shadow: 0 0 20px rgba(26, 212, 232, 0.08); }
      50% { border-color: rgba(26, 212, 232, 0.4); box-shadow: 0 0 40px rgba(26, 212, 232, 0.22); }
    }
    @keyframes cardHover {
      0% { transform: translateY(0) scale(1); }
      100% { transform: translateY(-8px) scale(1.02); }
    }
    @keyframes iconPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }
    body {
      margin: 0;
      min-height: 100vh;
      background:
        radial-gradient(ellipse 65% 48% at 10% 0%, rgba(26, 212, 232, 0.1), transparent 55%),
        radial-gradient(ellipse 55% 45% at 92% 12%, rgba(47, 154, 104, 0.14), transparent 52%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(26, 173, 154, 0.08), transparent 50%),
        linear-gradient(180deg, #07140f 0%, #0a1612 50%, #07140f 100%);
      background-attachment: fixed;
      color: var(--gs-ice);
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
      position: relative;
    }
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 20% 30%, rgba(26, 212, 232, 0.05) 0%, transparent 42%),
        radial-gradient(circle at 78% 68%, rgba(47, 154, 104, 0.06) 0%, transparent 45%);
      pointer-events: none;
      z-index: 0;
    }
    
    /* Navigation Bar */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar {
      background: rgba(7, 20, 15, 0.92);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border-bottom: 1px solid rgba(26, 173, 154, 0.16);
      padding: 0 32px;
      height: 72px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    }
    .navbar:hover {
      background: rgba(7, 20, 15, 0.96);
      border-bottom-color: rgba(26, 212, 232, 0.22);
    }
    .navbar-toggle {
      display: none;
      width: 44px;
      height: 44px;
      margin-left: auto;
      padding: 0;
      border: 1px solid rgba(154, 232, 242, 0.22);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.03);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1200;
    }
    .navbar-account {
      display: none;
      width: 40px;
      height: 40px;
      margin-left: auto;
      margin-right: 8px;
      padding: 0;
      border: 1px solid rgba(154, 232, 242, 0.35);
      border-radius: 8px;
      background: rgba(26, 212, 232, 0.08);
      color: #eaf6f2;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1200;
    }
    .navbar-account:hover {
      border-color: rgba(154, 232, 242, 0.55);
      background: rgba(26, 212, 232, 0.14);
    }
    .navbar-toggle__bar {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 1px;
      background: #eaf6f2;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    body.nav-open .navbar-toggle__bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    body.nav-open .navbar-toggle__bar:nth-child(2) {
      opacity: 0;
    }
    body.nav-open .navbar-toggle__bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    body.nav-open {
      overflow: hidden;
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .brand-logo-wrap {
      --logo-content-h: 46px;
      display: block;
      height: var(--logo-content-h);
      width: calc(1449 * var(--logo-content-h) / 443);
      overflow: hidden;
      line-height: 0;
      flex-shrink: 0;
    }
    /* PNG 1500×1500 — crop i saktë: globi + wordmark (bbox 51,530 → 1499,972) */
    .brand-logo-official {
      display: block;
      height: calc(1500 * var(--logo-content-h) / 443);
      width: auto;
      max-width: none;
      object-fit: contain;
      mix-blend-mode: screen;
      margin-top: calc(-530 * var(--logo-content-h) / 443);
      margin-left: calc(-51 * var(--logo-content-h) / 443);
    }
    .brand-logo-wrap--icon {
      display: none;
      --logo-content-h: 42px;
      width: 42px;
      height: 42px;
      overflow: visible;
    }
    .brand-logo-icon {
      display: block;
      width: 42px;
      height: 42px;
      object-fit: contain;
      mix-blend-mode: screen;
      filter: drop-shadow(0 0 10px rgba(26, 212, 232, 0.28));
    }
    .hero-eyebrow {
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #64748b;
      margin: 0 0 20px;
    }
    .hero-subtitle {
      font-size: 1.125rem;
      color: #94a3b8;
      margin: 0 auto 40px;
      line-height: 1.65;
      max-width: 720px;
      font-weight: 400;
    }
    .btn-primary-hero,
    .btn.btn-primary-hero {
      padding: 12px 24px;
      font-size: 0.9375rem;
      font-weight: 600;
      background: linear-gradient(135deg, #1aad9a 0%, #2f9a68 100%) !important;
      color: #04140f !important;
      border: none !important;
      border-radius: 6px;
      box-shadow: none !important;
    }
    .btn-primary-hero:hover,
    .btn.btn-primary-hero:hover {
      background: linear-gradient(135deg, #1fbea8 0%, #36a873 100%) !important;
      transform: none;
    }
    .btn-outline-hero,
    .btn.btn-outline-hero {
      padding: 12px 24px;
      font-size: 0.9375rem;
      font-weight: 600;
      background: transparent !important;
      color: #e2e8f0 !important;
      border: 1px solid rgba(148, 163, 184, 0.35) !important;
      border-radius: 8px;
      box-shadow: none !important;
    }
    .btn-outline-hero:hover,
    .btn.btn-outline-hero:hover {
      background: rgba(148, 163, 184, 0.08) !important;
      border-color: rgba(148, 163, 184, 0.5) !important;
      transform: none;
    }
    .navbar-links {
      display: flex;
      gap: 6px 20px;
      align-items: center;
    }
    .navbar-link {
      color: rgba(241, 245, 249, 0.86);
      text-decoration: none;
      font-size: 0.8125rem;
      font-weight: 500;
      letter-spacing: 0.015em;
      transition: color 0.18s ease;
      pointer-events: auto !important;
      cursor: pointer !important;
      position: relative;
      z-index: 100;
      padding: 8px 4px;
      border-radius: 0;
    }
    .navbar-link::before {
      display: none;
    }
    .navbar-link:hover {
      color: #9ae8f2;
      background: transparent;
      opacity: 1;
    }
    .navbar-link:hover::before {
      width: 0;
    }
    .navbar-link--dropdown {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .navbar-chevron {
      width: 6px;
      height: 6px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      opacity: 0.72;
    }
    .navbar-utilities {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-left: 4px;
      padding-left: 18px;
      border-left: 1px solid rgba(154, 232, 242, 0.14);
    }
    button.navbar-link.navbar-link--btn {
      background: none;
      border: none;
      font: inherit;
      line-height: inherit;
    }
    .navbar-dropdown {
      pointer-events: auto !important;
      position: relative;
      z-index: 2001;
    }
    .navbar-dropdown-menu {
      pointer-events: auto !important;
      cursor: default;
      animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: top;
    }
    .category-dropdown-item {
      pointer-events: auto !important;
      cursor: pointer !important;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    .category-dropdown-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, rgba(26, 212, 232, 0.08), transparent);
      transition: width 0.3s;
    }
    .category-dropdown-item:hover::before {
      width: 100%;
    }
    .btn-sign-in {
      padding: 8px 16px;
      background: transparent;
      color: #e0f9ff;
      border: 1px solid rgba(154, 232, 242, 0.7);
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.8125rem;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
      box-shadow: none;
      position: relative;
      overflow: visible;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: inherit;
      line-height: 1;
    }
    .btn-sign-in__icon {
      flex-shrink: 0;
      opacity: 0.95;
    }
    .btn-sign-in--nav {
      border-radius: 6px;
      border-color: rgba(154, 232, 242, 0.45);
      color: #eaf6f2;
      background: rgba(26, 212, 232, 0.06);
    }
    .btn-sign-in::before {
      display: none;
    }
    .btn-sign-in:hover {
      background: rgba(26, 212, 232, 0.12);
      border-color: #9ae8f2;
      transform: none;
      box-shadow: none;
    }
    .btn-sign-in:active {
      transform: none;
    }
    .user-menu {
      position: relative;
    }
    .user-menu-btn {
      display: inline-flex;
      align-items: center;
      padding: 0;
      background: transparent;
      border: none;
      border-radius: 999px;
      color: #f8fafc;
      cursor: pointer;
      box-shadow: none;
      transition: transform 0.18s ease;
    }
    .user-menu-btn:hover {
      background: transparent;
      box-shadow: none;
      transform: translateY(-1px);
    }
    .user-menu-btn:hover .user-avatar {
      border-color: rgba(154, 232, 242, 0.72);
      box-shadow: 0 0 0 3px rgba(26, 212, 232, 0.14);
    }
    .user-menu-btn:focus-visible {
      outline: 2px solid rgba(154, 232, 242, 0.45);
      outline-offset: 2px;
    }
    .user-menu-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      padding: 6px;
      background: rgba(7, 17, 31, 0.94);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(154, 232, 242, 0.18);
      border-radius: 14px;
      min-width: 220px;
      display: none;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
    }
    .user-menu-dropdown.show {
      display: block;
    }
    .user-menu-item {
      padding: 10px 12px;
      border-radius: 8px;
      color: #cbd5e1;
      text-decoration: none;
      display: block;
      font-size: 0.84rem;
      transition: background 0.18s ease, color 0.18s ease;
      cursor: pointer;
    }
    .user-menu-item:hover {
      background: rgba(26, 212, 232, 0.1);
      color: #e2e8f0;
    }
    .user-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(26, 212, 232, 0.35), rgba(99, 102, 241, 0.42));
      border: 1px solid rgba(154, 232, 242, 0.45);
      color: #fff;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.02em;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    }
    .user-menu-label {
      color: #f1f5f9;
      font-size: 0.8125rem;
      font-weight: 500;
      white-space: nowrap;
    }
    .user-menu-chevron {
      width: 7px;
      height: 7px;
      margin-left: -2px;
      border-right: 1.5px solid rgba(226, 232, 240, 0.75);
      border-bottom: 1.5px solid rgba(226, 232, 240, 0.75);
      transform: rotate(45deg) translateY(-1px);
      transition: border-color 0.2s ease, transform 0.2s ease;
    }
    .user-menu-btn:hover .user-menu-chevron {
      border-color: #9ae8f2;
    }
    .user-menu-email {
      padding: 10px 12px 8px;
      font-size: 0.75rem;
      color: #94a3b8;
      border-bottom: 1px solid rgba(154, 232, 242, 0.1);
      word-break: break-all;
    }
    
    /* Views */
    .app-view {
      display: none;
      width: 100%;
      min-height: calc(100vh - 70px);
    }
    .app-view.active {
      display: block;
    }
    #view-auth.active {
      position: fixed;
      inset: 70px 0 0;
      z-index: 900;
      overflow-y: auto;
      background: rgba(7, 11, 24, 0.97);
      backdrop-filter: blur(8px);
    }
    .auth-error {
      display: none;
      margin-bottom: 16px;
      padding: 12px 14px;
      border-radius: 10px;
      font-size: 0.88rem;
      line-height: 1.45;
      color: #fecaca;
      background: rgba(127, 29, 29, 0.35);
      border: 1px solid rgba(248, 113, 113, 0.45);
    }
    .auth-error.visible {
      display: block;
    }
    
    /* Landing Page */
    .hero {
      padding: 80px 60px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: -180px 15% auto 6%;
      height: 260px;
      background: linear-gradient(120deg, rgba(0, 232, 255, 0.28), rgba(189, 75, 255, 0.16));
      filter: blur(120px);
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 980px;
      margin: 0 auto;
    }
    .hero h1 {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.1;
      margin: 0 0 20px;
      background: linear-gradient(135deg, #ffffff 0%, #7dd3e8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 1.15rem;
      color: #94a3b8;
      margin: 0 0 32px;
      line-height: 1.6;
    }
    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn {
      padding: 14px 28px;
      border-radius: 10px;
      border: none;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: white;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(26, 212, 232, 0.22);
    }
    .btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }
    .btn:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    }
    .btn:hover::before {
      width: 300px;
      height: 300px;
    }
    .btn:active {
      transform: translateY(0) scale(0.98);
    }
    .btn:hover {
      background: #4f46e5;
      transform: translateY(-1px);
    }
    .btn-outline {
      background: transparent;
      border: 1px solid rgba(148, 163, 255, 0.3);
      color: #7dd3e8;
    }
    .btn-outline:hover {
      background: rgba(148, 163, 255, 0.1);
      border-color: rgba(148, 163, 255, 0.5);
    }
    
    /* Categories Grid */
    .categories-section {
      padding: 60px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }
    .category-card {
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(148, 163, 255, 0.1);
      border-radius: 12px;
      padding: 24px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .category-card:hover {
      background: rgba(15, 23, 42, 0.8);
      border-color: rgba(148, 163, 255, 0.3);
      transform: translateY(-4px);
    }
    .category-card h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
      color: #7dd3e8;
    }
    .category-card p {
      color: #94a3b8;
      line-height: 1.6;
    }

    .landing-hero-title {
      font-size: clamp(1.875rem, 4.2vw, 3rem);
      font-weight: 700;
      line-height: 1.2;
      margin: 0 0 20px;
      color: #ffffff;
      letter-spacing: -0.02em;
    }
    /* Landing layout width */
    #view-landing {
      --landing-max: min(1480px, calc(100vw - 48px));
      --landing-pad-x: clamp(20px, 3vw, 40px);
      --landing-lead-max: 960px;
    }
    #view-landing .landing-section,
    #view-landing .landing-trust-bar,
    #view-landing .landing-footer-grid,
    #view-landing .landing-footer-bottom,
    #view-landing .landing-footer-grant-panel {
      max-width: none;
      width: 100%;
      padding-left: max(var(--landing-pad-x), calc((100vw - var(--landing-max)) / 2));
      padding-right: max(var(--landing-pad-x), calc((100vw - var(--landing-max)) / 2));
      box-sizing: border-box;
    }
    .landing-section {
      padding-top: 56px;
      padding-bottom: 72px;
      margin: 0;
    }
    .landing-section.alt {
      background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.45) 45%, transparent);
      border-top: 1px solid rgba(148, 163, 255, 0.08);
      border-bottom: 1px solid rgba(148, 163, 255, 0.08);
    }
    /* Bright band — white headings, high contrast */
    .landing-section--bright {
      background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.055) 48%,
        rgba(255, 255, 255, 0.02) 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    .landing-section--bright h2,
    .landing-section--bright .svc-category__header h2 {
      color: #ffffff;
      font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    }
    .landing-section--bright .lead {
      color: #cbd5e1;
    }
    .landing-section--bright .showcase-copy h3 {
      color: #ffffff;
    }
    /* Accent band — purple headings (existing feel) */
    .landing-section--accent h2 {
      color: #7dd3e8;
      font-size: clamp(1.65rem, 2.8vw, 2rem);
    }
    .landing-section--accent .lead {
      color: #94a3b8;
    }
    .landing-section--accent .how-step-card h3 {
      color: #c4b5fd;
    }
    .landing-section--accent .showcase-copy h3 {
      color: #7dd3e8;
    }
    .landing-section--accent .showcase-step {
      color: #a5b4fc;
    }

    /* Scroll reveal */
    @media (prefers-reduced-motion: no-preference) {
      #view-landing .landing-reveal {
        opacity: 0;
        transform: translateY(32px);
        transition:
          opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
      }
      #view-landing .landing-reveal--left {
        transform: translateX(-40px);
      }
      #view-landing .landing-reveal--right {
        transform: translateX(40px);
      }
      #view-landing .landing-reveal--scale {
        transform: translateY(24px) scale(0.96);
      }
      #view-landing .landing-reveal.is-visible {
        opacity: 1;
        transform: none;
      }
      #view-landing .landing-reveal[data-reveal-delay="1"] { transition-delay: 0.08s; }
      #view-landing .landing-reveal[data-reveal-delay="2"] { transition-delay: 0.16s; }
      #view-landing .landing-reveal[data-reveal-delay="3"] { transition-delay: 0.24s; }
      #view-landing .landing-reveal[data-reveal-delay="4"] { transition-delay: 0.32s; }
      #view-landing .landing-reveal[data-reveal-delay="5"] { transition-delay: 0.4s; }
      #view-landing .showcase-visual .showcase-screenshot {
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
      }
      #view-landing .showcase-row.is-visible .showcase-screenshot {
        transform: translateY(-4px);
        box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(26, 212, 232, 0.12);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      #view-landing .landing-reveal {
        opacity: 1;
        transform: none;
      }
    }
    #landing-catalog .svc-category:last-child {
      margin-bottom: 0;
    }

    /* Narrative landing sections */
    .landing-value-band {
      text-align: left;
      padding-top: 72px;
      padding-bottom: 72px;
    }
    .landing-value-band h2 {
      font-size: clamp(1.65rem, 3vw, 2.2rem);
      max-width: 640px;
      margin: 0 0 12px;
      line-height: 1.22;
      color: #ffffff;
    }
    .landing-value-band .lead {
      max-width: 520px;
      margin: 0 0 40px;
    }
    .band-cream {
      background: #f4f1ea;
      color: #0f172a;
    }
    .band-cream h2,
    .band-cream.landing-value-band h2,
    .band-cream .who-split h2,
    .band-cream.landing-section h2 {
      color: #0f172a;
    }
    .band-cream .lead,
    .band-cream.landing-section .lead {
      color: #475569;
    }
    .band-mist {
      background: #eef2f6;
      color: #0f172a;
    }
    .band-mist.landing-section h2 {
      color: #0f172a;
    }
    .band-navy {
      background: #0b1220;
      color: #e2e8f0;
    }
    .band-cream .who-list li {
      border-top-color: rgba(15, 23, 42, 0.1);
    }
    .band-cream .who-list li:last-child {
      border-bottom-color: rgba(15, 23, 42, 0.1);
    }
    .band-cream .who-list strong {
      color: #0f172a;
    }
    .band-cream .who-list li span span {
      color: #475569;
    }
    .value-stage {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
      gap: 36px 48px;
      align-items: center;
    }
    .value-stage .q-list {
      max-width: none;
    }
    .field-stage {
      position: relative;
      margin: 0;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 16 / 11;
      background: #0b1220;
      box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
    }
    .field-stage__tabs {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 4;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .field-stage__tab {
      margin: 0;
      padding: 5px 9px;
      border-radius: 4px;
      border: 1px solid rgba(154, 232, 242, 0.35);
      background: rgba(11, 18, 32, 0.78);
      color: #94a3b8;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      cursor: pointer;
      font-family: inherit;
    }
    .field-stage__tab[aria-selected="true"] {
      background: #1ad4e8;
      border-color: #1ad4e8;
      color: #0f172a;
    }
    .field-stage__tab:focus-visible {
      outline: 2px solid #9ae8f2;
      outline-offset: 2px;
    }
    .field-stage__reality {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 51% 41%;
    }
    .field-stage__pip {
      position: absolute;
      left: 4.5%;
      bottom: 22%;
      z-index: 2;
      width: 42%;
      aspect-ratio: 1410 / 1080;
      border-radius: 8px;
      overflow: hidden;
      background: #0b1220;
      border: 1px solid rgba(94, 234, 212, 0.62);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
    }
    .field-stage__pip img {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: fill;
    }
    .field-stage[data-stage="sat"] .field-stage__pip-ndvi,
    .field-stage[data-stage="ndvi"] .field-stage__pip-sat,
    .field-stage[data-stage="ctx"] .field-stage__pip-sat {
      opacity: 0;
    }
    .field-stage__sat-k,
    .field-stage__ctx {
      display: none;
    }
    .field-stage[data-stage="sat"] .field-stage__sat-k {
      display: inline;
    }
    .field-stage[data-stage="sat"] .field-stage__ndvi-k,
    .field-stage[data-stage="sat"] .field-stage__ramp {
      display: none;
    }
    .field-stage[data-stage="ctx"] .field-stage__ctx {
      display: inline-flex;
      gap: 5px;
      margin-left: 4px;
    }
    .field-stage__ctx span {
      padding: 1px 5px;
      border-radius: 3px;
      border: 1px solid rgba(154, 232, 242, 0.4);
      font-size: 0.58rem;
      letter-spacing: 0.08em;
      font-weight: 700;
    }
    .field-stage__cap [hidden] {
      display: none;
    }
    .field-stage__aoi {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .field-stage__legend {
      position: absolute;
      left: 8px;
      bottom: 8px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 5px 8px;
      border-radius: 6px;
      background: rgba(11, 18, 32, 0.84);
      color: #e2e8f0;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.12em;
    }
    .field-stage__ramp {
      display: block;
      width: 52px;
      height: 5px;
      border-radius: 99px;
      background: linear-gradient(90deg, #c2410c, #eab308, #22c55e, #2dd4bf);
    }
    .field-stage__cap {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
      margin: 0;
      padding: 32px 16px 14px;
      background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.92) 62%);
      color: #e2e8f0;
      font-size: 0.9rem;
      font-weight: 500;
      line-height: 1.45;
    }
    @media (max-width: 960px) {
      .value-stage {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }
    @media (max-width: 560px) {
      .field-stage {
        aspect-ratio: 5 / 4;
      }
      .field-stage__pip {
        width: 48%;
        bottom: 24%;
      }
      .field-stage__cap {
        font-size: 0.82rem;
        padding: 28px 12px 12px;
      }
    }
    .q-list {
      margin: 0;
      padding: 0;
      max-width: 780px;
      display: flex;
      flex-direction: column;
    }
    .q-row {
      display: grid;
      grid-template-columns: 2.4rem 1.7rem minmax(0, 1fr) auto;
      gap: 10px 16px;
      align-items: center;
      padding: 20px 0;
      border-top: 1px solid rgba(15, 23, 42, 0.1);
      text-decoration: none;
      color: inherit;
    }
    .q-row:last-child {
      border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    }
    .q-row--act {
      padding-top: 24px;
      padding-bottom: 24px;
    }
    .q-row--act .q-row__copy strong {
      font-size: 1.2rem;
    }
    .q-row--act .q-row__more {
      opacity: 1;
      transform: none;
    }
    .q-row:hover,
    .q-row:focus-visible {
      color: inherit;
    }
    @media (prefers-reduced-motion: no-preference) {
      .q-row {
        animation: q-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      .q-row:nth-child(2) { animation-delay: 0.06s; }
      .q-row:nth-child(3) { animation-delay: 0.12s; }
      .q-row:nth-child(4) { animation-delay: 0.18s; }
      @keyframes q-card-in {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: none; }
      }
    }
    .q-row__n {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: #0e7490;
    }
    .q-row__ico {
      width: 26px;
      height: 26px;
      color: #0e7490;
      display: block;
    }
    .q-row__ico svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linejoin: round;
      stroke-linecap: round;
    }
    .q-row__ico svg [data-fill] {
      fill: currentColor;
      stroke: none;
    }
    .q-row__copy strong {
      display: block;
      font-size: 1.08rem;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: -0.02em;
      line-height: 1.25;
    }
    .q-row__copy span {
      display: block;
      margin-top: 3px;
      font-size: 0.9rem;
      color: #475569;
      font-weight: 400;
      line-height: 1.45;
    }
    .q-row__more {
      font-size: 0.82rem;
      font-weight: 600;
      color: #0e7490;
      white-space: nowrap;
    }
    @media (hover: hover) and (pointer: fine) {
      .q-row__more {
        opacity: 0;
        transform: translateX(-4px);
        transition: opacity 0.2s, transform 0.2s;
      }
      .q-row--act .q-row__more,
      .q-row:hover .q-row__more,
      .q-row:focus-visible .q-row__more {
        opacity: 1;
        transform: none;
      }
    }
    @media (max-width: 800px) {
      .q-row {
        grid-template-columns: 2.2rem minmax(0, 1fr);
        gap: 4px 12px;
        padding: 16px 0;
      }
      .q-row__ico { display: none; }
      .q-row__more {
        grid-column: 2;
        opacity: 1;
        transform: none;
        margin-top: 2px;
      }
    }
    .landing-questions {
      display: none;
    }
    .landing-questions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 14px;
      margin-top: 40px;
    }
    .landing-question {
      padding: 18px 20px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(148, 163, 255, 0.14);
      font-size: 0.95rem;
      font-weight: 600;
      color: #e2e8f0;
      line-height: 1.45;
      text-align: left;
      text-decoration: none;
      display: block;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    a.landing-question:hover {
      border-color: rgba(26, 212, 232, 0.45);
      background: rgba(15, 23, 42, 0.8);
    }
    .landing-question__n {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #9ae8f2;
      margin-bottom: 8px;
    }
    .landing-question__q {
      display: block;
      font-size: 1rem;
      font-weight: 650;
      color: #f8fafc;
      letter-spacing: 0;
      text-transform: none;
      margin: 0;
    }
    .landing-question__d {
      display: block;
      margin-top: 8px;
      font-size: 0.82rem;
      font-weight: 450;
      color: #94a3b8;
      line-height: 1.45;
    }
    .landing-question__hint {
      display: block;
      margin-top: 8px;
      font-size: 0.75rem;
      font-weight: 500;
      color: #9ae8f2;
    }
    #view-insights {
      background: #f4f1ea;
      min-height: 100vh;
      color: #0f172a;
    }
    .blog-wrap {
      max-width: 760px;
      margin: 0 auto;
      padding: 40px 24px 80px;
    }
    .blog-head {
      margin-bottom: 22px;
    }
    .blog-head__row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .blog-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      margin-top: 4px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(14, 116, 144, 0.14);
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    }
    .blog-icon svg {
      width: 24px;
      height: 24px;
      display: block;
    }
    .blog-head__row--health .blog-icon { color: #059669; border-color: rgba(43, 184, 138, 0.1); background: rgba(5, 150, 105, 0.08); }
    .blog-head__row--zones .blog-icon { color: #1a9bb0; border-color: rgba(8, 145, 178, 0.18); background: rgba(8, 145, 178, 0.08); }
    .blog-head__row--context .blog-icon { color: #0e7490; border-color: rgba(14, 116, 144, 0.18); background: rgba(14, 116, 144, 0.08); }
    .blog-head__row--action .blog-icon { color: #6366f1; border-color: rgba(99, 102, 241, 0.18); background: rgba(99, 102, 241, 0.08); }
    .blog-figure {
      margin: 0 0 28px;
      border-radius: 12px;
      overflow: hidden;
      background: #0b1220;
      border: 1px solid rgba(15, 23, 42, 0.08);
    }
    .blog-figure[hidden],
    .blog-figure img[hidden] {
      display: none !important;
    }
    .blog-figure img {
      display: block;
      width: 100%;
      height: 280px;
      object-fit: cover;
    }
    .blog-figure--chart img { object-position: center top; height: 300px; }
    .blog-figure--platform img { object-position: center top; height: 340px; }
    .blog-figure--field img { object-position: center center; height: 320px; }
    .blog-figure--map img { object-position: 72% 48%; }
    .blog-figure--layers img { object-position: left center; }
    .blog-figure--act img { object-position: center top; height: 300px; }
    .blog-back {
      display: inline-block;
      margin-bottom: 28px;
      color: #0e7490;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
    }
    .blog-back:hover { color: #155e75; }
    .blog-kicker {
      margin: 0 0 10px;
      color: #0e7490;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .blog-wrap h1 {
      margin: 0;
      color: #0f172a;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }
    .blog-body p {
      margin: 0 0 18px;
      color: #334155;
      font-size: 1.05rem;
      line-height: 1.75;
    }
    .blog-body h2 {
      margin: 28px 0 12px;
      color: #0f172a;
      font-size: 1.15rem;
      font-weight: 650;
    }
    .blog-cta {
      display: inline-block;
      margin-top: 12px;
      padding: 12px 22px;
      background: #1ad4e8;
      color: #0f172a;
      font-weight: 700;
      font-family: inherit;
      font-size: 0.95rem;
      text-decoration: none;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .blog-more {
      margin-top: 48px;
      padding-top: 28px;
      border-top: 1px solid rgba(15, 23, 42, 0.1);
    }
    .blog-more h2 {
      margin: 0 0 14px;
      font-size: 0.85rem;
      color: #64748b;
      font-weight: 650;
    }
    .blog-more a {
      display: block;
      padding: 10px 0;
      color: #0e7490;
      text-decoration: none;
      font-weight: 600;
    }
    .blog-more a:hover { color: #155e75; }
    .landing-capabilities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 40px;
    }
    .landing-capability-card {
      padding: 24px 22px;
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
      transition: border-color 0.2s, transform 0.2s;
    }
    .landing-capability-card:hover {
      border-color: rgba(52, 211, 153, 0.35);
      transform: translateY(-2px);
    }
    .landing-capability-card__icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      margin-bottom: 14px;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(26, 212, 232, 0.16);
      color: #6ee7b7;
    }
    .landing-capability-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      margin: 0 0 8px;
    }
    .landing-capability-card p {
      font-size: 0.88rem;
      color: #94a3b8;
      line-height: 1.55;
      margin: 0;
    }
    .landing-outcome {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 48px 56px;
      align-items: center;
      margin-top: 12px;
    }
    .landing-outcome__copy h2 {
      text-align: left;
      margin-bottom: 16px;
    }
    .landing-outcome__copy .lead {
      text-align: left;
      margin: 0 0 24px;
    }
    .landing-outcome__visual img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 255, 0.18);
      box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
    }
    .landing-workflow-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    .landing-workflow-card {
      padding: 28px 24px;
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
      border-top: 3px solid rgba(52, 211, 153, 0.5);
    }
    .landing-workflow-card__step {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #2bb88a;
      margin-bottom: 10px;
    }
    .landing-workflow-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0 0 10px;
    }
    .landing-workflow-card p {
      font-size: 0.9rem;
      color: #94a3b8;
      line-height: 1.55;
      margin: 0 0 12px;
    }
    .landing-workflow-card__detail {
      font-size: 0.82rem;
      color: #64748b;
      line-height: 1.5;
      margin: 0;
    }
    @media (max-width: 900px) {
      .landing-outcome {
        grid-template-columns: 1fr;
      }
      .landing-outcome__copy h2,
      .landing-outcome__copy .lead {
        text-align: center;
      }
    }
    .landing-section h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #e2e8f0;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .landing-section .lead {
      color: #94a3b8;
      max-width: var(--landing-lead-max, 960px);
      margin: 0 auto 36px;
      line-height: 1.65;
      font-size: 1.05rem;
    }
    .landing-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 22px;
    }
    .landing-step {
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
      border-radius: 14px;
      padding: 24px 22px;
      position: relative;
    }
    .landing-step-num {
      position: absolute;
      top: 18px;
      right: 18px;
      font-family: inherit;
      font-size: 0.7rem;
      font-weight: 600;
      color: rgba(56, 189, 248, 0.55);
      letter-spacing: 0.08em;
    }
    .landing-step h3 {
      font-size: 1.05rem;
      color: #7dd3e8;
      margin: 0 0 10px;
      padding-right: 36px;
    }
    .landing-step p {
      color: #94a3b8;
      font-size: 0.92rem;
      line-height: 1.55;
      margin: 0;
    }
    .landing-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 18px;
    }
    .landing-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 20px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid rgba(148, 163, 255, 0.08);
    }
    .landing-feature .lf-icon {
      font-size: 1.6rem;
      line-height: 1;
      flex-shrink: 0;
    }
    .landing-feature h4 {
      font-size: 1rem;
      color: #e2e8f0;
      margin: 0 0 6px;
      font-weight: 600;
    }
    .landing-feature p {
      font-size: 0.88rem;
      color: #94a3b8;
      line-height: 1.5;
      margin: 0;
    }
    .landing-data-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 26px 32px;
      margin-top: 28px;
      color: #64748b;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
    }

    /* ── Marketing: hero split + product mocks ── */
    .hero--split {
      padding: 72px max(var(--landing-pad-x, 24px), calc((100vw - var(--landing-max, 1480px)) / 2)) 48px !important;
      text-align: left !important;
      min-height: auto !important;
    }
    .hero--split::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 212, 255, 0.08), transparent 55%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(26, 212, 232, 0.08), transparent 50%);
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      max-width: var(--landing-max, 1480px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.95fr 1.2fr;
      gap: 56px 72px;
      align-items: center;
    }
    .hero-copy .hero-eyebrow { margin-bottom: 16px; }
    .hero-copy .hero-subtitle {
      margin: 0 0 32px;
      max-width: none;
      text-align: left;
    }
    .hero-copy .hero-actions { justify-content: flex-start; }
    .hero-visual {
      position: relative;
    }
    .hero-visual-glow {
      position: absolute;
      inset: -20px -30px -30px -10px;
      background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.15), transparent 65%);
      filter: blur(40px);
      pointer-events: none;
    }
    .product-mock--screenshot .hero-product-screenshot {
      display: block;
      width: 100%;
      height: auto;
    }
    .product-mock {
      position: relative;
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 255, 0.22);
      background: rgba(8, 12, 28, 0.92);
      box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.06),
        0 24px 64px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(16, 185, 129, 0.08);
      overflow: hidden;
    }
    .product-mock__chrome {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      background: rgba(15, 23, 42, 0.95);
      border-bottom: 1px solid rgba(26, 212, 232, 0.12);
    }
    .product-mock__dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #475569;
    }
    .product-mock__dot--r { background: #ef4444; }
    .product-mock__dot--y { background: #eab308; }
    .product-mock__dot--g { background: #22c55e; }
    /* Split hero: copy left, satellite field right */
    #landing-hero.hero-split {
      position: relative;
      min-height: calc(100vh - 64px);
      margin-top: 0;
      padding: 0 !important;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      background: #0b1220;
      text-align: left;
    }
    #landing-hero.hero-split::after,
    #landing-hero.hero-split::before {
      display: none;
    }
    .hero-split__img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 68% center;
    }
    .hero-split__shade {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(11, 18, 32, 0.92) 0%, rgba(11, 18, 32, 0.72) 38%, rgba(11, 18, 32, 0.28) 62%, rgba(11, 18, 32, 0.18) 100%);
    }
    .hero-split__inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1480px;
      margin: 0 auto;
      padding: 88px max(24px, calc((100vw - 1480px) / 2 + 24px)) 72px;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      gap: 40px;
    }
    .hero-split__copy {
      max-width: 540px;
      text-align: left;
    }
    .hero-split .landing-hero-title,
    .hero-split h1 {
      color: #fff;
      background: none;
      -webkit-text-fill-color: #fff;
      font-size: clamp(2rem, 4.4vw, 3.2rem);
      font-weight: 700;
      line-height: 1.12;
      margin: 0 0 16px;
      letter-spacing: -0.03em;
    }
    .hero-split .hero-lead {
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.08rem;
      max-width: 440px;
      margin: 0 0 28px;
      line-height: 1.55;
    }
    .hero-split .hero-actions {
      justify-content: flex-start;
    }
    .hero-split .btn-primary-hero,
    .hero-split .btn.btn-primary-hero {
      background: #1ad4e8 !important;
      color: #0f172a !important;
      padding: 12px 26px !important;
      border-radius: 4px !important;
      box-shadow: 0 8px 28px rgba(26, 212, 232, 0.35);
    }
    .hero-split .btn-primary-hero:hover {
      background: #12b8cc !important;
    }
    @media (max-width: 800px) {
      .hero-split__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 72px 20px 56px;
      }
      .hero-split__img {
        object-position: center;
      }
      .hero-split__shade {
        background:
          linear-gradient(180deg, rgba(11, 18, 32, 0.28) 0%, rgba(11, 18, 32, 0.55) 42%, rgba(11, 18, 32, 0.88) 100%);
      }
    }
    .landing-pillars {
      position: relative;
      z-index: 4;
      margin-top: -36px;
      padding: 0 20px 40px;
      background: #eef2f6;
      scroll-margin-top: 80px;
    }
    .landing-pillars__card {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
      overflow: hidden;
    }
    .landing-pillars__item {
      padding: 28px 22px 26px;
      border-right: 1px solid #e8edf3;
    }
    .landing-pillars__item:last-child {
      border-right: none;
    }
    .landing-pillars__item h3 {
      margin: 0 0 10px;
      color: #0f172a;
      font-size: 1.02rem;
      font-weight: 700;
      line-height: 1.25;
    }
    .landing-pillars__item p {
      margin: 0;
      color: #64748b;
      font-size: 0.88rem;
      line-height: 1.5;
    }
    @media (max-width: 900px) {
      .landing-pillars__card {
        grid-template-columns: 1fr 1fr;
      }
      .landing-pillars__item:nth-child(2) {
        border-right: none;
      }
      .landing-pillars__item:nth-child(1),
      .landing-pillars__item:nth-child(2) {
        border-bottom: 1px solid #e8edf3;
      }
    }
    @media (max-width: 560px) {
      .landing-pillars__card {
        grid-template-columns: 1fr;
      }
      .landing-pillars__item {
        border-right: none;
        border-bottom: 1px solid #e8edf3;
      }
      .landing-pillars__item:last-child {
        border-bottom: none;
      }
    }
    .product-mock__url {
      flex: 1;
      margin-left: 8px;
      font-size: 0.68rem;
      color: #64748b;
      background: rgba(30, 41, 59, 0.8);
      border-radius: 6px;
      padding: 4px 10px;
    }
    .product-mock__body {
      display: grid;
      grid-template-columns: 52px 1fr 130px;
      min-height: 280px;
    }
    .product-mock__sidebar {
      background: rgba(15, 23, 42, 0.9);
      border-right: 1px solid rgba(148, 163, 255, 0.08);
      padding: 12px 8px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .product-mock__nav-item {
      height: 28px;
      border-radius: 6px;
      background: rgba(30, 41, 59, 0.6);
    }
    .product-mock__nav-item--active {
      background: rgba(16, 185, 129, 0.25);
      border: 1px solid rgba(16, 185, 129, 0.35);
    }
    .product-mock__map {
      position: relative;
      background:
        linear-gradient(135deg, #1a3a2a 0%, #2d5a3d 35%, #1e4d32 60%, #0f2920 100%);
      overflow: hidden;
    }
    .product-mock__map::after {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 18px,
        rgba(0, 0, 0, 0.04) 18px,
        rgba(0, 0, 0, 0.04) 19px
      );
      pointer-events: none;
    }
    .product-mock__field {
      position: absolute;
      top: 22%;
      left: 18%;
      width: 52%;
      height: 48%;
      background: linear-gradient(145deg, rgba(52, 211, 153, 0.85), rgba(16, 185, 129, 0.55));
      clip-path: polygon(8% 12%, 88% 5%, 95% 78%, 22% 92%, 3% 55%);
      border: 2px solid rgba(110, 231, 183, 0.6);
      box-shadow: 0 0 24px rgba(16, 185, 129, 0.35);
    }
    .product-mock__legend {
      position: absolute;
      bottom: 10px;
      left: 10px;
      right: 10px;
      padding: 6px 8px;
      border-radius: 6px;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(148, 163, 255, 0.15);
    }
    .product-mock__legend-bar {
      height: 6px;
      border-radius: 3px;
      background: linear-gradient(90deg, #92400e, #eab308, #22c55e, #059669);
      margin-top: 4px;
    }
    .product-mock__legend-label {
      font-size: 0.55rem;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .product-mock__panel {
      background: rgba(15, 23, 42, 0.95);
      border-left: 1px solid rgba(148, 163, 255, 0.1);
      padding: 12px 10px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .product-mock__health-ring {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: conic-gradient(#2bb88a 0deg 280deg, rgba(51, 65, 85, 0.5) 280deg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      position: relative;
    }
    .product-mock__health-ring::before {
      content: "";
      position: absolute;
      inset: 5px;
      border-radius: 50%;
      background: rgba(15, 23, 42, 0.95);
    }
    .product-mock__health-val {
      position: relative;
      font-size: 0.85rem;
      font-weight: 700;
      color: #2bb88a;
    }
    .product-mock__mini-chart {
      flex: 1;
      min-height: 60px;
      display: flex;
      align-items: flex-end;
      gap: 3px;
      padding: 4px 0;
    }
    .product-mock__bar {
      flex: 1;
      border-radius: 2px 2px 0 0;
      background: linear-gradient(180deg, #2bb88a, rgba(16, 185, 129, 0.4));
    }
    .product-mock__action-card {
      padding: 8px;
      border-radius: 8px;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.25);
    }
    .product-mock__action-card p {
      margin: 0;
      font-size: 0.55rem;
      color: #6ee7b7;
      line-height: 1.35;
    }

    /* Trust bar */
    .landing-trust-bar {
      margin: 0 auto;
      padding-top: 28px;
      padding-bottom: 36px;
      text-align: center;
    }
    .landing-trust-bar__label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #64748b;
      margin: 0 0 18px;
    }
    .landing-trust-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 16px;
    }
    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid rgba(148, 163, 255, 0.14);
      font-size: 0.82rem;
      font-weight: 600;
      color: #cbd5e1;
      transition: border-color 0.2s, background 0.2s;
    }
    .trust-pill:hover {
      border-color: rgba(0, 212, 255, 0.35);
      background: rgba(15, 23, 42, 0.85);
    }
    .trust-pill__icon {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 800;
      color: #fff;
    }
    .trust-pill__icon--esa { background: linear-gradient(135deg, #003399, #0066cc); }
    .trust-pill__icon--soil { background: linear-gradient(135deg, #854d0e, #ca8a04); }
    .trust-pill__icon--wx { background: linear-gradient(135deg, #0369a1, #0ea5e9); }
    .trust-pill__icon--map { background: linear-gradient(135deg, #4338ca, #6366f1); }
    .trust-pill__icon--api { background: linear-gradient(135deg, #059669, #2bb88a); }

    /* Feature grid */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .feature-card {
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 212, 255, 0.28);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    }
    .feature-card__visual {
      height: 120px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(148, 163, 255, 0.08);
    }
    .feature-card__body {
      padding: 18px 20px 22px;
    }
    .feature-card__body h3 {
      font-size: 1rem;
      font-weight: 600;
      color: #e2e8f0;
      margin: 0 0 8px;
    }
    .feature-card__body p {
      font-size: 0.86rem;
      color: #94a3b8;
      line-height: 1.55;
      margin: 0;
    }
    .feat-visual--ndvi {
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.9)),
        linear-gradient(90deg, #92400e 0%, #eab308 25%, #22c55e 50%, #059669 75%, #047857 100%);
    }
    .feat-visual--chart {
      background: rgba(15, 23, 42, 0.8);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 4px;
      padding: 20px 24px 16px;
    }
    .feat-visual--chart span {
      flex: 1;
      max-width: 14px;
      border-radius: 3px 3px 0 0;
      background: linear-gradient(180deg, #38bdf8, rgba(56, 189, 248, 0.3));
    }
    .feat-visual--health {
      background: rgba(15, 23, 42, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feat-visual--health .ring {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: conic-gradient(#2bb88a 0deg 270deg, rgba(51, 65, 85, 0.4) 270deg);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .feat-visual--health .ring::before {
      content: "";
      position: absolute;
      inset: 8px;
      border-radius: 50%;
      background: rgba(15, 23, 42, 0.95);
    }
    .feat-visual--health .ring strong {
      position: relative;
      font-size: 1.1rem;
      color: #2bb88a;
    }
    .feat-visual--map {
      background: linear-gradient(135deg, #1a3a2a, #0f2920);
      position: relative;
    }
    .feat-visual--map .mini-field {
      position: absolute;
      top: 25%;
      left: 20%;
      width: 55%;
      height: 45%;
      background: rgba(52, 211, 153, 0.6);
      clip-path: polygon(10% 15%, 85% 8%, 92% 75%, 25% 88%);
      border: 1px solid rgba(110, 231, 183, 0.5);
    }
    .feat-visual--action {
      background: rgba(15, 23, 42, 0.9);
      padding: 16px;
      display: flex;
      align-items: center;
    }
    .feat-visual--action .action-box {
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      background: rgba(16, 185, 129, 0.15);
      border: 1px solid rgba(16, 185, 129, 0.3);
      font-size: 0.72rem;
      color: #6ee7b7;
      line-height: 1.4;
    }
    .feat-visual--soil {
      background: rgba(15, 23, 42, 0.85);
      padding: 16px 20px;
    }
    .feat-visual--soil .soil-bar {
      height: 8px;
      border-radius: 4px;
      background: linear-gradient(90deg, #dc2626, #eab308, #22c55e, #059669);
      margin: 8px 0;
    }
    .feat-visual--soil .soil-label {
      font-size: 0.65rem;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .feat-visual--report {
      background: rgba(15, 23, 42, 0.9);
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feat-visual--report .pdf-icon {
      width: 48px;
      height: 56px;
      background: linear-gradient(180deg, #ef4444, #b91c1c);
      border-radius: 4px;
      position: relative;
      box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }
    .feat-visual--report .pdf-icon::after {
      content: "PDF";
      position: absolute;
      bottom: 8px;
      left: 0;
      right: 0;
      text-align: center;
      font-size: 0.55rem;
      font-weight: 800;
      color: #fff;
    }

    /* Showcase zigzag */
    .showcase-row {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 64px 72px;
      align-items: center;
      margin-bottom: 72px;
    }
    .showcase-row:last-child { margin-bottom: 0; }
    .showcase-row--reverse .showcase-copy { order: 2; }
    .showcase-row--reverse .showcase-visual { order: 1; }
    .showcase-copy h3 {
      font-size: 1.35rem;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0 0 12px;
    }
    .showcase-copy p {
      font-size: 1rem;
      color: #94a3b8;
      line-height: 1.65;
      margin: 0;
    }
    .showcase-step {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #38bdf8;
      margin-bottom: 10px;
    }
    .showcase-visual img.showcase-screenshot {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 255, 0.18);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    }
    .product-mock--compact .product-mock__body {
      min-height: 220px;
      grid-template-columns: 40px 1fr 110px;
    }

    /* Persona cards */
    .persona-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .persona-card {
      padding: 28px 24px;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
      transition: border-color 0.2s, transform 0.2s;
    }
    .persona-card:hover {
      border-color: rgba(0, 212, 255, 0.25);
      transform: translateY(-2px);
    }
    .persona-card h4 {
      font-size: 1.05rem;
      color: #e2e8f0;
      margin: 0 0 8px;
      font-weight: 600;
    }
    .persona-card p {
      font-size: 0.88rem;
      color: #94a3b8;
      line-height: 1.55;
      margin: 0;
    }

    /* How-it-works connector */
    .how-steps-connected {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      position: relative;
      margin-top: 40px;
    }
    .how-steps-connected--five {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
    }
    .how-steps-connected::before {
      content: "";
      position: absolute;
      top: 36px;
      left: 12%;
      right: 12%;
      height: 2px;
      background: linear-gradient(90deg, rgba(56, 189, 248, 0.3), rgba(16, 185, 129, 0.3));
      z-index: 0;
    }
    .how-step-card {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 24px 16px;
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
    }
    .how-step-card__num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1ad4e8, #178fa3);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
    }
    .how-step-card h3 {
      font-size: 0.92rem;
      color: #e2e8f0;
      margin: 0 0 8px;
      font-weight: 600;
    }
    .how-step-card p {
      font-size: 0.82rem;
      color: #94a3b8;
      line-height: 1.55;
      margin: 0;
    }
    .how-step-card__srcs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px;
      margin: 0 0 10px;
    }
    .how-step-card__src {
      display: inline-block;
      padding: 3px 8px;
      border-radius: 6px;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: #9ae8f2;
      border: 1px solid rgba(26, 212, 232, 0.35);
      background: rgba(26, 212, 232, 0.08);
    }
    #landing-how {
      padding-top: 72px;
      padding-bottom: 88px;
    }
    .data-spine {
      margin: 40px auto 0;
      max-width: 1080px;
      padding: 40px 24px 22px;
      border-radius: 12px;
      background: #0f172a;
      border: 1px solid rgba(154, 232, 242, 0.16);
      box-shadow: 0 20px 56px rgba(15, 23, 42, 0.14);
    }
    .data-flow {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0;
      position: relative;
    }
    .data-flow::before {
      content: "";
      position: absolute;
      top: 50px;
      left: 7%;
      right: 7%;
      height: 1px;
      background: rgba(26, 212, 232, 0.72);
    }
    .data-flow li {
      position: relative;
      z-index: 1;
      padding: 0 10px;
      text-align: center;
    }
    .data-flow__ico {
      display: block;
      width: 26px;
      height: 26px;
      margin: 0 auto 10px;
      color: #9ae8f2;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .data-flow__ico [data-fill] {
      fill: currentColor;
      stroke: none;
    }
    .data-flow__k {
      display: inline-block;
      margin-bottom: 16px;
      padding: 6px 11px;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      color: #9ae8f2;
      background: #0b1220;
      border: 1px solid rgba(26, 212, 232, 0.5);
      border-radius: 4px;
    }
    .data-flow strong {
      display: block;
      margin: 0;
      color: #e2e8f0;
      font-size: 0.88rem;
      font-weight: 550;
      line-height: 1.35;
    }
    .data-flow__caption {
      margin: 22px 0 0;
      text-align: center;
      color: #94a3b8;
      font-size: 0.82rem;
      letter-spacing: 0.02em;
    }
    @media (max-width: 900px) {
      #landing-how {
        padding-top: 56px;
        padding-bottom: 64px;
      }
      .data-spine {
        padding: 28px 18px 16px;
      }
      .data-flow {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .data-flow::before {
        display: none;
      }
      .data-flow li {
        text-align: left;
        padding: 0 0 0 16px;
        border-left: 1px solid rgba(26, 212, 232, 0.45);
      }
      .data-flow__ico {
        margin: 0 0 8px;
      }
      .data-flow__k {
        margin-bottom: 8px;
      }
      .data-flow__caption {
        text-align: left;
      }
    }

    .landing-section--wide {
      max-width: none;
    }
    .landing-section h2.text-center,
    .landing-section .lead.text-center {
      text-align: center;
    }

    /* Services catalog */
    .services-catalog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }
    @media (max-width: 1024px) {
      .services-catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      }
    }
    .service-catalog-card {
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
      border-radius: 14px;
      padding: 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .service-catalog-card:hover {
      border-color: rgba(0, 212, 255, 0.25);
      transform: translateY(-2px);
    }
    .service-catalog-card__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }
    .service-catalog-card__head h3 {
      font-size: 1.02rem;
      font-weight: 600;
      color: #e2e8f0;
      margin: 0;
      line-height: 1.35;
    }
    .service-catalog-badge {
      flex-shrink: 0;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 8px;
      border-radius: 6px;
    }
    .service-catalog-badge--live {
      background: rgba(26, 212, 232, 0.1);
      color: #2bb88a;
      border: 1px solid rgba(16, 185, 129, 0.35);
    }
    .service-catalog-badge--beta {
      background: rgba(14, 165, 233, 0.15);
      color: #38bdf8;
      border: 1px solid rgba(14, 165, 233, 0.3);
    }
    .service-catalog-badge--soon {
      background: rgba(26, 212, 232, 0.12);
      color: #94a3b8;
      border: 1px solid rgba(148, 163, 255, 0.22);
    }
    .service-catalog-row {
      font-size: 0.84rem;
      line-height: 1.55;
      margin: 0;
    }
    .service-catalog-row strong {
      display: block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: 4px;
    }
    .service-catalog-row span {
      color: #94a3b8;
    }
    /* Premium platform modules */
    .platform-pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    @media (max-width: 1024px) {
      .platform-pillars { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .platform-pillars { grid-template-columns: 1fr; }
    }
    .platform-pillar {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 24px 22px;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
      text-decoration: none;
      color: inherit;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .platform-pillar:hover {
      border-color: rgba(0, 212, 255, 0.28);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    }
    .platform-pillar__num {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #12b8cc;
      text-transform: uppercase;
    }
    .platform-pillar h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0;
    }
    .platform-pillar > p {
      font-size: 0.86rem;
      color: #94a3b8;
      line-height: 1.55;
      margin: 0;
      flex: 1;
    }
    .platform-pillar ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .platform-pillar li {
      font-size: 0.8rem;
      color: #cbd5e1;
      padding-left: 16px;
      position: relative;
    }
    .platform-pillar li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #2bb88a;
      font-size: 0.72rem;
      font-weight: 700;
    }
    .platform-pillar__link {
      font-size: 0.82rem;
      font-weight: 600;
      color: #38bdf8;
      margin-top: 4px;
    }
    .svc-category {
      margin-bottom: 48px;
    }
    .svc-category__header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(26, 212, 232, 0.12);
    }
    .svc-category__step {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(6, 182, 212, 0.12);
      border: 1px solid rgba(6, 182, 212, 0.25);
      font-size: 0.78rem;
      font-weight: 700;
      color: #12b8cc;
    }
    .svc-category__header h2 {
      font-size: 1.35rem;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0 0 6px;
    }
    .svc-category__header p {
      font-size: 0.92rem;
      color: #94a3b8;
      line-height: 1.55;
      margin: 0;
    }
    .svc-premium-card {
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
      border-radius: 14px;
      padding: 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .svc-premium-card:hover {
      border-color: rgba(0, 212, 255, 0.25);
      transform: translateY(-2px);
    }
    .svc-premium-card__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .svc-premium-card__icon {
      font-size: 1.35rem;
      line-height: 1;
    }
    .svc-premium-card h3 {
      font-size: 1.02rem;
      font-weight: 600;
      color: #e2e8f0;
      margin: 0;
      line-height: 1.35;
    }
    .svc-premium-card__tagline {
      font-size: 0.84rem;
      color: #94a3b8;
      line-height: 1.55;
      margin: 0;
    }
    .svc-premium-card__includes-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #64748b;
      margin: 4px 0 0;
    }
    .svc-premium-card__includes {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .svc-premium-card__includes li {
      font-size: 0.82rem;
      color: #cbd5e1;
      padding-left: 18px;
      position: relative;
      line-height: 1.45;
    }
    .svc-premium-card__includes li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #2bb88a;
      font-size: 0.72rem;
      font-weight: 700;
    }
    .svc-premium-card__audience {
      font-size: 0.78rem;
      color: #64748b;
      margin: 4px 0 0;
      padding-top: 10px;
      border-top: 1px solid rgba(148, 163, 255, 0.08);
    }
    .svc-premium-card__audience span:last-child {
      color: #94a3b8;
    }
    .landing-modules-preview {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 36px;
    }
    @media (max-width: 768px) {
      .landing-modules-preview { grid-template-columns: 1fr; }
    }
    .landing-module-preview {
      padding: 22px 24px;
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.5);
      border: 1px solid rgba(148, 163, 255, 0.1);
    }
    .landing-module-preview__cat {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #12b8cc;
      margin-bottom: 10px;
    }
    .landing-module-preview h3 {
      font-size: 0.98rem;
      color: #e2e8f0;
      margin: 0 0 8px;
      font-weight: 600;
    }
    .landing-module-preview p {
      font-size: 0.82rem;
      color: #94a3b8;
      line-height: 1.5;
      margin: 0 0 12px;
    }
    .landing-module-preview ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .landing-module-preview li {
      font-size: 0.78rem;
      color: #cbd5e1;
      padding-left: 16px;
      position: relative;
    }
    .landing-module-preview li::before {
      content: '•';
      position: absolute;
      left: 4px;
      color: #64748b;
    }
    /* Enterprise polish — icons, stats, trust, contact */
    .hero-stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid rgba(148, 163, 255, 0.1);
    }
    @media (max-width: 640px) {
      .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
    }
    .hero-stat-item {
      padding: 14px 16px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.45);
      border: 1px solid rgba(148, 163, 255, 0.1);
    }
    .hero-stat-item strong {
      display: block;
      font-size: 1.05rem;
      color: #e2e8f0;
      font-weight: 700;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }
    .hero-stat-item span {
      font-size: 0.74rem;
      color: #64748b;
      line-height: 1.35;
    }
    .platform-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 20px 0 4px;
    }
    .platform-chip {
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #bae6fd;
      background: rgba(56, 189, 248, 0.1);
      border: 1px solid rgba(56, 189, 248, 0.22);
    }
    .feature-grid-pro {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    @media (max-width: 900px) {
      .feature-grid-pro { grid-template-columns: 1fr; }
    }
    .feature-grid-pro__item h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0 0 8px;
    }
    .feature-grid-pro__item p {
      font-size: 0.92rem;
      color: #94a3b8;
      line-height: 1.6;
      margin: 0;
    }
    .onboard-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 36px;
    }
    @media (max-width: 768px) {
      .onboard-steps { grid-template-columns: 1fr; }
    }
    .onboard-step {
      padding: 24px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.5);
      border: 1px solid rgba(26, 212, 232, 0.12);
    }
    .onboard-step__num {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #38bdf8;
      margin-bottom: 10px;
    }
    .onboard-step h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0 0 8px;
    }
    .onboard-step p {
      font-size: 0.9rem;
      color: #94a3b8;
      line-height: 1.6;
      margin: 0;
    }
    .landing-prose-block {
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
    }
    .landing-prose-block p {
      font-size: 1.05rem;
      color: #94a3b8;
      line-height: 1.75;
      margin: 16px 0 0;
    }
    .holistic-list {
      list-style: none;
      padding: 0;
      margin: 28px auto 0;
      max-width: 720px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .holistic-list li {
      position: relative;
      padding: 16px 18px 16px 44px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.5);
      border: 1px solid rgba(26, 212, 232, 0.12);
      color: #cbd5e1;
      font-size: 0.95rem;
      line-height: 1.6;
      text-align: left;
    }
    .holistic-list li::before {
      content: '—';
      position: absolute;
      left: 18px;
      color: #2bb88a;
      font-weight: 700;
    }
    .workflow-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 36px;
    }
    @media (max-width: 1024px) {
      .workflow-steps { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .workflow-steps { grid-template-columns: 1fr; }
    }
    .workflow-step {
      padding: 20px 18px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
    }
    .workflow-step__num {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: #38bdf8;
      margin-bottom: 8px;
    }
    .workflow-step h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0 0 8px;
      line-height: 1.35;
    }
    .workflow-step p {
      font-size: 0.82rem;
      color: #94a3b8;
      line-height: 1.55;
      margin: 0;
    }
    .engage-pillars .platform-pillar {
      background: rgba(16, 185, 129, 0.06);
      border-color: rgba(26, 212, 232, 0.1);
    }
    .engage-pillars .platform-pillar__num { color: #2bb88a; }
    .segment-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 36px;
    }
    @media (max-width: 768px) {
      .segment-grid { grid-template-columns: 1fr; }
    }
    .segment-card {
      padding: 28px 24px;
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(148, 163, 255, 0.14);
    }
    .segment-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0 0 10px;
    }
    .segment-card p {
      font-size: 0.9rem;
      color: #94a3b8;
      line-height: 1.6;
      margin: 0;
    }
    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 8px 0;
      font-size: 0.82rem;
      color: #64748b;
      font-weight: 500;
    }
    .trust-strip__item { color: #94a3b8; }
    .trust-strip__dot {
      margin: 0 14px;
      color: #334155;
      user-select: none;
    }
    .svc-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      background: rgba(6, 182, 212, 0.1);
      border: 1px solid rgba(6, 182, 212, 0.2);
      color: #1ad4e8;
      flex-shrink: 0;
    }
    .svc-icon--green { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.22); color: #2bb88a; }
    .svc-icon--violet { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.22); color: #a78bfa; }
    .svc-premium-card__top .svc-icon { margin-right: auto; }
    .persona-card__icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      margin-bottom: 4px;
    }
    .persona-card__icon--farmer { background: rgba(16, 185, 129, 0.12); color: #2bb88a; border: 1px solid rgba(16, 185, 129, 0.22); }
    .persona-card__icon--coop { background: rgba(99, 102, 241, 0.12); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.22); }
    .persona-card__icon--bank { background: rgba(14, 165, 233, 0.12); color: #38bdf8; border: 1px solid rgba(14, 165, 233, 0.22); }
    .sol-audience-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      margin-bottom: 48px;
    }
    @media (max-width: 960px) {
      .sol-audience-grid {
        grid-template-columns: 1fr;
      }
    }
    .sol-audience-card {
      padding: 32px 28px;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 255, 0.14);
      background: rgba(15, 23, 42, 0.55);
    }
    .sol-audience-card--primary {
      border-color: rgba(26, 212, 232, 0.16);
      background: linear-gradient(145deg, rgba(16, 185, 129, 0.08), rgba(15, 23, 42, 0.92));
    }
    .sol-audience-card__badge {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.68rem;
      font-weight: 800;
      margin-bottom: 16px;
      background: rgba(148, 163, 255, 0.1);
      border: 1px solid rgba(148, 163, 255, 0.18);
      color: #94a3b8;
    }
    .sol-audience-card--primary .sol-audience-card__badge {
      background: rgba(16, 185, 129, 0.12);
      border-color: rgba(16, 185, 129, 0.25);
      color: #2bb88a;
    }
    .sol-audience-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0 0 10px;
    }
    .sol-audience-card--primary h3 { color: #2bb88a; }
    .sol-audience-card p {
      color: #94a3b8;
      line-height: 1.6;
      margin: 0 0 18px;
      font-size: 0.92rem;
    }
    .sol-audience-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 22px;
      font-size: 0.88rem;
    }
    .sol-audience-card li {
      padding: 5px 0;
      color: #cbd5e1;
    }
    .contact-cta-panel {
      background: linear-gradient(135deg, rgba(26, 212, 232, 0.08), rgba(15, 23, 42, 0.85));
      border-radius: 20px;
      border: 1px solid rgba(148, 163, 255, 0.18);
      padding: 48px 32px;
      text-align: center;
    }
    .agri-bridge-hero {
      text-align: center;
      max-width: 880px;
      margin: 0 auto 48px;
      padding-top: 48px;
    }
    .agri-bridge-hero img {
      width: 72px;
      height: 72px;
      margin-bottom: 24px;
    }
    .agri-bridge-modules {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 960px;
      margin: 0 auto 40px;
    }
    @media (max-width: 768px) {
      .agri-bridge-modules { grid-template-columns: 1fr; }
    }
    .agri-bridge-module {
      padding: 22px;
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
      text-align: left;
    }
    .agri-bridge-module h3 {
      font-size: 0.95rem;
      color: #e2e8f0;
      margin: 0 0 8px;
    }
    .agri-bridge-module p {
      font-size: 0.82rem;
      color: #94a3b8;
      line-height: 1.5;
      margin: 0;
    }
    .services-catalog-cta {
      text-align: center;
      margin-top: 32px;
    }
    .services-catalog-cta a {
      color: #38bdf8;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
    }
    .services-catalog-cta a:hover {
      color: #1ad4e8;
    }
    .services-preview-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .service-preview-card {
      padding: 20px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.5);
      border: 1px solid rgba(148, 163, 255, 0.1);
    }
    .service-preview-card h3 {
      font-size: 0.95rem;
      color: #e2e8f0;
      margin: 0 0 8px;
      font-weight: 600;
    }
    .service-preview-card p {
      font-size: 0.82rem;
      color: #94a3b8;
      line-height: 1.5;
      margin: 0;
    }
    /* Premium landing — case study, compare, resources, metrics */
    .landing-metrics-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 32px;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (max-width: 768px) {
      .landing-metrics-strip { grid-template-columns: repeat(2, 1fr); }
    }
    .landing-metric-pill {
      text-align: center;
      padding: 18px 14px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(26, 212, 232, 0.12);
    }
    .landing-metric-pill strong {
      display: block;
      font-size: 1.35rem;
      color: #e2e8f0;
      margin-bottom: 4px;
    }
    .landing-metric-pill span {
      font-size: 0.78rem;
      color: #94a3b8;
    }
    .case-study-card {
      max-width: none;
      margin: 36px auto 0;
      padding: 28px 30px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(139, 92, 246, 0.06));
      border: 1px solid rgba(148, 163, 255, 0.18);
    }
    .case-study-card__org {
      font-size: 0.8rem;
      color: #12b8cc;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 12px;
    }
    .case-study-card blockquote {
      font-size: 1.05rem;
      color: #e2e8f0;
      line-height: 1.6;
      margin: 0 0 20px;
      font-style: italic;
    }
    .case-study-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    @media (max-width: 640px) {
      .case-study-metrics { grid-template-columns: 1fr; }
    }
    .case-study-metrics div {
      padding: 14px;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.5);
      text-align: center;
    }
    .case-study-metrics strong {
      display: block;
      font-size: 1.25rem;
      color: #2bb88a;
    }
    .case-study-metrics span {
      font-size: 0.75rem;
      color: #94a3b8;
    }
    .compare-table-wrap {
      overflow-x: auto;
      margin-top: 32px;
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 255, 0.14);
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;
      min-width: 560px;
    }
    .compare-table th,
    .compare-table td {
      padding: 14px 16px;
      text-align: center;
      border-bottom: 1px solid rgba(148, 163, 255, 0.08);
    }
    .compare-table th:first-child,
    .compare-table td:first-child {
      text-align: left;
      color: #cbd5e1;
      font-weight: 500;
    }
    .compare-table thead th {
      background: rgba(15, 23, 42, 0.7);
      color: #e2e8f0;
      font-weight: 600;
    }
    .compare-table tbody tr:hover td {
      background: rgba(99, 102, 241, 0.06);
    }
    .compare-table .col-geo {
      background: rgba(16, 185, 129, 0.08);
      color: #6ee7b7;
      font-weight: 600;
    }
    .compare-yes { color: #2bb88a; }
    .compare-partial { color: #fbbf24; }
    .compare-no { color: #64748b; }
    .landing-resources-bar {
      max-width: none;
      margin: 36px auto 0;
      text-align: center;
      padding: 28px 32px;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(148, 163, 255, 0.14);
    }
    .landing-resources-bar p {
      color: #94a3b8;
      margin: 0 0 18px;
      font-size: 0.95rem;
    }
    .landing-resources-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }
    .agri-onboarding-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 10050;
      background: rgba(2, 6, 23, 0.72);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .agri-onboarding-modal.active { display: flex; }
    .agri-onboarding-dialog {
      width: 100%;
      max-width: 480px;
      padding: 28px 26px;
      border-radius: 16px;
      background: #0f172a;
      border: 1px solid rgba(16, 185, 129, 0.25);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    }
    .agri-onboarding-dialog h3 {
      color: #f8fafc;
      margin: 0 0 20px;
      font-size: 1.15rem;
    }
    .agri-onboarding-steps {
      list-style: none;
      margin: 0 0 22px;
      padding: 0;
    }
    .agri-onboarding-steps li {
      display: flex;
      gap: 12px;
      margin-bottom: 14px;
    }
    .agri-onboarding-steps li span:first-child {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.2);
      color: #2bb88a;
      font-size: 0.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .agri-onboarding-steps strong {
      display: block;
      color: #e2e8f0;
      font-size: 0.9rem;
      margin-bottom: 2px;
    }
    .agri-onboarding-steps p {
      color: #94a3b8;
      font-size: 0.82rem;
      margin: 0;
      line-height: 1.45;
    }
    .agri-onboarding-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }
    .ndvi-timeline-control {
      margin-top: 10px;
      padding-top: 8px;
      border-top: 1px solid rgba(148, 163, 255, 0.1);
    }
    .ndvi-timeline-slider {
      width: 100%;
      accent-color: #2bb88a;
      cursor: pointer;
    }
    .ndvi-timeline-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: 6px;
      font-size: 0.75rem;
      color: #94a3b8;
    }
    .ndvi-cloud-badge {
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.15);
      color: #cbd5e1;
      font-size: 0.68rem;
    }
    .agri-card--weather {
      border-color: rgba(14, 165, 233, 0.25);
    }
    .agri-weather-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .agri-weather-item {
      padding: 10px 12px;
      border-radius: 8px;
      background: rgba(14, 165, 233, 0.08);
    }
    .agri-weather-item span {
      display: block;
      font-size: 0.68rem;
      color: #64748b;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .agri-weather-item strong {
      color: #e2e8f0;
      font-size: 0.95rem;
    }
    .agri-weather-item--wide {
      grid-column: 1 / -1;
    }
    .landing-cta-bar {
      display: none;
    }
    #view-landing .btn-primary-hero {
      background: #1ad4e8;
      color: #0f172a;
      padding: 12px 26px;
      border-radius: 4px;
      border: none;
      font-weight: 700;
      cursor: pointer;
    }
    #view-landing .btn-primary-hero:hover {
      background: #12b8cc;
    }
    .landing-shift {
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
    }
    .landing-shift h2 {
      margin: 0 0 36px;
      text-align: center;
    }
    .shift-tri {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 16px;
      align-items: start;
    }
    .shift-tri p {
      margin: 0;
    }
    .shift-tri p span {
      display: block;
      margin-bottom: 6px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #64748b;
    }
    .shift-tri p strong {
      display: block;
      color: #cbd5e1;
      font-size: 1rem;
      font-weight: 600;
    }
    .shift-tri__now {
      padding: 0 12px;
    }
    .shift-tri__now span {
      color: #9ae8f2 !important;
    }
    .shift-tri__now strong {
      color: #f8fafc;
    }
    .landing-shift__chain {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 8px 0;
      list-style: none;
      margin: 32px 0 0;
      padding: 0;
    }
    .landing-shift__chain li {
      color: #9ae8f2;
      font-size: 0.88rem;
      font-weight: 650;
    }
    .landing-shift__chain li:not(:last-child)::after {
      content: "→";
      display: inline-block;
      margin: 0 12px;
      color: #64748b;
      font-weight: 400;
    }
    @media (max-width: 700px) {
      .shift-tri {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }
    .who-split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
      gap: 48px 56px;
      align-items: center;
    }
    .who-split__lead {
      position: relative;
      min-height: 220px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .who-split__contour {
      position: absolute;
      left: -6%;
      top: -10%;
      width: 108%;
      height: 124%;
      color: #0e7490;
      opacity: 0.18;
      pointer-events: none;
    }
    .who-split h2 {
      position: relative;
      z-index: 1;
      margin: 0;
      text-align: left;
      font-size: clamp(1.85rem, 3.4vw, 2.65rem);
      font-weight: 750;
      line-height: 1.15;
      max-width: 11ch;
      letter-spacing: -0.03em;
    }
    .who-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .who-list li {
      display: grid;
      grid-template-columns: 148px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      padding: 18px 0;
      border-top: 1px solid rgba(148, 163, 184, 0.12);
    }
    .who-list li:last-child {
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    }
    .who-list strong {
      display: block;
      color: #f8fafc;
      font-size: 1.02rem;
      margin-bottom: 4px;
    }
    .who-list li span span {
      display: block;
      color: #94a3b8;
      font-size: 0.9rem;
      line-height: 1.5;
      font-weight: 400;
    }
    .who-viz {
      display: block;
      width: 148px;
      height: 99px;
      border-radius: 10px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      background: #0b1220;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
    .who-viz img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .who-viz--farmer img { object-position: 22% 42%; }
    .who-viz--coop img { object-position: 48% 40%; }
    .who-viz--bank img { object-position: 50% 42%; }
    @media (max-width: 800px) {
      .who-split {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .who-split__lead {
        min-height: 0;
      }
      .who-split__contour {
        inset: -18% 20% -24% -6%;
      }
      .who-split h2 { max-width: 14ch; }
      .who-list li { grid-template-columns: 120px minmax(0, 1fr); gap: 14px; }
      .who-viz { width: 120px; height: 80px; }
    }
    .landing-cta-field {
      position: relative;
      overflow: hidden;
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 24px;
      background: #0b1220;
    }
    .landing-cta-field__copy {
      position: relative;
      z-index: 1;
      max-width: 560px;
    }
    .landing-cta-field h2 {
      margin: 0 0 12px;
      color: #fff;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 700;
      letter-spacing: -0.03em;
    }
    .landing-cta-field p {
      margin: 0 0 24px;
      color: rgba(255,255,255,0.82);
      font-size: 1.05rem;
    }
    .landing-footer {
      padding: 56px 0 28px;
      border-top: 1px solid rgba(148, 163, 255, 0.1);
      background: rgba(5, 8, 22, 0.65);
      position: relative;
      overflow: hidden;
    }
    .landing-footer::before {
      content: "";
      position: absolute;
      inset: auto -20% -40% -20%;
      height: 280px;
      background: radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.06), transparent 70%);
      pointer-events: none;
    }
    .landing-footer-grid {
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.25fr repeat(5, minmax(0, 1fr));
      gap: 28px 32px;
      position: relative;
      z-index: 1;
    }
    .landing-footer-brand-col {
      color: #94a3b8;
      font-size: 0.88rem;
      line-height: 1.6;
      padding-right: 16px;
    }
    .landing-footer-brand-col strong {
      display: block;
      color: #e2e8f0;
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin-bottom: 10px;
    }
    .footer-col h4 {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #e2e8f0;
      margin: 0 0 16px;
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-col a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.86rem;
      line-height: 1.4;
      transition: color 0.2s;
    }
    .footer-col a:hover {
      color: #1ad4e8;
    }
    .landing-footer-bottom {
      margin: 32px auto 0;
      padding-top: 22px;
      border-top: 1px solid rgba(148, 163, 255, 0.1);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px 24px;
      position: relative;
      z-index: 1;
    }
    .landing-footer-bottom-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 12px;
      color: #64748b;
      font-size: 0.78rem;
    }
    .landing-footer-bottom-left a {
      color: #94a3b8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .landing-footer-bottom-left a:hover {
      color: #1ad4e8;
    }
    .footer-legal-sep {
      color: rgba(100, 116, 139, 0.45);
      user-select: none;
    }
    .landing-footer-social {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .landing-footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(148, 163, 255, 0.15);
      background: rgba(15, 23, 42, 0.5);
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.9rem;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .landing-footer-social a:hover {
      color: #1ad4e8;
      border-color: rgba(0, 212, 255, 0.35);
      background: rgba(0, 212, 255, 0.08);
    }
    .landing-footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      justify-content: space-between;
      align-items: center;
    }
    .landing-footer-brand {
      color: #94a3b8;
      font-size: 0.9rem;
      max-width: 380px;
      line-height: 1.55;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .landing-footer-brand strong {
      color: #e2e8f0;
      font-size: 1rem;
      font-weight: 600;
    }
    .landing-footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 24px;
    }
    .landing-footer-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .landing-footer-links a:hover {
      color: #1ad4e8;
    }
    .landing-footer-copy {
      width: 100%;
      margin: 24px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(148, 163, 255, 0.08);
      text-align: center;
      color: #64748b;
      font-size: 0.78rem;
    }
    .landing-footer-grant-panel {
      max-width: min(960px, 100%);
      margin: 28px auto 0;
      padding: 20px 24px 18px;
      border: 1px solid rgba(148, 163, 255, 0.1);
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.35);
      text-align: center;
    }
    .grant-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #64748b;
      margin: 0 0 16px;
    }
    .grant-eyebrow::before,
    .grant-eyebrow::after {
      content: '';
      flex: 0 1 72px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(148, 163, 255, 0.35), transparent);
    }
    .landing-footer-grant {
      margin: 0 auto;
      padding: 0;
      max-width: 680px;
      text-align: center;
      color: #64748b;
      font-size: 0.72rem;
      line-height: 1.6;
    }
    .grant-logos {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 12px 28px;
      margin: 0 0 14px;
    }
    .grant-logo-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 14px;
      margin: 0;
      flex: 1 1 340px;
      max-width: 380px;
      padding: 0 8px;
      background: transparent;
      border: none;
    }
    .grant-logo-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 200px;
      height: 64px;
    }
    .grant-logo {
      display: block;
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      opacity: 1;
    }
    .grant-logo-caption {
      font-size: 0.78rem;
      font-weight: 500;
      color: #b8c5d6;
      line-height: 1.45;
      max-width: 240px;
    }
    #view-landing .landing-footer {
      padding: 48px 0 22px;
      border-top: 1px solid rgba(52, 211, 153, 0.2);
      background:
        radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.12), transparent 55%),
        #05080c;
    }
    #view-landing .landing-footer-grid {
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 28px 40px;
    }
    #view-landing .landing-footer-grid--publish {
      grid-template-columns: 1.6fr auto;
      align-items: end;
      max-width: 920px;
    }
    #view-landing .landing-footer-shell {
      width: min(100% - 48px, 1040px);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    #view-landing .landing-footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px 40px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    }
    #view-landing .landing-footer-top .landing-footer-brand-col {
      flex: 1 1 auto;
      min-width: 0;
      max-width: 34rem;
      padding-right: 0;
    }
    #view-landing .landing-footer-nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 20px;
      justify-content: flex-end;
    }
    #view-landing .landing-footer-nav a {
      color: #9fb0c3;
      text-decoration: none;
      font-size: 0.92rem;
      font-weight: 500;
    }
    #view-landing .landing-footer-nav a:hover {
      color: #9ae8f2;
    }
    #view-landing .landing-footer-nav__demo,
    #view-landing .landing-footer-top .landing-footer-nav__demo {
      flex-shrink: 0;
      padding: 9px 14px;
      border: 1px solid rgba(154, 232, 242, 0.35);
      border-radius: 6px;
      color: #eaf6f2;
      background: rgba(26, 212, 232, 0.08);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      white-space: nowrap;
    }
    #view-landing .landing-footer-nav__demo:hover,
    #view-landing .landing-footer-top .landing-footer-nav__demo:hover {
      border-color: rgba(154, 232, 242, 0.65);
      background: rgba(26, 212, 232, 0.14);
      color: #fff;
    }
    #view-landing .landing-footer-sitemap {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px 40px;
      margin: 28px 0 0;
      padding: 0;
      max-width: none;
    }
    #view-landing .landing-footer-sitemap__col {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 0;
    }
    #view-landing .landing-footer-sitemap__col h4 {
      margin: 0 0 4px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #f8fafc;
    }
    #view-landing .landing-footer-sitemap__col span {
      display: block;
      color: #9fb0c3;
      font-size: 0.88rem;
      font-weight: 500;
      line-height: 1.35;
      cursor: default;
      user-select: none;
      pointer-events: none;
    }
    @media (max-width: 900px) {
      #view-landing .landing-footer-shell {
        width: min(100% - 32px, 1040px);
      }
      #view-landing .landing-footer-top {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 20px;
      }
      #view-landing .landing-footer-sitemap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
      }
    }
    @media (max-width: 560px) {
      #view-landing .landing-footer-sitemap {
        grid-template-columns: 1fr 1fr;
        gap: 26px 18px;
      }
      #view-landing .landing-footer-sitemap__col {
        gap: 8px;
      }
      #view-landing .landing-footer-sitemap__col h4 {
        font-size: 0.72rem;
        margin-bottom: 2px;
      }
      #view-landing .landing-footer-sitemap__col span {
        font-size: 0.9rem;
        line-height: 1.4;
      }
    }
    html.gs-publish-home .navbar-link--demo {
      padding: 8px 14px;
      border: 1px solid rgba(154, 232, 242, 0.4);
      border-radius: 6px;
      color: #eaf6f2;
      background: rgba(26, 212, 232, 0.08);
    }
    html.gs-publish-home .navbar-link--demo:hover {
      border-color: rgba(154, 232, 242, 0.65);
      background: rgba(26, 212, 232, 0.14);
      color: #fff;
    }
    html.gs-publish-home .navbar-utilities {
      display: none !important;
    }
    /* Publish: insight cards stay on home as story, not separate routes */
    html.gs-publish-home a.gs-question {
      pointer-events: none;
      cursor: default;
      text-decoration: none;
    }
    #view-landing .landing-footer-brand-col {
      color: #9fb0c3;
    }
    #view-landing .landing-footer-brand-col strong,
    #view-landing .footer-col h4 {
      color: #f8fafc;
    }
    #view-landing .footer-col a {
      color: #9fb0c3;
    }
    #view-landing .footer-col a:hover {
      color: #9ae8f2;
    }
    #view-landing .landing-footer-grant-panel {
      max-width: none;
      margin: 28px 0 0;
      padding-top: 20px;
      padding-bottom: 0;
      border: 0;
      border-top: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 0;
      background: transparent;
      text-align: center;
    }
    #view-landing .landing-footer-grant-inner {
      width: 100%;
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      text-align: center;
    }
    #view-landing .grant-eyebrow {
      justify-content: center;
      width: 100%;
      margin: 0;
      color: #94a3b8;
    }
    #view-landing .grant-eyebrow::before,
    #view-landing .grant-eyebrow::after {
      display: block;
      flex: 0 1 72px;
    }
    #view-landing .grant-logos {
      margin: 0;
      justify-content: center;
      width: 100%;
      gap: 24px 40px;
    }
    #view-landing .grant-logo-item {
      flex: 0 1 auto;
      max-width: 280px;
      padding: 0;
      gap: 10px;
    }
    #view-landing .grant-logo-visual {
      width: 168px;
      height: 52px;
    }
    #view-landing .grant-logo-caption {
      font-size: 0.68rem;
      color: #94a3b8;
    }
    #view-landing .landing-footer-grant {
      margin: 0;
      max-width: none;
      width: 100%;
      text-align: center;
      color: #7f92aa;
      font-size: 0.74rem;
      line-height: 1.65;
    }
    #view-landing .landing-footer-bottom {
      margin-top: 22px;
      border-top-color: rgba(148, 163, 184, 0.16);
      display: flex;
      justify-content: center;
      text-align: center;
    }
    #view-landing .landing-footer-bottom-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 12px 20px;
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
    }
    #view-landing .landing-footer-bottom-left {
      color: #7f92aa;
      justify-content: center;
    }
    #view-landing .gs-editorial__story--solo {
      padding-top: 0;
      border-top: 0;
    }
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .showcase-row {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .showcase-row--reverse .showcase-copy,
      .showcase-row--reverse .showcase-visual {
        order: unset;
      }
      .how-steps-connected,
      .how-steps-connected--five {
        grid-template-columns: repeat(2, 1fr);
      }
      .how-steps-connected::before {
        display: none;
      }
      .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .landing-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      #view-landing .landing-footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
      }
      #view-landing .landing-footer-brand-col {
        grid-column: 1 / -1;
      }
    }
    @media (max-width: 768px) {
      .brand-logo-wrap {
        --logo-content-h: 36px;
      }
      .navbar {
        padding: 0 16px;
        height: 60px;
      }
      .hero-subtitle {
        font-size: 1.05rem;
      }
      .landing-hero-title {
        font-size: 2.35rem;
        letter-spacing: -1px;
      }
      .hero {
        padding: 72px 20px !important;
        min-height: auto !important;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .hero-copy .hero-subtitle,
      .hero--split {
        text-align: center !important;
      }
      .hero-copy .hero-actions {
        justify-content: center;
      }
      #landing-hero.hero-split {
        margin-top: 0;
        padding: 0 !important;
        min-height: calc(100vh - 56px) !important;
      }
      .hero-stats-row {
        justify-content: center;
      }
      .feature-grid {
        grid-template-columns: 1fr;
      }
      .persona-grid {
        grid-template-columns: 1fr;
      }
      .showcase-row,
      .showcase-row--reverse .showcase-copy,
      .showcase-row--reverse .showcase-visual {
        grid-template-columns: 1fr;
        order: unset;
      }
      .how-steps-connected,
      .how-steps-connected--five {
        grid-template-columns: 1fr 1fr;
      }
      .how-steps-connected::before {
        display: none;
      }
      .product-mock__body {
        grid-template-columns: 40px 1fr;
        min-height: 200px;
      }
      .product-mock__panel {
        display: none;
      }
      .grant-logo-visual {
        width: min(100%, 300px);
        height: 96px;
      }
      .grant-logo-item {
        flex: 1 1 100%;
        max-width: none;
      }
      .services-preview-grid {
        grid-template-columns: 1fr;
      }
      .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
      }
      #view-landing .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .landing-footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
      }
      .landing-footer-bottom {
        flex-direction: column;
        align-items: center;
      }
      #view-landing .landing-footer-bottom {
        align-items: center;
      }
      .landing-footer-grant-panel {
        margin-top: 32px;
        padding: 26px 20px 24px;
      }
      #view-landing .landing-footer-grant-panel {
        padding-top: 16px;
      }
      #view-landing .landing-footer-grant-inner {
        gap: 14px;
      }
      #view-landing .grant-logos {
        flex-direction: column;
        gap: 20px;
      }
      #view-landing .grant-logo-visual {
        width: min(100%, 180px);
        height: 48px;
      }
      .grant-eyebrow::before,
      .grant-eyebrow::after {
        flex-basis: 40px;
      }
      .landing-footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      .landing-footer-links {
        gap: 12px 20px;
      }
    }
    
    /* Dashboard */
    main {
      flex: 1;
      display: flex;
      position: relative;
      height: calc(100vh - 70px);
    }
    /* Map containers for category dashboards */
    #map-urban,
    #map-agriculture,
    #map-forests,
    #map-water,
    #map-risk,
    #map-energy,
    #map-tourism {
      flex: 1;
      position: relative;
      width: 100%;
      height: 100%;
      min-height: calc(100vh - 70px);
      background: #0a0f1e;
      overflow: hidden;
    }
    /* Ensure map canvas and draw layer receive click events */
    #map-agriculture .maplibregl-map,
    #map-agriculture .maplibregl-canvas-container,
    #map-agriculture .maplibregl-canvas,
    #map-agriculture .mapboxgl-map,
    #map-agriculture .mapboxgl-canvas-container,
    #map-agriculture .mapboxgl-canvas {
      pointer-events: auto !important;
    }
    /* Ensure map containers are visible and properly sized */
    #view-category-urban main,
    #view-category-agriculture main,
    #view-category-forests main,
    #view-category-water main,
    #view-category-risk main,
    #view-category-energy main,
    #view-category-tourism main {
      display: flex;
      flex-direction: row;
      position: relative;
      height: calc(100vh - 70px);
      overflow: hidden;
    }
    .sidebar {
      width: 280px;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(12px);
      border-right: 1px solid rgba(148, 163, 255, 0.1);
      padding: 20px;
      overflow-y: auto;
      transition: transform 0.3s;
    }
    .sidebar.collapsed {
      transform: translateX(-100%);
    }
    .sidebar-toggle {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(26, 212, 232, 0.22);
      color: #7dd3e8;
      padding: 8px 12px;
      border-radius: 6px;
      cursor: pointer;
      z-index: 1000;
    }
    .nav-item {
      padding: 12px 16px;
      margin: 4px 0;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
      color: #cbd5e1;
    }
    .nav-item:hover {
      background: rgba(148, 163, 255, 0.1);
      color: #7dd3e8;
    }
    .nav-item.active {
      background: rgba(99, 102, 241, 0.2);
      color: #7dd3e8;
      border-left: 3px solid #6366f1;
    }
    .product-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 10px 16px;
      margin: 2px 0;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
      color: #cbd5e1;
      font-size: 0.9rem;
    }
    .product-ai-badge {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: #2bb88a;
      background: rgba(16, 185, 129, 0.15);
      padding: 3px 7px;
      border-radius: 6px;
      flex-shrink: 0;
    }
    .product-item:hover {
      background: rgba(148, 163, 255, 0.1);
      color: #7dd3e8;
    }
    .product-item.active {
      background: rgba(99, 102, 241, 0.15);
      color: #7dd3e8;
    }
    #map {
      flex: 1;
      position: relative;
      overflow: hidden;
    }
    
    /* Floating Panels */
    #map-controls-panel,
    #time-machine-panel,
    #system-pulse-panel {
      scrollbar-width: thin;
      scrollbar-color: rgba(148, 163, 255, 0.3) transparent;
    }
    
    #map-controls-panel::-webkit-scrollbar,
    #time-machine-panel::-webkit-scrollbar,
    #system-pulse-panel::-webkit-scrollbar {
      width: 6px;
    }
    
    #map-controls-panel::-webkit-scrollbar-track,
    #time-machine-panel::-webkit-scrollbar-track,
    #system-pulse-panel::-webkit-scrollbar-track {
      background: transparent;
    }
    
    #map-controls-panel::-webkit-scrollbar-thumb,
    #time-machine-panel::-webkit-scrollbar-thumb,
    #system-pulse-panel::-webkit-scrollbar-thumb {
      background: rgba(148, 163, 255, 0.3);
      border-radius: 3px;
    }
    
    #map-controls-panel::-webkit-scrollbar-thumb:hover,
    #time-machine-panel::-webkit-scrollbar-thumb:hover,
    #system-pulse-panel::-webkit-scrollbar-thumb:hover {
      background: rgba(148, 163, 255, 0.5);
    }
    
    /* Responsive adjustments */
    @media (max-width: 1400px) {
      #map-controls-panel {
        left: 260px;
        width: 240px;
      }
      #system-pulse-panel {
        right: 400px;
        width: 200px;
      }
    }
    
    @media (max-width: 1200px) {
      #map-controls-panel {
        left: 240px;
        width: 220px;
      }
      #system-pulse-panel {
        display: none; /* Hide on smaller screens */
      }
      #time-machine-panel {
        width: 360px;
      }
    }
    .content-panel {
      position: fixed;
      right: -400px;
      top: 70px;
      width: 400px;
      height: calc(100vh - 70px);
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(16px);
      border-left: 1px solid rgba(148, 163, 255, 0.1);
      transition: right 0.3s;
      z-index: 1000;
      overflow-y: auto;
    }
    .content-panel.active {
      right: 0;
    }
    .panel-header {
      padding: 20px;
      border-bottom: 1px solid rgba(148, 163, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .panel-close {
      background: none;
      border: none;
      color: #94a3b8;
      font-size: 24px;
      cursor: pointer;
      padding: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .panel-close:hover {
      color: #7dd3e8;
    }
    .panel-content {
      padding: 20px;
    }
    
    /* Agriculture UI – premium refinements */
    .create-field-aoi-btn {
      width: 100%;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #2bb88a, #059669);
      border: none;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
      font-weight: 600;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 10px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .create-field-aoi-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
    }
    .agriculture-overlay-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      background: rgba(30, 41, 59, 0.5);
      border: 1px solid rgba(16, 185, 129, 0.15);
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    }
    .agriculture-overlay-item:hover {
      background: rgba(30, 41, 59, 0.7);
      border-color: rgba(16, 185, 129, 0.35);
      box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
    }
    .agriculture-overlay-item input:checked + span {
      color: #2bb88a;
    }
    .agriculture-overlay-item input {
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: #2bb88a;
    }
    .agriculture-field-row {
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, border-color 0.2s;
      border-radius: 8px;
      padding: 2px;
    }
    .agriculture-field-row:hover {
      background: rgba(16, 185, 129, 0.08);
    }
    .agriculture-field-btn {
      flex: 1;
      text-align: left;
      padding: 10px 12px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.2);
      border-radius: 8px;
      color: #e2e8f0;
      font-size: 0.9rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, border-color 0.2s;
    }
    .agriculture-field-btn:hover {
      background: rgba(26, 212, 232, 0.1);
      border-color: rgba(16, 185, 129, 0.35);
    }

    /* Agriculture – GEOSTRAXIS / grant alignment: clear hierarchy, green economy + digital */
    #sidebar-agriculture .product-item:hover {
      background: rgba(16, 185, 129, 0.1);
      color: #ecfdf5;
    }
    #sidebar-agriculture .product-item.active {
      background: rgba(16, 185, 129, 0.14);
      color: #ecfdf5;
      border-left: 3px solid #2bb88a;
      box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.2);
    }
    #content-panel-agriculture {
      border-left: 1px solid rgba(16, 185, 129, 0.22);
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.99) 100%);
    }
    #content-panel-agriculture .panel-header {
      flex-direction: column;
      align-items: stretch;
      gap: 6px;
      border-bottom-color: rgba(16, 185, 129, 0.15);
    }
    #content-panel-agriculture .panel-header .panel-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }
    #content-panel-agriculture .panel-header h3 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 700;
      color: #f8fafc;
      line-height: 1.3;
    }
    .agri-panel-kicker {
      margin: 0;
      font-size: 0.72rem;
      line-height: 1.45;
      color: #94a3b8;
      font-weight: 500;
      max-width: 42ch;
    }
    .agri-sidebar-tagline {
      margin: 0 16px 14px;
      padding: 10px 12px;
      font-size: 0.72rem;
      line-height: 1.5;
      color: #94a3b8;
      background: rgba(16, 185, 129, 0.06);
      border: 1px solid rgba(26, 212, 232, 0.1);
      border-radius: 10px;
    }
    .agri-lang-bar {
      margin: 0 16px 14px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(16, 185, 129, 0.2);
      border-radius: 10px;
    }
    .agri-lang-bar__label {
      font-size: 0.68rem;
      font-weight: 600;
      color: #94a3b8;
      letter-spacing: 0.04em;
    }
    .agri-lang-toggle {
      display: inline-flex;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(16, 185, 129, 0.35);
    }
    .agri-lang-btn {
      padding: 6px 14px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      border: none;
      cursor: pointer;
      background: rgba(30, 41, 59, 0.8);
      color: #94a3b8;
      transition: background 0.2s, color 0.2s;
    }
    .agri-lang-btn:hover {
      color: #e2e8f0;
    }
    .agri-lang-btn--active {
      background: rgba(16, 185, 129, 0.25);
      color: #2bb88a;
    }
    /* Agriculture UI language — compact row in main navbar (before Sign In) */
    .agri-lang-bar--navbar {
      margin: 0;
      padding: 3px;
      background: rgba(7, 17, 31, 0.42);
      border: 1px solid rgba(154, 232, 242, 0.22);
      border-radius: 999px;
      flex-wrap: nowrap;
    }
    .agri-lang-bar--navbar[hidden] {
      display: none !important;
    }
    html.gs-publish-no-auth #btn-sign-in,
    html.gs-publish-no-auth #navbar-account,
    html.gs-publish-no-auth #user-menu {
      display: none !important;
    }
      gap: 0;
      flex-shrink: 0;
    }
    .agri-lang-bar--navbar .agri-lang-bar__label {
      display: none;
    }
    .agri-lang-bar--navbar .agri-lang-toggle {
      border: 0;
      border-radius: 999px;
      overflow: visible;
    }
    .agri-lang-bar--navbar .agri-lang-btn {
      padding: 6px 11px;
      font-size: 0.68rem;
      font-weight: 700;
      border-radius: 999px;
      border: none;
      background: transparent;
    }
    .agri-lang-bar--navbar .agri-lang-btn--active {
      background: rgba(26, 212, 232, 0.18);
      color: #9ae8f2;
      box-shadow: 0 0 0 1px rgba(154, 232, 242, 0.22) inset;
    }
    @media (max-width: 900px) {
      .agri-lang-bar--navbar {
        padding: 3px;
      }
    }
    #content-panel-agriculture .panel-content {
      padding-top: 8px;
    }
    .agri-stack {
      max-width: 100%;
      padding: 4px 0 28px;
    }
    .agri-field-label {
      display: block;
      font-size: 0.68rem;
      color: #64748b;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
    }
    .agri-product-strip {
      margin-bottom: 16px;
      padding: 10px 14px;
      background: rgba(16, 185, 129, 0.08);
      border-radius: 10px;
      border: 1px solid rgba(16, 185, 129, 0.22);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }
    .agri-product-strip-name {
      font-size: 0.88rem;
      font-weight: 600;
      color: #2bb88a;
    }
    .agri-product-strip-badge {
      font-size: 0.65rem;
      font-weight: 700;
      color: rgba(16, 185, 129, 0.95);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .agri-section-label {
      font-size: 0.68rem;
      color: #2bb88a;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
      padding-bottom: 6px;
      border-bottom: 1px solid rgba(16, 185, 129, 0.25);
    }
    .agri-card {
      margin-bottom: 16px;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.2);
      background: rgba(15, 23, 42, 0.55);
    }
    .agri-card--whatnow {
      background: linear-gradient(135deg, rgba(234, 179, 8, 0.08), rgba(239, 68, 68, 0.04));
    }
    .agri-card--whatnow.agri-priority-high { border-color: rgba(239, 68, 68, 0.45); }
    .agri-card--whatnow.agri-priority-medium { border-color: rgba(234, 179, 8, 0.45); }
    .agri-card--whatnow.agri-priority-low { border-color: rgba(34, 197, 94, 0.35); }
    .agri-decision-section { margin-bottom: 16px; }
    .agri-decision-sub {
      font-size: 0.8rem;
      color: #64748b;
      margin: -8px 0 12px 0;
    }
    .agri-decision-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .agri-decision-card {
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.25);
      background: rgba(15, 23, 42, 0.65);
    }
    .agri-decision-card.agri-priority-high { border-color: rgba(239, 68, 68, 0.4); }
    .agri-decision-card.agri-priority-medium { border-color: rgba(234, 179, 8, 0.35); }
    .agri-decision-card.agri-priority-low { border-color: rgba(34, 197, 94, 0.3); }
    .agri-decision-head {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 8px;
    }
    .agri-decision-icon { font-size: 1.25rem; line-height: 1; }
    .agri-decision-titles { flex: 1; min-width: 0; }
    .agri-decision-kicker {
      display: block;
      font-size: 0.68rem;
      font-weight: 700;
      color: #2bb88a;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .agri-decision-action {
      display: block;
      font-size: 0.95rem;
      color: #f1f5f9;
      margin-top: 2px;
    }
    .agri-decision-conf {
      font-size: 0.72rem;
      color: #94a3b8;
      white-space: nowrap;
    }
    .agri-decision-insight {
      font-size: 0.85rem;
      color: #cbd5e1;
      margin: 0 0 8px 0;
      line-height: 1.45;
    }
    .agri-decision-data {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 8px;
    }
    .agri-decision-data span {
      font-size: 0.72rem;
      padding: 3px 8px;
      border-radius: 6px;
      background: rgba(6, 182, 212, 0.12);
      color: #9ae8f2;
    }
    .agri-decision-why {
      font-size: 0.78rem;
      color: #94a3b8;
    }
    .agri-decision-why summary { cursor: pointer; color: #64748b; }
    .agri-decision-why ul { margin: 6px 0 0 1rem; padding: 0; }
    .agri-card--zones { border-color: rgba(56, 189, 248, 0.25); }
    .agri-zones-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.82rem;
      margin-top: 10px;
    }
    .agri-zones-table th,
    .agri-zones-table td {
      padding: 6px 8px;
      text-align: left;
      border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    }
    .agri-zones-attention {
      font-size: 0.82rem;
      color: #fbbf24;
      margin: 8px 0 0 0;
    }
    .agri-zone-attention td:first-child { color: #fbbf24; }
    .agri-zone-critical td:first-child { color: #f87171; }
    .agri-card--ai {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.06));
      border-color: rgba(26, 212, 232, 0.16);
    }
    .agri-card--health {
      padding: 18px;
      border-color: rgba(16, 185, 129, 0.22);
    }
    .agri-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }
    .agri-card-kicker {
      font-size: 0.7rem;
      font-weight: 800;
      color: #fbbf24;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .agri-card-kicker--ai {
      color: #2bb88a;
      letter-spacing: 0.1em;
    }
    .agri-card-sub {
      font-size: 0.74rem;
      color: #94a3b8;
    }
    .agri-priority-pill {
      font-size: 0.65rem;
      font-weight: 600;
      color: #94a3b8;
    }
    .agri-card-title {
      font-size: 0.92rem;
      font-weight: 600;
      color: #f8fafc;
      line-height: 1.45;
      margin: 0 0 10px 0;
    }
    .agri-card-body {
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.55;
      margin: 0;
    }
    .agri-actions-list {
      margin: 0 0 0 1.1em;
      padding: 0;
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.55;
    }
    .agri-actions-list li { margin-bottom: 6px; }
    .agri-yield-hint {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(148, 163, 184, 0.2);
      font-size: 0.75rem;
      color: #94a3b8;
      line-height: 1.45;
    }
    .agri-yield-hint strong {
      display: block;
      font-weight: 600;
      color: #cbd5e1;
      margin-bottom: 4px;
    }
    .agri-metric-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .agri-metric-tile {
      padding: 12px;
      background: rgba(16, 185, 129, 0.08);
      border-radius: 8px;
      border: 1px solid rgba(16, 185, 129, 0.15);
    }
    .agri-landing {
      padding: 4px 0 8px 0;
    }

    /* Agriculture map panel (top-left) – i njëjtë gjuhë vizual me panelin e analizës */
    .agri-map-panel {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 1000;
      min-width: 288px;
      max-width: min(340px, calc(100vw - 40px));
      padding: 14px 16px 16px;
      background: linear-gradient(165deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.94) 100%);
      backdrop-filter: blur(18px);
      border-radius: 14px;
      border: 1px solid rgba(16, 185, 129, 0.32);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(16, 185, 129, 0.08);
    }
    .agri-map-panel__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(16, 185, 129, 0.22);
    }
    .agri-map-panel__title-wrap {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .agri-map-panel__icon {
      font-size: 1.25rem;
      line-height: 1;
      margin-top: 2px;
    }
    .agri-map-panel__title {
      margin: 0;
      color: #ecfdf5;
      font-size: 0.98rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.25;
    }
    .agri-status-strip {
      position: absolute;
      top: 16px;
      left: 370px;
      right: 24px;
      z-index: 900;
      display: flex;
      flex-direction: column;
      gap: 8px;
      pointer-events: none;
    }
    .agri-status-strip__cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }
    .agri-status-card {
      pointer-events: auto;
      background: rgba(15, 23, 42, 0.94);
      border: 1px solid rgba(16, 185, 129, 0.22);
      border-radius: 12px;
      padding: 10px 12px 11px;
      min-width: 0;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
      cursor: pointer;
    }
    .agri-status-card:hover { border-color: rgba(16, 185, 129, 0.5); }
    .agri-status-card__kicker {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: 4px;
    }
    .agri-status-card__value {
      font-size: 1.05rem;
      font-weight: 700;
      color: #e2e8f0;
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .agri-status-card__hint {
      font-size: 0.7rem;
      color: #94a3b8;
      margin-top: 3px;
      line-height: 1.35;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .agri-status-card.is-warn { border-color: rgba(245, 158, 11, 0.45); }
    .agri-status-card.is-alert { border-color: rgba(239, 68, 68, 0.45); }
    .agri-status-card.is-ok { border-color: rgba(16, 185, 129, 0.4); }
    .agri-field-switcher {
      pointer-events: auto;
      align-self: flex-start;
      min-width: 200px;
      max-width: 280px;
      padding: 8px 10px;
      background: rgba(15, 23, 42, 0.94);
      border: 1px solid rgba(26, 212, 232, 0.16);
      border-radius: 10px;
      color: #e2e8f0;
      font-size: 0.82rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }
    .agri-nav-group {
      margin: 10px 0 6px;
    }
    .agri-nav-group__label {
      display: block;
      padding: 6px 16px 4px;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #2bb88a;
    }
    .agri-nav-report-btn {
      width: calc(100% - 20px);
      margin: 4px 10px 8px;
      padding: 10px 12px;
      border-radius: 8px;
      border: 1px solid rgba(16, 185, 129, 0.35);
      background: rgba(16, 185, 129, 0.1);
      color: #6ee7b7;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
    }
    .agri-nav-report-btn:hover { background: rgba(26, 212, 232, 0.1); }
    .agri-nav-demo-btn {
      width: calc(100% - 20px);
      margin: 8px 10px 4px;
      padding: 9px 12px;
      border-radius: 8px;
      border: 1px dashed rgba(148, 163, 255, 0.35);
      background: transparent;
      color: #94a3b8;
      font-size: 0.78rem;
      font-weight: 600;
      cursor: pointer;
    }
    .agri-nav-demo-btn:hover { color: #c4b5fd; border-color: rgba(196, 181, 253, 0.5); }
    .agri-ai-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }
    .agri-ai-chip {
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(16, 185, 129, 0.35);
      background: rgba(16, 185, 129, 0.1);
      color: #6ee7b7;
      font-size: 0.72rem;
      font-weight: 600;
      cursor: pointer;
    }
    .agri-popup-action {
      margin-top: 8px;
      width: 100%;
      padding: 7px 10px;
      border-radius: 8px;
      border: none;
      background: linear-gradient(135deg, #2bb88a, #059669);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      cursor: pointer;
    }
    .agri-alarm-action {
      margin-top: 8px;
      font-size: 0.82rem;
      color: #86efac;
      line-height: 1.4;
    }
    @media (max-width: 1200px) {
      .agri-status-strip {
        left: 16px;
        right: 16px;
        top: auto;
        bottom: 16px;
      }
      .agri-status-strip__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .agri-field-switcher { max-width: 100%; width: 100%; }
    }
    .agri-map-panel__subtitle {
      margin: 4px 0 0 0;
      font-size: 0.65rem;
      font-weight: 500;
      color: #94a3b8;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .agri-map-panel__toggle {
      flex-shrink: 0;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(26, 212, 232, 0.16);
      border-radius: 8px;
      color: #2bb88a;
      cursor: pointer;
      font-size: 0.85rem;
      padding: 6px 10px;
      line-height: 1;
      transition: background 0.2s, border-color 0.2s;
    }
    .agri-map-panel__toggle:hover {
      background: rgba(16, 185, 129, 0.22);
      border-color: rgba(16, 185, 129, 0.45);
    }
    .agri-map-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 16px;
    }
    .agri-map-stat {
      padding: 10px 8px;
      text-align: center;
      background: rgba(16, 185, 129, 0.09);
      border: 1px solid rgba(16, 185, 129, 0.22);
      border-radius: 10px;
    }
    .agri-map-stat__value {
      font-size: 1.45rem;
      font-weight: 700;
      color: #2bb88a;
      line-height: 1.1;
    }
    .agri-map-stat__label {
      font-size: 0.62rem;
      color: #94a3b8;
      margin-top: 6px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .agri-map-stat__label-en {
      display: block;
      font-size: 0.58rem;
      font-weight: 500;
      color: #64748b;
      margin-top: 2px;
      text-transform: none;
      letter-spacing: 0.02em;
    }
    .agri-map-section-label {
      display: block;
      font-size: 0.68rem;
      color: #94a3b8;
      margin-bottom: 8px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .agri-map-section-label .agri-map-section-label-en {
      display: block;
      font-size: 0.58rem;
      font-weight: 500;
      color: #64748b;
      margin-top: 3px;
      text-transform: none;
      letter-spacing: 0.03em;
    }
    .agri-map-basemap-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .agriculture-basemap-btn {
      padding: 8px 10px;
      background: rgba(30, 41, 59, 0.65);
      border: 1px solid rgba(148, 163, 255, 0.18);
      border-radius: 8px;
      color: #cbd5e1;
      cursor: pointer;
      font-size: 0.78rem;
      font-weight: 600;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .agriculture-basemap-btn:hover {
      border-color: rgba(16, 185, 129, 0.35);
      color: #e2e8f0;
    }
    .agriculture-basemap-btn.agri-map-btn--active {
      background: rgba(16, 185, 129, 0.22);
      border-color: rgba(16, 185, 129, 0.45);
      color: #2bb88a;
    }
    .agri-map-legend {
      margin-top: 10px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.75);
      border: 1px solid rgba(16, 185, 129, 0.15);
    }
    .agri-map-legend__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
      gap: 8px;
    }
    .agri-map-legend__bar {
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, #7f1d1d 0%, #f97316 20%, #facc15 40%, #22c55e 65%, #16a34a 85%, #14532d 100%);
    }
    .agri-map-legend__ticks {
      display: flex;
      justify-content: space-between;
      margin-top: 4px;
      font-size: 0.62rem;
      color: #64748b;
    }
    .agri-map-soil-legend {
      margin-top: 8px;
      padding: 12px 14px;
      border-radius: 10px;
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.55));
      border: 1px solid rgba(26, 212, 232, 0.1);
      box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    }
    .agri-map-soil-legend__bar {
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(90deg, #ef4444 0%, #f97316 12%, #eab308 25%, #84cc16 40%, #22c55e 50%, #14b8a6 62%, #12b8cc 78%, #8b5cf6 100%);
      box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
    }
    .agri-map-sources {
      margin-top: 12px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.72);
      border: 1px solid rgba(16, 185, 129, 0.14);
      font-size: 0.72rem;
      color: #94a3b8;
    }
    .agri-map-sources__head {
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 6px;
      color: #64748b;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.65rem;
      font-weight: 600;
    }
    .agri-info-btn {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      border: 1px solid rgba(16, 185, 129, 0.45);
      background: rgba(15, 23, 42, 0.95);
      color: #6ee7b7;
      font-size: 0.68rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
    }
    .agri-info-btn--sm {
      width: 14px;
      height: 14px;
      font-size: 0.58rem;
    }
    #sidebar-agriculture .sidebar-ag-title {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 10px;
    }
    #sidebar-agriculture .sidebar-ag-title-text {
      font-size: 1.02rem;
      font-weight: 700;
      line-height: 1.3;
      min-width: 0;
      color: #ecfdf5;
    }
    #sidebar-agriculture .product-title-stack {
      display: flex;
      flex-direction: column;
      gap: 2px;
      text-align: left;
      flex: 1;
      min-width: 0;
    }
    #sidebar-agriculture .product-title-main {
      font-size: 0.86rem;
      font-weight: 600;
      line-height: 1.25;
    }
    
    /* Auth Forms */
    .auth-container {
      max-width: 420px;
      margin: 60px auto;
      padding: 48px 40px;
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.85));
      border: 1px solid rgba(148, 163, 255, 0.15);
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    .auth-container h2 {
      margin-bottom: 28px;
      color: #7dd3e8;
      font-size: 1.75rem;
      font-weight: 700;
    }
    .auth-form .form-group { margin-bottom: 20px; }
    .btn-auth-submit {
      width: 100%;
      margin-top: 8px;
      padding: 12px 16px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-auth-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #cbd5e1;
      font-size: 0.9rem;
    }
    .form-group input {
      width: 100%;
      padding: 10px 12px;
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(26, 212, 232, 0.22);
      border-radius: 6px;
      color: #e2e8f0;
      font-size: 0.95rem;
    }
    .form-group input:focus {
      outline: none;
      border-color: #6366f1;
    }
    .password-input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }
    .password-input-wrapper input {
      padding-right: 45px;
    }
    .password-toggle {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: #94a3b8;
      cursor: pointer;
      font-size: 0.9rem;
      padding: 0;
      z-index: 10;
      pointer-events: auto;
    }
    .password-toggle:hover {
      color: #e2e8f0;
    }
    .remember-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      font-size: 0.85rem;
      color: #cbd5e1;
    }
    .remember-row label {
      display: flex;
      align-items: center;
      cursor: pointer;
    }
    .remember-row input[type="checkbox"] {
      margin-right: 6px;
    }
    .auth-form-note {
      font-size: 0.8rem;
      color: #64748b;
      margin-top: 12px;
      line-height: 1.4;
    }
    .auth-form-note a {
      color: #7dd3e8;
    }

    /* GEOSTRAXIS Home — interactive precision-agriculture story */
    #view-landing {
      --gs-ink: #07140f;
      --gs-navy: #0c1814;
      --gs-green: #2f9a68;
      --gs-green-soft: #7dcca3;
      --gs-teal: #1aad9a;
      --gs-cyan: #1ad4e8;
      --gs-cyan-soft: #9ae8f2;
      --gs-mist: #e4ebe6;
      --gs-cream: #eef2ef;
      --gs-line: rgba(14, 26, 20, 0.12);
      --gs-content-max: min(1280px, calc(100vw - 56px));
      background: var(--gs-cream);
      color: #0e1a14;
    }
    #view-landing .gs-shell {
      width: var(--gs-content-max);
      margin-inline: auto;
    }
    #view-landing .gs-kicker {
      margin: 0 0 16px;
      color: #1f7a55;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    #view-landing .gs-kicker--light {
      color: var(--gs-cyan-soft);
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      margin-bottom: 20px;
    }
    #view-landing .gs-section-head {
      max-width: 780px;
      margin-bottom: 56px;
    }
    #view-landing .gs-section-head--center {
      margin-inline: auto;
      text-align: center;
    }
    #view-landing .gs-section-head h2 {
      margin: 0;
      color: #0e1a14;
      font-size: clamp(1.5rem, 2.6vw, 2.25rem);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.035em;
    }
    #view-landing .gs-section-head p:last-child {
      max-width: 680px;
      margin: 22px 0 0;
      color: #5a6e64;
      font-size: 1.05rem;
      line-height: 1.7;
    }
    #view-landing .gs-section-head--center p:last-child {
      margin-inline: auto;
    }

    #view-landing .gs-hero {
      position: relative;
      min-height: max(680px, calc(100svh - 64px));
      display: flex;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      background: var(--gs-ink);
    }
    #view-landing .gs-hero__image,
    #view-landing .gs-hero__shade,
    #view-landing .gs-hero__grid {
      position: absolute;
      inset: 0;
    }
    #view-landing .gs-hero__image {
      z-index: -4;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 45%;
      filter: saturate(0.86) contrast(1.1) brightness(0.76);
      animation: gs-hero-drift 24s ease-in-out infinite alternate;
    }
    #view-landing .gs-hero__shade {
      z-index: -3;
      background:
        radial-gradient(ellipse 70% 55% at 72% 38%, rgba(26, 212, 232, 0.18), transparent 58%),
        radial-gradient(ellipse 55% 45% at 20% 78%, rgba(47, 154, 104, 0.22), transparent 55%),
        radial-gradient(ellipse 40% 35% at 48% 20%, rgba(26, 173, 154, 0.1), transparent 50%),
        linear-gradient(90deg, rgba(7, 20, 15, 0.97) 0%, rgba(7, 20, 15, 0.9) 32%, rgba(7, 20, 15, 0.52) 58%, rgba(7, 20, 15, 0.2) 100%),
        linear-gradient(180deg, rgba(7, 20, 15, 0.4) 0%, transparent 38%, rgba(7, 20, 15, 0.72) 100%);
    }
    #view-landing .gs-hero__grid {
      z-index: -2;
      opacity: 0.09;
      background-image:
        linear-gradient(rgba(154, 232, 242, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(154, 232, 242, 0.12) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(90deg, transparent 0%, #000 55%, #000 100%);
    }
    #view-landing .gs-hero__inner {
      position: relative;
      width: var(--gs-content-max);
      margin-inline: auto;
      padding: clamp(88px, 10vh, 120px) 0 clamp(72px, 8vh, 96px);
      display: block;
    }
    #view-landing .gs-hero__copy {
      max-width: 720px;
      color: #fff;
    }
    #view-landing .gs-hero__copy h1 {
      margin: 0;
      max-width: 13ch;
      color: #fff;
      font-size: clamp(2.05rem, 3vw + 0.45rem, 3.25rem);
      font-weight: 700;
      line-height: 1.04;
      letter-spacing: -0.04em;
      text-shadow: 0 2px 48px rgba(0, 0, 0, 0.28);
    }
    #view-landing .gs-hero__copy h1 .gs-hero__title-accent {
      color: var(--gs-cyan-soft);
    }
    #view-landing .gs-hero__lead {
      max-width: 38rem;
      margin: 24px 0 0;
      color: rgba(234, 246, 248, 0.72);
      font-size: clamp(1rem, 0.25vw + 0.92rem, 1.125rem);
      line-height: 1.72;
    }
    #view-landing .gs-hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 36px;
    }
    #view-landing .gs-btn {
      min-height: 48px;
      padding: 0 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 6px;
      color: #eaf6f8;
      background: transparent;
      font: inherit;
      font-size: 0.9375rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }
    #view-landing .gs-btn:hover {
      transform: none;
    }
    #view-landing .gs-btn--primary {
      color: #04140f;
      background: linear-gradient(135deg, #1aad9a 0%, #2f9a68 100%);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
    }
    #view-landing .gs-btn--primary:hover {
      background: linear-gradient(135deg, #1fbea8 0%, #36a873 100%);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.26) inset;
    }
    #view-landing .gs-btn--ghost {
      border-color: rgba(154, 232, 242, 0.32);
      background: rgba(255, 255, 255, 0.03);
      color: #eaf6f2;
    }
    #view-landing .gs-btn--ghost:hover {
      border-color: rgba(154, 232, 242, 0.55);
      background: rgba(26, 212, 232, 0.08);
    }
    #view-landing .gs-hero__terms {
      margin: 40px 0 0;
      padding: 24px 0 0;
      display: flex;
      flex-wrap: wrap;
      gap: 12px 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      list-style: none;
    }
    #view-landing .gs-hero__terms li {
      color: rgba(226, 232, 240, 0.72);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    #view-landing .gs-hero__terms li::before {
      content: "";
      width: 4px;
      height: 4px;
      margin-right: 8px;
      display: inline-block;
      border-radius: 1px;
      background: var(--gs-green);
      vertical-align: middle;
      transform: translateY(-1px);
      opacity: 0.9;
    }
    #view-landing .gs-hero__terms li:nth-child(2n)::before {
      background: var(--gs-cyan);
    }

    #view-landing .gs-btn--link {
      min-height: 50px;
      padding: 0 8px;
      color: rgba(241, 245, 249, 0.72);
      font-size: 0.92rem;
      text-decoration: underline;
      text-underline-offset: 4px;
    }
    #view-landing .gs-btn--link:hover {
      color: var(--gs-cyan-soft);
    }

    #view-demo {
      --gs-ink: #07140f;
      --gs-cyan: #1ad4e8;
      --gs-cyan-soft: #9ae8f2;
      --gs-green: #2f9a68;
      --gs-teal: #1aad9a;
      --gs-cream: #eef2ef;
      --gs-line: rgba(14, 26, 20, 0.12);
      background: var(--gs-cream);
      color: #0e1a14;
    }
    #view-demo .gs-demo-page .gs-demo__form {
      margin: 0;
      padding: clamp(28px, 4vw, 40px);
      border: 0;
      border-radius: 0;
      box-shadow: none;
      background: #fff;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }
    #view-demo .gs-demo-page .gs-demo__field {
      display: block;
      margin-bottom: 16px;
    }
    #view-demo .gs-demo-page .gs-demo__field > span,
    #view-demo .gs-demo-page .gs-demo__roles legend {
      display: block;
      margin-bottom: 7px;
      color: #334155;
      font-size: 0.82rem;
      font-weight: 700;
    }
    #view-demo .gs-demo-page .gs-demo__field input,
    #view-demo .gs-demo-page .gs-demo__field textarea {
      width: 100%;
      box-sizing: border-box;
      padding: 12px 14px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      background: #fff;
      color: #0f172a;
      font: inherit;
      font-size: 0.95rem;
    }
    #view-demo .gs-demo-page .gs-demo__field input:focus,
    #view-demo .gs-demo-page .gs-demo__field textarea:focus,
    #view-demo .gs-demo-page .gs-demo__phone-prefix-btn:focus,
    #view-demo .gs-demo-page .gs-demo__phone-local:focus {
      outline: 2px solid rgba(26, 212, 232, 0.35);
      border-color: #1ad4e8;
    }
    #view-demo .gs-demo__field.is-invalid input,
    #view-demo .gs-demo__field.is-invalid textarea,
    #view-demo .gs-demo__field.is-invalid .gs-demo__phone-prefix-btn,
    #view-demo .gs-demo__field.is-invalid .gs-demo__phone-local {
      border-color: #dc2626;
    }
    #view-demo .gs-demo__field.is-invalid input:focus,
    #view-demo .gs-demo__field.is-invalid textarea:focus,
    #view-demo .gs-demo__field.is-invalid .gs-demo__phone-prefix-btn:focus,
    #view-demo .gs-demo__field.is-invalid .gs-demo__phone-local:focus {
      outline-color: rgba(220, 38, 38, 0.25);
      border-color: #dc2626;
    }
    #view-demo .gs-demo__field-error {
      display: block;
      margin-top: 6px;
      color: #dc2626;
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.4;
    }
    #view-demo .gs-demo__field-error[hidden] {
      display: none !important;
    }
    #view-demo .gs-demo__phone {
      display: flex;
      gap: 8px;
      align-items: stretch;
    }
    #view-demo .gs-demo__phone-prefix-wrap {
      position: relative;
      flex: 0 0 auto;
    }
    #view-demo .gs-demo__phone-prefix {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }
    #view-demo .gs-demo__phone-prefix-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 46px;
      padding: 10px 12px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      background: #fff;
      color: #0f172a;
      font: inherit;
      font-size: 0.92rem;
      cursor: pointer;
      white-space: nowrap;
    }
    #view-demo .gs-demo__phone-prefix-btn:hover,
    #view-demo .gs-demo__phone-prefix-btn[aria-expanded="true"] {
      border-color: #94a3b8;
    }
    #view-demo .gs-demo__phone-flag {
      width: 20px;
      height: 15px;
      object-fit: cover;
      border-radius: 2px;
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
      flex: 0 0 auto;
    }
    #view-demo .gs-demo__phone-dial {
      font-variant-numeric: tabular-nums;
      font-weight: 600;
    }
    #view-demo .gs-demo__phone-chevron {
      color: #64748b;
      font-size: 0.75rem;
      margin-left: 2px;
    }
    #view-demo .gs-demo__phone-prefix-list {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      z-index: 40;
      margin: 0;
      padding: 6px;
      list-style: none;
      min-width: max(100%, 8.5rem);
      max-height: 240px;
      overflow: auto;
      border: 1px solid #cbd5e1;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    }
    #view-demo .gs-demo__phone-prefix-list[hidden] {
      display: none !important;
    }
    #view-demo .gs-demo__phone-prefix-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 6px;
      cursor: pointer;
      white-space: nowrap;
    }
    #view-demo .gs-demo__phone-prefix-list li:hover,
    #view-demo .gs-demo__phone-prefix-list li.is-selected {
      background: rgba(13, 148, 136, 0.1);
    }
    #view-demo .gs-demo__field.is-invalid .gs-demo__phone-prefix-btn,
    #view-demo .gs-demo__field.is-invalid .gs-demo__phone-local {
      border-color: #ef4444;
    }
    #view-demo .gs-demo__phone-local {
      flex: 1 1 auto;
      min-width: 0;
      box-sizing: border-box;
      padding: 12px 14px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      background: #fff;
      color: #0f172a;
      font: inherit;
      font-size: 0.95rem;
    }
    #view-demo .gs-demo-page .gs-demo__roles {
      margin: 0 0 16px;
      padding: 0;
      border: 0;
    }
    #view-demo .gs-demo-page .gs-demo__role-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    #view-demo .gs-demo-page .gs-demo__role {
      padding: 8px 14px;
      border: 1px solid #cbd5e1;
      border-radius: 6px;
      background: #fff;
      color: #475569;
      font: inherit;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
    }
    #view-demo .gs-demo-page .gs-demo__role.is-selected {
      border-color: #2f9a68;
      background: rgba(47, 154, 104, 0.1);
      color: #1f7a55;
    }
    #view-demo .gs-demo-page .gs-demo__submit {
      width: 100%;
      margin-top: 8px;
    }
    #view-demo .gs-demo-page .gs-demo__submit:disabled,
    #view-demo .gs-demo-page .gs-demo__submit[aria-disabled="true"] {
      opacity: 0.45;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }
    #view-demo .gs-demo__status {
      margin: 0 0 12px;
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 0.92rem;
      line-height: 1.5;
    }
    #view-demo .gs-demo__status--success {
      color: #065f46;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(26, 212, 232, 0.16);
    }
    #view-demo .gs-demo__status--error {
      color: #991b1b;
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.24);
    }
    #view-demo .gs-btn {
      min-height: 50px;
      padding: 0 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 4px;
      color: #fff;
      background: transparent;
      font: inherit;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.2s, background 0.2s, border-color 0.2s;
    }
    #view-demo .gs-btn--primary {
      color: #04140f;
      background: linear-gradient(135deg, #1aad9a 0%, #2f9a68 100%);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
    }
    #view-demo .gs-btn--primary:hover {
      background: linear-gradient(135deg, #1fbea8 0%, #36a873 100%);
      transform: none;
    }

    .gs-demo-page {
      min-height: calc(100vh - 64px);
      padding: clamp(24px, 4vw, 48px);
      display: grid;
      place-items: center;
      background: var(--gs-cream);
    }
    .gs-demo-page__card {
      width: min(1120px, 100%);
      display: grid;
      grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
      align-items: stretch;
      overflow: hidden;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
    }
    .gs-demo-page__hero {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      background:
        radial-gradient(ellipse 80% 60% at 50% 38%, rgba(26, 212, 232, 0.16) 0%, transparent 64%),
        linear-gradient(165deg, #03140f 0%, #05080c 42%, #0a1016 100%);
    }
    .gs-demo-page__hero-globe {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding-bottom: clamp(80px, 18vh, 140px);
    }
    .gs-demo-page__hero-glow {
      position: absolute;
      width: min(72%, 340px);
      aspect-ratio: 1;
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(26, 212, 232, 0.42) 0%, rgba(26, 212, 232, 0.12) 38%, transparent 72%);
      filter: blur(28px);
      animation: gs-demo-globe-pulse 4.5s ease-in-out infinite;
    }
    .gs-demo-page__hero-globe-img {
      position: relative;
      z-index: 1;
      width: min(58%, 280px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 0 42px rgba(26, 212, 232, 0.45)) drop-shadow(0 18px 48px rgba(0, 0, 0, 0.55));
      animation: gs-demo-globe-float 6s ease-in-out infinite;
    }
    @keyframes gs-demo-globe-pulse {
      0%, 100% { opacity: 0.72; transform: scale(0.96); }
      50% { opacity: 1; transform: scale(1.06); }
    }
    @keyframes gs-demo-globe-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .gs-demo-page__hero-shade {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.05) 0%, rgba(2, 6, 23, 0.22) 45%, rgba(2, 6, 23, 0.92) 100%),
        linear-gradient(115deg, rgba(7, 17, 31, 0.55) 0%, transparent 48%);
    }
    .gs-demo-page__hero-copy {
      position: relative;
      z-index: 1;
      height: 100%;
      padding: clamp(28px, 4vw, 44px);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: #fff;
    }
    .gs-demo-page__hero-copy h1 {
      margin: 0;
      font-size: clamp(1.85rem, 3vw, 2.6rem);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.05em;
    }
    .gs-demo-page__hero-copy p {
      margin: 14px 0 0;
      max-width: 34ch;
      color: rgba(241, 245, 249, 0.88);
      font-size: 1rem;
      line-height: 1.6;
    }
    .gs-demo-page__mail {
      display: inline-block;
      margin-top: 22px;
      color: var(--gs-cyan-soft);
      font-weight: 600;
      text-decoration: none;
    }
    .gs-demo-page__mail:hover {
      color: #fff;
    }
    @media (max-width: 860px) {
      .gs-demo-page__card {
        grid-template-columns: 1fr;
      }
      .gs-demo-page__hero {
        min-height: 280px;
      }
    }

    .btn-nav-demo {
      padding: 8px 16px;
      background: #0f172a;
      color: #fff;
      border: 1px solid rgba(15, 23, 42, 0.2);
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.8125rem;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s ease;
    }
    .btn-nav-demo:hover {
      background: #1e293b;
      color: #fff;
    }

    #view-landing .gs-readout {
      padding: 14px;
      border: 1px solid rgba(154, 232, 242, 0.28);
      border-radius: 14px;
      background: rgba(7, 17, 31, 0.78);
      box-shadow: 0 26px 80px rgba(0, 0, 0, 0.44);
      backdrop-filter: blur(20px);
    }
    #view-landing .gs-readout__head,
    #view-landing .gs-mapstage__bar,
    #view-landing .gs-product__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    #view-landing .gs-readout__head {
      padding: 4px 4px 12px;
      color: #94a3b8;
      font-size: 0.64rem;
      font-weight: 750;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    #view-landing .gs-live {
      color: var(--gs-cyan-soft);
    }
    #view-landing .gs-live::before {
      content: "";
      width: 6px;
      height: 6px;
      margin-right: 7px;
      display: inline-block;
      border-radius: 50%;
      background: var(--gs-cyan);
      box-shadow: 0 0 0 4px rgba(26, 212, 232, 0.12);
      animation: gs-pulse 1.8s ease-in-out infinite;
    }
    #view-landing .gs-readout__map {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 9px;
      background: #142033;
    }
    #view-landing .gs-readout__map img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    #view-landing .gs-readout__globe {
      position: absolute;
      z-index: 4;
      inset: 0;
      display: grid;
      place-items: center;
      background:
        radial-gradient(1px 1px at 14% 18%, rgba(255,255,255,.5), transparent),
        radial-gradient(1px 1px at 78% 12%, rgba(255,255,255,.35), transparent),
        radial-gradient(1px 1px at 88% 42%, rgba(255,255,255,.28), transparent),
        radial-gradient(1px 1px at 22% 72%, rgba(255,255,255,.32), transparent),
        radial-gradient(1px 1px at 64% 82%, rgba(255,255,255,.22), transparent),
        radial-gradient(ellipse at 50% 44%, #16345c 0%, #07111f 58%, #04080f 100%);
      opacity: 0;
      pointer-events: none;
    }
    #view-landing .gs-readout[data-hero-step="0"] .gs-readout__globe {
      opacity: 1;
    }
    #view-landing .gs-readout[data-hero-step="0"].is-orbiting .gs-readout__globe {
      animation: gs-globe-fade 5.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    }
    #view-landing .gs-globe {
      position: relative;
      width: min(72%, 280px);
      aspect-ratio: 1;
      transform-origin: 55.6% 27.1%;
    }
    #view-landing .gs-readout[data-hero-step="0"].is-orbiting .gs-globe {
      animation: gs-globe-fly 5.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    }
    #view-landing .gs-globe__sphere {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-image: url("/hero/earth.jpg");
      background-repeat: no-repeat;
      background-size: 200%;
      background-position: 55.6% 27.1%;
      box-shadow:
        inset -22px -14px 36px rgba(0, 8, 24, 0.72),
        inset 12px 8px 18px rgba(180, 220, 255, 0.16),
        0 0 0 1px rgba(154, 232, 242, 0.2),
        0 0 42px rgba(26, 212, 232, 0.28);
    }
    #view-landing .gs-readout[data-hero-step="0"].is-orbiting .gs-globe__sphere {
      animation: gs-globe-tex 5.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    }
    #view-landing .gs-globe__atm {
      position: absolute;
      inset: -9%;
      border-radius: 50%;
      box-shadow: 0 0 22px 7px rgba(154, 232, 242, 0.22);
      pointer-events: none;
    }
    #view-landing .gs-readout__space {
      z-index: 0;
      opacity: 0;
      transform-origin: 42% 48%;
    }
    #view-landing .gs-readout__sat {
      z-index: 1;
      opacity: 0;
      transform-origin: 38% 42%;
    }
    #view-landing .gs-readout[data-hero-step="0"].is-orbiting .gs-readout__space {
      animation: gs-orbit-in 5.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    }
    #view-landing .gs-readout[data-hero-step="0"].is-orbiting .gs-readout__sat {
      animation: gs-field-arrive 5.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    }
    #view-landing .gs-readout[data-hero-step="1"] .gs-readout__sat,
    #view-landing .gs-readout[data-hero-step="2"] .gs-readout__sat,
    #view-landing .gs-readout[data-hero-step="3"] .gs-readout__sat,
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__sat {
      opacity: 1;
      animation: none;
    }
    #view-landing .gs-readout:not([data-hero-step="0"]) .gs-readout__globe {
      opacity: 0;
      visibility: hidden;
      animation: none;
    }
    #view-landing .gs-readout[data-hero-step="1"] .gs-readout__space,
    #view-landing .gs-readout[data-hero-step="2"] .gs-readout__space,
    #view-landing .gs-readout[data-hero-step="3"] .gs-readout__space,
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__space {
      opacity: 0;
      animation: none;
    }
    #view-landing .gs-readout__overlay {
      position: absolute;
      z-index: 3;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }
    #view-landing .gs-readout__ndvi {
      opacity: 0;
    }
    #view-landing .gs-readout__boundary {
      filter: drop-shadow(0 0 5px rgba(198, 255, 90, 0.95)) drop-shadow(0 0 14px rgba(163, 230, 53, 0.55));
    }
    #view-landing .gs-scan {
      position: absolute;
      z-index: 5;
      left: 0;
      right: 0;
      top: -10%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gs-cyan-soft), transparent);
      box-shadow: 0 0 24px var(--gs-cyan);
      opacity: 0;
      animation: gs-scan 4.5s linear infinite;
    }
    #view-landing .gs-readout[data-hero-step="0"] .gs-scan {
      opacity: 1;
    }
    #view-landing .gs-map-label {
      position: absolute;
      z-index: 4;
      padding: 6px 8px;
      border: 1px solid rgba(154, 232, 242, 0.38);
      border-radius: 4px;
      background: rgba(7, 17, 31, 0.8);
      color: var(--gs-cyan-soft);
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.12em;
    }
    #view-landing .gs-map-label--source {
      top: 10px;
      left: 10px;
    }
    #view-landing .gs-map-label--field {
      right: 10px;
      bottom: 10px;
    }
    #view-landing .gs-readout__steps {
      margin: 4px 0 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      list-style: none;
    }
    #view-landing .gs-readout__steps li {
      position: relative;
      padding: 16px 4px 8px;
      color: #94a3b8;
      font-size: 0.56rem;
      line-height: 1.3;
    }
    #view-landing .gs-readout__steps li::before {
      content: "";
      width: 7px;
      height: 7px;
      margin-bottom: 8px;
      display: block;
      border-radius: 50%;
      background: var(--gs-cyan);
      box-shadow: 0 0 10px rgba(26, 212, 232, 0.75);
    }
    #view-landing .gs-readout__steps li:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 19px;
      left: 15px;
      right: -2px;
      height: 1px;
      background: rgba(26, 212, 232, 0.4);
    }
    #view-landing .gs-readout__action {
      margin-top: 10px;
      padding: 14px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 5px 11px;
      border-radius: 8px;
      background: rgba(26, 212, 232, 0.1);
      border: 1px solid rgba(26, 212, 232, 0.24);
    }
    #view-landing .gs-readout__action i {
      grid-row: 1 / 3;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--gs-cyan);
      color: var(--gs-ink);
      font-style: normal;
      font-weight: 900;
    }
    #view-landing .gs-readout__action small {
      color: var(--gs-cyan-soft);
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.12em;
    }
    #view-landing .gs-readout__action strong {
      color: #f8fafc;
      font-size: 0.88rem;
      line-height: 1.35;
    }
    #view-landing .gs-readout {
      width: 100%;
      max-width: min(560px, 100%);
      justify-self: end;
    }
    #view-landing .gs-readout__head strong {
      display: block;
      margin-top: 3px;
      color: #f8fafc;
      font-size: 0.76rem;
      letter-spacing: 0.04em;
    }
    #view-landing .gs-readout__head-copy {
      min-width: 0;
    }
    #view-landing .gs-demo-tag {
      padding: 5px 7px;
      border: 1px solid rgba(154, 232, 242, 0.28);
      border-radius: 4px;
      color: var(--gs-cyan-soft);
      background: rgba(26, 212, 232, 0.08);
      font-size: 0.56rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      white-space: nowrap;
    }
    #view-landing .gs-readout__map {
      aspect-ratio: 1600 / 1012;
    }
    #view-landing .gs-readout__ndvi,
    #view-landing .gs-readout__boundary {
      opacity: 0;
      animation: none;
      transition: opacity 0.55s ease;
    }
    #view-landing .gs-readout__ndvi {
      z-index: 2;
      clip-path: polygon(46% 3.56%, 75% 54.45%, 39% 81.03%, 9.06% 29.45%);
    }
    #view-landing .gs-readout[data-hero-step="1"] .gs-readout__boundary,
    #view-landing .gs-readout[data-hero-step="2"] .gs-readout__boundary,
    #view-landing .gs-readout[data-hero-step="3"] .gs-readout__boundary,
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__boundary {
      opacity: 1;
    }
    #view-landing .gs-readout[data-hero-step="2"] .gs-readout__ndvi {
      opacity: 0.88;
      animation: gs-ndvi-in 0.9s ease-out;
    }
    #view-landing .gs-readout[data-hero-step="3"] .gs-readout__ndvi,
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__ndvi {
      opacity: 0.88;
    }
    #view-landing .gs-parcel-draw {
      fill: none;
      stroke-linejoin: round;
      stroke-linecap: round;
    }
    #view-landing .gs-readout[data-hero-step="1"] .gs-parcel-draw {
      animation: gs-draw-path 1.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    #view-landing .gs-readout[data-hero-step="2"] .gs-parcel-draw,
    #view-landing .gs-readout[data-hero-step="3"] .gs-parcel-draw,
    #view-landing .gs-readout[data-hero-step="4"] .gs-parcel-draw {
      stroke-dashoffset: 0;
    }
    #view-landing .gs-parcel-fill {
      opacity: 0;
      transition: opacity 0.45s 1.5s;
    }
    #view-landing .gs-readout[data-hero-step="1"] .gs-parcel-fill,
    #view-landing .gs-readout[data-hero-step="2"] .gs-parcel-fill,
    #view-landing .gs-readout[data-hero-step="3"] .gs-parcel-fill,
    #view-landing .gs-readout[data-hero-step="4"] .gs-parcel-fill {
      opacity: 1;
    }
    #view-landing .gs-readout[data-hero-step="2"] .gs-parcel-fill,
    #view-landing .gs-readout[data-hero-step="3"] .gs-parcel-fill,
    #view-landing .gs-readout[data-hero-step="4"] .gs-parcel-fill {
      transition-delay: 0s;
    }
    #view-landing .gs-readout__legend {
      position: absolute;
      z-index: 5;
      right: 10px;
      top: 10px;
      min-width: 126px;
      padding: 8px 9px;
      border: 1px solid rgba(226, 232, 240, 0.18);
      border-radius: 6px;
      background: rgba(7, 17, 31, 0.86);
      opacity: 0;
      transform: translateY(-7px);
      transition: opacity 0.4s, transform 0.4s;
      backdrop-filter: blur(10px);
    }
    #view-landing .gs-readout[data-hero-step="2"] .gs-readout__legend,
    #view-landing .gs-readout[data-hero-step="3"] .gs-readout__legend,
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__legend {
      opacity: 1;
      transform: none;
    }
    #view-landing .gs-readout__legend small {
      display: block;
      margin-bottom: 5px;
      color: #94a3b8;
      font-size: 0.52rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    #view-landing .gs-readout__legend > span {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #dbe4ef;
      font-size: 0.57rem;
      line-height: 1.7;
    }
    #view-landing .gs-readout__legend > .gs-health { color: #4ade80; }
    #view-landing .gs-readout__legend > .gs-attention { color: #facc15; }
    #view-landing .gs-readout__legend > .gs-critical { color: #f87171; }
    #view-landing .gs-readout__legend i,
    #view-landing .gs-compare-legend i,
    #view-landing .gs-stage__zones i {
      width: 7px;
      height: 7px;
      display: inline-block;
      flex-shrink: 0;
      border-radius: 50%;
      background: currentColor;
    }
    #view-landing .gs-health,
    #view-landing .gs-health > span { color: #4ade80; }
    #view-landing .gs-attention,
    #view-landing .gs-attention > span { color: #facc15; }
    #view-landing .gs-critical,
    #view-landing .gs-critical > span { color: #f87171; }
    #view-landing .gs-health > i { background: #4ade80; }
    #view-landing .gs-attention > i { background: #facc15; }
    #view-landing .gs-critical > i { background: #f87171; }
    #view-landing .gs-readout__metrics {
      margin-top: 10px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 7px;
      opacity: 0.34;
      transition: opacity 0.45s;
    }
    #view-landing .gs-readout[data-hero-step="2"] .gs-readout__metrics,
    #view-landing .gs-readout[data-hero-step="3"] .gs-readout__metrics,
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__metrics {
      opacity: 1;
    }
    #view-landing .gs-readout__metric {
      padding: 9px 10px;
      border: 1px solid rgba(148, 163, 184, 0.13);
      border-radius: 6px;
      background: #0d1b2e;
    }
    #view-landing .gs-readout__metric small {
      display: block;
      color: #7f92aa;
      font-size: 0.49rem;
      font-weight: 800;
      letter-spacing: 0.09em;
    }
    #view-landing .gs-readout__metric strong {
      margin-top: 4px;
      display: block;
      color: #f8fafc;
      font-size: 0.94rem;
    }
    #view-landing .gs-readout__metric--health strong {
      color: #facc15;
    }
    #view-landing .gs-readout__metric--trend strong {
      color: #f87171;
    }
    #view-landing .gs-readout__attention-zone {
      opacity: 0;
      filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.85));
    }
    #view-landing .gs-readout[data-hero-step="3"] .gs-readout__attention-zone,
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__attention-zone {
      opacity: 1;
    }
    #view-landing .gs-attention-ring {
      fill: none;
      stroke: #facc15;
      stroke-width: 9;
      stroke-linecap: round;
    }
    #view-landing .gs-attention-fill {
      fill: rgba(250, 204, 21, 0.18);
      opacity: 0;
    }
    #view-landing .gs-readout[data-hero-step="3"] .gs-attention-ring {
      animation: gs-draw-path 0.95s ease-out forwards;
    }
    #view-landing .gs-readout[data-hero-step="4"] .gs-attention-ring {
      stroke-dashoffset: 0;
    }
    #view-landing .gs-readout[data-hero-step="3"] .gs-attention-fill {
      animation: gs-fade-in 0.45s 0.4s ease-out forwards;
    }
    #view-landing .gs-readout[data-hero-step="4"] .gs-attention-fill {
      opacity: 1;
    }
    #view-landing .gs-attention-tag {
      position: absolute;
      z-index: 6;
      left: 43%;
      top: 28%;
      padding: 5px 8px;
      border: 1px solid rgba(250, 204, 21, 0.55);
      border-radius: 4px;
      background: rgba(7, 17, 31, 0.88);
      color: #fde68a;
      font-size: 0.56rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 0);
    }
    #view-landing .gs-readout[data-hero-step="3"] .gs-attention-tag {
      animation: gs-tag-in 0.4s 0.75s ease-out forwards;
    }
    #view-landing .gs-readout[data-hero-step="4"] .gs-attention-tag {
      opacity: 1;
      transform: translate(-50%, 0);
    }
    #view-landing .gs-readout__steps li {
      opacity: 0.42;
      transition: opacity 0.3s, color 0.3s;
    }
    #view-landing .gs-readout__steps li.is-active {
      color: #f8fafc;
      opacity: 1;
    }
    #view-landing .gs-readout__action {
      min-height: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: opacity 0.45s, transform 0.45s, background 0.45s, visibility 0.45s;
    }
    #view-landing .gs-readout__recs {
      margin-top: 10px;
      padding: 12px;
      border-radius: 8px;
      background: rgba(26, 212, 232, 0.1);
      border: 1px solid rgba(26, 212, 232, 0.24);
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: opacity 0.45s, transform 0.45s, visibility 0.45s;
    }
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__recs {
      opacity: 1;
      visibility: visible;
      transform: none;
    }
    #view-landing .gs-readout__recs > small {
      display: block;
      margin-bottom: 8px;
      color: var(--gs-cyan-soft);
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.12em;
    }
    #view-landing .gs-readout__recs ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 6px;
    }
    #view-landing .gs-readout__recs li {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 8px;
      align-items: start;
      padding: 8px 9px;
      border-radius: 6px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      background: rgba(7, 17, 31, 0.45);
      opacity: 0;
      transform: translateY(6px);
    }
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__recs li {
      animation: gs-metric-in 0.4s ease-out forwards;
    }
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__recs li:nth-child(1) { animation-delay: 0.12s; }
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__recs li:nth-child(2) { animation-delay: 0.32s; }
    #view-landing .gs-readout[data-hero-step="4"] .gs-readout__recs li:nth-child(3) { animation-delay: 0.52s; }
    #view-landing .gs-readout__recs li.is-on {
      border-color: rgba(26, 212, 232, 0.38);
      background: rgba(26, 212, 232, 0.1);
    }
    #view-landing .gs-readout__recs li.is-primary {
      border-color: rgba(250, 204, 21, 0.5);
      background: rgba(250, 204, 21, 0.1);
    }
    #view-landing .gs-readout__recs li b {
      color: #94a3b8;
      font-size: 0.52rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      padding-top: 2px;
    }
    #view-landing .gs-readout__recs li.is-on b { color: var(--gs-cyan-soft); }
    #view-landing .gs-readout__recs li.is-primary b { color: #fde68a; }
    #view-landing .gs-readout__recs li span {
      color: #e2e8f0;
      font-size: 0.78rem;
      line-height: 1.4;
      font-weight: 600;
    }
    #view-landing .gs-readout__surprise {
      grid-column: 2;
      color: #8fa1b6;
      font-size: 0.56rem;
      line-height: 1.4;
    }

    #view-landing .gs-journey {
      position: relative;
      padding: 120px 0 80px;
      overflow: clip;
      background:
        radial-gradient(circle at 18% 12%, rgba(26, 212, 232, 0.1), transparent 32%),
        radial-gradient(circle at 82% 68%, rgba(16, 185, 129, 0.2), transparent 40%),
        radial-gradient(circle at 40% 100%, rgba(43, 184, 138, 0.08), transparent 45%),
        var(--gs-ink);
      color: #e2e8f0;
    }
    #view-landing .gs-journey .gs-section-head h2 {
      color: #fff;
    }
    #view-landing .gs-journey .gs-section-head p:last-child {
      color: #9fb0c3;
    }
    #view-landing .gs-journey__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.76fr);
      gap: clamp(54px, 8vw, 120px);
      align-items: start;
    }
    #view-landing .gs-journey-stage {
      --split: 55%;
      position: sticky;
      top: 88px;
      height: min(70vh, 650px);
      min-height: 520px;
      overflow: hidden;
      border: 1px solid rgba(154, 232, 242, 0.22);
      border-radius: 16px;
      background: #0d1b2e;
      box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
    }
    #view-landing .gs-mapstage__bar {
      position: absolute;
      z-index: 9;
      top: 0;
      left: 0;
      right: 0;
      height: 52px;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(7, 17, 31, 0.86);
      border-bottom: 1px solid rgba(154, 232, 242, 0.16);
      backdrop-filter: blur(12px);
      color: #94a3b8;
      font-size: 0.63rem;
      font-weight: 800;
      letter-spacing: 0.12em;
    }
    #view-landing .gs-mapstage__bar span:last-child {
      color: var(--gs-cyan-soft);
    }
    #view-landing .gs-stage__progress {
      position: absolute;
      z-index: 11;
      top: 52px;
      left: 0;
      right: 0;
      height: 3px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 2px;
      background: rgba(7, 17, 31, 0.85);
    }
    #view-landing .gs-stage__progress i {
      background: rgba(148, 163, 184, 0.22);
      transition: background 0.35s, box-shadow 0.35s;
    }
    #view-landing .gs-stage__progress i.is-active {
      background: var(--gs-cyan);
      box-shadow: 0 0 10px rgba(26, 212, 232, 0.7);
    }
    #view-landing .gs-stage__sat,
    #view-landing .gs-stage__ndvi {
      position: absolute;
      inset: 52px 0 36px;
      width: 100%;
      height: calc(100% - 88px);
      object-fit: cover;
      transition: opacity 0.7s ease, clip-path 0.8s ease;
    }
    #view-landing .gs-stage__ndvi {
      opacity: 0;
      clip-path: var(--field-clip, polygon(26.25% 11.32%, 63.75% 14.15%, 61.875% 81.13%, 25% 78.30%));
    }
    #view-landing .gs-journey-stage[data-step="2"] .gs-stage__ndvi,
    #view-landing .gs-journey-stage[data-step="3"] .gs-stage__ndvi,
    #view-landing .gs-journey-stage[data-step="4"] .gs-stage__ndvi,
    #view-landing .gs-journey-stage[data-step="5"] .gs-stage__ndvi {
      opacity: 0.88;
    }
    #view-landing .gs-journey-stage[data-step="4"] .gs-stage__ndvi,
    #view-landing .gs-journey-stage[data-step="5"] .gs-stage__ndvi {
      clip-path: inset(0);
      opacity: 0.72;
    }
    #view-landing .gs-journey-stage[data-step="3"] .gs-stage__ndvi {
      clip-path: inset(0 0 0 var(--split));
      opacity: 1;
    }
    #view-landing .gs-journey-stage[data-step="3"] .gs-stage__boundary {
      opacity: 0;
    }
    #view-landing .gs-stage__split-line {
      display: none;
      position: absolute;
      z-index: 8;
      top: 52px;
      bottom: 36px;
      left: var(--split);
      width: 2px;
      margin: 0;
      padding: 0;
      border: 0;
      background: #fff;
      box-shadow: 0 0 16px rgba(255, 255, 255, 0.55);
      transform: translateX(-1px);
      pointer-events: none;
      touch-action: none;
      cursor: ew-resize;
    }
    #view-landing .gs-stage__split-line::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 44px;
      transform: translateX(-50%);
    }
    #view-landing .gs-stage__split-line::after {
      content: "↔";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #fff;
      color: #0f172a;
      font-weight: 800;
      transform: translate(-50%, -50%);
      box-shadow: 0 4px 18px rgba(15, 23, 42, 0.28);
    }
    #view-landing .gs-journey-stage[data-step="3"] .gs-stage__split-line {
      display: block;
      pointer-events: auto;
    }
    #view-landing .gs-journey-stage.is-compare-dragging .gs-stage__ndvi,
    #view-landing .gs-journey-stage.is-compare-dragging .gs-stage__split-line {
      transition: none;
    }
    #view-landing .gs-stage__split-label {
      display: none;
      position: absolute;
      z-index: 6;
      top: 76px;
      padding: 6px 8px;
      border-radius: 4px;
      background: rgba(7, 17, 31, 0.82);
      color: #fff;
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    #view-landing .gs-stage__split-label--left { left: 14px; top: 118px; }
    #view-landing .gs-stage__split-label--right { right: 14px; }
    #view-landing .gs-journey-stage[data-step="3"] .gs-stage__split-label {
      display: block;
    }
    #view-landing .gs-stage__compare-range {
      position: absolute;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    #view-landing .gs-stage__boundary {
      position: absolute;
      z-index: 4;
      inset: 52px 0 36px;
      width: 100%;
      height: calc(100% - 88px);
      opacity: 0;
      transition: opacity 0.5s;
      overflow: hidden;
      pointer-events: none;
      filter: drop-shadow(0 0 5px rgba(198, 255, 90, 0.95)) drop-shadow(0 0 14px rgba(163, 230, 53, 0.5));
    }
    #view-landing .gs-journey-stage:not([data-step="0"]) .gs-stage__boundary {
      opacity: 1;
    }
    #view-landing .gs-stage__series {
      position: absolute;
      z-index: 6;
      left: 18px;
      bottom: 56px;
      width: min(280px, calc(100% - 36px));
      padding: 12px;
      border: 1px solid rgba(154, 232, 242, 0.25);
      border-radius: 8px;
      background: rgba(7, 17, 31, 0.86);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.45s, transform 0.45s;
      backdrop-filter: blur(12px);
    }
    #view-landing .gs-journey-stage[data-step="2"] .gs-stage__series {
      opacity: 1;
      transform: none;
    }
    #view-landing .gs-series-line {
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
    }
    #view-landing .gs-series-area {
      opacity: 0;
    }
    #view-landing .gs-journey-stage[data-step="2"] .gs-series-line {
      animation: gs-draw-path 1.2s ease-out forwards;
    }
    #view-landing .gs-journey-stage[data-step="2"] .gs-series-area {
      animation: gs-fade-in 0.7s 0.3s ease-out forwards;
    }
    #view-landing .gs-stage__series span {
      display: block;
      color: #cbd5e1;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    #view-landing .gs-stage__series svg {
      width: 100%;
      height: 62px;
      margin-top: 8px;
    }
    #view-landing .gs-stage__context {
      position: absolute;
      z-index: 7;
      top: 76px;
      right: 18px;
      display: grid;
      gap: 8px;
      opacity: 0;
      transform: translateX(14px);
      transition: opacity 0.45s, transform 0.45s;
    }
    #view-landing .gs-journey-stage[data-step="4"] .gs-stage__context,
    #view-landing .gs-journey-stage[data-step="5"] .gs-stage__context {
      opacity: 1;
      transform: none;
    }
    #view-landing .gs-stage__context > span {
      min-width: 126px;
      padding: 10px 12px;
      border: 1px solid rgba(154, 232, 242, 0.25);
      border-radius: 7px;
      background: rgba(7, 17, 31, 0.86);
      color: #dbeafe;
      font-size: 0.68rem;
      font-weight: 700;
      backdrop-filter: blur(12px);
    }
    #view-landing .gs-stage__context > span > span {
      display: block;
    }
    #view-landing .gs-stage__context small {
      display: block;
      margin-bottom: 3px;
      color: var(--gs-cyan-soft);
      font-size: 0.55rem;
      letter-spacing: 0.1em;
    }
    #view-landing .gs-stage__action {
      position: absolute;
      z-index: 8;
      left: 50%;
      bottom: 64px;
      width: min(420px, calc(100% - 36px));
      padding: 18px 20px;
      border: 1px solid rgba(26, 212, 232, 0.38);
      border-radius: 10px;
      background: rgba(7, 17, 31, 0.94);
      opacity: 0;
      transform: translate(-50%, 18px);
      transition: opacity 0.5s, transform 0.5s;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
    }
    #view-landing .gs-journey-stage[data-step="5"] .gs-stage__action {
      opacity: 1;
      transform: translate(-50%, 0);
    }
    #view-landing .gs-stage__action span {
      color: var(--gs-cyan-soft);
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.12em;
    }
    #view-landing .gs-stage__action strong {
      margin-top: 6px;
      display: block;
      color: #fff;
      font-size: 1rem;
      line-height: 1.45;
    }
    #view-landing .gs-stage__zones {
      position: absolute;
      z-index: 7;
      right: 18px;
      bottom: 56px;
      min-width: 150px;
      padding: 11px 12px;
      border: 1px solid rgba(226, 232, 240, 0.18);
      border-radius: 7px;
      background: rgba(7, 17, 31, 0.88);
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.45s, transform 0.45s;
      backdrop-filter: blur(12px);
    }
    #view-landing .gs-journey-stage[data-step="3"] .gs-stage__zones {
      opacity: 1;
      transform: none;
      bottom: 56px;
    }
    #view-landing .gs-stage__zones small {
      display: block;
      margin-bottom: 7px;
      color: #94a3b8;
      font-size: 0.52rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    #view-landing .gs-stage__zones > span {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #dbe4ef;
      font-size: 0.6rem;
      line-height: 1.8;
    }
    #view-landing .gs-stage__source {
      position: absolute;
      z-index: 9;
      left: 0;
      right: 0;
      bottom: 0;
      height: 36px;
      padding: 0 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(7, 17, 31, 0.94);
      color: #7f92aa;
      font-size: 0.58rem;
      letter-spacing: 0.08em;
    }
    #view-landing .gs-journey__steps {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    #view-landing .gs-journey-step {
      min-height: 52vh;
      padding: 9vh 0 9vh 30px;
      border-left: 1px solid rgba(148, 163, 184, 0.22);
      opacity: 0.34;
      transition: opacity 0.35s, border-color 0.35s;
    }
    #view-landing .gs-journey-step.is-active {
      border-left: 2px solid var(--gs-cyan);
      opacity: 1;
    }
    #view-landing .gs-journey-step__n {
      display: block;
      margin-bottom: 20px;
      color: var(--gs-cyan-soft);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.16em;
    }
    #view-landing .gs-journey-step h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(1.25rem, 2vw, 1.75rem);
      line-height: 1.06;
      letter-spacing: -0.04em;
    }
    #view-landing .gs-journey-step p {
      margin: 16px 0 0;
      color: #9fb0c3;
      line-height: 1.7;
      font-size: 0.98rem;
    }
    #view-landing .gs-journey-step__term {
      margin-top: 22px;
      display: inline-flex;
      padding: 7px 10px;
      border: 1px solid rgba(154, 232, 242, 0.22);
      border-radius: 4px;
      color: var(--gs-cyan-soft);
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    #view-landing .gs-compare {
      padding: 120px 0;
      background: var(--gs-cream);
    }
    #view-landing .gs-compare__grid {
      display: grid;
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(48px, 8vw, 116px);
      align-items: center;
    }
    #view-landing .gs-compare__copy h2,
    #view-landing .gs-decision__copy h2,
    #view-landing .gs-editorial__head h2,
    #view-landing .gs-audience h2,
    #view-landing .gs-final h2 {
      margin: 0;
      font-size: clamp(1.75rem, 3.2vw, 2.35rem);
      font-weight: 700;
      line-height: 0.98;
      letter-spacing: -0.06em;
    }
    #view-landing .gs-compare__copy > p:last-of-type,
    #view-landing .gs-decision__copy > p:last-of-type {
      margin: 24px 0 0;
      color: #526071;
      font-size: 1.04rem;
      line-height: 1.72;
    }
    #view-landing .gs-compare-card {
      --split: 55%;
      padding: 12px;
      border-radius: 16px;
      background: #0b1728;
      box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
    }
    #view-landing .gs-compare-card__view {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 10px;
    }
    #view-landing .gs-compare-card__view > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    #view-landing .gs-compare-card__analysis {
      clip-path: inset(0 calc(100% - var(--split)) 0 0);
    }
    #view-landing .gs-compare-card__line {
      position: absolute;
      z-index: 3;
      top: 0;
      bottom: 0;
      left: var(--split);
      width: 2px;
      background: #fff;
      box-shadow: 0 0 18px rgba(255, 255, 255, 0.65);
      transform: translateX(-1px);
      pointer-events: none;
    }
    #view-landing .gs-compare-card__line::after {
      content: "↔";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #fff;
      color: #0f172a;
      font-weight: 800;
      transform: translate(-50%, -50%);
    }
    #view-landing .gs-compare-card__label {
      position: absolute;
      z-index: 4;
      top: 12px;
      padding: 6px 9px;
      border-radius: 4px;
      background: rgba(7, 17, 31, 0.82);
      color: #fff;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    #view-landing .gs-compare-card__label--left { left: 12px; }
    #view-landing .gs-compare-card__label--right { right: 12px; }
    #view-landing .gs-compare-legend {
      position: absolute;
      z-index: 5;
      right: 12px;
      bottom: 12px;
      min-width: 150px;
      padding: 10px 12px;
      border: 1px solid rgba(226, 232, 240, 0.2);
      border-radius: 7px;
      background: rgba(7, 17, 31, 0.86);
      color: #e2e8f0;
      backdrop-filter: blur(10px);
    }
    #view-landing .gs-compare-legend small {
      margin-bottom: 6px;
      display: block;
      color: #94a3b8;
      font-size: 0.52rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    #view-landing .gs-compare-legend > span {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.6rem;
      line-height: 1.8;
    }
    #view-landing .gs-compare-card input[type="range"] {
      width: 100%;
      margin: 14px 0 2px;
      accent-color: var(--gs-cyan);
      cursor: ew-resize;
    }
    #view-landing .gs-question-grid {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      border: 0;
    }
    #view-landing .gs-question-band__head .gs-pipeline-inline {
      margin: 16px 0 0;
      color: #0d9488;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.06em;
    }
    #view-landing .gs-question-band {
      padding: 88px 0 92px;
      background:
        radial-gradient(circle at 12% 0%, rgba(26, 212, 232, 0.07), transparent 42%),
        linear-gradient(180deg, #f8fafc 0%, var(--gs-cream) 100%);
    }
    #view-landing .gs-question-band__head {
      max-width: 680px;
    }
    #view-landing .gs-question-band__head h2 {
      margin: 0;
      color: #0f172a;
      font-size: clamp(1.45rem, 2.5vw, 2rem);
      line-height: 1.05;
      letter-spacing: -0.055em;
    }
    #view-landing .gs-question-band__head p:last-child {
      margin: 16px 0 0;
      color: #526071;
      font-size: 0.98rem;
      line-height: 1.6;
      max-width: 52ch;
    }
    #view-landing .gs-question-band .gs-question-grid {
      margin-top: 40px;
    }
    #view-landing .gs-question {
      position: relative;
      min-height: 168px;
      padding: 20px 20px 18px;
      color: #0f172a;
      text-decoration: none;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 24px rgba(15, 23, 42, 0.03);
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    }
    #view-landing .gs-question::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      height: 3px;
      border-radius: 16px 16px 0 0;
      background: linear-gradient(90deg, rgba(8, 145, 178, 0.85), rgba(26, 212, 232, 0.55));
      opacity: 0;
      transition: opacity 0.22s ease;
    }
    #view-landing .gs-question::after {
      content: "→";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      margin-top: 16px;
      border: 1px solid rgba(8, 145, 178, 0.22);
      border-radius: 999px;
      color: #1a9bb0;
      font-size: 0.82rem;
      font-weight: 700;
      transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
    }
    #view-landing .gs-question:last-child {
      border-right: 1px solid rgba(15, 23, 42, 0.08);
    }
    #view-landing .gs-question:hover {
      transform: translateY(-3px);
      background: #0f172a;
      color: #fff;
      border-color: rgba(154, 232, 242, 0.28);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    }
    #view-landing .gs-question:hover::before {
      opacity: 1;
    }
    #view-landing .gs-question:hover::after {
      color: #0f172a;
      background: #9ae8f2;
      border-color: #9ae8f2;
      transform: translateX(2px);
    }
    #view-landing .gs-question__icon {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      width: auto;
      height: auto;
      margin: 0 0 12px !important;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: #1a9bb0;
      font-size: 0;
      line-height: 0;
      flex-shrink: 0;
      transition: color 0.22s ease, transform 0.22s ease;
    }
    #view-landing .gs-question__icon svg {
      width: 18px !important;
      height: 18px !important;
      max-width: 18px;
      max-height: 18px;
      display: block;
      flex-shrink: 0;
    }
    #view-landing .gs-question--health .gs-question__icon {
      background: transparent;
      border-color: transparent;
      color: #059669;
    }
    #view-landing .gs-question--zones .gs-question__icon {
      background: transparent;
      border-color: transparent;
      color: #1a9bb0;
    }
    #view-landing .gs-question--context .gs-question__icon {
      background: transparent;
      border-color: transparent;
      color: #0e7490;
    }
    #view-landing .gs-question--action .gs-question__icon {
      background: transparent;
      border-color: transparent;
      color: #6366f1;
    }
    #view-landing .gs-question:hover .gs-question__icon {
      background: transparent;
      border-color: transparent;
      color: #9ae8f2;
      transform: none;
    }
    #view-landing .gs-question small {
      display: block;
      color: #1a9bb0;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.14em;
    }
    #view-landing .gs-question strong {
      margin-top: 18px;
      display: block;
      font-size: 1.06rem;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }
    #view-landing .gs-question span {
      margin-top: 10px;
      display: block;
      color: #64748b;
      font-size: 0.84rem;
      line-height: 1.5;
    }
    #view-landing .gs-question:hover span {
      color: #cbd5e1;
    }
    #view-landing .gs-question:hover small {
      color: #9ae8f2;
    }

    #view-landing .gs-decision {
      padding: 120px 0;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 20%, rgba(26, 212, 232, 0.09), transparent 32%),
        var(--gs-navy);
      color: #e2e8f0;
    }
    #view-landing .gs-decision__grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(50px, 8vw, 120px);
      align-items: center;
    }
    #view-landing .gs-decision__copy h2 {
      color: #fff;
    }
    #view-landing .gs-decision__copy > p:last-of-type {
      color: #9fb0c3;
    }
    #view-landing .gs-product {
      padding: 20px;
      border: 1px solid rgba(154, 232, 242, 0.22);
      border-radius: 16px;
      background: rgba(7, 17, 31, 0.9);
      box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
    }
    #view-landing .gs-product__top {
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    }
    #view-landing .gs-product__top strong {
      color: #fff;
      font-size: 0.86rem;
      letter-spacing: 0.08em;
    }
    #view-landing .gs-product__top span {
      color: var(--gs-cyan-soft);
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    #view-landing .gs-product__body {
      margin-top: 18px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
      gap: 16px;
    }
    #view-landing .gs-timeseries,
    #view-landing .gs-next-action {
      min-height: 280px;
      padding: 18px;
      border: 1px solid rgba(148, 163, 184, 0.13);
      border-radius: 10px;
      background: #0d1b2e;
    }
    #view-landing .gs-timeseries small,
    #view-landing .gs-next-action small {
      color: #7f92aa;
      font-size: 0.59rem;
      font-weight: 800;
      letter-spacing: 0.12em;
    }
    #view-landing .gs-timeseries h3,
    #view-landing .gs-next-action h3 {
      margin: 7px 0 0;
      color: #fff;
      font-size: 1.02rem;
    }
    #view-landing .gs-timeseries svg {
      width: 100%;
      height: 145px;
      margin-top: 28px;
      overflow: visible;
    }
    #view-landing .gs-timeseries__foot {
      margin-top: 12px;
      display: flex;
      justify-content: space-between;
      color: #6f8298;
      font-size: 0.62rem;
    }
    #view-landing .gs-next-action {
      display: flex;
      flex-direction: column;
    }
    #view-landing .gs-next-action__signal {
      width: 42px;
      height: 42px;
      margin: 25px 0 17px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(26, 212, 232, 0.13);
      color: var(--gs-cyan-soft);
      font-size: 1.25rem;
    }
    #view-landing .gs-next-action p {
      margin: 0;
      color: #dbeafe;
      font-size: 0.95rem;
      line-height: 1.55;
    }
    #view-landing .gs-action-tags {
      margin-top: auto;
      padding-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    #view-landing .gs-action-tags span {
      padding: 5px 7px;
      border: 1px solid rgba(154, 232, 242, 0.2);
      border-radius: 4px;
      color: var(--gs-cyan-soft);
      font-size: 0.57rem;
      font-weight: 750;
      letter-spacing: 0.06em;
    }
    #view-landing .gs-product__sources {
      margin: 16px 0 0;
      color: #718399;
      font-size: 0.63rem;
      letter-spacing: 0.05em;
      text-align: right;
    }

    #view-landing .gs-editorial {
      padding: 120px 0;
      background: var(--gs-mist);
    }
    #view-landing .gs-editorial__head {
      max-width: 850px;
      margin-bottom: 72px;
    }
    #view-landing .gs-editorial__story {
      padding: 70px 0;
      display: grid;
      grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
      gap: clamp(48px, 8vw, 120px);
      align-items: center;
      border-top: 1px solid var(--gs-line);
    }
    #view-landing .gs-editorial__story--reverse {
      grid-template-columns: minmax(0, 1.32fr) minmax(260px, 0.68fr);
    }
    #view-landing .gs-editorial__story--reverse .gs-editorial__copy {
      order: 2;
    }
    #view-landing .gs-editorial__copy span {
      color: #1a9bb0;
      font-size: 0.67rem;
      font-weight: 800;
      letter-spacing: 0.14em;
    }
    #view-landing .gs-editorial__copy h3 {
      margin: 17px 0 0;
      color: #0f172a;
      font-size: clamp(1.35rem, 2.5vw, 2rem);
      line-height: 1;
      letter-spacing: -0.05em;
    }
    #view-landing .gs-editorial__copy p {
      margin: 20px 0 0;
      color: #526071;
      font-size: 1rem;
      line-height: 1.72;
    }
    #view-landing .gs-editorial__visual {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      border-radius: 14px;
      background: #0b1728;
      box-shadow: 0 25px 65px rgba(15, 23, 42, 0.18);
    }
    #view-landing .gs-editorial__visual > img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      display: block;
      object-fit: cover;
    }
    #view-landing .gs-editorial__caption {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      padding: 12px 14px;
      border: 1px solid rgba(154, 232, 242, 0.2);
      border-radius: 7px;
      background: rgba(7, 17, 31, 0.88);
      color: #e2e8f0;
      font-size: 0.76rem;
      line-height: 1.5;
      backdrop-filter: blur(12px);
    }
    #view-landing .gs-ndvi-board {
      position: relative;
      padding: 22px 22px 72px;
      overflow: hidden;
      min-height: 420px;
      border-radius: 14px;
      background: #0b1728;
      box-shadow: 0 25px 65px rgba(15, 23, 42, 0.18);
    }
    #view-landing .gs-ndvi-board__head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
    }
    #view-landing .gs-ndvi-board__head strong {
      color: #f8fafc;
      font-size: 1.05rem;
    }
    #view-landing .gs-ndvi-board__head span {
      color: #94a3b8;
      font-size: 0.72rem;
    }
    #view-landing .gs-ndvi-board__chart {
      margin-top: 18px;
      width: 100%;
      height: 148px;
    }
    #view-landing .gs-ndvi-board__track {
      margin: 8px 0 10px;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(90deg, #14532d, #4ade80 68%, #86efac);
    }
    #view-landing .gs-ndvi-board__point {
      color: #cbd5e1;
      font-size: 0.78rem;
    }
    #view-landing .gs-ndvi-board__metrics {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    #view-landing .gs-ndvi-board__metrics span {
      padding: 14px 12px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 8px;
      background: #0f1e32;
    }
    #view-landing .gs-ndvi-board__metrics small {
      display: block;
      color: #94a3b8;
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    #view-landing .gs-ndvi-board__metrics b {
      display: block;
      margin-top: 6px;
      color: #f8fafc;
      font-size: 1.35rem;
    }
    #view-landing .gs-ndvi-board__metrics .is-up b {
      color: #4ade80;
    }
    #view-landing .gs-ndvi-board__metrics .is-down b {
      color: #f87171;
    }
    #view-landing .gs-ndvi-board__line {
      fill: none;
      stroke: #9ae8f2;
      stroke-width: 3.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    #view-landing .gs-ndvi-board__area,
    #view-landing .gs-ndvi-board__dot {
      opacity: 0;
    }
    #view-landing .gs-ndvi-board__point,
    #view-landing .gs-ndvi-board__metrics span {
      opacity: 0;
      transform: translateY(8px);
    }
    #view-landing .gs-ndvi-board.is-drawn .gs-ndvi-board__line {
      animation: gs-draw-path 1.65s ease-out forwards;
    }
    #view-landing .gs-ndvi-board.is-drawn .gs-ndvi-board__area {
      animation: gs-fade-in 0.8s 0.35s ease-out forwards;
    }
    #view-landing .gs-ndvi-board.is-drawn .gs-ndvi-board__dot {
      animation: gs-fade-in 0.35s 1.5s ease-out forwards;
    }
    #view-landing .gs-ndvi-board.is-drawn .gs-ndvi-board__point,
    #view-landing .gs-ndvi-board.is-drawn .gs-ndvi-board__metrics span {
      animation: gs-metric-in 0.45s ease-out forwards;
    }
    #view-landing .gs-ndvi-board.is-drawn .gs-ndvi-board__metrics span:nth-child(1) { animation-delay: 0.9s; }
    #view-landing .gs-ndvi-board.is-drawn .gs-ndvi-board__metrics span:nth-child(2) { animation-delay: 1.05s; }
    #view-landing .gs-ndvi-board.is-drawn .gs-ndvi-board__metrics span:nth-child(3) { animation-delay: 1.2s; }
    #view-landing .gs-ndvi-board.is-drawn .gs-ndvi-board__point { animation-delay: 1.35s; }
    #view-landing .gs-ndvi-board__track {
      background: linear-gradient(90deg, #4ade80, #facc15 62%, #f87171);
    }
    #view-landing .gs-ndvi-board .gs-editorial__caption {
      position: absolute;
    }
    #view-landing .gs-action-board {
      position: relative;
      padding: 22px 22px 72px;
      overflow: hidden;
      min-height: 420px;
      border-radius: 14px;
      background: #0b1728;
      box-shadow: 0 25px 65px rgba(15, 23, 42, 0.18);
    }
    #view-landing .gs-action-board .gs-product {
      padding: 0;
      border: 0;
      box-shadow: none;
      background: transparent;
    }
    #view-landing .gs-action-board .gs-editorial__caption {
      position: absolute;
    }
    #view-landing .gs-next-action__signal--down {
      background: rgba(248, 113, 113, 0.14);
      color: #f87171;
    }
    #view-landing .gs-context-visual {
      position: relative;
      min-height: 460px;
      overflow: hidden;
      border-radius: 14px;
      background: #0b1728;
      box-shadow: 0 25px 65px rgba(15, 23, 42, 0.18);
    }
    #view-landing .gs-context-visual > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.74;
    }
    #view-landing .gs-context-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.2));
    }
    #view-landing .gs-context-stack {
      position: absolute;
      z-index: 2;
      inset: 0;
      padding: 42px;
      display: grid;
      align-content: center;
      gap: 12px;
    }
    #view-landing .gs-context-chip {
      width: min(360px, 100%);
      padding: 15px 17px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 4px 13px;
      border: 1px solid rgba(154, 232, 242, 0.22);
      border-radius: 8px;
      background: rgba(7, 17, 31, 0.84);
      color: #fff;
      backdrop-filter: blur(14px);
    }
    #view-landing .gs-context-chip i {
      grid-row: 1 / 3;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(154, 232, 242, 0.3);
      border-radius: 6px;
      color: var(--gs-cyan-soft);
      font-style: normal;
      font-size: 0.7rem;
      font-weight: 800;
    }
    #view-landing .gs-context-chip small {
      color: var(--gs-cyan-soft);
      font-size: 0.57rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    #view-landing .gs-context-chip strong {
      font-size: 0.84rem;
    }
    #view-landing .gs-layer-stack {
      position: relative;
      min-height: 500px;
      overflow: hidden;
      border-radius: 14px;
      background:
        radial-gradient(circle at 42% 48%, rgba(26, 212, 232, 0.14), transparent 36%),
        linear-gradient(145deg, #07111f, #0d2031);
      box-shadow: 0 25px 65px rgba(15, 23, 42, 0.22);
      perspective: 1100px;
    }
    #view-landing .gs-layer-stack__scene {
      position: absolute;
      inset: 0 150px 0 0;
      transform-style: preserve-3d;
    }
    #view-landing .gs-layer-plane {
      --lift: 0px;
      position: absolute;
      left: 15%;
      top: 56%;
      width: 72%;
      height: 46%;
      overflow: hidden;
      border: 1px solid rgba(154, 232, 242, 0.42);
      border-radius: 6px;
      background: rgba(17, 34, 52, 0.88);
      transform: translateY(calc(-50% - var(--lift))) rotateX(60deg) rotateZ(-8deg);
      transform-style: preserve-3d;
      box-shadow: 0 18px 28px rgba(0, 0, 0, 0.25);
      animation: gs-layer-float 5s ease-in-out infinite alternate;
    }
    #view-landing .gs-layer-plane img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
    #view-landing .gs-layer-plane--sat { --lift: 0px; z-index: 1; }
    #view-landing .gs-layer-plane--ndvi { --lift: 58px; z-index: 2; }
    #view-landing .gs-layer-plane--soil {
      --lift: 116px;
      z-index: 3;
      opacity: 0.9;
      background:
        repeating-linear-gradient(18deg, rgba(251, 191, 36, 0.14) 0 2px, transparent 2px 20px),
        linear-gradient(135deg, rgba(120, 77, 42, 0.88), rgba(70, 49, 36, 0.92));
    }
    #view-landing .gs-layer-plane--weather {
      --lift: 174px;
      z-index: 4;
      opacity: 0.85;
      background:
        radial-gradient(ellipse at 34% 42%, rgba(226, 232, 240, 0.75) 0 9%, transparent 10%),
        radial-gradient(ellipse at 48% 48%, rgba(226, 232, 240, 0.6) 0 13%, transparent 14%),
        repeating-linear-gradient(100deg, transparent 0 30px, rgba(154, 232, 242, 0.32) 31px 32px),
        rgba(14, 54, 75, 0.72);
    }
    #view-landing .gs-layer-plane--intelligence {
      --lift: 232px;
      z-index: 5;
      overflow: visible;
      background: rgba(26, 212, 232, 0.05);
      border: 2px solid rgba(154, 232, 242, 0.8);
      box-shadow: 0 0 28px rgba(26, 212, 232, 0.22);
    }
    #view-landing .gs-layer-plane--intelligence::before,
    #view-landing .gs-layer-plane--intelligence::after {
      content: "";
      position: absolute;
      left: 66%;
      top: 55%;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }
    #view-landing .gs-layer-plane--intelligence::before {
      width: 48px;
      height: 48px;
      border: 2px solid #facc15;
      box-shadow: 0 0 22px rgba(250, 204, 21, 0.7);
    }
    #view-landing .gs-layer-plane--intelligence::after {
      width: 9px;
      height: 9px;
      background: #facc15;
    }
    #view-landing .gs-layer-stack__labels {
      position: absolute;
      z-index: 10;
      top: 50%;
      right: 20px;
      width: 132px;
      display: grid;
      gap: 9px;
      transform: translateY(-50%);
    }
    #view-landing .gs-layer-stack__labels span {
      padding: 8px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      border: 1px solid rgba(154, 232, 242, 0.18);
      border-radius: 5px;
      background: rgba(7, 17, 31, 0.78);
      color: #cbd5e1;
      font-size: 0.59rem;
      font-weight: 800;
      letter-spacing: 0.08em;
    }
    #view-landing .gs-layer-stack__labels i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gs-cyan);
      box-shadow: 0 0 8px var(--gs-cyan);
    }
    #view-landing .gs-layer-stack__labels span:nth-child(1) i { background: #facc15; box-shadow: 0 0 8px #facc15; }
    #view-landing .gs-layer-stack__labels span:nth-child(2) i { background: #60a5fa; box-shadow: 0 0 8px #60a5fa; }
    #view-landing .gs-layer-stack__labels span:nth-child(3) i { background: #d97706; box-shadow: 0 0 8px #d97706; }
    #view-landing .gs-layer-stack__caption {
      position: absolute;
      z-index: 12;
      left: 16px;
      bottom: 14px;
      color: #94a3b8;
      font-size: 0.62rem;
      letter-spacing: 0.08em;
    }

    .gs-roadmap {
      --gs-ink: #07111f;
      --gs-cyan: #1ad4e8;
      --gs-cyan-soft: #9ae8f2;
      padding: 120px 0;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 10%, rgba(26, 212, 232, 0.08), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(34, 197, 94, 0.06), transparent 26%),
        var(--gs-ink);
      color: #e2e8f0;
    }
    .gs-roadmap .gs-shell {
      width: min(1320px, calc(100% - 48px));
      margin-inline: auto;
    }
    .gs-roadmap .gs-kicker {
      margin: 0 0 16px;
      color: var(--gs-cyan-soft);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    #solutions-services,
    #solutions-legacy-head {
      display: none !important;
    }
    .gs-roadmap__head {
      max-width: 900px;
    }
    .gs-roadmap__head h2 {
      margin: 0;
      max-width: 15ch;
      color: #fff;
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      line-height: 0.96;
      letter-spacing: -0.065em;
    }
    .gs-roadmap__head > p:last-of-type {
      max-width: 700px;
      margin: 24px 0 0;
      color: #9fb0c3;
      font-size: 1.02rem;
      line-height: 1.72;
    }
    .gs-roadmap__legend {
      margin: 34px 0 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
    }
    .gs-status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #94a3b8;
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .gs-status::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 10px currentColor;
    }
    .gs-status--available {
      color: #4ade80;
    }
    .gs-status--development {
      color: var(--gs-cyan-soft);
    }
    .gs-status--planned {
      color: #fbbf24;
    }
    .gs-roadmap__grid {
      margin-top: 64px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .gs-roadmap-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border: 1px solid rgba(148, 163, 184, 0.15);
      border-radius: 14px;
      background:
        linear-gradient(145deg, rgba(22, 38, 59, 0.92), rgba(10, 23, 40, 0.96));
    }
    .gs-roadmap-card::after {
      content: attr(data-index);
      position: absolute;
      top: -26px;
      right: 14px;
      color: rgba(154, 232, 242, 0.045);
      font-size: 9rem;
      font-weight: 800;
      line-height: 1;
      pointer-events: none;
    }
    .gs-roadmap-card__head {
      position: relative;
      z-index: 1;
      min-height: 112px;
      padding-right: 80px;
    }
    .gs-roadmap-card__head small {
      color: var(--gs-cyan-soft);
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.13em;
    }
    .gs-roadmap-card__head h3 {
      margin: 11px 0 0;
      color: #fff;
      font-size: clamp(1.35rem, 2.5vw, 2rem);
      line-height: 1.08;
      letter-spacing: -0.035em;
    }
    .gs-roadmap-card__head p {
      margin: 10px 0 0;
      color: #8fa1b6;
      font-size: 0.82rem;
      line-height: 1.5;
    }
    .gs-service-list {
      position: relative;
      z-index: 1;
      margin: 22px 0 0;
      padding: 0;
      border-top: 1px solid rgba(148, 163, 184, 0.13);
      list-style: none;
    }
    .gs-service-list li {
      min-height: 49px;
      padding: 11px 0;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 16px;
      align-items: center;
      border-bottom: 1px solid rgba(148, 163, 184, 0.11);
    }
    .gs-service-list li > span:first-child {
      color: #dbe4ef;
      font-size: 0.84rem;
      font-weight: 550;
      line-height: 1.35;
    }
    .gs-roadmap__foot {
      margin-top: 34px;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: center;
    }
    .gs-roadmap__foot p {
      max-width: 670px;
      margin: 0;
      color: #8497ac;
      font-size: 0.78rem;
      line-height: 1.6;
    }
    .gs-roadmap__foot .gs-btn {
      flex: 0 0 auto;
    }

    #view-solutions {
      --gs-ink: #07111f;
      --gs-cyan: #1ad4e8;
      --gs-cyan-soft: #9ae8f2;
    }
    #view-solutions .sol-future {
      margin: 0 0 70px;
      padding-top: 12px;
    }
    #view-solutions .sol-future__head {
      max-width: 760px;
      margin: 0 auto 38px;
      text-align: center;
    }
    #view-solutions .sol-future__head small {
      color: var(--gs-cyan-soft);
      font-size: 0.67rem;
      font-weight: 800;
      letter-spacing: 0.14em;
    }
    #view-solutions .sol-future__head h2 {
      margin: 12px 0 0;
      color: #fff;
      font-size: clamp(2rem, 4vw, 3.3rem);
      line-height: 1;
      letter-spacing: -0.045em;
    }
    #view-solutions .sol-future__head p {
      margin: 16px 0 0;
      color: #94a3b8;
      line-height: 1.65;
    }
    #view-solutions .sol-future__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    #view-solutions .sol-future-card {
      min-height: 500px;
      padding: 30px;
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(230px, 1.05fr);
      gap: 24px;
      align-items: center;
      overflow: hidden;
      border: 1px solid rgba(154, 232, 242, 0.18);
      border-radius: 16px;
      background:
        radial-gradient(circle at 82% 18%, rgba(26, 212, 232, 0.1), transparent 30%),
        #0b1728;
    }
    #view-solutions .sol-future-card__copy h3 {
      margin: 16px 0 0;
      color: #fff;
      font-size: 1.55rem;
      line-height: 1.08;
      letter-spacing: -0.035em;
    }
    #view-solutions .sol-future-card__copy p {
      margin: 14px 0 0;
      color: #94a3b8;
      font-size: 0.86rem;
      line-height: 1.62;
    }
    #view-solutions .sol-phone {
      width: min(230px, 100%);
      min-height: 410px;
      margin-inline: auto;
      padding: 10px;
      border: 1px solid rgba(226, 232, 240, 0.2);
      border-radius: 26px;
      background: #07111f;
      box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
    }
    #view-solutions .sol-phone__screen {
      min-height: 390px;
      padding: 14px 12px;
      border-radius: 18px;
      background:
        linear-gradient(rgba(26, 212, 232, 0.05), rgba(26, 212, 232, 0.01)),
        #0d1b2e;
    }
    #view-solutions .sol-phone__head {
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.13);
      color: var(--gs-cyan-soft);
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    #view-solutions .sol-chat {
      margin-top: 15px;
      display: grid;
      gap: 10px;
    }
    #view-solutions .sol-chat__bubble {
      max-width: 90%;
      padding: 10px 11px;
      border-radius: 10px;
      color: #dbeafe;
      font-size: 0.7rem;
      line-height: 1.45;
    }
    #view-solutions .sol-chat__bubble--user {
      margin-left: auto;
      background: #1d3447;
    }
    #view-solutions .sol-chat__bubble--ai {
      border: 1px solid rgba(154, 232, 242, 0.2);
      background: rgba(26, 212, 232, 0.08);
    }
    #view-solutions .sol-chat__bubble--ai strong {
      margin-bottom: 5px;
      display: block;
      color: var(--gs-cyan-soft);
      font-size: 0.56rem;
      letter-spacing: 0.08em;
    }
    #view-solutions .sol-report {
      width: min(310px, 100%);
      margin-inline: auto;
      padding: 18px;
      border-radius: 8px;
      background: #f8fafc;
      color: #0f172a;
      box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
      transform: rotate(-1.5deg);
    }
    #view-solutions .sol-report__head {
      padding-bottom: 12px;
      border-bottom: 1px solid #dbe3ea;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      color: #0e7490;
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.08em;
    }
    #view-solutions .sol-report__map {
      position: relative;
      height: 130px;
      margin-top: 14px;
      overflow: hidden;
      border-radius: 5px;
    }
    #view-solutions .sol-report__map img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
    #view-solutions .sol-report__map svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 0 6px rgba(198, 255, 90, 0.9));
    }
    #view-solutions .sol-report__rows {
      margin-top: 13px;
      display: grid;
      gap: 8px;
    }
    #view-solutions .sol-report__row {
      padding-bottom: 7px;
      display: flex;
      justify-content: space-between;
      gap: 15px;
      border-bottom: 1px solid #e2e8f0;
      font-size: 0.62rem;
    }
    #view-solutions .sol-report__row span:first-child {
      color: #64748b;
    }
    #view-solutions .sol-report__row strong {
      color: #0f172a;
    }

    #view-about .about-expansion {
      margin-bottom: 60px;
      padding: 56px;
      display: grid;
      grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
      gap: 60px;
      align-items: center;
      overflow: hidden;
      border: 1px solid rgba(26, 212, 232, 0.22);
      border-radius: 20px;
      background:
        radial-gradient(circle at 80% 50%, rgba(26, 212, 232, 0.12), transparent 34%),
        linear-gradient(135deg, #07111f, #0c2230);
    }
    #view-about .about-expansion__copy small {
      color: #9ae8f2;
      font-size: 0.67rem;
      font-weight: 800;
      letter-spacing: 0.13em;
    }
    #view-about .about-expansion__copy h2 {
      margin: 16px 0 0;
      color: #fff;
      font-size: clamp(2.2rem, 4.8vw, 4.4rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
    }
    #view-about .about-expansion__copy p {
      margin: 20px 0 0;
      color: #a5b4c7;
      line-height: 1.7;
    }
    #view-about .about-expansion__map {
      position: relative;
      min-height: 420px;
    }
    #view-about .about-expansion__rings {
      position: absolute;
      top: 50%;
      left: 52%;
      width: 380px;
      height: 380px;
      border: 1px solid rgba(154, 232, 242, 0.16);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }
    #view-about .about-expansion__rings::before,
    #view-about .about-expansion__rings::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(154, 232, 242, 0.15);
      border-radius: 50%;
    }
    #view-about .about-expansion__rings::before { inset: 60px; }
    #view-about .about-expansion__rings::after { inset: 120px; }
    #view-about .about-expansion__line {
      position: absolute;
      top: 50%;
      left: 18%;
      right: 9%;
      height: 1px;
      background: linear-gradient(90deg, #1ad4e8, rgba(26, 212, 232, 0.15));
      transform: rotate(-13deg);
      transform-origin: left;
    }
    #view-about .about-expansion__node {
      position: absolute;
      z-index: 2;
      padding: 9px 11px;
      border: 1px solid rgba(154, 232, 242, 0.25);
      border-radius: 6px;
      background: rgba(7, 17, 31, 0.88);
      color: #dbeafe;
      font-size: 0.64rem;
      font-weight: 800;
      letter-spacing: 0.09em;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    }
    #view-about .about-expansion__node::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-right: 7px;
      display: inline-block;
      border-radius: 50%;
      background: #1ad4e8;
      box-shadow: 0 0 12px #1ad4e8;
    }
    #view-about .about-expansion__node--al { left: 10%; bottom: 23%; }
    #view-about .about-expansion__node--balkan { left: 43%; top: 44%; }
    #view-about .about-expansion__node--eu { right: 4%; top: 18%; }

    #view-landing .gs-audience {
      padding: 120px 0;
      background: var(--gs-cream);
    }
    #view-landing .gs-audience__head {
      max-width: 760px;
      margin-bottom: 54px;
    }
    #view-landing .gs-audience__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    #view-landing .gs-audience-card {
      position: relative;
      min-height: 470px;
      overflow: hidden;
      border-radius: 12px;
      background-color: var(--gs-navy);
      background-size: cover;
      background-position: center 20%;
      background-repeat: no-repeat;
    }
    #view-landing .gs-audience-card:nth-child(1) {
      background-image: url("/hero/audience-farmer.jpg?v=who3");
    }
    #view-landing .gs-audience-card:nth-child(2) {
      background-image: url("/hero/audience-agronomists-v5.jpg?v=who7");
      background-position: center 48%;
    }
    #view-landing .gs-audience-card:nth-child(2) img {
      object-position: center 48%;
    }
    #view-landing .gs-audience-card:nth-child(3) {
      background-image: url("/hero/audience-institution.jpg?v=who3");
    }
    #view-landing .gs-audience-card img {
      position: absolute;
      z-index: 0;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      transition: transform 0.7s ease;
    }
    #view-landing .gs-audience-card:hover img {
      transform: scale(1.035);
    }
    #view-landing .gs-audience-card::after {
      content: "";
      position: absolute;
      z-index: 1;
      inset: 0;
      background: linear-gradient(180deg, transparent 28%, rgba(7, 17, 31, 0.92) 100%);
      pointer-events: none;
    }
    #view-landing .gs-audience-card__copy {
      position: absolute;
      z-index: 2;
      left: 26px;
      right: 26px;
      bottom: 26px;
      color: #fff;
    }
    #view-landing .gs-audience-card__copy small {
      color: var(--gs-cyan-soft);
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.12em;
    }
    #view-landing .gs-audience-card__copy h3 {
      margin: 9px 0 0;
      font-size: 1.35rem;
    }
    #view-landing .gs-audience-card__copy p {
      margin: 8px 0 0;
      color: #cbd5e1;
      font-size: 0.85rem;
      line-height: 1.5;
    }

    #view-landing .gs-final {
      position: relative;
      min-height: 58vh;
      padding: 100px 24px;
      display: grid;
      place-items: center;
      overflow: hidden;
      isolation: isolate;
      text-align: center;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(26, 212, 232, 0.12), transparent 52%),
        radial-gradient(ellipse at 22% 100%, rgba(47, 154, 104, 0.2), transparent 48%),
        radial-gradient(ellipse at 85% 55%, rgba(26, 173, 154, 0.1), transparent 42%),
        #07140f;
      color: #eaf6f2;
    }
    #view-landing .gs-final__contours {
      position: absolute;
      inset: -8%;
      z-index: 0;
      width: 116%;
      height: 116%;
      opacity: 0.22;
      pointer-events: none;
    }
    #view-landing .gs-final__copy {
      position: relative;
      z-index: 1;
    }
    #view-landing .gs-final__copy {
      max-width: 850px;
    }
    #view-landing .gs-final h2 {
      color: #fff;
    }
    #view-landing .gs-final p {
      max-width: 620px;
      margin: 22px auto 0;
      color: #d1dbe7;
      font-size: 1.05rem;
      line-height: 1.65;
    }
    #view-landing .gs-final .gs-btn {
      margin-top: 30px;
    }

    @keyframes gs-scan {
      from { transform: translateY(0); }
      to { transform: translateY(460px); }
    }
    @keyframes gs-pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.45; }
    }
    @keyframes gs-layer-in {
      from { opacity: 0; }
      to { opacity: 0.78; }
    }
    @keyframes gs-hero-drift {
      from { transform: scale(1.01); }
      to { transform: scale(1.06); }
    }
    @keyframes gs-globe-fly {
      0% { transform: scale(1); }
      28% { transform: scale(1.6); }
      50% { transform: scale(3.4); }
      56%, 100% { transform: scale(4.2); }
    }
    @keyframes gs-globe-tex {
      0% { background-size: 200%; background-position: 55.6% 27.1%; }
      38% { background-size: 290%; background-position: 55.6% 27.1%; }
      52%, 100% { background-size: 400%; background-position: 55.6% 27.1%; }
    }
    @keyframes gs-globe-fade {
      0%, 56% { opacity: 1; }
      100% { opacity: 0; }
    }
    @keyframes gs-orbit-in {
      0% { transform: scale(1.08); opacity: 0; }
      36% { opacity: 0; }
      52% { transform: scale(1.28); opacity: 1; }
      100% { transform: scale(1.55); opacity: 1; }
    }
    @keyframes gs-field-arrive {
      0% { transform: scale(1.24); opacity: 0; }
      52% { opacity: 0; }
      72% { transform: scale(1.05); opacity: 1; }
      100% { transform: scale(1); opacity: 1; }
    }
    @keyframes gs-draw-path {
      from { stroke-dashoffset: 1000; }
      to { stroke-dashoffset: 0; }
    }
    @keyframes gs-ndvi-in {
      from { opacity: 0; }
      to { opacity: 0.86; }
    }
    @keyframes gs-fade-in {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes gs-metric-in {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: none; }
    }
    @keyframes gs-tag-in {
      from { opacity: 0; transform: translate(-50%, 8px) scale(0.92); }
      to { opacity: 1; transform: translate(-50%, 0) scale(1); }
    }
    @keyframes gs-layer-float {
      from { margin-top: 0; }
      to { margin-top: -5px; }
    }
    @media (min-width: 1440px) {
      #view-landing {
        --gs-content-max: min(1360px, calc(100vw - 80px));
      }
      #view-landing .gs-hero__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.9fr);
        gap: clamp(56px, 4vw, 112px);
      }
      #view-landing .gs-readout {
        max-width: min(620px, 100%);
      }
      .navbar-link {
        font-size: 0.95rem;
      }
    }
    @media (min-width: 1920px) {
      #view-landing {
        --gs-content-max: min(1400px, calc(100vw - 96px));
      }
      #view-landing .gs-hero__copy h1 {
        font-size: clamp(2rem, 2.2vw + 0.35rem, 2.85rem);
      }
      #view-landing .gs-readout {
        max-width: min(680px, 100%);
      }
      .navbar {
        padding-inline: clamp(40px, 4vw, 88px);
      }
      .navbar-link {
        font-size: 1rem;
      }
    }
    @media (max-width: 1080px) {
      #view-landing .gs-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
        gap: 42px;
      }
      #view-landing .gs-hero__copy h1 {
        font-size: clamp(1.75rem, 4.5vw, 2.35rem);
      }
      #view-landing .gs-journey__grid {
        gap: 48px;
      }
      #view-landing .gs-product__body {
        grid-template-columns: 1fr;
      }
      #view-landing .gs-next-action {
        min-height: 240px;
      }
    }
    @media (max-width: 860px) {
      .brand-logo-wrap--full {
        display: block;
        --logo-content-h: 34px;
        width: min(200px, calc(100vw - 118px));
        max-width: 200px;
      }
      .brand-logo-wrap--icon {
        display: none;
      }
      .navbar {
        padding-inline: 12px;
        padding-right: max(12px, env(safe-area-inset-right));
        padding-left: max(12px, env(safe-area-inset-left));
        height: 60px;
      }
      html.gs-publish-home .navbar-toggle {
        display: none !important;
      }
      html.gs-publish-home .navbar-links {
        position: static;
        inset: auto;
        height: auto;
        max-height: none;
        overflow: visible;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 0;
        margin-left: auto;
        background: transparent;
        border: 0;
        box-shadow: none;
      }
      html.gs-publish-home .navbar-links > .navbar-link {
        padding: 8px 12px;
        font-size: 0.92rem;
        border-bottom: 0;
      }
      html.gs-publish-home body.nav-open {
        overflow: auto;
      }
      #view-landing .landing-footer-grid--publish {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .navbar-links {
        position: fixed;
        inset: 60px 0 0 0;
        z-index: 1100;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 16px max(16px, env(safe-area-inset-bottom));
        margin: 0;
        height: calc(100dvh - 60px);
        max-height: calc(100dvh - 60px);
        overflow: hidden;
        background: #07140f;
        border-top: 1px solid rgba(26, 173, 154, 0.16);
        box-shadow: none;
        transform: translateY(-6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.18s ease, opacity 0.18s ease, visibility 0.18s ease;
      }
      body.nav-open .navbar-links {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }
      /* Platform dropdown is bulky on phone — demo link already covers it */
      .navbar-links > .navbar-dropdown {
        display: none !important;
      }
      .navbar-links > .navbar-link {
        display: block;
        padding: 12px 2px;
        font-size: 0.95rem;
        line-height: 1.2;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .navbar-utilities {
        margin-top: auto;
        margin-bottom: 0;
        padding: 12px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(154, 232, 242, 0.14);
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
      }
      .agri-lang-bar--navbar {
        gap: 6px;
      }
      .agri-lang-bar--navbar .agri-lang-bar__label {
        display: none;
      }
      .navbar-dropdown-menu {
        display: none !important;
      }
      button.navbar-link.navbar-link--btn,
      .btn-sign-in--nav {
        padding: 8px 12px;
        font-size: 0.88rem;
      }
      #view-landing .gs-shell,
      #view-landing .gs-hero__inner {
        width: min(100% - 28px, 680px);
      }
      .gs-roadmap .gs-shell {
        width: min(100% - 28px, 680px);
      }
      #view-landing .gs-hero {
        min-height: auto;
      }
      #view-landing .gs-hero__inner {
        padding: 72px 0 40px;
      }
      #view-landing .gs-hero__shade {
        background:
          radial-gradient(ellipse 70% 50% at 50% 20%, rgba(26, 212, 232, 0.12), transparent 55%),
          radial-gradient(ellipse 60% 45% at 20% 80%, rgba(47, 154, 104, 0.18), transparent 50%),
          linear-gradient(180deg, rgba(7, 20, 15, 0.55) 0%, rgba(7, 20, 15, 0.88) 55%, rgba(7, 20, 15, 0.96) 100%);
      }
      #view-landing .gs-hero__terms {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
      #view-landing .gs-demo__grid {
        grid-template-columns: 1fr;
      }
      #view-landing .gs-journey,
      #view-landing .gs-question-band,
      #view-landing .gs-editorial,
      .gs-roadmap,
      #view-landing .gs-audience,
      #view-landing .gs-demo {
        padding: 64px 0;
      }
      #view-landing .gs-journey__grid,
      #view-landing .gs-compare__grid,
      #view-landing .gs-editorial__story,
      #view-landing .gs-editorial__story--reverse {
        grid-template-columns: 1fr;
      }
      #view-landing .gs-journey__grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
      }
      #view-landing .gs-journey-stage {
        position: relative;
        top: auto;
        order: -1;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        max-height: min(52vh, 420px);
      }
      #view-landing .gs-mapstage__bar {
        height: 44px;
        padding: 0 12px;
        font-size: 0.58rem;
      }
      #view-landing .gs-stage__sat,
      #view-landing .gs-stage__ndvi,
      #view-landing .gs-stage__boundary {
        inset: 44px 0 32px;
        height: calc(100% - 76px);
      }
      #view-landing .gs-stage__progress {
        top: 44px;
      }
      #view-landing .gs-stage__source {
        height: 32px;
        font-size: 0.52rem;
        letter-spacing: 0.06em;
      }
      #view-landing .gs-journey-step {
        min-height: 0;
        padding: 18px 0 18px 16px;
        cursor: default;
      }
      #view-landing .gs-journey-step__n {
        margin-bottom: 12px;
      }
      #view-landing .gs-journey-step h3 {
        font-size: 1.2rem;
      }
      #view-landing .gs-journey-step p {
        margin-top: 10px;
        font-size: 0.92rem;
      }
      #view-landing .gs-question-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      #view-landing .gs-editorial__story--reverse .gs-editorial__copy {
        order: initial;
      }
      #view-landing .gs-ndvi-board,
      #view-landing .gs-action-board {
        min-height: 0;
        padding-bottom: 64px;
      }
      #view-landing .gs-action-board .gs-product__body {
        grid-template-columns: 1fr;
      }
      #view-landing .gs-ndvi-board__metrics b {
        font-size: 1.1rem;
      }
      .gs-roadmap__grid {
        grid-template-columns: 1fr;
      }
      #view-solutions .sol-future__grid,
      #view-about .about-expansion {
        grid-template-columns: 1fr;
      }
      #view-about .about-expansion {
        padding: 36px 28px;
      }
      #view-landing .gs-audience__grid {
        grid-template-columns: 1fr;
      }
      #view-landing .gs-audience-card {
        min-height: 320px;
      }
      #view-landing .gs-final {
        min-height: auto;
        padding: 72px 20px max(72px, env(safe-area-inset-bottom));
      }
      #view-landing .gs-final h2 {
        font-size: clamp(1.45rem, 6.5vw, 2rem);
      }
      #view-landing .gs-final .gs-btn {
        width: 100%;
        max-width: 320px;
      }
      .gs-demo-page {
        padding: 16px 12px max(24px, env(safe-area-inset-bottom));
      }
      .gs-demo-page__card {
        border-radius: 12px;
      }
      #view-landing .landing-footer-grid,
      .landing-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      #view-landing .landing-footer-brand-col,
      .landing-footer-brand-col {
        grid-column: auto;
      }
    }
    @media (max-width: 560px) {
      #view-landing .gs-hero__copy h1 {
        font-size: clamp(1.95rem, 8vw, 2.45rem);
        line-height: 1.1;
      }
      #view-landing .gs-hero__lead {
        font-size: 1.05rem;
        line-height: 1.68;
      }
      #view-landing .gs-kicker--light {
        font-size: 0.78rem;
        letter-spacing: 0.14em;
      }
      #view-landing .gs-hero__terms li {
        font-size: 0.78rem;
        letter-spacing: 0.12em;
      }
      #view-landing .gs-section-head h2 {
        font-size: clamp(1.5rem, 6.5vw, 1.95rem);
      }
      #view-landing .gs-section-head p:last-child {
        font-size: 1.05rem;
      }
      #view-landing .gs-btn {
        font-size: 1rem;
      }
      #view-landing .landing-footer-brand-col strong {
        font-size: 1.2rem;
      }
      #view-landing .landing-footer-brand-col span {
        font-size: 0.95rem;
      }
      #view-landing .landing-footer-sitemap__col h4 {
        font-size: 0.84rem;
      }
      #view-landing .landing-footer-sitemap__col span {
        font-size: 0.95rem;
      }
      #view-landing .landing-footer-nav a {
        font-size: 1rem;
      }
      html.gs-publish-home .navbar-link--demo {
        font-size: 0.9rem;
        padding: 9px 12px;
      }
      #view-landing .gs-hero__actions {
        align-items: stretch;
        flex-direction: column;
      }
      #view-landing .gs-btn {
        width: 100%;
      }
      #view-landing .gs-readout {
        padding: 9px;
      }
      #view-landing .gs-readout__steps {
        grid-template-columns: repeat(2, 1fr);
      }
      #view-landing .gs-readout__steps li:nth-child(2)::after {
        display: none;
      }
      #view-landing .gs-journey-stage {
        height: auto;
        min-height: 0;
        max-height: min(48vh, 360px);
      }
      #view-landing .gs-journey-step {
        padding-left: 14px;
      }
      #view-landing .gs-question-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      #view-landing .gs-question {
        min-height: 132px;
      }
      #view-landing .gs-product {
        padding: 12px;
      }
      #view-landing .gs-editorial__visual,
      #view-landing .gs-editorial__visual > img,
      #view-landing .gs-context-visual {
        min-height: 330px;
      }
      #view-landing .gs-layer-stack {
        min-height: 390px;
      }
      #view-landing .gs-layer-stack__scene {
        right: 92px;
      }
      #view-landing .gs-layer-plane {
        left: 8%;
        width: 84%;
        height: 42%;
      }
      #view-landing .gs-layer-plane--ndvi { --lift: 42px; }
      #view-landing .gs-layer-plane--soil { --lift: 84px; }
      #view-landing .gs-layer-plane--weather { --lift: 126px; }
      #view-landing .gs-layer-plane--intelligence { --lift: 168px; }
      #view-landing .gs-layer-stack__labels {
        right: 10px;
        width: 100px;
      }
      #view-landing .gs-layer-stack__labels span {
        padding: 6px 7px;
        font-size: 0.49rem;
      }
      #view-landing .gs-context-stack {
        padding: 20px;
      }
      .gs-roadmap-card {
        padding: 22px 18px;
      }
      .gs-roadmap-card__head {
        padding-right: 54px;
      }
      .gs-service-list li {
        gap: 10px;
      }
      .gs-service-list .gs-status {
        font-size: 0;
      }
      .gs-service-list .gs-status::before {
        width: 9px;
        height: 9px;
      }
      .gs-roadmap__foot {
        align-items: stretch;
        flex-direction: column;
      }
      #view-solutions .sol-future-card {
        min-height: auto;
        padding: 24px 18px;
        grid-template-columns: 1fr;
      }
      #view-solutions .sol-future-card__copy {
        text-align: center;
      }
      #view-about .about-expansion {
        padding: 28px 20px;
      }
      #view-about .about-expansion__map {
        min-height: 330px;
      }
      #view-about .about-expansion__rings {
        width: 290px;
        height: 290px;
      }
      #view-about .about-expansion__node--al { left: 0; }
      #view-about .about-expansion__node--eu { right: 0; }
      #view-landing .gs-audience-card {
        min-height: 330px;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      #view-landing .gs-hero__image,
      #view-landing .gs-scan,
      #view-landing .gs-live::before,
      #view-landing .gs-readout__ndvi,
      #view-landing .gs-readout__space,
      #view-landing .gs-readout__sat,
      #view-landing .gs-parcel-draw,
      #view-landing .gs-attention-ring,
      #view-landing .gs-ndvi-board__line,
      #view-landing .gs-ndvi-board__area,
      #view-landing .gs-series-line,
      #view-landing .gs-series-area {
        animation: none !important;
      }
      #view-landing .gs-readout__space { opacity: 0 !important; }
      #view-landing .gs-readout__sat { opacity: 1 !important; }
      #view-landing .gs-parcel-draw,
      #view-landing .gs-attention-ring,
      #view-landing .gs-ndvi-board__line,
      #view-landing .gs-series-line {
        stroke-dashoffset: 0 !important;
        stroke-dasharray: none !important;
      }
      #view-landing .gs-ndvi-board__area,
      #view-landing .gs-ndvi-board__dot,
      #view-landing .gs-ndvi-board__point,
      #view-landing .gs-ndvi-board__metrics span,
      #view-landing .gs-series-area,
      #view-landing .gs-attention-tag,
      #view-landing .gs-attention-fill,
      #view-landing .gs-readout__recs,
      #view-landing .gs-readout__recs li {
        opacity: 1 !important;
        transform: none !important;
      }
    }
    
    /* Utilities */
    .hidden { display: none !important; }
    .text-center { text-align: center; }
    .mt-4 { margin-top: 1rem; }
    .mb-4 { margin-bottom: 1rem; }
    @keyframes appToastIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

