:root {
    --ink: #080c10;
    --ink2: #111820;
    --g: #0f7a3e;
    --g2: #13a052;
    --g3: #d4f5e3;
    --gold: #d4820a;
    --paper: #e6e6e6;
    --paper2: #eef1eb;
    --muted: #6b7a6e;
    --border: #d5ddd0;
    --white: #ffffff;
    --grad: linear-gradient(135deg, var(--g) 0%, var(--g2) 100%);
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  
  li{
    list-style: none;
  }
  a{
    text-decoration: none; 
  }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    width: 100vw;
    display: flex; align-items: center; justify-content: space-between;
    flex-direction: column;
  }
  
  /* ── CURSOR ── */
  
  /* ── NAV ── */
  nav {
    position: fixed; top: 0;  z-index: 100;
    padding: 0 5vw;
    width: 90vw;
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(245,247,242,0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--g3);
    transition: all .3s;
    border-radius: 0 0 10px 10px;
  }
 
  
  .nav-logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-icon {
     background: var(--ink);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(0 0,78% 0,100% 22%,100% 100%,22% 100%,0 78%);
  }
  .nav-icon span { padding: 10px;font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
   
  .nav-links { display: flex; gap: 30px;  }
  .nav-links a { color: var(--ink2); font-size: 13px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--ink); }

  .nav-cont{
    clip-path: polygon(0 0,78% 0,100% 22%,100% 100%,22% 100%,0 78%);
    background: var(--ink);
  }
  
 .nav-cta a{
    color: #fff;
    padding: 9px 22px; font-size: 12px;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    border: none; text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: background .2s, transform .15s;
    display: inline-block;
  }
  .nav-cta:hover { background: var(--g); transform: translateY(-1px); }
  

  /* ── HERO ── */
  #hero {
    min-height: calc(100vh - 100px);
    padding: 100px 5vw 80px;
    display: grid; grid-template-columns: 1fr auto;
    gap: 60px; align-items: end;
    position: relative; overflow: hidden;
    background-image: url(./img/man.jpg);
     /* background-repeat: no-repeat; */
    /* background-size: cover;
    background-position: center; */
  }
  

  
  .hero-left { position: relative; z-index: 2; }
  
  
  h1.ht {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(38px, 5.5vw, 88px);
    font-weight: 900; line-height: 1.0;
    letter-spacing: -3px; color: var(--ink);
    margin-bottom: 30px;
  }
  h1.ht .block { display: block; }
  h1.ht .rev {
    color: var(--g);
    position: relative; display: inline-block;
  }
  h1.ht .rev::before {
    content: '';
    position: absolute; bottom: 4px; left: 0; right: 0;
    height: 8px; background: var(--g3);
    z-index: -1; transform: skewX(-3deg);
  }
  
  .hero-desc {
    font-size: 17px; color: var(--muted); font-weight: 300;
    max-width: 520px; line-height: 1.75; margin-bottom: 44px;
  }
  
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  
  .btn-filled {
    background: var(--ink); color: #fff;
    padding: 15px 34px; font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; text-decoration: none;
    border: 2px solid var(--ink); display: inline-block;
    transition: all .25s;
  }
  .btn-filled:hover { background: var(--g); border-color: var(--g); transform: translateY(-2px); }
  
  .btn-stroke {
    background: transparent; color: var(--ink);
    padding: 13px 30px; font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
    border: 2px solid var(--border); text-decoration: none;
    display: inline-block; transition: all .25s;
  }
  .btn-stroke:hover { border-color: var(--g); color: var(--g); }
  
 
    /* ── TICKER ── */
    .ticker {
      width: 100vw;
      background: var(--ink);
      padding: 11px 0; overflow: hidden;
      position: relative;
    }
    .ticker-inner {
      display: flex; gap: 0;
      animation: ticker-scroll 28s linear infinite;
      white-space: nowrap; width: max-content;
    }
    .ticker-item {
      font-family: 'Unbounded', sans-serif; font-size: 11px; font-weight: 400;
      color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase;
      padding: 0 40px;
      display: flex; align-items: center; gap: 16px;
    }
    .ticker-dot { width: 5px; height: 5px; background: var(--g2); border-radius: 50%; flex-shrink: 0; }
    @keyframes ticker-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    
    .g-banner, #contact,#hero, footer{
      width: 100vw;
    } 
  /* ── GREEN BANNER ── */
  .g-banner {
    background: var(--g); padding: 70px 5vw;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }
  .g-banner-text { font-family: 'Unbounded', sans-serif; font-size: clamp(18px, 2.5vw, 30px); font-weight: 700; color: #fff; line-height: 1.2; }
  .g-banner-text span { color: rgba(255,255,255,0.5); }
  .g-banner-sub { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 8px; }
  .g-banner-btn {
    background: #fff; color: var(--g);
    padding: 14px 32px; font-size: 13px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none; white-space: nowrap; flex-shrink: 0;
    border: 2px solid #fff; display: inline-block;
    transition: all .2s;
  }
  .g-banner-btn:hover { background: transparent; color: #fff; }

  .gold-bar{ width: 100vw; height:3px; background:linear-gradient(to right, transparent, rgb(199, 172, 22), black, transparent); }

  
  /* ── SERVICES ── */
  #services { padding: 120px 5vw; display: flex; flex-direction: column; align-items: center;}
  
  .sec-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 70px; gap: 40px; flex-wrap: wrap; }
  
  .sec-title-block .sec-tag {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--g); font-weight: 600; margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .sec-title-block .sec-tag::before { content: ''; width: 20px; height: 2px; background: var(--g); }
  
  .sec-h { font-family: 'Unbounded', sans-serif; font-size: clamp(26px, 3.5vw, 48px); font-weight: 800; letter-spacing: -2px; color: var(--ink); }
  .sec-h em { font-style: normal; color: var(--g); }
  
  .sec-aside { max-width: 360px; font-size: 15px; color: var(--muted); line-height: 1.7; }
  
  /* Services — bento grid */
  .bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
  }
  .bento-card {
    background: var(--white); border: 1px solid var(--border);
    padding: 32px 28px; position: relative; overflow: hidden;
    transition: all .3s; group: true; }
  .bento-card::after{
   content: '';
   width: 89%;
   height: 2px;
   background-color: black;
    position: absolute; top: 10px; left: 20px;
    }
  
  
  /* Wide card */
  
  .bc-num {
    position: absolute; bottom: 12px; right: 16px;
    font-family: 'Unbounded', sans-serif; font-size: 60px; font-weight: 900;
    -webkit-text-stroke: 1px var(--g3); color: transparent;
    line-height: 1; user-select: none;
  }

  .bc-title {z-index: 20; font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.5px; line-height: 1.3; transition: color .3s; }
  .bc-desc {    z-index: 10; font-size: 13px; color: var(--muted); line-height: 1.65; transition: color .3s; }
  .bc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 16px; }
  .bc-tag { font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 9px; border: 1px solid var(--border); color: var(--muted); transition: all .3s; }
  .bc-arr { position: absolute; bottom: 20px; right: 20px; font-size: 18px; color: var(--border); transition: color .3s; }
  
  /* ── ABOUT SPLIT ── */
  #about {
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--ink); overflow: hidden;
  }
  .about-left {
    padding: 100px 5vw;
    position: relative; overflow: hidden;
  }
  .about-left::after {
    content: 'DIT';
    position: absolute; bottom: -40px; right: -20px;
    font-family: 'Unbounded', sans-serif; font-size: 200px; font-weight: 900;
    color: rgba(255,255,255,0.025); line-height: 1; user-select: none;
  }
  .about-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--g2); font-weight: 600; margin-bottom: 14px; }
  .about-h { font-family: 'Unbounded', sans-serif; font-size: clamp(28px, 3vw, 44px); font-weight: 800; letter-spacing: -1.5px; color: #fff; margin-bottom: 24px; }
  .about-h em { font-style: normal; color: var(--g2); }
  .about-p { font-size: 20px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 16px; }
  .about-p strong { color: rgba(255,255,255,0.9); font-weight: 500; }
  
  .cert-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
  .cert-chip {
    background: rgba(15,122,62,0.15); border: 1px solid rgba(15,122,62,0.4);
    padding: 7px 14px; font-size: 12px; color: var(--g2); font-weight: 500;
  }
  
  .about-right {
    background: var(--g);
    padding: 100px 5vw;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
  }

  .about-left::before {
    content: '';
    position: absolute; top: -60px; left: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    border: 1px solid var(--g2);
  }
.about-left::after {
    content: '';
    position: absolute; bottom: -80px; right: -110px;
    width: 220px; height: 220px; border-radius: 50%;
    border: 1px solid var(--g2);
  }
  .about-right::before  {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    border: 1px solid rgb(0, 0, 0);
  }
  .about-right::after {
    content: '';
    position: absolute; bottom: -80px; left: -110px;
    width: 220px; height: 220px; border-radius: 50%;
    border: 1px solid rgb(0, 0, 0);
  }
  
  
  .advantage-list { position: relative; z-index: 2; }
  .adv-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: padding-left .2s;
  }
  .adv-item:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
  .adv-item:hover { padding-left: 8px; }
  .adv-n { font-family: 'Unbounded', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); width: 22px; flex-shrink: 0; padding-top: 2px; }
  .adv-title { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; letter-spacing: -0.3px; }
  .adv-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
  
  /* ── MARKETS ── */
  #markets { padding: 120px 5vw; display: flex; flex-direction: column; align-items: center;}
  .mkt-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: var(--border); margin-top: 64px;
  }
  .mkt-cell {
    background: var(--paper); padding: 36px 30px;
    position: relative; overflow: hidden;
    transition: background .3s;
  }
  .mkt-cell::after {
    content: attr(data-num);
    position: absolute; bottom: -16px; right: 12px;
    font-family: 'Unbounded', sans-serif; font-size: 90px; font-weight: 900;
    color: transparent; -webkit-text-stroke: 1px rgba(8,12,16,0.04);
    user-select: none;
  }
  .mkt-cell:hover { background: var(--white); }
  .mkt-cell:hover .mkt-icon-wrap { background: var(--g); }
  .mkt-icon-wrap {
    width: 44px; height: 44px; background: var(--g3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 20px;
    transition: background .3s;
  }
  .mkt-title { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.5px; }
  .mkt-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
  
  /* ── PROCESS ── */
  #process { padding: 120px 5vw; background: var(--paper2); overflow: hidden; position: relative; display: flex; align-items: center;flex-direction: column; justify-content: center;}

  
  .proc-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 70px; position: relative; }
  .proc-row::before {
    content: ''; position: absolute; top: 28px; left: 6%; right: 6%; height: 1px;
    background: linear-gradient(to right, transparent, var(--border), var(--g), var(--border), transparent);
  }
  
  .proc-card { padding: 0 24px; text-align: center; position: relative; z-index: 1; }
  
  .proc-circle {
    width: 56px; height: 56px; margin: 0 auto 28px;
    border: 2px solid var(--g);
    background: var(--paper2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700; color: var(--g);
    position: relative; z-index: 2;
    transition: all .3s;
  }
  .proc-card:hover .proc-circle { background: var(--g); color: #fff; box-shadow: 0 0 0 8px rgba(15,122,62,0.12); }
  .proc-h { font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: -0.3px; margin-bottom: 10px; }
  .proc-p { font-size: 13px; color: var(--muted); line-height: 1.65; }
  
  /* ── CONTACT ── */
  #contact { padding: 0; display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 600px; }
  
  .contact-left {
    background: var(--ink); padding: 100px 5vw;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: center;
  }
  .contact-left::before {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
    background: var(--g);
  }
  .contact-title { font-family: 'Unbounded', sans-serif; font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: #fff; letter-spacing: -1.5px; margin-bottom: 14px; }
  .contact-title em { font-style: normal; color: var(--g2); }
  .contact-sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 44px; }
  
  .c-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .c-row:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
  .c-dot { width: 8px; height: 8px; background: var(--g); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }
  .c-key { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
  .c-val { font-size: 15px; color: rgba(255,255,255,0.85); }
  
  .contact-right { padding: 80px 5vw; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
  
  .form-title { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -1px; margin-bottom: 32px; }
  
  .f { display: flex; flex-direction: column; gap: 14px; }
  .f-r { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .fg { display: flex; flex-direction: column; gap: 6px; }
  .fl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
  .fi, .fs, .fta {
    background: var(--paper); border: 1.5px solid var(--border);
    color: var(--ink); padding: 12px 14px;
    font-family: 'Outfit', sans-serif; font-size: 14px;
    outline: none; width: 100%; transition: border-color .2s, background .2s;
  }
  .fi:focus,.fs:focus,.fta:focus { border-color: var(--g); background: var(--g3); }
  .fs option { background: var(--paper); }
  .fta { resize: vertical; min-height: 110px; }
  .f-sub {
    background: var(--ink); color: #fff; border: 2px solid var(--ink);
    padding: 14px 32px; font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    align-self: flex-start; transition: all .2s;
  }
  .f-sub:hover { background: var(--g); border-color: var(--g); }
  #fok { font-size: 13px; color: var(--g); display: none; margin-top: 4px; font-weight: 500; }
  
  /* ── FOOTER ── */
  footer {
    background: var(--ink2); padding: 52px 5vw 28px;
  }
  .ft-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-wrap: wrap; gap: 36px;
  }
  .ft-brand { max-width: 280px; }
  .ft-brand-name { font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 1px; margin-bottom: 8px; }
  .ft-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
  .ft-col h5 { font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
  .ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .ft-col a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
  .ft-col a:hover { color: var(--g2); }
  .ft-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
  .ft-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
  .ft-green-tag { background: var(--g); color: #fff; padding: 5px 14px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
  
  /* ── ANIMATE ── */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.show { opacity: 1; transform: none; }
  
  /* ── RESPONSIVE ── */
  @media(max-width: 1024px) {
    .bento { grid-template-columns: repeat(2,1fr); }
    .bento-card.wide { grid-column: span 1; }
    .bento-card.tall { grid-row: span 1; }
  }
  @media(max-width: 860px) {
    #hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    #about { grid-template-columns: 1fr; }
    .mkt-row { grid-template-columns: 1fr 1fr; }
    .proc-row { grid-template-columns: 1fr 1fr; }
    .proc-row::before { display: none; }
    #contact { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .ft-top { flex-direction: column; }
  }
  @media(max-width: 600px) {
    .bento { grid-template-columns: 1fr; }
    .mkt-row { grid-template-columns: 1fr; }
    .proc-row { grid-template-columns: 1fr; }
    .f-r { grid-template-columns: 1fr; }
    h1.ht { letter-spacing: -2px; }
    .hero-bg-num { display: none; }
    .sec-h,.about-h,.about-tag { text-align: center;}
    .hero-actions{
      width: 100vw;
      display: grid;
      align-items: center;
      justify-content: center;
    }
    .btn-filled{
      padding: 10px  50px;
    }
    
  }