*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --ink: #0a0a0a;
      --ink-2: #444;
      --ink-3: #888;
      --ink-4: #bbb;
      --surface: #fafaf8;
      --surface-2: #f2f0eb;
      --surface-3: #e8e5de;
      --accent: #e8562a;
      --accent-h: #c94420;
      --navy: #14203b;
      --border: rgba(0, 0, 0, 0.08);
      --border-2: rgba(0, 0, 0, 0.15);
      --r: 4px;
      --r-lg: 10px;
      --max: 1140px;
      --serif: 'Instrument Serif', Georgia, serif;
      --sans: 'Geist', system-ui, sans-serif;
    }

    html {
      scroll-behavior: smooth;
      scrollbar-gutter: stable both-edges;
    }

    body {
      font-family: var(--sans);
      background: var(--surface);
      color: var(--ink);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      font-size-adjust: 0.52;
    }

    .hero h1,
    .stitle,
    .logo,
    .foot-logo {
      font-size-adjust: 0.48;
    }

    /* NAV */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250, 250, 248, 0.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }

    .nav-i {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 2rem;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: var(--serif);
      font-size: 1.15rem;
      color: var(--ink);
      text-decoration: none;
    }

    .logo span { color: var(--accent); }

    .nav-links {
      display: flex;
      gap: 1.8rem;
      list-style: none;
      align-items: center;
    }

    .nav-links > li > a {
      font-size: 0.83rem;
      color: var(--ink-2);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links > li > a:hover { color: var(--ink); }

    .nav-cta {
      background: var(--accent) !important;
      color: #fff !important;
      padding: 0.42rem 1.1rem;
      border-radius: var(--r);
      font-size: 0.81rem !important;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      border: none;
      background: none;
      padding: 0;
    }

    .nav-toggle span {
      width: 22px;
      height: 2px;
      background: var(--ink);
      display: block;
    }

    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      .nav-links {
        position: absolute;
        top: 58px;
        left: 0;
        width: 100%;
        background: var(--surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--border);
      }
      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
      .nav-links > li > a { width: 100%; display: block; }
      .nav-cta { width: 100%; text-align: center; display: block; }
    }

    /* HERO */
    .hero {
      background: var(--navy);
      padding: 5.5rem 2rem 5rem;
      position: relative;
      overflow: hidden
    }

    .hero::after {
      content: '';
      position: absolute;
      top: -20%;
      right: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(232, 86, 42, 0.15) 0%, transparent 60%);
      pointer-events: none
    }

    .hero-i {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start
    }

    .hero-r {
      display: flex;
      align-items: flex-start;
      justify-content: stretch;
      width: 100%
    }

    .hero-tag {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(232, 86, 42, 0.9);
      margin-bottom: 1.4rem;
      font-weight: 400
    }

    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      line-height: 1.08;
      color: #fff;
      max-width: 780px;
      letter-spacing: -0.02em;
      margin-bottom: 1.6rem
    }

    .hero h1 em {
      font-style: italic;
      color: rgba(255, 255, 255, 0.5)
    }

    .hero-kw {
      font-size: 0.85rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 0.01em;
      margin-top: 0.6rem;
      margin-bottom: 0;
      line-height: 1.5;
    }

    .hero-sub {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.55);
      max-width: 540px;
      line-height: 1.75;
      margin-bottom: 2.8rem;
      font-weight: 300;
      text-align: justify;
    }

    /* .hero-sub-seo {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.55);
      max-width: 540px;
      line-height: 1.75;
      margin-bottom: 1rem;
      font-weight: 300
    } */

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 4.5rem
    }

    .btn-p {
      background: var(--accent);
      color: #fff;
      padding: 0.78rem 1.8rem;
      border-radius: var(--r);
      font-size: 0.88rem;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.2s;
      display: inline-block
    }

    .btn-p:hover {
      background: var(--accent-h)
    }

    /* OPSGRID BC SECTION */
    .og-bc-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 3rem;
      align-items: center
    }

    .og-stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.4rem
    }

    .og-stat-n {
      font-family: var(--serif);
      font-size: 1.7rem;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 0.25rem
    }

    .og-stat-l {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.5
    }

    @media (max-width: 860px) {
      .og-bc-grid {
        grid-template-columns: 1fr;
        gap: 2rem
      }
    }

    @media (max-width: 480px) {
      .og-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
      }

      .og-stat-n {
        font-size: 1.4rem
      }
    }

    .btn-g {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.83rem;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.2s
    }

    .btn-g:hover {
      color: #fff
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, auto);
      gap: 0;
      width: fit-content;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem
    }

    .stat {
      padding-right: 2.5rem
    }

    .stat:not(:first-child) {
      padding-left: 2.5rem;
      border-left: 1px solid rgba(255, 255, 255, 0.1)
    }

    .stat-n {
      font-family: var(--serif);
      font-size: 2rem;
      color: #fff;
      line-height: 1
    }

    .stat-l {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 0.25rem
    }

    /* TRUST */
    .trust {
      padding: 1.2rem 2rem;
      background: var(--surface-2);
      border-bottom: 1px solid var(--border)
    }

    .trust-i {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      gap: 2rem;
      align-items: center;
      flex-wrap: wrap
    }

    .trust-lbl {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #666;
      white-space: nowrap
    }

    .trust-items {
      display: flex;
      gap: 1.8rem;
      flex-wrap: wrap
    }

    .trust-item {
      font-size: 0.8rem;
      color: var(--ink-2);
      display: flex;
      align-items: center;
      gap: 0.4rem
    }

    .tdot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0
    }

    /* SECTIONS */
    section {
      padding: 5.5rem 2rem
    }

    #usecases { padding-bottom: 2.5rem }
    #tools { padding-top: 2.5rem }

    .c {
      max-width: var(--max);
      margin: 0 auto
    }

    .slbl {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.7rem;
      font-weight: 400
    }

    .stitle {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.5vw, 2.7rem);
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 1rem
    }

    .ssub {
      font-size: 0.98rem;
      color: var(--ink-2);
      max-width: 500px;
      line-height: 1.75;
      font-weight: 300;
      text-align: justify;
    }

    /* PROBLEM */
    .prob {
      background: var(--surface-2)
    }

    .prob-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center
    }

    .prob-items {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.3rem
    }

    .prob-item {
      display: flex;
      gap: 1rem
    }

    .prob-ico {
      width: 34px;
      height: 34px;
      border-radius: var(--r);
      background: #fff;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px
    }

    .prob-ico svg {
      width: 14px;
      height: 14px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.8
    }

    .prob-item strong {
      display: block;
      font-size: 0.93rem;
      font-weight: 500;
      margin-bottom: 0.2rem
    }

    .prob-item p {
      font-size: 0.85rem;
      color: var(--ink-2);
      line-height: 1.6
    }

    .callout {
      background: var(--navy);
      padding: 2.5rem;
      border-radius: var(--r-lg)
    }

    .callout blockquote {
      font-family: var(--serif);
      font-size: 1.3rem;
      line-height: 1.55;
      font-style: italic;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 1.2rem
    }

    .callout-attr {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.08em;
      text-transform: uppercase
    }

    /* CONVERSATIONAL OPS — NEW HIGHLIGHT SECTION */
    .conv-ops {
      background:
        radial-gradient(ellipse at 72% 50%, rgba(91, 95, 199, 0.12) 0%, transparent 62%),
        var(--ink);
      position: relative;
      overflow: hidden;
      padding: 5rem 2rem;
    }

    .conv-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: center
    }

    .conv-text .slbl {
      color: rgba(232, 86, 42, 0.9)
    }

    .conv-text .stitle {
      color: #fff
    }

    .conv-text .ssub {
      color: rgba(255, 255, 255, 0.5)
    }

    .chat-duo {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
      align-items: start
    }

    .chat-window {
      background: #111a33;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35)
    }

    .chat-head {
      background: rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 0.85rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem
    }

    .chat-title {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.92);
      font-weight: 500;
      letter-spacing: 0.01em
    }

    .chat-status {
      font-size: 0.68rem;
      color: rgba(255, 255, 255, 0.58)
    }

    .chat-feed {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.95rem
    }

    .chat-group {
      display: flex;
      flex-direction: column;
      gap: 0.55rem
    }

    .chat-row {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      max-width: 100%
    }

    .chat-row.outgoing {
      justify-content: flex-end
    }

    .chat-avatar {
      width: 26px;
      height: 26px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.66rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .chat-avatar.bot {
      background: #4f6bed;
      color: #fff
    }

    .chat-content {
      max-width: 86%;
      min-width: 0
    }

    .chat-row.outgoing .chat-content {
      display: flex;
      flex-direction: column;
      align-items: flex-end
    }

    .chat-who {
      font-size: 0.68rem;
      color: rgba(255, 255, 255, 0.48);
      margin-bottom: 0.22rem
    }

    .bubble-user,
    .bubble-bot {
      font-size: 0.82rem;
      line-height: 1.48;
      padding: 0.55rem 0.8rem;
      border-radius: 10px;
      word-break: break-word
    }

    .bubble-user {
      background: #2d62d8;
      color: #fff;
      border-top-right-radius: 4px
    }

    .bubble-bot {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.9);
      border-top-left-radius: 4px
    }

    .chat-meta {
      margin-top: 0.22rem;
      font-size: 0.65rem;
      color: rgba(255, 255, 255, 0.4)
    }

    .chat-note {
      padding: 0.7rem 1rem 0.85rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.38)
    }

    .conv-tag {
      font-size: 0.72rem;
      background: rgba(232, 86, 42, 0.2);
      color: rgba(232, 86, 42, 0.9);
      padding: 0.25rem 0.7rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
      display: inline-block;
      letter-spacing: 0.06em;
      text-transform: uppercase
    }
    
    .conv-tag-green {
      font-size: 0.72rem;
      background: rgba(255, 255, 255, 0.134);
      color: rgba(34, 197, 94, 0.9); /* green text */
      margin-bottom: 1.5rem;
      display: inline-block;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* SERVICES */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      margin-top: 3rem
    }

    .svc-card {
      background: var(--surface);
      padding: 2rem;
      position: relative
    }

    .svc-card.feat {
      background: var(--navy)
    }

    .svc-tier {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 0.8rem
    }

    .svc-card.feat .svc-tier {
      color: rgba(255, 255, 255, 0.55)
    }

    .svc-name {
      font-family: var(--serif);
      font-size: 1.35rem;
      color: var(--ink);
      margin-bottom: 0.3rem
    }

    .svc-card.feat .svc-name {
      color: #fff
    }

    .svc-tag {
      font-size: 0.8rem;
      color: var(--ink-2);
      margin-bottom: 1.3rem;
      font-weight: 300
    }

    .svc-card.feat .svc-tag {
      color: rgba(255, 255, 255, 0.5)
    }

    .svc-price {
      font-family: var(--serif);
      font-size: 1.55rem;
      color: var(--ink);
      margin-bottom: 1.3rem
    }

    .svc-card.feat .svc-price {
      color: #fff
    }

    .svc-price span {
      font-family: var(--sans);
      font-size: 0.78rem;
      color: var(--ink-3);
      font-weight: 300
    }

    .svc-card.feat .svc-price span {
      color: rgba(255, 255, 255, 0.6)
    }

    .svc-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1.8rem
    }

    .svc-feats li {
      font-size: 0.83rem;
      color: var(--ink-2);
      display: flex;
      gap: 0.6rem
    }

    .svc-card.feat .svc-feats li {
      color: rgba(255, 255, 255, 0.6)
    }

    .svc-feats li::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      margin-top: 0.55em
    }

    .svc-btn {
      display: block;
      text-align: center;
      padding: 0.62rem;
      border-radius: var(--r);
      font-size: 0.81rem;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.2s
    }

    .svc-o {
      border: 1px solid var(--border-2);
      color: var(--ink)
    }

    .svc-o:hover {
      background: var(--surface-2)
    }

    .svc-f {
      background: var(--accent);
      color: #fff;
      border: 1px solid var(--accent)
    }

    .svc-f:hover {
      background: var(--accent-h)
    }

    .svc-detail {
      display: block;
      text-align: center;
      font-size: 0.78rem;
      color: var(--ink3);
      text-decoration: none;
      margin-top: 0.5rem;
      transition: color 0.2s
    }

    .svc-detail:hover {
      color: var(--ink)
    }

    .svc-card.feat .svc-detail {
      color: rgba(255, 255, 255, 0.6)
    }

    .svc-card.feat .svc-detail:hover {
      color: #fff
    }

    .feat-badge {
      position: absolute;
      top: 1.2rem;
      right: 1.2rem;
      background: var(--accent);
      color: #fff;
      font-size: 0.66rem;
      padding: 0.22rem 0.55rem;
      border-radius: 2px;
      letter-spacing: 0.06em;
      text-transform: uppercase
    }

    /* VALUE EQUATION STRIP — HORMOZI */
    .value-strip {
      background: var(--surface-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 3rem 2rem
    }

    .ve-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max);
      margin: 0 auto
    }

    .ve-item {
      padding: 0 2rem;
      text-align: center
    }

    .ve-item:not(:first-child) {
      border-left: 1px solid var(--border)
    }

    .ve-sign {
      font-size: 1.4rem;
      color: var(--accent);
      font-family: var(--serif);
      margin-bottom: 0.3rem
    }

    .ve-title {
      font-size: 0.88rem;
      font-weight: 500;
      margin-bottom: 0.4rem
    }

    .ve-body {
      font-size: 0.8rem;
      color: var(--ink-2);
      line-height: 1.55
    }

    /* TESTIMONIALS */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem
    }

    .testi-card {
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem
    }

    .testi-industry {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent)
    }

    .testi-q {
      font-family: var(--serif);
      font-size: 1.05rem;
      line-height: 1.6;
      font-style: italic;
      color: var(--ink);
      flex: 1;
      text-align: justify;
    }

    .testi-attr {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border)
    }

    .testi-av {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      font-weight: 500;
      flex-shrink: 0
    }

    .av-b {
      background: #e6f1fb;
      color: #185fa5
    }

    .av-g {
      background: #eaf3de;
      color: #3b6d11
    }

    .av-a {
      background: #faeeda;
      color: #854f0b
    }

    .testi-name {
      font-size: 0.85rem;
      font-weight: 500
    }

    .testi-role {
      font-size: 0.75rem;
      color: var(--ink-2)
    }

    /* USE CASES */
    .uc {
      background: var(--surface-2)
    }

    .uc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem
    }

    .uc-card {
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 1.75rem;
      background: var(--surface);
      transition: border-color 0.2s
    }

    .uc-card:hover {
      border-color: var(--border-2)
    }

    .uc-ind {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent);
      margin-bottom: 0.5rem;
      text-align: justify;
    }

    .uc-card h3 {
      font-size: 0.98rem;
      font-weight: 500;
      margin-bottom: 0.4rem
    }

    .uc-card p {
      font-size: 0.83rem;
      color: var(--ink-2);
      line-height: 1.6
    }

    .uc-out {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
      font-size: 0.78rem;
      display: flex;
      gap: 0.5rem
    }

    .uc-lbl {
      color: var(--accent);
      font-weight: 500;
      white-space: nowrap
    }

    /* OPEN SOURCE */
    .oss-card {
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      margin-top: 3rem
    }

    .oss-hdr {
      padding: 2rem;
      background: var(--navy);
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 1rem
    }

    .oss-badge {
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.7rem;
      padding: 0.28rem 0.65rem;
      border-radius: 2px;
      letter-spacing: 0.08em;
      text-transform: uppercase
    }

    .oss-title {
      font-family: var(--serif);
      font-size: 1.7rem;
      color: #fff;
      margin: 0.5rem 0
    }

    .oss-desc {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 300;
      max-width: 460px;
      text-align: justify
    }

    .oss-body {
      padding: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem
    }


    .media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center }

    @media (max-width: 900px) {

      .hero-i { grid-template-columns: 1fr }
      .hero-r  { margin-top: 2.5rem; width: 100% }

      .prob-grid,
      .conv-grid,
      .oss-body,
      .uc-grid,
      .vent-intro,
      .vent-cards,
      .media-grid {
        grid-template-columns: 1fr !important;
      }

      .chat-duo {
        grid-template-columns: 1fr;
      }

    }

    @media (max-width: 600px) {

      section {
        padding: 4rem 1.25rem !important;
      }

      .hero {
        padding: 3.5rem 1.25rem !important;
      }

      .oss-body {
        padding: 1.5rem 1.25rem !important;
        gap: 1.5rem !important;
      }

      .oss-hdr {
        flex-direction: column;
        padding: 1.5rem 1.25rem !important;
      }

      .oss-hdr>div:last-child {
        width: 100%;
      }

      .hiw-steps,
      .ve-grid,
      .foot-i {
        grid-template-columns: 1fr !important;
      }
    }

    .oss-feats {
      display: flex;
      flex-direction: column;
      gap: 0.9rem
    }

    .oss-feat {
      display: flex;
      gap: 0.8rem
    }

    .oss-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      margin-top: 0.55em
    }

    .oss-ft strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 500
    }

    .oss-ft span {
      font-size: 0.8rem;
      color: var(--ink-2)
    }

    .oss-install {
      background: var(--surface-2);
      border-radius: var(--r);
      padding: 1.5rem
    }

    .oss-il {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink-3);
      margin-bottom: 0.8rem
    }

    .oss-code {
      background: var(--navy);
      color: #e8e5de;
      font-family: 'Courier New', monospace;
      font-size: 0.78rem;
      padding: 1rem;
      border-radius: var(--r);
      margin-bottom: 1rem;
      line-height: 1.7;
      overflow-x: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
      white-space: pre-wrap;
    }

    @media (max-width: 600px) {

      .oss-code {
        font-size: 0.7rem;
        padding: 0.75rem;
        line-height: 1.5;
      }

    }

    .oss-btns {
      display: flex;
      gap: 0.7rem;
      flex-wrap: wrap
    }

    .oss-btn {
      padding: 0.52rem 1.1rem;
      border-radius: var(--r);
      font-size: 0.8rem;
      text-decoration: none;
      font-weight: 500;
      display: inline-block
    }

    .oss-dark {
      background: var(--ink);
      color: #fff
    }

    .oss-outline {
      border: 1px solid var(--border-2);
      color: var(--ink)
    }

    .cs-tag {
      display: inline-block;
      background: #fff3cd;
      color: #856404;
      font-size: 0.68rem;
      padding: 0.18rem 0.45rem;
      border-radius: 2px;
      letter-spacing: 0.04em;
      margin-left: 0.4rem
    }

    /* HOW IT WORKS */
    .hiw {
      background: var(--surface-2)
    }

    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 3rem;
      position: relative
    }

    .hiw-steps::before {
      content: '';
      position: absolute;
      top: 17px;
      left: 8%;
      width: 84%;
      height: 1px;
      background: var(--border);
      z-index: 0
    }

    .hiw-step {
      position: relative;
      z-index: 1;
      padding: 0 1rem
    }

    .hiw-n {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--border-2);
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.76rem;
      font-weight: 500;
      color: var(--ink-2);
      margin-bottom: 1rem
    }

    .hiw-step.act .hiw-n {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff
    }

    .hiw-step h3 {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.4rem
    }

    .hiw-step p {
      font-size: 0.8rem;
      color: var(--ink-2);
      line-height: 1.55
    }

    /* VENTURES */
    .vent {
      background: var(--surface);
      padding: 5.5rem 2rem
    }

    .vent .slbl { color: rgba(232, 86, 42, 0.85) }
    .vent .stitle { color: var(--ink) }
    .vent .ssub { color: var(--ink2) }

    .vent-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 3rem
    }

    .vent-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem
    }

    .vc {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--r-lg);
      padding: 1.75rem;
      transition: border-color 0.2s
    }

    .vc:hover {
      border-color: rgba(255, 255, 255, 0.2)
    }

    .vc.live {
      border-color: rgba(34, 197, 94, 0.3)
    }

    .vc-status {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem
    }

    .vc-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0
    }

    .vc-dot.green {
      background: #22c55e
    }

    .vc-dot.amber {
      background: #f59e0b;
      animation: blink 1.8s ease-in-out infinite
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.4
      }
    }

    .vc-stxt {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em
    }

    .vc-stxt.green {
      color: rgba(34, 197, 94, 0.8)
    }

    .vc-stxt.amber {
      color: rgba(245, 158, 11, 0.8)
    }

    .vc-role {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 0.4rem
    }

    .vc-name {
      font-family: var(--serif);
      font-size: 1.3rem;
      color: #fff;
      margin-bottom: 0.5rem
    }

    .vc-desc {
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.65;
      margin-bottom: 1.2rem;
      text-align: justify;
    }

    .vc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1rem
    }

    .vc-tag {
      font-size: 0.68rem;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.45);
      padding: 0.2rem 0.55rem;
      border-radius: 3px
    }

    .vc-link {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 1rem;
      transition: color 0.2s
    }

    .vc-link:hover {
      color: #fff
    }

    .vent-note {
      font-size: 0.93rem;
      color: var(--ink2);
      line-height: 1.8;
      border-left: 2px solid rgba(232, 86, 42, 0.35);
      padding-left: 1.5rem;
      align-self: center
    }

    .vent-note strong {
      color: var(--ink);
      font-weight: 500
    }

    .vent .vc {
      border-color: var(--border);
      background: #fff
    }

    .vent .vc:hover { border-color: var(--b2) }
    .vent .vc.live { border-color: rgba(34, 197, 94, 0.4) }
    .vent .vc-role { color: var(--ink3) }
    .vent .vc-name { color: var(--ink) }
    .vent .vc-desc { color: var(--ink2) }
    .vent .vc-tag { background: var(--s2); border-color: var(--border); color: var(--ink2) }
    .vent .vc-link { color: var(--ink3); border-top-color: var(--border) }
    .vent .vc-link:hover { color: var(--ink) }

    /* BLOG PREVIEW */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem
    }

    .blog-card {
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 1.5rem;
      transition: border-color 0.2s;
      display: flex;
      flex-direction: column;
      gap: 0.8rem
    }

    .blog-card:hover {
      border-color: var(--border-2)
    }

    .blog-cat {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent)
    }

    .blog-title {
      font-size: 0.95rem;
      font-weight: 500;
      line-height: 1.45;
      flex: 1
    }

    .blog-meta {
      font-size: 0.76rem;
      color: var(--ink-3)
    }

    .blog-read {
      font-size: 0.8rem;
      color: var(--ink);
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: auto
    }

    .blog-read:hover {
      color: var(--accent)
    }

    /* CTA */
    .cta {
      background: var(--ink);
      text-align: center
    }

    .cta .stitle {
      color: #fff;
      margin: 0 auto 1rem
    }

    .cta .ssub {
      color: rgba(255, 255, 255, 0.45);
      margin: 0 auto 2.5rem
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap
    }

    .btn-ghost-l {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.88rem;
      text-decoration: none;
      padding: 0.72rem 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--r);
      transition: all 0.2s
    }

    .btn-ghost-l:hover {
      border-color: rgba(255, 255, 255, 0.5);
      color: #fff
    }

    .cta-note {
      margin-top: 1.8rem;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.45)
    }

    /* NEWSLETTER */
    .nl {
      background: var(--surface-3);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 3rem 2rem
    }

    .nl-i {
      max-width: 520px;
      margin: 0 auto;
      text-align: center
    }

    .nl-i h3 {
      font-family: var(--serif);
      font-size: 1.4rem;
      margin-bottom: 0.5rem
    }

    .nl-i p {
      font-size: 0.85rem;
      color: var(--ink-2);
      margin-bottom: 1.5rem
    }

    .nl-form {
      display: flex;
      gap: 0.5rem;
      max-width: 380px;
      margin: 0 auto
    }

    .nl-form input {
      flex: 1;
      padding: 0.62rem 1rem;
      border: 1px solid var(--border-2);
      border-radius: var(--r);
      font-size: 0.83rem;
      background: var(--surface);
      outline: none;
      font-family: var(--sans)
    }

    .nl-form input:focus {
      border-color: var(--ink)
    }

    .nl-form button {
      padding: 0.62rem 1.1rem;
      background: var(--ink);
      color: #fff;
      border: none;
      border-radius: var(--r);
      font-size: 0.8rem;
      font-family: var(--sans);
      cursor: pointer;
      font-weight: 500;
      white-space: nowrap
    }

      /* FOOTER */
      footer {
        background: #080808;
        color: rgba(255, 255, 255, 0.45);
        padding: 3rem 2rem
      }

      .foot-i {
        max-width: var(--max);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 3rem
      }

      .foot-logo {
        font-family: var(--serif);
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        display: block;
        margin-bottom: 0.8rem
      }

      .foot-logo span {
        color: var(--accent)
      }

      .foot-tag {
        font-size: 0.8rem;
        line-height: 1.6
      }

      .foot-col h3 {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 1rem;
        font-weight: 400
      }

      .foot-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem
      }

      .foot-col a {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.62);
        text-decoration: none;
        transition: color 0.2s
      }

      .foot-col a:hover {
        color: rgba(255, 255, 255, 0.8)
      }

      .foot-social {
        display: flex;
        gap: 1.2rem;
        margin-top: 1rem;
        flex-wrap: wrap
      }

      .foot-social-link {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        transition: color 0.2s
      }

      .foot-social-link:hover {
        color: rgba(255, 255, 255, 0.8)
      }

      .foot-social-link svg {
        flex-shrink: 0
      }

      .foot-btm {
        max-width: var(--max);
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        display: flex;
        justify-content: space-between;
        font-size: 0.73rem;
        color: rgba(255, 255, 255, 0.55);
        flex-wrap: wrap;
        gap: 0.5rem
      }

      .foot-btm a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none
      }

      .foot-btm a:hover {
        color: rgba(255, 255, 255, 0.85)
      }

      @media (max-width: 900px) {
        .foot-i {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
        }

        footer {
        padding: 2.5rem 1.5rem
        }
      }

      @media (max-width: 600px) {
        .foot-i {
        grid-template-columns: 1fr;
        gap: 1.5rem
        }

        footer {
        padding: 2rem 1.25rem
        }

        .foot-logo {
        font-size: 1rem;
        margin-bottom: 0.6rem
        }

        .foot-tag {
        font-size: 0.75rem
        }

        .foot-col h3 {
        font-size: 0.68rem;
        margin-bottom: 0.8rem
        }

        .foot-col a {
        font-size: 0.75rem
        }

        .foot-social {
        gap: 1rem;
        margin-top: 0.8rem
        }

        .foot-social-link {
        font-size: 0.73rem
        }

        .foot-btm {
        flex-direction: column;
        font-size: 0.68rem;
        padding-top: 1rem;
        gap: 0.8rem
        }
      }

    @media(max-width:900px) {

      .prob-grid,
      .conv-grid,
      .uc-grid {
        grid-template-columns: 1fr
      }

      .svc-grid,
      .testi-grid,
      .blog-grid {
        grid-template-columns: 1fr
      }

      .hiw-steps {
        grid-template-columns: 1fr 1fr
      }

      .hiw-steps::before {
        display: none
      }

      .ve-grid {
        grid-template-columns: 1fr 1fr
      }

      .hero-stats {
        display: none
      }
    }

    @media(max-width:600px) {
      section {
        padding: 4rem 1.25rem
      }

      .hero {
        padding: 3.5rem 1.25rem 4rem
      }

      .nl-form {
        flex-direction: column
      }


      .hiw-steps {
        grid-template-columns: 1fr
      }

      .ve-grid {
        grid-template-columns: 1fr
      }
    }

    /* ================= GLOBAL MOBILE FIX ================= */

    @media (max-width: 900px) {

      .prob-grid,
      .conv-grid,
      .uc-grid,
      .vent-intro,
      .vent-cards {
        grid-template-columns: 1fr !important;
      }

      .svc-grid,
      .testi-grid,
      .blog-grid {
        grid-template-columns: 1fr !important;
      }

      .hero-stats {
        display: none !important;
      }

      .hiw-steps {
        grid-template-columns: 1fr 1fr !important;
      }

      .ve-grid {
        grid-template-columns: 1fr 1fr !important;
      }

    }

    @media (max-width: 600px) {

      section {
        padding: 4rem 1.25rem !important;
      }

      .hero {
        padding: 3.5rem 1.25rem !important;
      }

      .hiw-steps,
      .ve-grid {
        grid-template-columns: 1fr !important;
      }
    }

    .sib-captcha {
      min-height: 78px;
    }
