 :root {
        --ink: #0e0e0e;
        --ink2: #1e1e1e;
        --ink3: #2e2e2e;
        --sand: #f4f0e8;
        --sand2: #ede9e0;
        --sand3: #ddd8cc;
        --cream: #faf8f3;
        --rust: #c94f2a;
        --rust2: #e85e35;
        --pine: #1a4a38;
        --pine2: #255c47;
        --mist: #8e9baa;
        --mist2: #b8c2cc;
        --amber: #d9960a;
        --font-d: "Syne", sans-serif;
        --font-b: "DM Sans", sans-serif;
        --font-m: "IBM Plex Mono", monospace;
        --bdr: 1.5px solid #0e0e0e;
        --bdr-l: 1px solid #ddd8cc;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--font-b);
        background: var(--cream);
        color: var(--ink);
        overflow-x: hidden;
        line-height: 1.6;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      /* announce */
      .bar {
        background: var(--ink);
        color: var(--sand);
        padding: 9px 0;
        text-align: center;
        font-family: var(--font-m);
        font-size: 11.5px;
        letter-spacing: 0.04em;
      }
      .bar a {
        color: var(--rust2);
        border-bottom: 1px solid var(--rust2);
      }
      /* nav */
      .nav-wrap {
        background: var(--cream);
        border-bottom: var(--bdr);
        position: sticky;
        top: 0;
        z-index: 100;
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        gap: 20px;
      }
      .brand {
        font-family: var(--font-d);
        font-weight: 800;
        font-size: 1.2rem;
        letter-spacing: -0.02em;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .brand-mark {
        width: 30px;
        height: 30px;
        background: var(--ink);
        color: var(--cream);
        font-family: var(--font-m);
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .nav-links {
        display: flex;
        align-items: center;
      }
      .nav-links a {
        font-size: 0.84rem;
        font-weight: 500;
        padding: 7px 15px;
        color: var(--ink3);
        transition: color 0.15s;
        border-right: var(--bdr-l);
      }
      .nav-links a:first-child {
        border-left: var(--bdr-l);
      }
      .nav-links a:hover {
        color: var(--rust);
      }
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .btn-ink {
        background: var(--ink);
        color: var(--cream);
        font-family: var(--font-m);
        font-size: 0.77rem;
        font-weight: 500;
        padding: 9px 20px;
        border: 1.5px solid var(--ink);
        cursor: pointer;
        transition: background 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        letter-spacing: 0.02em;
      }
      .btn-ink:hover {
        background: var(--rust);
        border-color: var(--rust);
        color: #fff;
      }
      .btn-ghost {
        background: transparent;
        color: var(--ink);
        font-family: var(--font-m);
        font-size: 0.77rem;
        padding: 9px 20px;
        border: 1.5px solid var(--ink);
        cursor: pointer;
        transition: background 0.15s;
        letter-spacing: 0.02em;
      }
      .btn-ghost:hover {
        background: var(--sand2);
      }
      .hamburger {
        display: none;
        background: none;
        border: var(--bdr);
        padding: 6px 10px;
        cursor: pointer;
        font-size: 1rem;
      }
      /* hero */
      .hero {
        border-bottom: var(--bdr);
      }
      .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 88vh;
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 16px;
      }
      .hero-left {
        border-right: var(--bdr);
        padding: 60px 52px 52px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-m);
        font-size: 11px;
        color: var(--mist);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 30px;
      }
      .hero-tag::before {
        content: "";
        width: 20px;
        height: 1.5px;
        background: var(--rust);
      }
      .hero-h1 {
        font-family: var(--font-d);
        font-size: clamp(2.8rem, 5.2vw, 4rem);
        font-weight: 800;
        line-height: 1.04;
        letter-spacing: -0.03em;
        margin-bottom: 26px;
      }
      .hero-h1 em {
        font-style: normal;
        color: var(--rust);
      }
      .hero-sub {
        font-size: 0.98rem;
        font-weight: 300;
        color: var(--ink3);
        line-height: 1.75;
        max-width: 430px;
        margin-bottom: 40px;
      }
      .hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 44px;
      }
      .hero-stats-row {
        display: flex;
        gap: 0;
        border-top: var(--bdr);
        padding-top: 30px;
        margin-top: auto;
        flex-wrap: wrap;
      }
      .h-stat {
        flex: 1;
        padding-right: 20px;
        border-right: var(--bdr-l);
        margin-right: 20px;
        min-width: 80px;
      }
      .h-stat:last-child {
        border-right: none;
        margin-right: 0;
      }
      .h-stat .num {
        font-family: var(--font-d);
        font-size: 1.9rem;
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1;
        margin-bottom: 4px;
      }
      .h-stat .lbl {
        font-family: var(--font-m);
        font-size: 10px;
        color: var(--mist);
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }
      /* hero terminal */
      .hero-right {
        background: var(--ink);
        display: flex;
        flex-direction: column;
      }
      .tbar {
        background: #1a1a1a;
        border-bottom: 1px solid #2e2e2e;
        padding: 11px 18px;
        display: flex;
        align-items: center;
        gap: 7px;
        flex-shrink: 0;
      }
      .tdot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
      }
      .tdot.r {
        background: #ff5f57;
      }
      .tdot.y {
        background: #febc2e;
      }
      .tdot.g {
        background: #28c840;
      }
      .ttitle {
        font-family: var(--font-m);
        font-size: 10.5px;
        color: #555;
        margin-left: 8px;
      }
      .tbody {
        flex: 1;
        padding: 24px 26px;
        font-family: var(--font-m);
        font-size: 12px;
        line-height: 1.9;
        color: #c9d1d9;
        overflow: hidden;
      }
      .tl {
        display: flex;
        gap: 9px;
        align-items: flex-start;
      }
      .tp {
        color: #4a9e6b;
        flex-shrink: 0;
      }
      .tc {
        color: #e3e3e3;
      }
      .to {
        color: #8b949e;
      }
      .to.ok {
        color: #4a9e6b;
      }
      .to.warn {
        color: #d9a220;
      }
      .to.err {
        color: #f85149;
      }
      .to.info {
        color: #58aecf;
      }
      .to.pu {
        color: #a5a0f5;
      }
      .tcursor {
        display: inline-block;
        width: 7px;
        height: 13px;
        background: #e3e3e3;
        vertical-align: middle;
        animation: blink 1.1s step-end infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
      }
      .hfoot {
        background: var(--rust);
        padding: 9px 24px;
        display: flex;
        align-items: center;
        gap: 9px;
        flex-shrink: 0;
      }
      .hfoot span {
        font-family: var(--font-m);
        font-size: 10.5px;
        color: #fff;
        letter-spacing: 0.04em;
      }
      .ldot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #fff;
        animation: pd 1.5s ease-in-out infinite;
        flex-shrink: 0;
      }
      @keyframes pd {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.4;
          transform: scale(0.6);
        }
      }
      /* section base */
      section {
        padding: 84px 0;
      }
      .stag {
        font-family: var(--font-m);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--mist);
        display: flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 18px;
      }
      .stag::before {
        content: "";
        width: 24px;
        height: 1.5px;
        background: var(--rust);
      }
      .sh {
        font-family: var(--font-d);
        font-size: clamp(1.9rem, 3.5vw, 2.7rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.1;
      }
      .sp {
        font-size: 0.93rem;
        color: var(--ink3);
        line-height: 1.75;
        max-width: 500px;
        font-weight: 300;
      }
      /* logos */
      .logos-strip {
        border-top: var(--bdr);
        border-bottom: var(--bdr);
        background: var(--sand);
        padding: 34px 0;
        overflow: hidden;
      }
      .logos-label {
        font-family: var(--font-m);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--mist);
        text-align: center;
        margin-bottom: 20px;
      }
      .logos-track {
        display: flex;
        gap: 52px;
        width: max-content;
        animation: marquee 24s linear infinite;
        align-items: center;
      }
      .lchip {
        display: flex;
        align-items: center;
        gap: 7px;
        font-family: var(--font-m);
        font-size: 16px;
        color: var(--ink3);
        font-weight: 500;
        white-space: nowrap;
      }
      @keyframes marquee {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      /* features */
      .features-section {
        background: var(--sand);
        border-top: var(--bdr);
        border-bottom: var(--bdr);
      }
      .feat-header {
        border-bottom: var(--bdr);
        padding-bottom: 38px;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 20px;
      }
      .feat-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border: var(--bdr);
      }
      .feat-card {
        padding: 30px 26px 26px;
        border-right: var(--bdr);
        border-bottom: var(--bdr);
        position: relative;
        transition: background 0.2s;
        overflow: hidden;
      }
      .feat-card:hover {
        background: var(--cream);
      }
      .feat-card:nth-child(3n) {
        border-right: none;
      }
      .feat-card:nth-last-child(-n + 3) {
        border-bottom: none;
      }
      .feat-num {
        font-family: var(--font-m);
        font-size: 10.5px;
        color: var(--mist);
        letter-spacing: 0.08em;
        margin-bottom: 16px;
      }
      .feat-iw {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        font-size: 1rem;
        transition: background 0.2s;
      }
      .feat-card:hover .feat-iw {
        /* background: var(--ink); */
        color: var(--cream);
      }
      .feat-title {
        font-family: var(--font-d);
        font-size: 0.96rem;
        font-weight: 700;
        margin-bottom: 9px;
        letter-spacing: -0.01em;
      }
      .feat-desc {
        font-size: 0.81rem;
        color: var(--ink3);
        line-height: 1.62;
        font-weight: 300;
      }
      .feat-tag {
        display: inline-block;
        margin-top: 14px;
        font-family: var(--font-m);
        font-size: 9.5px;
        background: var(--ink);
        color: var(--cream);
        padding: 3px 8px;
        letter-spacing: 0.06em;
      }
      /* services */
      .services-section {
        background: var(--cream);
      }
      .svc-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border: var(--bdr);
      }
      .svc-left {
        padding: 48px 44px;
        border-right: var(--bdr);
      }
      .svc-right {
        background: var(--sand);
      }
      .svc-tabs {
        display: flex;
        border-bottom: var(--bdr);
        overflow-x: auto;
      }
      .svc-tab {
        font-family: var(--font-m);
        font-size: 11px;
        font-weight: 500;
        padding: 13px 20px;
        border-right: var(--bdr);
        cursor: pointer;
        letter-spacing: 0.04em;
        white-space: nowrap;
        transition:
          background 0.15s,
          color 0.15s;
        flex-shrink: 0;
      }
      .svc-tab.active {
        background: var(--ink);
        color: var(--cream);
      }
      .svc-tab:hover:not(.active) {
        background: var(--sand3);
      }
      .svc-panel {
        display: none;
        padding: 28px 32px;
      }
      .svc-panel.active {
        display: block;
      }
      .api-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        border: 1px solid var(--sand3);
        margin-bottom: 6px;
        background: var(--cream);
        transition: border-color 0.15s;
      }
      .api-row:hover {
        border-color: var(--ink);
      }
      .mbadge {
        font-family: var(--font-m);
        font-size: 9.5px;
        font-weight: 700;
        width: 42px;
        flex-shrink: 0;
        letter-spacing: 0.04em;
      }
      .mbadge.GET {
        color: var(--pine);
      }
      .mbadge.POST {
        color: #3b6eca;
      }
      .mbadge.PUT {
        color: var(--amber);
      }
      .mbadge.DEL {
        color: var(--rust);
      }
      .epath {
        font-family: var(--font-m);
        font-size: 11px;
        color: var(--ink3);
      }
      .eresp {
        margin-left: auto;
        font-family: var(--font-m);
        font-size: 9.5px;
        color: var(--pine);
        flex-shrink: 0;
      }
      .svc-fl {
        list-style: none;
        margin-top: 28px;
      }
      .svc-fl li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid var(--sand3);
      }
      .svc-fl li:last-child {
        border-bottom: none;
      }
      .svc-ln {
        font-family: var(--font-m);
        font-size: 10.5px;
        color: var(--mist);
        flex-shrink: 0;
        margin-top: 2px;
        width: 18px;
      }
      .svc-lb strong {
        display: block;
        font-family: var(--font-d);
        font-size: 0.88rem;
        font-weight: 700;
        margin-bottom: 2px;
      }
      .svc-lb span {
        font-size: 0.8rem;
        color: var(--ink3);
        font-weight: 300;
        line-height: 1.52;
      }
      /* workflow dark */
      .workflow-section {
        background: var(--ink);
        color: var(--sand);
        border-top: var(--bdr);
        border-bottom: var(--bdr);
      }
      .workflow-section .stag {
        color: #555;
      }
      .workflow-section .stag::before {
        background: var(--rust);
      }
      .workflow-section .sh {
        color: var(--sand);
      }
      .workflow-section .sp {
        color: #777;
      }
      .pipeline-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border: 1px solid #2e2e2e;
        margin-top: 48px;
      }
      .pipeline-left {
        border-right: 1px solid #2e2e2e;
      }
      .ps {
        padding: 20px 26px;
        border-bottom: 1px solid #2e2e2e;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: background 0.15s;
      }
      .ps:hover {
        background: #1a1a1a;
      }
      .ps:last-child {
        border-bottom: none;
      }
      .ps-num {
        font-family: var(--font-m);
        font-size: 16px;
        color: #444;
        flex-shrink: 0;
        width: 26px;
      }
      .ps-body {
        flex: 1;
      }
      .ps-body strong {
        display: block;
        font-family: var(--font-d);
        font-size: 20px;
        font-weight: 700;
        color: var(--sand);
        margin-bottom: 1px;
      }
      .ps-body span {
        font-family: var(--font-m);
        font-size: 14px;
        color: #555;
      }
      .ps-s {
        font-family: var(--font-m);
        font-size: 9.5px;
        padding: 3px 8px;
        flex-shrink: 0;
        letter-spacing: 0.04em;
      }
      .ps-s.done {
        background: #1a3d29;
        color: #4a9e6b;
        border: 1px solid #2a5e3e;
      }
      .ps-s.run {
        background: #3d2a00;
        color: #d9a220;
        border: 1px solid #5e4200;
      }
      .ps-s.wait {
        background: #1e1e1e;
        color: #444;
        border: 1px solid #2a2a2a;
      }
      .pipeline-right {
        padding: 28px 32px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .metric-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 20px;
      }
      .dm {
        background: #1a1a1a;
        border: 1px solid #2e2e2e;
        padding: 16px 18px;
      }
      .dm .dml {
        font-family: var(--font-m);
        font-size: 9.5px;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 5px;
      }
      .dm .dmv {
        font-family: var(--font-d);
        font-size: 1.7rem;
        font-weight: 800;
        color: var(--sand);
        letter-spacing: -0.04em;
      }
      .dm .dms {
        font-family: var(--font-m);
        font-size: 9.5px;
        color: #4a9e6b;
        margin-top: 3px;
      }
      .dm .dms.w {
        color: var(--amber);
      }
      .sparkline {
        margin-top: 8px;
        display: flex;
        align-items: flex-end;
        gap: 3px;
        height: 26px;
      }
      .sbar {
        flex: 1;
        border-radius: 1px;
        background: #2e2e2e;
      }
      .sbar.a {
        background: var(--rust);
      }
      .log-stream {
        background: #111;
        border: 1px solid #2e2e2e;
        padding: 14px;
        font-family: var(--font-m);
        font-size: 10.5px;
        line-height: 1.8;
        flex: 1;
        overflow: hidden;
      }
      .ll {
        display: flex;
        gap: 9px;
      }
      .lts {
        color: #3a3a3a;
        flex-shrink: 0;
      }
      .lm {
        flex-shrink: 0;
        font-weight: 600;
      }
      .lm.GET {
        color: #4a9e6b;
      }
      .lm.POST {
        color: #58aecf;
      }
      .lm.PUT {
        color: #d9a220;
      }
      .lm.DEL {
        color: #f85149;
      }
      .lp {
        color: #555;
      }
      .ls {
        margin-left: auto;
        flex-shrink: 0;
      }
      .ls.ok {
        color: #4a9e6b;
      }
      .ls.er {
        color: #f85149;
      }
      /* arch */
      .arch-section {
        background: var(--cream);
      }
      .arch-big-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        border: var(--bdr);
        margin-top: 48px;
      }
      .arch-main {
        border-right: var(--bdr);
      }
      .arch-cr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: var(--bdr);
      }
      .arch-cr:last-child {
        border-bottom: none;
      }
      .arch-card {
        padding: 26px;
        border-right: var(--bdr);
        transition: background 0.15s;
      }
      .arch-card:last-child {
        border-right: none;
      }
      .arch-card:hover {
        background: var(--sand);
      }
      .arch-card-icon {
        font-size: 1.3rem;
        margin-bottom: 12px;
      }
      .arch-card h4 {
        font-family: var(--font-d);
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 7px;
        letter-spacing: -0.01em;
      }
      .arch-card p {
        font-size: 0.79rem;
        color: var(--ink3);
        line-height: 1.58;
        font-weight: 300;
      }
      .arch-side {
        padding: 28px 24px;
      }
      .arch-st {
        font-family: var(--font-d);
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 18px;
        letter-spacing: -0.02em;
      }
      .ab {
        display: flex;
        align-items: center;
        gap: 8px;
        border: var(--bdr);
        padding: 9px 12px;
        margin-bottom: 8px;
        width: 100%;
        transition: background 0.15s;
        cursor: default;
      }
      .ab:hover {
        background: var(--sand);
      }
      .ab .adot {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
      }
      .ab .adot.g {
        background: var(--pine);
      }
      .ab .adot.r {
        background: var(--rust);
      }
      .ab .adot.a {
        background: var(--amber);
      }
      .ab .al {
        font-family: var(--font-m);
        font-size: 10.5px;
        color: var(--ink3);
      }
      /* testi */
      .testi-section {
        background: var(--sand);
        border-top: var(--bdr);
        border-bottom: var(--bdr);
      }
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border: var(--bdr);
        margin-top: 48px;
      }
      .testi-card {
        padding: 32px 28px;
        border-right: var(--bdr);
        position: relative;
      }
      .testi-card:last-child {
        border-right: none;
      }
      .testi-card::before {
        content: "\201C";
        font-family: var(--font-d);
        font-size: 5rem;
        color: var(--sand3);
        line-height: 1;
        position: absolute;
        top: 12px;
        right: 20px;
        pointer-events: none;
      }
      .testi-stars {
        font-size: 0.6rem;
        color: var(--amber);
        letter-spacing: 3px;
        margin-bottom: 14px;
      }
      .testi-quote {
        font-size: 0.86rem;
        line-height: 1.75;
        color: var(--ink3);
        font-style: italic;
        font-weight: 300;
        margin-bottom: 22px;
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 11px;
      }
      .testi-av {
        width: 38px;
        height: 38px;
        background: var(--ink);
        color: var(--cream);
        font-family: var(--font-m);
        font-size: 10.5px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .testi-name {
        font-family: var(--font-d);
        font-size: 0.83rem;
        font-weight: 700;
      }
      .testi-role {
        font-family: var(--font-m);
        font-size: 9.5px;
        color: var(--mist);
        letter-spacing: 0.04em;
      }
      .testi-tags {
        display: flex;
        gap: 5px;
        margin-top: 12px;
        flex-wrap: wrap;
      }
      .ttag {
        font-family: var(--font-m);
        font-size: 9.5px;
        border: 1px solid var(--sand3);
        padding: 2px 7px;
        color: var(--mist);
      }
      /* blog */
      .blog-section {
        background: var(--cream);
      }
      .blog-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 16px;
      }
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border: var(--bdr);
      }
      .blog-card {
        border-right: var(--bdr);
        display: flex;
        flex-direction: column;
        transition: background 0.15s;
      }
      .blog-card:last-child {
        border-right: none;
      }
      .blog-card:hover {
        background: var(--sand);
      }
      .bthumb {
        height: 165px;
        background: var(--ink);
        position: relative;
        overflow: hidden;
        border-bottom: var(--bdr);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .bthumb-icon {
        font-size: 2.6rem;
        opacity: 0.12;
        color: var(--cream);
      }
      .btag {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--rust);
        color: #fff;
        font-family: var(--font-m);
        font-size: 9.5px;
        font-weight: 500;
        padding: 3px 8px;
        letter-spacing: 0.06em;
      }
      .bbody {
        padding: 22px 22px 26px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .bh {
        font-family: var(--font-d);
        font-size: 0.92rem;
        font-weight: 700;
        line-height: 1.33;
        margin-bottom: 9px;
        letter-spacing: -0.01em;
      }
      .bx {
        font-size: 0.79rem;
        color: var(--ink3);
        line-height: 1.62;
        font-weight: 300;
        flex: 1;
      }
      .bmeta {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-top: 16px;
        padding-top: 12px;
        border-top: 1px solid var(--sand3);
        font-family: var(--font-m);
        font-size: 9.5px;
        color: var(--mist);
      }
      .bdot {
        width: 16px;
        height: 16px;
        background: var(--ink);
        flex-shrink: 0;
      }
      .bread {
        margin-left: auto;
        color: var(--rust);
        display: flex;
        align-items: center;
        gap: 3px;
      }
      /* faq */
      .faq-section {
        background: var(--sand);
        border-top: var(--bdr);
        border-bottom: var(--bdr);
      }
      .faq-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 68px;
        align-items: start;
      }
      .faq-side {
        position: sticky;
        top: 96px;
      }
      .faq-item {
        border-bottom: var(--bdr);
      }
      .faq-item:first-child {
        border-top: var(--bdr);
      }
      .faq-q {
        padding: 18px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        font-family: var(--font-d);
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        user-select: none;
      }
      .faq-q .fi {
        font-family: var(--font-m);
        font-size: 1rem;
        color: var(--rust);
        flex-shrink: 0;
        transition: transform 0.25s;
        line-height: 1;
      }
      .faq-item.open .fi {
        transform: rotate(45deg);
      }
      .faq-ans {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.35s ease,
          padding 0.25s;
        padding: 0;
      }
      .faq-item.open .faq-ans {
        max-height: 200px;
        padding-bottom: 20px;
      }
      .faq-ans p {
        font-size: 0.82rem;
        color: var(--ink3);
        line-height: 1.72;
        font-weight: 300;
      }
      /* cta */
      .cta-section {
        background: var(--ink);
        color: var(--sand);
        padding: 96px 0;
        border-top: var(--bdr);
        position: relative;
        overflow: hidden;
      }
      .cta-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
      }
      .cta-h {
        font-family: var(--font-d);
        font-size: clamp(2.1rem, 3.8vw, 3rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1.07;
        color: #fff;
      }
      .cta-h .acc {
        color: var(--rust2);
      }
      .cta-p {
        font-size: 0.93rem;
        color: #666;
        line-height: 1.72;
        font-weight: 300;
        margin-top: 14px;
        max-width: 360px;
      }
      .cta-right {
        border: 1px solid #2e2e2e;
        padding: 36px;
      }
      .nl-label {
        font-family: var(--font-m);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #444;
        margin-bottom: 14px;
      }
      .nl-row {
        display: flex;
        border: 1px solid #2e2e2e;
      }
      .nl-input {
        flex: 1;
        background: #1a1a1a;
        border: none;
        color: var(--sand);
        font-family: var(--font-m);
        font-size: 0.8rem;
        padding: 11px 16px;
        outline: none;
      }
      .nl-input::placeholder {
        color: #3a3a3a;
      }
      .nl-btn {
        background: var(--rust);
        border: none;
        color: #fff;
        font-family: var(--font-m);
        font-size: 0.77rem;
        padding: 11px 20px;
        cursor: pointer;
        transition: background 0.15s;
        letter-spacing: 0.04em;
        white-space: nowrap;
      }
      .nl-btn:hover {
        background: var(--rust2);
      }
      .cta-br {
        display: flex;
        gap: 11px;
        flex-wrap: wrap;
        margin-top: 28px;
      }
      .btn-cm {
        background: var(--rust);
        color: #fff;
        font-family: var(--font-m);
        font-size: 0.8rem;
        padding: 11px 26px;
        border: 1.5px solid var(--rust);
        cursor: pointer;
        letter-spacing: 0.04em;
        transition: background 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 7px;
      }
      .btn-cm:hover {
        background: var(--rust2);
        color: #fff;
      }
      .btn-cs {
        background: transparent;
        color: var(--sand);
        font-family: var(--font-m);
        font-size: 0.8rem;
        padding: 11px 26px;
        border: 1.5px solid #2e2e2e;
        cursor: pointer;
        letter-spacing: 0.04em;
        transition: border-color 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 7px;
      }
      .btn-cs:hover {
        border-color: #555;
        color: #fff;
      }
      /* footer */
      .footer {
        background: var(--ink);
        border-top: 1px solid #1e1e1e;
        padding: 60px 0 26px;
        color: #555;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 48px;
      }
      .fbrand {
        font-family: var(--font-d);
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--sand);
        margin-bottom: 11px;
        display: flex;
        align-items: center;
        gap: 9px;
      }
      .fbrand-mark {
        width: 24px;
        height: 24px;
        background: var(--rust);
        font-family: var(--font-m);
        font-size: 10px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .fdesc {
        font-size: 0.8rem;
        color: #555;
        line-height: 1.62;
        max-width: 230px;
      }
      .fct {
        font-family: var(--font-m);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #3a3a3a;
        margin-bottom: 14px;
      }
      .fl {
        list-style: none;
      }
      .fl li {
        margin-bottom: 9px;
      }
      .fl a {
        font-size: 0.8rem;
        color: #555;
        transition: color 0.15s;
      }
      .fl a:hover {
        color: var(--sand);
      }
      .fbot {
        border-top: 1px solid #1a1a1a;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 11px;
      }
      .fbot p {
        font-family: var(--font-m);
        font-size: 10px;
        color: #3a3a3a;
      }
      .fsoc {
        display: flex;
      }
      .fsoc a {
        width: 32px;
        height: 32px;
        border: 1px solid #1e1e1e;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem;
        color: #3a3a3a;
        transition:
          color 0.15s,
          border-color 0.15s;
        border-right: none;
      }
      .fsoc a:last-child {
        border-right: 1px solid #1e1e1e;
      }
      .fsoc a:hover {
        color: var(--sand);
        border-color: #3a3a3a;
      }
      /* anim */
      .fade-up {
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.55s ease,
          transform 0.55s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }
      /* responsive */
      @media (max-width: 1100px) {
        .hero-grid {
          grid-template-columns: 1fr;
        }
        .hero-right {
          min-height: 400px;
        }
        .arch-big-grid {
          grid-template-columns: 1fr;
        }
        .arch-main {
          border-right: none;
          border-bottom: var(--bdr);
        }
        .cta-inner {
          grid-template-columns: 1fr;
        }
        .faq-layout {
          grid-template-columns: 1fr;
        }
        .faq-side {
          position: static;
        }
      }
      @media (max-width: 900px) {
        .feat-grid {
          grid-template-columns: 1fr 1fr;
        }
        .feat-card:nth-child(3n) {
          border-right: var(--bdr);
        }
        .feat-card:nth-child(2n) {
          border-right: none;
        }
        .feat-card:nth-last-child(-n + 3) {
          border-bottom: var(--bdr);
        }
        .feat-card:nth-last-child(-n + 2) {
          border-bottom: none;
        }
        .svc-split {
          grid-template-columns: 1fr;
        }
        .svc-left {
          border-right: none;
          border-bottom: var(--bdr);
        }
        .pipeline-grid {
          grid-template-columns: 1fr;
        }
        .pipeline-left {
          border-right: none;
          border-bottom: 1px solid #2e2e2e;
        }
        .testi-grid {
          grid-template-columns: 1fr;
        }
        .testi-card {
          border-right: none;
          border-bottom: var(--bdr);
        }
        .testi-card:last-child {
          border-bottom: none;
        }
        .blog-grid {
          grid-template-columns: 1fr;
        }
        .blog-card {
          border-right: none;
          border-bottom: var(--bdr);
        }
        .blog-card:last-child {
          border-bottom: none;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 700px) {
        .hero-left {
          padding: 36px 20px 36px;
        }
        .hero-grid {
          padding: 0 10px;
        }
        .feat-grid {
          grid-template-columns: 1fr;
        }
        .feat-card {
          border-right: none !important;
          border-bottom: var(--bdr) !important;
        }
        .arch-cr {
          grid-template-columns: 1fr;
        }
        .arch-card {
          border-right: none !important;
          border-bottom: var(--bdr);
        }
        .metric-row {
          grid-template-columns: 1fr;
        }
        .nav-links {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .nav-actions {
          display: none;
        }
      
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .cta-inner {
          gap: 36px;
        }
        .hero-stats-row {
          gap: 12px;
        }
      }
      #mob-nav {
        display: none;
        background: var(--cream);
        border-bottom: var(--bdr);
        padding: 14px 0;
      }
      #mob-nav a {
        display: block;
        padding: 9px 0;
        font-size: 0.88rem;
        color: var(--ink3);
        border-bottom: 1px solid var(--sand3);
      }
      #mob-nav .mob-act {
        padding-top: 12px;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .brand img{
          width: 200px;
      }
      .arch-card-icon img{
          width: 50px;
      }

      .prc-root {
  background: #0a0905;
  color: #e8e2d0;
  font-family: 'Syne', sans-serif;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.prc-root::before {
  content: 'PRICING';
  position: absolute;
  right: -20px; top: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  color: rgba(232,160,32,.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}
.prc-wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ─ section header ─ */
.prc-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid #c94f2a;
}
.prc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(232,160,32,.2);
  line-height: 1;
  margin-bottom: -4px;
}
.prc-title-block .prc-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #c94f2a;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.prc-title-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: #e8e2d0;
  letter-spacing: .03em;
  line-height: .95;
  margin: 0;
}
.prc-title-block h2 em {
  font-style: normal;
  color: #c94f2a;
}

/* ─ toggle ─ */
.toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.toggle-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #6b6450;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
}
.t-opt { color: #6b6450; cursor: pointer; letter-spacing: .04em; transition: color .15s; }
.t-opt.active { color: #e8e2d0; }
.toggle-track {
  width: 44px; height: 22px;
  background: #1c1a12;
  border: 1px solid #3d3b30;
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  transition: background .2s;
}
.toggle-track.on { background: rgba(232,160,32,.2); border-color: #c94f2a; }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: #6b6450;
  border-radius: 50%;
  transition: transform .2s, background .2s;
}
.toggle-track.on .toggle-thumb { transform: translateX(22px); background: #c94f2a; }
.save-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: #c94f2a;
  border: 1px solid rgba(232,160,32,.4);
  padding: 2px 7px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ─ cards grid ─ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #3d3b30;
}

.plan-card {
  border-right: 1px solid #3d3b30;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.plan-card:last-child {/* border-right: none; */}
.plan-card:hover { background: rgba(232,160,32,.025); }

/* Featured card accent */
.plan-card.featured {
  background: rgba(232,160,32,.05);
}
.plan-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #c94f2a;
}

.card-top {
  padding: 28px 26px 22px;
  border-bottom: 1px solid #3d3b30;
}
.plan-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .04em;
  color: #c94f2a;
  line-height: 1;
}
.plan-card.featured .plan-name { color: #c94f2a; }
.popular-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a0905;
  background: #c94f2a;
  padding: 3px 9px;
}
.plan-desc {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: .85rem;
  color: #6b6450;
  line-height: 1.6;
  margin-bottom: 20px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-curr {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  color: #b8b09a;
}
.price-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: #c94f2a;
  letter-spacing: .02em;
  line-height: 1;
  transition: all .3s;
}
.plan-card.featured .price-val { color: #c94f2a; }
.price-per {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #6b6450;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.price-orig {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #3d3b30;
  text-decoration: line-through;
  margin-left: 4px;
}

/* cta button */
.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background .15s, color .15s;
}
.btn-amber {
  background: #c94f2a;
  color: #0a0905;
}
.btn-amber:hover { background: #f0b840; }
.btn-outline {
  background: transparent;
  color: #b8b09a;
  border: 1px solid #3d3b30;
}
.btn-outline:hover { border-color: #c94f2a; color: #c94f2a; }
.btn-dark {
  background: #1c1a12;
  color: #b8b09a;
  border: 1px solid #2a2820;
}
.btn-dark:hover { border-color: #c94f2a; color: #c94f2a; }

.card-features { padding: 20px 26px; flex: 1; }
.feat-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: #3d3b30;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1c1a12;
}
.feat-list { list-style: none; margin-bottom: 16px; }
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 5px 0;
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  color: #b8b09a;
  line-height: 1.45;
}
.feat-list li .chk {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #3d3b30;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  margin-top: 1px;
}
.feat-list li .chk.ok { border-color: rgba(232,160,32,.4); color: #c94f2a; }
.feat-list li .chk.na { color: #2a2820; border-color: #1c1a12; }
.feat-list li.dim { color: #3d3b30; }

/* card footer */
.card-foot {
  padding: 14px 26px 20px;
  border-top: 1px solid #1c1a12;
}
.usage-row {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #6b6450;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.usage-track {
  height: 2px;
  background: #1c1a12;
  position: relative;
  overflow: hidden;
}
.usage-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: #c94f2a;
  transition: width 1s cubic-bezier(.25,.8,.25,1);
}

/* ─ comparison strip ─ */
.compare-strip {
  border: 1px solid #3d3b30;
  border-top: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cmp-cell {
  padding: 14px 18px;
  border-right: 1px solid #3d3b30;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #6b6450;
  letter-spacing: .04em;
}
.cmp-cell:last-child { border-right: none; }
.cmp-cell .cmp-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #c94f2a;
  letter-spacing: .03em;
  display: block;
  line-height: 1.1;
  margin-bottom: 2px;
}
.cmp-cell .cmp-lbl { text-transform: uppercase; letter-spacing: .1em; font-size: 9px; }

/* ─ enterprise row ─ */
.enterprise-row {
  border: 1px solid #3d3b30;
  border-top: 2px solid #c94f2a;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 24px 28px;
  gap: 24px;
  transition: background .2s;
  cursor: pointer;
}
.enterprise-row:hover { background: rgba(232,160,32,.04); }
.ent-left {}
.ent-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: #c94f2a;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ent-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #e8e2d0;
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: 8px;
}
.ent-desc {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: .88rem;
  color: #6b6450;
  line-height: 1.6;
  max-width: 560px;
}
.ent-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.ent-pill {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: #b8b09a;
  border: 1px solid #2a2820;
  padding: 3px 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ent-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.ent-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #c94f2a;
  letter-spacing: .03em;
  text-align: right;
}
.ent-price small {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #6b6450;
  display: block;
  margin-top: 2px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ─ trust strip ─ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
  border: 1px solid #1c1a12;
  background: #0d0c08;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-right: 1px solid #1c1a12;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #6b6450;
  letter-spacing: .04em;
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 14px; color: #3d3b30; }

@media (max-width: 860px) {
  .cards-grid { grid-template-columns: 1fr; }
  .plan-card { border-right: none; border-bottom: 1px solid #3d3b30; }
  .plan-card:last-child { border-bottom: none; }
  .compare-strip { grid-template-columns: 1fr 1fr; }
  .prc-header { grid-template-columns: auto 1fr; }
  .toggle-wrap { display: none; }
  .enterprise-row { grid-template-columns: 1fr; }
  .ent-cta { align-items: flex-start; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
}
.plan-features{
    margin: 0;
    padding: 0;
}
.plan-features li{
    padding: 7px 0;
    border-bottom: 1px solid #e9b6a61a;
}
.plan-features li i{
    color: #c94f2a;
}

/* MOBILE MENU */
#mob-nav{
  display:none;
  width:100%;
  padding-top:20px;
}

#mob-nav.active{
  display:block !important;
}

#mob-nav a{
  display:block;
  padding:14px 0;
  border-bottom:1px solid #ddd;
  text-decoration:none;
  color:#111;
}

.mob-act{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* HAMBURGER */
.hamburger{
  width:42px;
  height:42px;
  border:1px solid #222;
  background:transparent;
  color:#111;
  font-size:22px;
  cursor:pointer;

  display:none;
  align-items:center;
  justify-content:center;
}

/* MOBILE */
@media(max-width:991px){

  .nav-links,
  .nav-actions{
    display:none !important;
  }

  .hamburger{
    display:flex;
  }
}
/* MOBILE MENU DEFAULT HIDDEN */
#mob-nav{
  display:none;
  width:100%;
}

/* WHEN ACTIVE */
#mob-nav.active{
  display:block;
}

/* MOBILE ONLY */
@media(max-width:991px){

  .nav-links,
  .nav-actions{
    display:none;
  }

  .hamburger{
    display:flex;
  }

}

/* DESKTOP */
@media(min-width:992px){

  #mob-nav{
    display:none !important;
  }

}
.mob-act .btn-ink{
    color: #fff!important;
}
.fbrand img{
      width: 200px;
    filter: invert(0.5);
}
.fct {
    font-family: var(--font-m);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c94f2a;
    margin-bottom: 14px;
}