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

    :root {
      --off-white: rgb(247,245,243);
      --charcoal: rgb(27, 28, 47);
      --mid-grey: rgb(64, 66, 82);
      --light-grey: rgb(140,144,157);
      --mint: rgb(127, 176, 142);
      --mint-dark: rgb(14, 33, 5);
      --card-white: rgb(252,252,252);
      --border: rgba(16,17,28,0.1);

      /* ── TYPE SCALE (3 sizes only) ── */
      --t-display: 80px;       /* Playfair, hero */
      --t-heading: 56px;       /* Playfair, section heads */
      --t-body-lg: 22px;       /* Fustat 300, lead / subheadings */
      --t-body: 16px;          /* Fustat 300/400, body copy, UI */
      --t-label: 12px;         /* Fustat 500, caps tags */

      --lh-display: 88px;
      --lh-heading: 62px;
      --lh-body-lg: 1.55;
      --lh-body: 1.6;

      --radii: 3px;
      --radii-l: 16px;

      /* ── LAYOUT ── */
      --margin: 40px;
      --col-pad: 60px;
      --section-v: 100px;
      --section-gap: 8.75rem; /* ~140px */
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Fustat', sans-serif;
      background: transparent;
      color: var(--charcoal);
      overflow-x: hidden;
    }

    .site-container {
      max-width: 2560px;
      margin: 0 auto;
      background: rgb(255,255,255);
    }

    /* ─────────────────────────────────────────
       SHARED PRIMITIVES
    ───────────────────────────────────────── */

    /* Two-column section block — used site-wide */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 700px;
    }

    /* Left content pane */
    .pane {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: var(--section-v) var(--col-pad);
    }
    .pane.dark { background: var(--charcoal); }
    .pane.warm { background: var(--off-white); }

    /* Eyebrow label */
    .label {
      display: inline-flex;
      align-items: center;
      border-radius: 4px;
      padding: 4px 8px 3px;
      font-size: var(--t-label);
      font-weight: 500;
      letter-spacing: 0.06em;
      width: fit-content;
      margin-bottom: 24px;
    }
    .label.mint  { background: var(--mint); color: var(--mint-dark); }
    .label.lavender { background: rgb(230,226,255); color: rgb(55,35,115); }
    .label.sand  { background: rgb(255,237,210); color: rgb(110,58,8); }

    /* Section heading */
    .heading {
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      font-size: var(--t-heading);
      line-height: var(--lh-heading);
      color: var(--charcoal);
      letter-spacing: -0.025em;
      text-wrap: pretty;
    }
    .heading.light { color: var(--off-white); }

    /* Body lead */
    .lead {
      font-family: 'Fustat', sans-serif;
      font-weight: 300;
      font-size: var(--t-body-lg);
      line-height: var(--lh-body-lg);
      color: var(--mid-grey);
    }
    .lead.light { color: rgba(247,245,243,0.65); }
    .lead + .lead { margin-top: 24px; }

    /* Body copy */
    .body {
      font-family: 'Fustat', sans-serif;
      font-weight: 300;
      font-size: var(--t-body);
      line-height: var(--lh-body);
      color: var(--mid-grey);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fustat', sans-serif;
      font-size: 17px;
      font-weight: 400;
      border-radius: var(--radii);
      padding: 11px 24px 9px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: opacity 0.18s;
      white-space: nowrap;
    }
    .btn:hover { opacity: 0.8; }
    .btn.primary { background: var(--charcoal); color: var(--off-white); }
    .btn.inverse { background: var(--off-white); color: var(--charcoal); }
    .btn.outline-light {
      background: rgba(255,255,255,0.08);
      color: var(--off-white);
      border: 1px solid rgba(255,255,255,0.18);
    }

    /* ─────────────────────────────────────────
       LOGO / NAV strip
    ───────────────────────────────────────── */
    .site-logo-strip {
      padding: 32px var(--margin);
    }
    .logo {
     max-width: 120px;  
    height: auto;
    }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    .hero-wrap {
      margin: 0 var(--margin);
    }
    .hero-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 806px;
    }
    .hero-left {
      background: var(--off-white);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 135px var(--col-pad);
      gap: 0;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      font-size: var(--t-display);
      line-height: var(--lh-display);
      color: var(--charcoal);
      letter-spacing: -0.025em;
    }
    .hero-sub {
      font-size: var(--t-body-lg);
      font-weight: 300;
      line-height: var(--lh-body-lg);
      color: var(--mid-grey);
      max-width: 460px;
      margin-top: 20px;
    }
    .hero-cta {
      margin-top: 36px;
    }
    .hero-right {
      background: var(--charcoal);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Mockup */
    .hero-mockup {
      width: 480px;
      
    }
    
    .hero-mockup img {
        border-radius: var(--radii-l);
        max-width: 100%;
    }
    

    /* ─────────────────────────────────────────
       AGENTIC — 2-col matching hero
    ───────────────────────────────────────── */
    .agentic-wrap {
      margin: 60px var(--margin) 0;
    }
    .agentic-eyebrow {
      text-align: center;
      padding: 0 0 52px;
    }
    .agentic-eyebrow .heading {
      font-size: var(--t-heading);
      line-height: var(--lh-heading);
    }
    .agentic-eyebrow .lead {
      margin-top: 12px;
    }

    .agentic-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
      background: var(--charcoal);
    }
    .agentic-left {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 63px var(--col-pad) 63px 80px;
    }
    .agent-card {
      width: 100%;
      max-width: 420px;
      background: white;
      border-radius: var(--radii);
      padding: 36px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .agent-tag {
      display: inline-flex;
      background: var(--mint);
      border-radius: var(--radii);
      padding: 4px 8px 3px;
      font-size: var(--t-label);
      font-weight: 500;
      color: var(--mint-dark);
      width: fit-content;
      letter-spacing: 0.06em;
    }
    .agent-card-title {
      font-size: var(--t-body);
      font-weight: 300;
      line-height: 1.5;
      color: rgb(11,5,39);
      margin-top: 16px;
      margin-bottom: 16px;
    }
    .agent-tasks {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .agent-task-row {
      background: var(--card-white);
      border-radius: var(--radii);
      padding: 7px 10px;
      font-size: 14px;
      color: var(--charcoal);
      display: flex;
      align-items: center;
      gap: 9px;
    }
    .task-check {
      width: 15px; height: 15px;
      border-radius: 50%;
      background: var(--mint);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .task-check svg { width: 8px; height: 8px; }

    .agentic-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 63px 80px 63px var(--col-pad);
    }
    .agentic-right .lead {
      color: rgba(247,245,243,0.75);
      max-width: 380px;
    }
    .agentic-right .lead + .lead { margin-top: 24px; }

    /* ─────────────────────────────────────────
       JIT KNOWLEDGE
    ───────────────────────────────────────── */
    .jit-wrap {
      margin: 0 var(--margin);
    }
    .jit-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 680px;
    }
    .jit-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: var(--section-v) var(--col-pad);
      border-right: 1px solid var(--border);
    }
    .jit-features {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .jit-feature {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .jit-feature-icon {
      width: 48px; height: 48px;
      border-radius: var(--radii);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .jit-feature-icon img { max-width: 100%; }
    .jit-feature-text strong {
      display: block;
      font-size: var(--t-body);
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 3px;
    }
    .jit-feature-text span {
      font-size: var(--t-body);
      font-weight: 300;
      color: var(--mid-grey);
      line-height: var(--lh-body);
    }
    .jit-right {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--section-v) var(--col-pad);
    }
    .jit-visual {    
      width: 100%;
      max-width: 480px;
    }
    
        .jit-visual img {
            border-radius: var(--radii-l);
            max-width: 100%;
        }

    /* ─────────────────────────────────────────
       TRUST / COMPLIANCE
    ───────────────────────────────────────── */
    .trust-wrap {
      margin: 0 var(--margin);
      background: var(--off-white);
      padding: var(--section-v) var(--col-pad);
    }
    .trust-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: end;
      margin-bottom: 56px;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .trust-card {
      background: white;
      border-radius: var(--radii);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .trust-card.dark {
      background: var(--charcoal);
    }
    .trust-card-icon {
      width: 40px; height: 40px;
      border-radius: var(--radii);
      display: flex; align-items: center; justify-content: center;
    }
    .trust-card-icon img { max-width: 100%; }
    .trust-card-title {
      font-size: var(--t-body);
      font-weight: 500;
      color: var(--charcoal);
    }
    .trust-card.dark .trust-card-title { color: var(--off-white); }
    .trust-card-body {
      font-size: var(--t-body);
      font-weight: 300;
      color: var(--mid-grey);
      line-height: var(--lh-body);
    }
    .trust-card.dark .trust-card-body { color: rgba(247,245,243,0.55); }

    /* ─────────────────────────────────────────
       TEMPLATES
    ───────────────────────────────────────── */
    .templates-wrap {
      margin: 0 var(--margin);
      padding: var(--section-v) var(--col-pad);
    }
    .templates-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: end;
      margin-bottom: 52px;
    }
    .templates-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 14px;
    }
    .templates-grid-bottom {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      max-width: calc(66.67% - 5px);
    }
    .template-card {
      border: 1px solid var(--border);
      border-radius: var(--radii);
      padding: 28px 24px 60px;
      cursor: pointer;
      transition: border-color 0.18s, box-shadow 0.18s;
      position: relative;
      background: white;
    }
    .template-card:hover {
      border-color: rgba(40,39,51,0.18);
      background: var(--off-white);
    }
    .template-card.featured {
      background: var(--charcoal);
      border-color: transparent;
    }
    .template-dept {
      font-size: var(--t-label);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--light-grey);
      margin-bottom: 10px;
    }
    .template-card.featured .template-dept { color: rgba(247,245,243,0.35); }
    .template-name {
      font-size: var(--t-body);
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 8px;
    }
    .template-card.featured .template-name { color: var(--off-white); }
    .template-desc {
      font-size: var(--t-body);
      font-weight: 300;
      color: var(--mid-grey);
      line-height: var(--lh-body);
      margin-bottom: 18px;
    }
    .template-card.featured .template-desc { color: rgba(247,245,243,0.5); }
    .template-steps { display: flex; flex-direction: column; gap: 5px; }
    .template-step {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--mid-grey);
    }
    .template-card.featured .template-step { color: rgba(247,245,243,0.5); }
    .template-step-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: rgba(40,39,51,0.2);
      flex-shrink: 0;
    }
    .template-card.featured .template-step-dot { background: rgba(186,233,200,0.45); }
    .template-badge {
      position: absolute;
      top: 18px; right: 18px;
      background: var(--mint);
      border-radius: 4px;
      padding: 3px 8px 2px;
      font-size: 11px;
      font-weight: 500;
      color: var(--mint-dark);
    }
    .template-arrow {
      position: absolute;
      bottom: 22px; right: 22px;
      width: 30px; height: 30px;
      border-radius: 50%;
      background: var(--off-white);
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.18s;
    }
    .template-card.featured .template-arrow { background: rgba(255,255,255,0.1); }
    .template-card:hover .template-arrow { transform: rotate(45deg); }
    .template-arrow svg { width: 12px; height: 12px; }

    /* ─────────────────────────────────────────
       CTA — EDITORIAL, NO RADIUS
    ───────────────────────────────────────── */
    .cta-wrap {
      margin: 0 var(--margin);
    }
    .cta-inner {
      background: var(--charcoal);
      padding: 90px var(--col-pad);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      font-size: var(--t-heading);
      line-height: var(--lh-heading);
      color: var(--off-white);
      letter-spacing: -0.025em;
      margin-bottom: 18px;
      max-width: 560px;
      text-wrap: pretty;
    }
    .cta-body {
      font-size: var(--t-body-lg);
      font-weight: 300;
      color: rgba(247,245,243,0.55);
      line-height: var(--lh-body-lg);
      max-width: 460px;
    }
    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }
    .cta-left-col .cta-actions { margin-top: 36px; }

    /* ── CTA FORM ── */
    .cta-form-col form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .form-row-two {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .cta-form-col input,
    .cta-form-col select,
    .cta-form-col textarea {
      width: 100%;
      background-color: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radii);
      color: var(--off-white);
      font-family: 'Fustat', sans-serif;
      font-size: var(--t-body);
      font-weight: 300;
      padding: 11px 14px;
      outline: none;
      transition: border-color 0.18s, background-color 0.18s;
      -webkit-appearance: none;
      appearance: none;
    }
    .cta-form-col input::placeholder,
    .cta-form-col textarea::placeholder { color: rgba(247,245,243,0.35); }
    .cta-form-col input:focus,
    .cta-form-col select:focus,
    .cta-form-col textarea:focus {
      border-color: rgba(255,255,255,0.28);
      background-color: rgba(255,255,255,0.09);
    }
    .cta-form-col select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='rgba(247%2C245%2C243%2C0.4)' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 14px;
      padding-right: 40px;
      cursor: pointer;
    }
    .cta-form-col select option {
      background-color: rgb(27,28,47);
      color: rgb(247,245,243);
    }
    .cta-form-col textarea {
      resize: vertical;
      min-height: 96px;
    }
    .form-submit-btn {
      width: 100%;
      margin-top: 4px;
    }
    .form-success-msg {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 52px 24px;
      text-align: center;
    }
    .form-success-msg svg { width: 36px; height: 36px; }
    .form-success-msg p {
      font-size: var(--t-body-lg);
      font-weight: 300;
      color: rgba(247,245,243,0.7);
    }
    .form-error-msg {
      display: none;
      flex-direction: row;
      align-items: center;
      gap: 12px;
      margin-top: 12px;
      padding: 14px 16px;
      border-radius: 6px;
      background: rgba(220, 60, 60, 0.12);
      border: 1px solid rgba(220, 60, 60, 0.3);
    }
    .form-error-msg svg { width: 20px; height: 20px; flex-shrink: 0; color: #e05c5c; }
    .form-error-msg p {
      font-size: var(--t-body);
      font-weight: 400;
      color: #e08080;
      margin: 0;
    }

    /* ── FAQ ── */
    .faq-wrap {
      margin: 0 var(--margin);
      padding: var(--section-v) var(--col-pad);
    }
    .faq-header { margin-bottom: 52px; }
    .faq-list { border-top: 1px solid var(--border); }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: none;
      border: none;
      padding: 28px 0;
      cursor: pointer;
      font-family: 'Fustat', sans-serif;
      font-size: var(--t-body-lg);
      font-weight: 300;
      color: var(--charcoal);
      text-align: left;
      gap: 24px;
      transition: color 0.18s;
    }
    .faq-question:hover { color: var(--mid-grey); }
    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--light-grey);
      transition: transform 0.25s ease, color 0.18s;
    }
    .faq-chevron svg { width: 100%; height: 100%; }
    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      color: var(--charcoal);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer p {
      font-size: var(--t-body-lg);
      font-weight: 300;
      line-height: var(--lh-body-lg);
      color: var(--mid-grey);
      max-width: 720px;
      padding-bottom: 28px;
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      background: var(--off-white);
      margin: 0 var(--margin) var(--margin);
      padding: 60px var(--col-pad) 48px;
    }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-brand-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-copy {
      font-size: 14px;
      font-weight: 300;
      color: var(--light-grey);
      line-height: 1.55;
      max-width: 240px;
    }
    .footer-right-col {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 20px;
    }
    .footer-legal {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .footer-legal a {
      font-size: 14px;
      font-weight: 300;
      color: var(--light-grey);
      text-decoration: none;
      transition: color 0.18s;
    }
    .footer-legal a:hover { color: var(--charcoal); }
    .footer-social {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .footer-social a {
      color: var(--light-grey);
      display: flex;
      align-items: center;
      transition: color 0.18s;
    }
    .footer-social a:hover { color: var(--charcoal); }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 1080px) {
      :root { --t-display: 60px; --lh-display: 68px; --t-heading: 44px; --lh-heading: 50px; }
      .hero-mockup { width: 380px; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .templates-grid { grid-template-columns: repeat(2, 1fr); }
      .templates-grid-bottom { max-width: 100%; }
    }
    @media (max-width: 768px) {
      :root { --margin: 20px; --col-pad: 28px; --section-v: 64px; }
      .hero-two-col,
      .agentic-two-col,
      .jit-two-col,
      .trust-header,
      .templates-header,
      .cta-inner { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .jit-left { border-right: none; border-bottom: 1px solid var(--border); }
      .trust-grid { grid-template-columns: 1fr; }
      .templates-grid,
      .templates-grid-bottom { grid-template-columns: 1fr; max-width: 100%; }
      .cta-inner { gap: 32px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .form-row-two { grid-template-columns: 1fr; }
      .faq-question { font-size: var(--t-body); padding: 20px 0; }
      .faq-answer p { font-size: var(--t-body); }
    }