
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Inter+Tight:wght@300..700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink-950: #060914;
  --ink-900: #0B1220;
  --ink-850: #111A2E;
  --ink-800: #16223C;
  --ink-700: #1F2D4D;
  --ink-600: #334060;
  --ink-500: #4A567A;
  --ink-400: #6B7795;
  --paper-50: #F5F3EE;
  --paper-100: #ECE8DD;
  --paper-200: #DDD7C5;
  --paper-300: #C4BCA3;
  --crypto-blue: #0093d5;
  --crypto-blue-dim: #1ea0dc;
  --crypto-blue-bright: #58bdec;
  --crypto-blue-pale: rgba(59, 91, 255, 0.12);
  --regulatory-gold: #D4A04A;
  --regulatory-gold-dim: #B5862D;
  --regulatory-pale: rgba(212, 160, 74, 0.1);
  --seal-red: #C2533D;
  --text-primary: #F0EFE9;
  --text-secondary: #A8AEC1;
  --text-tertiary: #6B7596;
  --text-on-paper: #0B1220;
  --text-on-paper-secondary: #4A567A;

}






  .rn-page,
.rn-page *,
.rn-sidebar,
.rn-sidebar * {
  /* colour tokens */
  --text:       #e2e8f0;          /* primary text */
  --soft:       #94a3b8;          /* secondary / body text */
  --muted:      #64748b;          /* placeholder / meta */
  --border:     rgba(255,255,255,.07);
  --border-md:  rgba(255,255,255,.14);
 
  /* semantic colours */
  --blue:       #60a5fa;
  --green:      #4ade80;
  --yellow:     #fcd34d;
  --orange:     #fb923c;
  --red:        #f87171;
  --purple:     #c4b5fd;
  --cyan:       #67e8f9;
 
  /* surfaces */
  --bg-card:    #0f172a;
  --bg-sidebar: #0d1526;
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink-900);
  color: var(--text-primary);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv01';
}

.display { font-family: 'Cormorant', Georgia, serif; font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.regulatory-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--regulatory-gold); font-weight: 500; }

@keyframes rise { 0% { opacity: 0; transform: translateY(24px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse-blue { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(59, 91, 255, 0.5); } 50% { opacity: 0.6; box-shadow: 0 0 0 10px rgba(59, 91, 255, 0); } }
@keyframes pulse-gold { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 160, 74, 0.4); } 50% { opacity: 0.5; box-shadow: 0 0 0 8px rgba(212, 160, 74, 0); } }
@keyframes seal-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes drift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } }

/* NAV */
nav { 
    /*position: fixed; 
    top: 0; left: 0; 
    right: 0;
     z-index: 100; 
     padding: 1.1rem 2.5rem; 
     display: flex; 
     align-items: center; 
     justify-content: space-between; 
     background: rgba(11, 18, 32, 0.78); 
     backdrop-filter: blur(18px); 
     -webkit-backdrop-filter: blur(18px); 
     border-bottom: 1px solid rgba(51, 64, 96, 0.3); 
     transition: padding 0.3s ease; */
     position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.8rem 2.5rem; /* Reduced padding slightly for a sleeker look */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 18, 32, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(51, 64, 96, 0.3);
}



.logo { display: flex; align-items: center; gap: 0.6rem; font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.4rem; color: var(--text-primary); letter-spacing: 0.01em; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; position: relative; flex-shrink: 0; }
.logo-mark::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--crypto-blue); background: var(--ink-900); }
.logo-mark::after { content: ''; position: absolute; inset: 5px; border-radius: 50%; background: linear-gradient(135deg, var(--crypto-blue), var(--crypto-blue-bright)); clip-path: polygon(50% 0, 60% 50%, 100% 50%, 65% 65%, 80% 100%, 50% 75%, 20% 100%, 35% 65%, 0 50%, 40% 50%); }
.logo-text { font-family: 'Cormorant', serif; font-weight: 600; }
.logo-text em { color: var(--crypto-blue-bright); font-style: normal; font-weight: 700; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.92rem;
  align-items: center; font-weight: 500; transition: color 0.2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }

.nav-links a::after { 
  content: ''; 
  position: absolute;
   bottom: -4px; left: 0; 
   width: 0; 
   height: 1px; 
   background: var(--crypto-blue); 
   transition: width 0.25s ease; 
  }

.nav-links a:hover::after, .nav-links a.active::after { 
  width: 100%; }

.dropdown {
  position: relative;
  display: flex;       /* Add this */
  align-items: center;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px; /* Slightly more gap for a cleaner look */
  cursor: pointer;
  height: 100%; /* Match height of nav */
  padding: 3px 0;
}

.dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px; /* Matches your nav-links a::after */
  left: 0;
  width: 0;
  height: 1px;
  background: var(--crypto-blue);
  transition: width 0.25s ease;
}

.dropdown:hover .dropdown-trigger::after {
  width: 100%;
}

.chevron {
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* The Menu Box */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(11, 18, 32, 0.95); /* Deep dark background */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(51, 64, 96, 0.5);
  border-radius: 8px;
  padding: 0.8rem 0;
  margin-top: 15px; /* Gap for hover safety */
  list-style: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  
  /* Hiding the menu initially */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover Logic */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .chevron {
  transform: rotate(180deg);
  color: var(--crypto-blue);
}

/* Dropdown Individual Links */
.dropdown-menu li a {
  padding: 0.6rem 1.5rem;
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

/* Override the global underline effect for dropdown links if desired */
.dropdown-menu li a::after {
  display: none; 
}

.dropdown-menu li a:hover {
  background: rgba(59, 91, 255, 0.1);
  color: var(--crypto-blue-bright) !important;
  padding-left: 1.8rem; /* Smooth slide effect on hover */
}

/* Transparent bridge to prevent menu from closing when moving mouse down */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}


.cta-btn { background: var(--crypto-blue); color: var(--text-primary); padding: 0.6rem 1.3rem; border-radius: 4px; font-weight: 500; font-size: 0.9rem; text-decoration: none; transition: background 0.2s, box-shadow 0.2s, transform 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-btn:hover { background: var(--crypto-blue-bright); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59, 91, 255, 0.3); }
.cta-btn .arrow { transition: transform 0.2s; }
.cta-btn:hover .arrow { transform: translateX(3px); }
.cta-secondary { color: var(--text-primary); text-decoration: none; padding: 0.6rem 1.3rem; border: 1px solid var(--ink-600); border-radius: 4px; font-weight: 500; font-size: 0.9rem; transition: border-color 0.2s, background 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-secondary:hover { 
    border-color: var(--crypto-blue); 
    background: rgba(59, 91, 255, 0.05);
    transform: translateY(-1px) 
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem; /* Space between Sign In and Request Demo */
}

.btn-signin {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 8px 18px;
  border: 1px solid rgb(255, 255, 255); /* Subtle white border */
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-signin:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1); /* Slight glow on hover */
  transform: translateY(-1px)
}

/* HERO */
.hero { min-height: 100vh; 
    padding: 8rem 2.5rem 5rem; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    overflow: hidden;
    background: radial-gradient(ellipse 800px 600px at 50% 30%, rgba(245,158,11,0.07) 0%, transparent 65%), radial-gradient(circle at center, transparent 30%, var(--ink-950) 100%), linear-gradient(rgba(10, 18, 30, 0.92), rgb(10 18 30 / 60%)), url(img-new/hero_img.png) center center / cover no-repeat, var(--ink-950);
 }


.hero::before 
{ content: ''; 
    position: absolute; 
    width: 1000px; 
    height: 1000px; 
    top: -10%; 
    right: -300px;
    /*background: radial-gradient(circle, rgba(59, 91, 255, 0.08) 0%, transparent 55%); */
    z-index: 0; 
    animation: drift 22s ease-in-out infinite;
    

}


.hero::after { content: ''; position: absolute; width: 700px; height: 700px; bottom: -200px; left: -150px; background: radial-gradient(circle, rgba(212, 160, 74, 0.04) 0%, transparent 60%); z-index: 0; }

/* Hero diagonal grid */
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(51, 64, 96, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 64, 96, 0.12) 1px, transparent 1px); background-size: 64px 64px; z-index: 0; mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%); }

.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.hero-left { max-width: 720px; }
.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.45rem 1rem; background: var(--regulatory-pale); border: 1px solid rgba(212, 160, 74, 0.25); border-radius: 100px; color: var(--regulatory-gold); margin-bottom: 2rem; opacity: 0; animation: rise 0.8s ease-out 0.2s forwards; }
.hero-eyebrow .pulse { width: 6px; height: 6px; background: var(--regulatory-gold); border-radius: 50%; animation: pulse-gold 2s ease-in-out infinite; }

.hero h1 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2.6rem, 6.5vw, 5.8rem); line-height: 0.98; letter-spacing: -0.025em; margin-bottom: 2rem; }
.hero h1 .line { display: block; opacity: 0; animation: rise 1s cubic-bezier(0.2, 0.6, 0.2, 1) forwards; }
.hero h1 .line:nth-child(1) { animation-delay: 0.4s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.55s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.7s; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--crypto-blue-bright); }
.hero h1 .gold { color: var(--regulatory-gold); font-style: italic; font-weight: 400; }

.hero-sub { 
  font-size: clamp(1.05rem, 1.3vw, 1.2rem); 
  color: var(--text-secondary); 
  max-width: 56ch;
   margin-bottom: 2.5rem; 
   opacity: 0; 
   animation: rise 1s ease-out 0.95s forwards;
    line-height: 1.55;
   }


.hero-actions { display: flex; 
  gap: 1rem; 
  align-items: center; 
  flex-wrap: wrap; 
  opacity: 0;
   animation: rise 1s ease-out 1.15s forwards; 
   margin-bottom: 4rem; 
  }

.hero-trust { 
  display: flex; 
  align-items: center; 
  gap: 2rem; 
  padding-top: 2rem;
   border-top: 1px solid var(--ink-600); 
   opacity: 0; 
   animation: rise 1s ease-out 1.35s forwards; 
   flex-wrap: wrap; 
  }

.hero-trust-label { 
  color: var(--text-tertiary); 
  font-family: 'JetBrains Mono', monospace; 
  font-size: 0.72rem; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
}

.hero-trust-items { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.trust-item { color: var(--text-secondary); font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; padding-right: 2rem; border-right: 1px solid var(--ink-500); }
.trust-item:last-child { border-right: none; padding-right: 0; }
.trust-item .check { color: var(--crypto-blue-bright); font-weight: 600; }

/* Hero seal — the conceptual centerpiece */
.hero-seal { width: 360px; height: 360px; position: relative; opacity: 0; animation: fade-in 1.5s ease-out 0.8s forwards; }
.seal-outer { position: absolute; inset: 0; border: 1.5px solid var(--ink-600); border-radius: 50%; }
.seal-mid { position: absolute; inset: 24px; border: 1px dashed var(--crypto-blue); border-radius: 50%; animation: seal-rotate 80s linear infinite; }
.seal-inner { position: absolute; inset: 60px; border: 1.5px solid var(--crypto-blue); border-radius: 50%; background: linear-gradient(135deg, rgba(59, 91, 255, 0.1), rgba(11, 18, 32, 0.8)); display: flex; align-items: center; justify-content: center; flex-direction: column; }
.seal-inner-text { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.18em; color: var(--crypto-blue-bright); text-transform: uppercase; }
.seal-glyph { font-family: 'Cormorant', serif; font-size: 4rem; color: var(--text-primary); font-style: italic; font-weight: 600; line-height: 1; margin: 0.5rem 0; }
.seal-divider { width: 50px; height: 1px; background: var(--crypto-blue); margin: 0.6rem 0; }
.seal-cfr { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; color: var(--regulatory-gold); text-transform: uppercase; }

/* Rotating outer ring text labels */
.seal-labels { position: absolute; inset: 0; animation: seal-rotate 120s linear infinite reverse; }
.seal-label { position: absolute; font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.2em; color: var(--text-tertiary); text-transform: uppercase; }
.seal-label-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.seal-label-2 { right: 18px; top: 50%; transform: translateY(-50%) rotate(90deg); }
.seal-label-3 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.seal-label-4 { left: 18px; top: 50%; transform: translateY(-50%) rotate(-90deg); }

/* SECTION: PROOF — three pillars */
.pillars-section { padding: 6rem 2.5rem; background: var(--paper-50); color: var(--text-on-paper); position: relative; }
.pillars-content { max-width: 1280px; margin: 0 auto; }
.pillars-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4.5rem; align-items: end; }
.pillars-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--crypto-blue); margin-bottom: 1rem; display: block; font-weight: 600; }
.pillars-title { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink-900); }
.pillars-title em { font-style: italic; color: var(--crypto-blue); font-weight: 400; }
.pillars-sub { color: var(--text-on-paper-secondary); font-size: 1.05rem; line-height: 1.6; max-width: 56ch; }

.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--paper-300); border-left: 1px solid var(--paper-300); }
.pillar { padding: 2.8rem 2.2rem; border-right: 1px solid var(--paper-300); border-bottom: 1px solid var(--paper-300); position: relative; transition: background 0.3s; }
.pillar:hover { background: var(--paper-100); }
.pillar-num { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--ink-500); margin-bottom: 1.5rem; letter-spacing: 0.1em; }
.pillar-title { font-family: 'Cormorant', serif; font-weight: 500; font-size: 2rem; line-height: 1.05; letter-spacing: -0.015em; color: var(--ink-900); margin-bottom: 1rem; }
.pillar-title em { font-style: italic; color: var(--crypto-blue); font-weight: 400; }
.pillar-desc { color: var(--text-on-paper-secondary); font-size: 0.97rem; line-height: 1.6; margin-bottom: 1.5rem; }
.pillar-link { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--crypto-blue); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; transition: gap 0.2s; display: inline-flex; align-items: center; gap: 0.4rem; }
.pillar-link:hover { gap: 0.7rem; }

/* SECTION: REGULATORY (the lead) */
.regulated-section { padding: 7rem 2.5rem; background: var(--ink-900); position: relative; overflow: hidden; }
.regulated-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 30%, rgba(59, 91, 255, 0.06) 0%, transparent 40%), radial-gradient(circle at 20% 70%, rgba(212, 160, 74, 0.04) 0%, transparent 40%); pointer-events: none; }
.regulated-content { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }

.regulated-left { position: sticky; top: 100px; }
.regulated-tag { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0.9rem; background: var(--regulatory-pale); border: 1px solid rgba(212, 160, 74, 0.25); border-radius: 100px; color: var(--regulatory-gold); font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 600; }

.regulated-title { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2rem, 3.8vw, 3.8rem); line-height: 1.02; letter-spacing: -0.022em; margin-bottom: 1.5rem; }
.regulated-title em { font-style: italic; color: var(--regulatory-gold); font-weight: 400; }

.regulated-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.65; margin-bottom: 2rem; }
.regulated-desc strong { color: var(--text-primary); font-weight: 500; }

.regulated-cta { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--regulatory-gold); text-decoration: none; padding-bottom: 0.4rem; border-bottom: 1px solid var(--regulatory-gold); font-weight: 500; transition: gap 0.2s; }
.regulated-cta:hover { gap: 0.8rem; }

.regulated-right { display: flex; flex-direction: column; gap: 0; }
.cfr-rule { display: grid; grid-template-columns: 90px 1fr; gap: 1.5rem; padding: 1.6rem 0; border-bottom: 1px solid var(--ink-700); align-items: start; }
.cfr-rule:first-child { border-top: 1px solid var(--ink-700); }
.cfr-num { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--regulatory-gold); font-weight: 600; letter-spacing: 0.05em; padding-top: 0.15rem; }
.cfr-body h4 { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.25rem; line-height: 1.2; color: var(--text-primary); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.cfr-body p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.55; }

/* SECTION: SIGNATURE MANIFESTATION (visual proof) */
.proof-section { padding: 7rem 2.5rem; background: var(--paper-50); color: var(--text-on-paper); }
.proof-content { max-width: 1280px; margin: 0 auto; }
.proof-header { text-align: center; margin-bottom: 4rem; }
.proof-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--crypto-blue); margin-bottom: 1rem; display: block; font-weight: 600; }
.proof-title { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink-900); max-width: 22ch; margin: 0 auto; }
.proof-title em { font-style: italic; color: var(--crypto-blue); font-weight: 400; }

.signature-card-container { max-width: 720px; margin: 0 auto; perspective: 2000px; }
.signature-card { background: white; border: 1px solid var(--paper-300); border-radius: 2px; padding: 3rem 2.5rem; box-shadow: 0 30px 80px rgba(11, 18, 32, 0.18), 0 8px 20px rgba(11, 18, 32, 0.06); transform: rotateX(2deg); transition: transform 0.5s; }
.signature-card:hover { transform: rotateX(0deg); }
.sig-card-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1.5rem; border-bottom: 1px solid var(--paper-300); margin-bottom: 1.8rem; }
.sig-card-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.1rem; color: var(--ink-900); letter-spacing: 0.02em; }
.sig-card-id { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-on-paper-secondary); letter-spacing: 0.05em; }
.sig-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.sig-field { padding: 0.8rem 0; border-bottom: 1px solid var(--paper-200); }
.sig-field-label { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-paper-secondary); margin-bottom: 0.35rem; font-weight: 600; }
.sig-field-value { font-family: 'Inter Tight', sans-serif; font-size: 0.95rem; color: var(--ink-900); font-weight: 500; }
.sig-field-value.crypto { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; color: var(--crypto-blue-dim); }
.sig-card-footer { margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--paper-300); display: flex; justify-content: space-between; align-items: center; }
.sig-stamp { font-family: 'Cormorant', serif; font-style: italic; font-size: 1.4rem; color: var(--crypto-blue); font-weight: 500; padding: 0.3rem 0.8rem; border: 1px solid var(--crypto-blue); border-radius: 2px; }
.sig-cfr-badge { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--regulatory-gold); font-weight: 600; padding: 0.4rem 0.8rem; background: var(--regulatory-pale); border-radius: 2px; }

/* SECTION: PRODUCTS (the three) */
.products-section { padding: 7rem 2.5rem; background: var(--ink-900); }
.products-content { max-width: 1280px; margin: 0 auto; }
.products-header { margin-bottom: 4rem; }
.products-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--crypto-blue); margin-bottom: 1rem; display: block; font-weight: 600; }
.products-title { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em; max-width: 22ch; margin-bottom: 1rem; }
.products-title em { font-style: italic; color: var(--crypto-blue-bright); font-weight: 400; }
.products-sub { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; max-width: 60ch; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.product-card { background: var(--ink-850); border: 1px solid var(--ink-700); padding: 2rem 1.6rem; border-radius: 6px; transition: border-color 0.25s, transform 0.25s, background 0.25s; cursor: pointer; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 1rem; position: relative; overflow: hidden; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--crypto-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.product-card:hover { border-color: var(--crypto-blue); transform: translateY(-3px); background: var(--ink-800); }
.product-card:hover::before { transform: scaleX(1); }
.product-card.featured { background: linear-gradient(135deg, var(--ink-800), var(--ink-850)); border-color: var(--regulatory-gold-dim); }
.product-card.featured::before { background: var(--regulatory-gold); transform: scaleX(1); }
.product-card.featured:hover { border-color: var(--regulatory-gold); }

.product-num { font-family: 'JetBrains Mono', monospace; font-size: 0.66rem; letter-spacing: 0.12em; color: var(--text-tertiary); }
.product-card.featured .product-num { color: var(--regulatory-gold); }
.product-name { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.55rem; line-height: 1; letter-spacing: -0.01em; }
.product-tagline { font-family: 'Cormorant', serif; font-style: italic; font-weight: 400; font-size: 1.05rem; line-height: 1.3; color: var(--crypto-blue-bright); margin-top: -0.3rem; }
.product-card.featured .product-tagline { color: var(--regulatory-gold); }
.product-desc { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.55; }
.product-link { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-top: auto; padding-top: 1rem; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s, color 0.2s; }
.product-card:hover .product-link { gap: 0.7rem; color: var(--text-primary); }

/* CONTRAST SECTION — vs. mainstream signature tools */
.contrast-section { padding: 7rem 2.5rem; background: var(--paper-50); color: var(--text-on-paper); }
.contrast-content { max-width: 1080px; margin: 0 auto; }
.contrast-header { margin-bottom: 4rem; max-width: 720px; }
.contrast-title { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink-900); margin-bottom: 1rem; }
.contrast-title em { font-style: italic; color: var(--crypto-blue); font-weight: 400; }

.contrast-table { border: 1px solid var(--paper-300); background: white; border-radius: 4px; overflow: hidden; }
.contrast-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border-bottom: 1px solid var(--paper-200); }
.contrast-row:last-child { border-bottom: none; }
.contrast-row.head { background: var(--ink-900); color: var(--text-primary); }
.contrast-row.head > div { padding: 1.4rem 1.5rem; font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.contrast-row.head .col-them { color: var(--text-tertiary); }
.contrast-row.head .col-us { color: var(--crypto-blue-bright); }
.contrast-cell { padding: 1.3rem 1.5rem; font-size: 0.95rem; line-height: 1.5; border-right: 1px solid var(--paper-200); }
.contrast-cell:last-child { border-right: none; }
.contrast-criteria { font-weight: 500; color: var(--ink-900); }
.contrast-them { color: var(--text-on-paper-secondary); }
.contrast-us { color: var(--ink-900); font-weight: 500; }
.contrast-us .check { color: var(--crypto-blue); font-weight: 600; margin-right: 0.4rem; }

/* FINAL CTA */
.final-cta { padding: 7rem 2.5rem; background: linear-gradient(180deg, var(--ink-900), var(--ink-950)); border-top: 1px solid var(--ink-700); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; width: 800px; height: 800px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(59, 91, 255, 0.08) 0%, transparent 50%); pointer-events: none; }
.final-content { max-width: 800px; margin: 0 auto; position: relative; }
.final-cta h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2.4rem, 4.5vw, 4rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.final-cta h2 em { font-style: italic; color: var(--crypto-blue-bright); font-weight: 400; }
.final-cta p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.final-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--ink-950); padding: 5rem 2.5rem 2rem; border-top: 1px solid var(--ink-700); }
.footer-content { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 3.5rem; margin-bottom: 4rem; }
.footer-brand { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; margin-top: 1.2rem; max-width: 38ch; }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--text-secondary); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--crypto-blue-bright); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 1.8rem; border-top: 1px solid var(--ink-700); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: var(--text-tertiary); font-size: 0.82rem; }
.footer-copy a {
    color: var(--text-tertiary) !important; 
    text-decoration: none;    
    transition: opacity 0.3s ease;
}

.footer-copy a:hover {
    opacity: 0.8;      
    text-decoration: underline; 
}
.footer-locale { color: var(--text-tertiary); font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { display: none; }
  .pillars-section, .regulated-section, .proof-section, .products-section, .contrast-section, .final-cta, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .pillars-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .regulated-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .regulated-left { position: static; }
  .products-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; border-left: none; }
  .pillar { border-right: none; }
  .contrast-row { grid-template-columns: 1fr; }
  .contrast-cell { border-right: none; border-bottom: 1px solid var(--paper-200); }
  .contrast-cell:last-child { border-bottom: none; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sig-card-body { grid-template-columns: 1fr; }
  .sig-card-header { flex-direction: column; gap: 0.5rem; align-items: start; }
}
@media (max-width: 640px) {
  .footer-content { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem; }
  .hero-trust-items { gap: 1rem; }
  .trust-item { padding-right: 1rem; }
}



/* ==== Signature Page ====/


/* Page-specific styles */

/* SIGNATURE PAGE STYLES */
.page-hero { padding: 9rem 2.5rem 5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 800px; height: 800px; top: -100px; right: -200px; background: radial-gradient(circle, rgba(59, 91, 255, 0.06) 0%, transparent 55%); z-index: 0; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(51, 64, 96, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 64, 96, 0.1) 1px, transparent 1px); background-size: 64px 64px; z-index: 0; mask-image: radial-gradient(ellipse at top, black 25%, transparent 70%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; }

.breadcrumb { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: var(--text-tertiary); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--crypto-blue-bright); }
.breadcrumb-sep { color: var(--ink-500); }
.breadcrumb-current { color: var(--crypto-blue-bright); }

.page-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0.9rem; background: var(--crypto-blue-pale); border: 1px solid rgba(59, 91, 255, 0.2); border-radius: 100px; color: var(--crypto-blue-bright); font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 600; }
.page-eyebrow .pulse { width: 6px; height: 6px; background: var(--crypto-blue-bright); border-radius: 50%; animation: pulse-blue 2s ease-in-out infinite; }

.page-h1 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.98; letter-spacing: -0.025em; margin-bottom: 1.8rem; max-width: 18ch; }
.page-h1 em { font-style: italic; font-weight: 400; color: var(--crypto-blue-bright); }

.page-sub { font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--text-secondary); max-width: 60ch; line-height: 1.6; margin-bottom: 2.2rem; }

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* OVERVIEW with drop cap */
.overview { max-width: 880px; margin: 0 auto; padding: 4rem 2.5rem; }
.overview p { font-size: 1.1rem; line-height: 1.7; color: var(--text-primary); margin-bottom: 1.4rem; }
.overview p:first-child::first-letter { font-family: 'Cormorant', serif; font-weight: 600; font-size: 4rem; float: left; line-height: 0.9; padding-right: 0.6rem; padding-top: 0.3rem; color: var(--crypto-blue-bright); }

/* CAPABILITIES SECTION */
.caps-section { padding: 6rem 2.5rem; background: var(--ink-850); border-top: 1px solid var(--ink-700); }
.caps-content { max-width: 1280px; margin: 0 auto; }
.caps-header { margin-bottom: 4rem; max-width: 56ch; }
.section-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--crypto-blue); margin-bottom: 1rem; display: block; font-weight: 600; }
.section-h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1rem; }
.section-h2 em { font-style: italic; color: var(--crypto-blue-bright); font-weight: 400; }
.section-sub { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; }

.caps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cap-card { background: var(--ink-800); border: 1px solid var(--ink-700); padding: 2rem; border-radius: 6px; transition: border-color 0.25s, transform 0.25s; }
.cap-card:hover { border-color: var(--crypto-blue); transform: translateY(-2px); }
.cap-num { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--crypto-blue-bright); margin-bottom: 1rem; }
.cap-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.45rem; line-height: 1.15; margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.cap-desc { color: var(--text-secondary); font-size: 0.96rem; line-height: 1.6; }

/* AADHAAR SPOTLIGHT (signature-specific section) */
.aadhaar-section { padding: 7rem 2.5rem; background: var(--paper-50); color: var(--text-on-paper); }
.aadhaar-content { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.aadhaar-left h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink-900); margin-bottom: 1.2rem; }
.aadhaar-left h2 em { font-style: italic; color: var(--crypto-blue); font-weight: 400; }
.aadhaar-left p { color: var(--text-on-paper-secondary); font-size: 1.05rem; line-height: 1.65; margin-bottom: 1.2rem; }
.aadhaar-left strong { color: var(--ink-900); font-weight: 500; }

.aadhaar-card { background: var(--ink-900); color: var(--text-primary); padding: 2.5rem; border-radius: 8px; position: relative; overflow: hidden; }
.aadhaar-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(59, 91, 255, 0.15) 0%, transparent 70%); }
.aadhaar-card h3 { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.3rem; margin-bottom: 1.5rem; position: relative; }
.aadhaar-flow { display: flex; flex-direction: column; gap: 1rem; position: relative; }
.flow-step { display: flex; gap: 1rem; align-items: start; padding: 0.8rem 0; border-bottom: 1px solid var(--ink-700); }
.flow-step:last-child { border-bottom: none; }
.flow-num { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--crypto-blue-bright); font-weight: 600; min-width: 28px; padding-top: 0.1rem; }
.flow-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }
.flow-text strong { color: var(--text-primary); font-weight: 500; }




/* === CLM Page === */


/* CLM-specific */
.clm-flow-section { padding: 7rem 2.5rem; background: var(--ink-850); }
.clm-flow-content { max-width: 1280px; margin: 0 auto; }
.clm-flow-header { max-width: 60ch; margin-bottom: 4rem; }
.clm-flow-stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; }
.clm-flow-stage { background: var(--ink-800); border: 1px solid var(--ink-700); padding: 2rem 1.5rem; border-radius: 6px; position: relative; transition: border-color 0.25s, transform 0.25s; }
.clm-flow-stage:hover { border-color: var(--crypto-blue); transform: translateY(-3px); }
.clm-stage-num { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--crypto-blue-bright); margin-bottom: 1rem; font-weight: 600; }
.clm-stage-name { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.5rem; line-height: 1.1; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.clm-stage-desc { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.55; }
.clm-stage-connector { display: none; position: absolute; right: -22px; top: 50%; width: 24px; height: 1px; background: var(--ink-600); }
.clm-flow-stage:not(:last-child) .clm-stage-connector { display: block; }

.differentiator-section { padding: 7rem 2.5rem; background: var(--paper-50); color: var(--text-on-paper); }
.diff-content { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.diff-left h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink-900); margin-bottom: 1.4rem; }
.diff-left h2 em { font-style: italic; color: var(--crypto-blue); font-weight: 400; }
.diff-left p { color: var(--text-on-paper-secondary); font-size: 1.05rem; line-height: 1.65; margin-bottom: 1.2rem; }
.diff-left strong { color: var(--ink-900); font-weight: 600; }

.diff-comparison { display: flex; flex-direction: column; gap: 1.5rem; }
.diff-block { padding: 1.8rem; border-radius: 8px; }
.diff-block-them { background: rgba(193, 83, 61, 0.08); border: 1px solid rgba(193, 83, 61, 0.15); }
.diff-block-us { background: var(--ink-900); color: var(--text-primary); }
.diff-block-label { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.8rem; font-weight: 600; }
.diff-block-them .diff-block-label { color: var(--seal-red); }
.diff-block-us .diff-block-label { color: var(--crypto-blue-bright); }
.diff-block h3 { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.2rem; line-height: 1.2; margin-bottom: 0.6rem; letter-spacing: -0.005em; }
.diff-block-them h3 { color: var(--ink-900); }
.diff-block-us h3 { color: var(--text-primary); }
.diff-block p { font-size: 0.92rem; line-height: 1.6; }
.diff-block-them p { color: var(--text-on-paper-secondary); }
.diff-block-us p { color: var(--text-secondary); }

.caps-section { padding: 6rem 2.5rem; background: var(--ink-850); border-top: 1px solid var(--ink-700); }
.caps-content { max-width: 1280px; margin: 0 auto; }
.caps-header { margin-bottom: 4rem; max-width: 56ch; }
.caps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cap-card { background: var(--ink-800); border: 1px solid var(--ink-700); padding: 2rem; border-radius: 6px; transition: border-color 0.25s, transform 0.25s; }
.cap-card:hover { border-color: var(--crypto-blue); transform: translateY(-2px); }
.cap-num { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--crypto-blue-bright); margin-bottom: 1rem; }
.cap-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.45rem; line-height: 1.15; margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.cap-desc { color: var(--text-secondary); font-size: 0.96rem; line-height: 1.6; }

@media (max-width: 1024px) {
  .clm-flow-stages { grid-template-columns: 1fr; }
  .diff-content { grid-template-columns: 1fr; gap: 2rem; }
  .caps-grid { grid-template-columns: 1fr; }
}


/* === Forms Page ===*/



/* USE-CASES SECTION (the heart of this page) */
.usecases-section { padding: 6rem 2.5rem; background: var(--paper-50); color: var(--text-on-paper); }
.usecases-content { max-width: 1280px; margin: 0 auto; }
.usecases-header { margin-bottom: 4rem; max-width: 56ch; }
.usecases-section .section-eyebrow { color: var(--crypto-blue); }
.usecases-section .section-h2 { color: var(--ink-900); }
.usecases-section .section-h2 em { color: var(--crypto-blue); }
.usecases-section .section-sub { color: var(--text-on-paper-secondary); }

.usecases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.usecase-card { background: white; border: 1px solid var(--paper-300); padding: 2rem; border-radius: 4px; transition: border-color 0.25s, transform 0.25s; }
.usecase-card:hover { border-color: var(--crypto-blue); transform: translateY(-2px); }
.usecase-icon { width: 44px; height: 44px; border-radius: 4px; background: var(--crypto-blue-pale); border: 1px solid rgba(59, 91, 255, 0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-family: 'Cormorant', serif; font-size: 1.4rem; font-style: italic; color: var(--crypto-blue); font-weight: 600; }
.usecase-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.4rem; line-height: 1.15; color: var(--ink-900); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.usecase-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 1rem; display: block; font-weight: 600; }
.usecase-desc { color: var(--text-on-paper-secondary); font-size: 0.95rem; line-height: 1.6; }
.usecase-desc strong { color: var(--ink-900); font-weight: 500; }

/* ANATOMY OF AN ATTESTED FORM (visual demonstration) */
.anatomy-section { padding: 7rem 2.5rem; background: var(--ink-900); }
.anatomy-content { max-width: 1280px; margin: 0 auto; }
.anatomy-header { text-align: center; max-width: 62ch; margin: 0 auto 4rem; }

.anatomy-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; max-width: 1080px; margin: 0 auto; }

/* Mock form — left side */
.form-mock { background: var(--ink-850); border: 1px solid var(--ink-700); border-radius: 8px; padding: 2rem; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); }
.form-mock-header { padding-bottom: 1.2rem; border-bottom: 1px solid var(--ink-700); margin-bottom: 1.5rem; }
.form-mock-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.3rem; color: var(--text-primary); }
.form-mock-meta { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-tertiary); margin-top: 0.4rem; letter-spacing: 0.05em; }
.form-mock-fields { display: flex; flex-direction: column; gap: 1rem; }
.form-mock-field-label { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 0.4rem; font-weight: 600; }
.form-mock-input { background: var(--ink-900); border: 1px solid var(--ink-700); border-radius: 3px; padding: 0.6rem 0.8rem; color: var(--text-primary); font-family: 'Inter Tight', sans-serif; font-size: 0.92rem; }
.form-mock-input.filled { border-color: var(--crypto-blue); color: var(--text-primary); }
.form-mock-attestation { margin-top: 1.4rem; padding: 1rem; background: rgba(212, 160, 74, 0.06); border: 1px solid rgba(212, 160, 74, 0.2); border-radius: 4px; }
.form-mock-attestation-label { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--regulatory-gold); margin-bottom: 0.4rem; font-weight: 600; }
.form-mock-attestation-text { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; font-style: italic; }
.form-mock-button { margin-top: 1.4rem; padding: 0.8rem 1rem; background: var(--crypto-blue); color: white; text-align: center; border-radius: 4px; font-family: 'Inter Tight', sans-serif; font-weight: 500; font-size: 0.92rem; }

/* Right side — explanation */
.anatomy-points { display: flex; flex-direction: column; gap: 1.4rem; }
.anatomy-point { padding: 1.4rem 0; border-bottom: 1px solid var(--ink-700); }
.anatomy-point:last-child { border-bottom: none; }
.anatomy-point-num { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--crypto-blue-bright); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.anatomy-point-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.3rem; color: var(--text-primary); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.anatomy-point-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* DISTRIBUTION SECTION (web link / QR) */
.dist-section { padding: 6rem 2.5rem; background: var(--paper-50); color: var(--text-on-paper); }
.dist-content { max-width: 1080px; margin: 0 auto; }
.dist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.dist-section .section-h2 { color: var(--ink-900); }
.dist-section .section-h2 em { color: var(--crypto-blue); }
.dist-section .section-eyebrow { color: var(--crypto-blue); }

.dist-card { background: white; border: 1px solid var(--paper-300); border-radius: 6px; padding: 2.5rem; text-align: center; }
.dist-card h3 { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.6rem; color: var(--ink-900); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.dist-card p { color: var(--text-on-paper-secondary); font-size: 0.95rem; line-height: 1.55; margin-bottom: 1.5rem; }

.dist-link-box { background: var(--ink-900); padding: 1rem; border-radius: 3px; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--crypto-blue-bright); margin-bottom: 0.5rem; word-break: break-all; }
.dist-link-caption { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-on-paper-secondary); letter-spacing: 0.05em; }

.qr-mock { width: 160px; height: 160px; margin: 0 auto 0.8rem; background: var(--ink-900); border-radius: 4px; padding: 16px; display: flex; align-items: center; justify-content: center; }
.qr-mock-grid { width: 100%; height: 100%; background: white; background-image:
  linear-gradient(45deg, var(--ink-900) 25%, transparent 25%, transparent 75%, var(--ink-900) 75%, var(--ink-900)),
  linear-gradient(-45deg, var(--ink-900) 25%, transparent 25%, transparent 75%, var(--ink-900) 75%, var(--ink-900));
  background-size: 12px 12px; background-position: 0 0, 6px 6px;
}

/* API SECTION */
.api-section { padding: 7rem 2.5rem; background: var(--ink-900); }
.api-content { max-width: 1080px; margin: 0 auto; }
.api-header { max-width: 56ch; margin-bottom: 3rem; }

.api-code-block { background: var(--ink-950); border: 1px solid var(--ink-700); border-radius: 8px; padding: 2rem; font-family: 'JetBrains Mono', monospace; font-size: 0.88rem; line-height: 1.7; color: var(--text-secondary); overflow-x: auto; }
.api-code-comment { color: var(--text-tertiary); }
.api-code-keyword { color: var(--crypto-blue-bright); }
.api-code-string { color: var(--regulatory-gold); }
.api-code-method { color: var(--crypto-blue-bright); font-weight: 600; }

/* FINAL CTA */
.final-cta { padding: 7rem 2.5rem; background: linear-gradient(180deg, var(--ink-900), var(--ink-950)); border-top: 1px solid var(--ink-700); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; width: 800px; height: 800px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(59, 91, 255, 0.08) 0%, transparent 50%); pointer-events: none; }
.final-content { max-width: 800px; margin: 0 auto; position: relative; }
.final-cta h2 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.final-cta h2 em { font-style: italic; color: var(--crypto-blue-bright); font-weight: 400; }
.final-cta p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.final-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .overview { padding: 3rem 1.5rem; }
  .usecases-section, .anatomy-section, .dist-section, .api-section, .final-cta { padding-left: 1.5rem; padding-right: 1.5rem; }
  .usecases-grid { grid-template-columns: 1fr; }
  .anatomy-stack { grid-template-columns: 1fr; }
  .dist-grid { grid-template-columns: 1fr; }
}

/* === Regulated Industries ===*/



/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { display: none; }
  .pillars-section, .regulated-section, .proof-section, .products-section, .contrast-section, .final-cta, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .pillars-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .regulated-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .regulated-left { position: static; }
  .products-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; border-left: none; }
  .pillar { border-right: none; }
  .contrast-row { grid-template-columns: 1fr; }
  .contrast-cell { border-right: none; border-bottom: 1px solid var(--paper-200); }
  .contrast-cell:last-child { border-bottom: none; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sig-card-body { grid-template-columns: 1fr; }
  .sig-card-header { flex-direction: column; gap: 0.5rem; align-items: start; }
}
@media (max-width: 640px) {
  .footer-content { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem; }
  .hero-trust-items { gap: 1rem; }
  .trust-item { padding-right: 1rem; }
}


/* REGULATED-specific */
.reg-mapping-section { padding: 7rem 2.5rem; background: var(--ink-850); border-top: 1px solid var(--ink-700); }
.reg-mapping-content { max-width: 1080px; margin: 0 auto; }
.reg-mapping-header { max-width: 56ch; margin-bottom: 4rem; }
.reg-mapping-section .section-eyebrow { color: var(--regulatory-gold); }
.reg-mapping-section .section-h2 em { color: var(--regulatory-gold); }

.cfr-rule { display: grid; grid-template-columns: 100px 1fr; gap: 1.8rem; padding: 2rem 0; border-bottom: 1px solid var(--ink-700); align-items: start; }
.cfr-rule:first-child { border-top: 1px solid var(--ink-700); }
.cfr-num { font-family: 'JetBrains Mono', monospace; font-size: 0.95rem; color: var(--regulatory-gold); font-weight: 600; letter-spacing: 0.05em; padding-top: 0.15rem; }
.cfr-body h4 { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.4rem; line-height: 1.2; color: var(--text-primary); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.cfr-body p.cfr-rule-text { color: var(--text-tertiary); font-size: 0.9rem; line-height: 1.55; margin-bottom: 0.7rem; font-style: italic; }
.cfr-body p.cfr-mapping { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.cfr-body p.cfr-mapping strong { color: var(--text-primary); font-weight: 500; }

.industries-section { padding: 7rem 2.5rem; background: var(--paper-50); color: var(--text-on-paper); }
.industries-content { max-width: 1280px; margin: 0 auto; }
.industries-header { max-width: 56ch; margin-bottom: 4rem; }
.industries-section .section-h2 { color: var(--ink-900); }
.industries-section .section-h2 em { color: var(--crypto-blue); }
.industries-section .section-eyebrow { color: var(--crypto-blue); }
.industries-section .section-sub { color: var(--text-on-paper-secondary); }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.industry-card { background: white; border: 1px solid var(--paper-300); padding: 2rem; border-radius: 4px; transition: border-color 0.25s, transform 0.25s; }
.industry-card:hover { border-color: var(--regulatory-gold); transform: translateY(-2px); }
.industry-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--regulatory-gold-dim); margin-bottom: 1rem; display: block; font-weight: 600; }
.industry-name { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.45rem; color: var(--ink-900); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.industry-uses { color: var(--text-on-paper-secondary); font-size: 0.92rem; line-height: 1.6; }

.controls-section { padding: 7rem 2.5rem; background: var(--ink-900); }
.controls-content { max-width: 1080px; margin: 0 auto; }
.controls-header { max-width: 56ch; margin-bottom: 4rem; }
.controls-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.control-card { background: var(--ink-850); border: 1px solid var(--ink-700); padding: 2rem; border-radius: 6px; }
.control-icon-stub { width: 36px; height: 36px; border-radius: 4px; background: var(--regulatory-pale); border: 1px solid rgba(212, 160, 74, 0.25); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-family: 'Cormorant', serif; font-style: italic; font-weight: 600; color: var(--regulatory-gold); }
.control-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.4rem; color: var(--text-primary); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.control-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: 1fr; }
  .controls-grid { grid-template-columns: 1fr; }
  .cfr-rule { grid-template-columns: 1fr; gap: 0.5rem; }
}


/* === Pricing Page === */



.pricing-grid-section { padding: 5rem 2.5rem 4rem; background: var(--ink-900); }
.pricing-grid-content { max-width: 1280px; margin: 0 auto; }
.pricing-toggle { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; }
.pricing-toggle-btn { padding: 0.55rem 1.4rem; background: var(--ink-800); border: 1px solid var(--ink-700); color: var(--text-secondary); border-radius: 100px; cursor: pointer; font-size: 0.9rem; font-family: 'Inter Tight', sans-serif; transition: all 0.2s; font-weight: 500; }
.pricing-toggle-btn.active { background: var(--crypto-blue); color: var(--text-primary); border-color: var(--crypto-blue); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; align-items: stretch; }
.tier-card { background: var(--ink-850); border: 1px solid var(--ink-700); padding: 2rem 1.6rem; border-radius: 6px; display: flex; flex-direction: column; gap: 1rem; transition: border-color 0.25s, transform 0.25s; position: relative; }
.tier-card:hover { border-color: var(--crypto-blue); transform: translateY(-3px); }
.tier-card.featured { background: linear-gradient(135deg, var(--ink-800), var(--ink-850)); border-color: var(--regulatory-gold-dim); }
.tier-card.featured::before { content: 'Enhanced'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--regulatory-gold); color: var(--ink-900); font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 100px; font-weight: 700; }
.tier-name { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.5rem; line-height: 1; color: var(--text-primary); }
.tier-price { font-family: 'Cormorant', serif; font-weight: 500; font-size: 2.4rem; line-height: 1; letter-spacing: -0.01em; color: var(--text-primary); }
.tier-price small { font-family: 'Inter Tight', sans-serif; font-size: 0.85rem; font-weight: 400; color: var(--text-tertiary); margin-left: 0.3rem; letter-spacing: 0; }
.tier-billing { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; color: var(--text-tertiary); text-transform: uppercase; }
.tier-card.featured .tier-billing { color: var(--regulatory-gold); }
.tier-features { list-style: none; padding: 0; margin: 1rem 0; display: flex; flex-direction: column; gap: 0.55rem; }
.tier-features li { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.5; padding-left: 1.2rem; position: relative; }
.tier-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--crypto-blue-bright); font-weight: 600; }
.tier-card.featured .tier-features li::before { color: var(--regulatory-gold); }
.tier-features li.highlight { color: var(--text-primary); font-weight: 500; }
.tier-cta { margin-top: auto; padding: 0.7rem 1rem; text-align: center; border-radius: 4px; text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; }
.tier-cta-primary { background: var(--crypto-blue); color: var(--text-primary); }
.tier-cta-primary:hover { background: var(--crypto-blue-bright); }
.tier-cta-gold { background: var(--regulatory-gold); color: var(--ink-900); }
.tier-cta-gold:hover { background: #E6B255; }
.tier-cta-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--ink-600); }
.tier-cta-outline:hover { border-color: var(--crypto-blue); }
.tier-extras { padding: 6rem 2.5rem; background: var(--ink-850); }
.tier-extras-content { max-width: 1080px; margin: 0 auto; }
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.extras-card { background: var(--ink-800); border: 1px solid var(--ink-700); border-radius: 6px; padding: 1.5rem; }
.extras-card h4 { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.2rem; color: var(--text-primary); margin-bottom: 0.4rem; }
.extras-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.55; margin-bottom: 0.6rem; }
.extras-card .price-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--regulatory-gold); font-weight: 600; }

/* pricing page hover */

.has-tooltip {
  cursor: help;
  position: relative;
  /* border-bottom: 1px dotted rgba(255, 255, 255, 0.2); */
}

/* The Tooltip Box */
.has-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  padding: 10px 14px;
  background: #161e2d; /* Matching your dark theme */
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.4;
  border-radius: 6px;
  border: 1px solid var(--crypto-blue);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover Action */
.has-tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Optional: change checkmark color on hover */
.has-tooltip:hover::before {
  color: #ffffff !important;
}



@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
}


/* Blog */

/* Container for the image */
.rt-img-holder {
    width: 100%;
    height: 180px; /* Adjust this height to your liking */
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    background: var(--ink-800); /* Fallback color */
}

/* The actual image */
.rt-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This prevents the image from stretching */
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: Hover effect to match your other cards */
.pillar:hover .rt-img-holder img {
    transform: scale(1.05);
}

.pillar-title a {
    color: inherit;          /* Takes the color from the H3 (usually white/primary) */
    text-decoration: none;   /* Removes the underline */
    transition: color 0.3s ease;
}

/* Visited state - prevents the "Purple" look */
.pillar-title a:visited {
    color: inherit;
}

/* Hover state - makes it interactive */
.pillar-title a:hover {
    color: var(--crypto-blue); /* Use your brand blue here */
    text-decoration: none;            /* Keeps it clean on hover */
}


/*====Security Page -==== */

.sec-categories { display: flex; flex-direction: column; gap: 1rem; }
.sec-category-card { background:var(--paper-50); border: 1px solid var(--ink-400); border-radius: 14px; overflow: hidden;  }
.sec-cat-header { padding: 1.4rem 1.8rem; background: var(--ink-400); border-bottom: 1px solid var(--cream-200); display: flex; justify-content: space-between; align-items: center; color: #ffffff; }
.sec-cat-name { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 1.25rem; color:#ffffff; letter-spacing: -0.02em; }
.sec-cat-count { font-family: 'Inter Tight', sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; color:#ffffff; font-weight: 600; }
.sec-controls-list { padding: 0; }
.sec-control { padding: 1.3rem 1.8rem; border-bottom: 1px solid var(--cream-200); display: grid; grid-template-columns: 60px 1fr 2fr; gap: 1.5rem; align-items: start; transition: background 0.2s; }
.sec-control:last-child { border-bottom: none; }
.sec-control:hover { background: var(--cream-50); }
.sec-num { font-family:'Inter Tight', sans-serif; font-size: 0.85rem; color: var(--crypto-blue); font-weight: 600; padding-top: 0.1rem; }
.sec-name { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--ink-900); line-height: 1.3; padding-top: 0.05rem; letter-spacing: -0.012em; }
.sec-impl { color: var(--ink-700); font-size: 0.94rem; line-height: 1.6; font-family: 'Inter Tight', sans-serif; }
.sec-impl strong { color: var(--ink-900); font-weight: 600; }

/*== = Privacy Policy==== */

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem; /* Space between paragraphs */
}

.policy-list > li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
}

/* Custom bullet to match your brand */
.policy-list > li::before {
  content: "—"; 
  position: absolute;
  left: 0;
  color: var(--regulatory-gold); /* Or var(--crypto-blue) */
  font-weight: bold;
}

.sub-policy-list li {
  margin-bottom: 0.8rem;
  color: var(--ink-850);
}


/* === Terms &amp; Conditions ===*/

.dash-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.dash-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.5;
}


.dash-list li::before {
    content: "—";
    position: absolute;
    left: 0px;
    color: rgb(255, 255, 255);
}




.rn-page {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 100px;
  gap: 36px;
  align-items: flex-start;
  background: transparent;   /* inherits the dark page background */
}
 
/* ── 3. SIDEBAR ── */
.rn-sidebar {
  width: 210px;
  flex-shrink: 0;
  position: sticky;
  top: 88px;                       /* clears your fixed header */
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-md) transparent;
}
.rn-sidebar::-webkit-scrollbar       { width: 3px; }
.rn-sidebar::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 3px; }
 
.sidebar-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 10px;
}
 
.sidebar-nav               { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li            { margin-bottom: 2px; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--soft);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all .18s;
}
.sidebar-nav li a:hover {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-left-color: var(--border-md);
}
.sidebar-nav li a.active {
  background: rgba(79,140,255,.1);
  color: var(--blue);
  border-left-color: var(--blue);
}
.sidebar-nav li a .sv-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(238,122,34,.15);
  color: var(--orange);
  border: 1px solid rgba(238,122,34,.25);
  white-space: nowrap;
}
 
/* ── 4. MAIN CONTENT AREA ── */
.rn-main { flex: 1; min-width: 0; }
 
/* Page header */
.rn-page-header               { margin-bottom: 44px; animation: rnFadeUp .55s ease both; }
.rn-page-header h1            { font-size: clamp(28px,5vw,44px); font-weight: 800; margin-bottom: 10px; color: var(--text); }
.rn-page-header p             { color: var(--soft); font-size: 16px; }
 
.gradient-text {
  background: linear-gradient(135deg, #e2e8f0, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
/* Mobile sidebar button */
.mob-sidebar-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-md);
  border-radius: 10px;
  padding: 9px 16px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 28px;
  font-family: inherit;
}
 
/* ── 5. RELEASE BLOCK ── */
.release-block {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.release-block:last-child { border-bottom: none; margin-bottom: 0; }
 
/* Top bar */
.rel-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
 
/* Version badge */
.rel-version {
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 7px;
  white-space: nowrap;
  letter-spacing: .4px;
}
.rv-a { background: rgba(238,122,34,.15); border: 1px solid rgba(238,122,34,.30); color: #fdba74; }
.rv-b { background: rgba(79,140,255,.15);  border: 1px solid rgba(79,140,255,.30); color: #93c5fd; }
.rv-c { background: rgba(139,92,246,.15);  border: 1px solid rgba(139,92,246,.30); color: #c4b5fd; }
.rv-d { background: rgba(34,197,94,.12);   border: 1px solid rgba(34,197,94,.25);  color: #86efac; }
.rv-e { background: rgba(6,182,212,.12);   border: 1px solid rgba(6,182,212,.25);  color: #67e8f9; }
 
/* Date / meta inline text */
.rel-date-inline {
  font-size: 13px;
  color: var(--muted);
  padding-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.rel-date-inline a { color: var(--blue); text-decoration: none; }
.rel-date-inline a:hover { text-decoration: underline; }
 
/* Tags */
.rel-tags              { display: flex; gap: 6px; flex-wrap: wrap; margin-left: auto; }
.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.tag-new { background: rgba(34,197,94,.10);  color: #4ade80; border: 1px solid rgba(34,197,94,.20); }
.tag-fix { background: rgba(239,68,68,.10);  color: #f87171; border: 1px solid rgba(239,68,68,.20); }
.tag-imp { background: rgba(245,158,11,.10); color: #fcd34d; border: 1px solid rgba(245,158,11,.20); }
.tag-ai  { background: rgba(139,92,246,.12); color: #c4b5fd; border: 1px solid rgba(139,92,246,.25); }
 
/* Release title */
.rel-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
 
/* ── 6. CONTENT SECTIONS ── */
.rel-section               { margin-bottom: 22px; }
.rel-section:last-child    { margin-bottom: 0; }
 
.rel-sec-head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-bottom: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
}
 
/* Section head colours */
.sh-new    { color: #4ade80; }   /* green  */
.sh-fix    { color: #f87171; }   /* red    */
.sh-imp    { color: #fcd34d; }   /* yellow */
.sh-ai     { color: #c4b5fd; }   /* purple */
.sh-data   { color: #67e8f9; }   /* cyan   */
.sh-report { color: #60a5fa; }   /* blue   */
.sh-sec    { color: #fb923c; }   /* orange */
 
/* List */
.rel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.rel-list li {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.rel-list li .bul {
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 5px;
  font-weight: 800;
}
 
/* Bullet colours per section type */
.s-new    .bul { color: #4ade80; }
.s-fix    .bul { color: #f87171; }
.s-imp    .bul { color: #fcd34d; }
.s-ai     .bul { color: #c4b5fd; }
.s-data   .bul { color: #67e8f9; }
.s-report .bul { color: #60a5fa; }
.s-sec    .bul { color: #fb923c; }
 
/* Footer note */
.rel-note {
  margin-top: 18px;
  padding: 13px 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.rel-note strong { color: var(--soft); font-style: normal; }
 
/* ── 7. ANIMATIONS ── */
@keyframes rnFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.release-block { animation: rnFadeUp .5s ease both; }
.release-block:nth-child(1)  { animation-delay: .04s; }
.release-block:nth-child(2)  { animation-delay: .09s; }
.release-block:nth-child(3)  { animation-delay: .14s; }
.release-block:nth-child(4)  { animation-delay: .18s; }
.release-block:nth-child(5)  { animation-delay: .22s; }
.release-block:nth-child(6)  { animation-delay: .26s; }
.release-block:nth-child(7)  { animation-delay: .30s; }
.release-block:nth-child(8)  { animation-delay: .34s; }
.release-block:nth-child(9)  { animation-delay: .38s; }
.release-block:nth-child(10) { animation-delay: .42s; }
.release-block:nth-child(11) { animation-delay: .46s; }
.release-block:nth-child(12) { animation-delay: .50s; }
.release-block:nth-child(13) { animation-delay: .54s; }
.release-block:nth-child(14) { animation-delay: .58s; }
 
/* ── 8. RESPONSIVE ── */
@media (max-width: 900px) {
  .rn-sidebar { display: none; }
  .mob-sidebar-btn { display: flex; }
 
  /* mobile slide-in sidebar */
  .rn-sidebar.mob-open {
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 250px;
    z-index: 500;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-md);
    padding: 68px 16px 32px;
    overflow-y: auto;
    box-shadow: 8px 0 40px rgba(0,0,0,.55);
  }
 
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 499;
    backdrop-filter: blur(4px);
  }
  .sidebar-overlay.open { display: block; }
 
  .rn-page { padding: 32px 20px 80px; }
}
 
@media (max-width: 600px) {
  .rel-topbar { gap: 8px; }
  .rel-tags   { margin-left: 0; }
  .rel-note   { flex-direction: column; gap: 6px; }
}

.rel-list-nested {
  /* Ensure the UL itself isn't hiding bullets */
  list-style-type: disc !important;
  padding-left: 0; 
}

.rel-list-nested li {
  /* Forces the browser to treat this as a list item with a marker */
  display: list-item !important; 
  list-style-type: disc !important; 
  list-style-position: inside; 
  
  padding-left: 0.5rem; 

  color: rgba(255,255,255,0.7);
}

/* Optional: This specifically styles the bullet point itself */
.rel-list-nested li::marker {
  color: var(--regulatory-gold); /* Or any bright color */
  font-size: 1.1em;
}


/* === Tutorials (Guides Page) === */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%; /* Ensures cards in the same row match height */
  display: flex;
  flex-direction: column;
}

.video-thumb-link {
  display: block;
  width: 100%;
  text-decoration: none;
  line-height: 0; /* Critical: prevents extra gap at bottom of link */
}

.video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Perfect 16:9 Aspect Ratio */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000; /* Fallback color */
}

/* Play Icon Overlay */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: var(--regulatory-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.play-icon svg {
  width: 24px;
  height: 24px;
  margin-left: 3px; /* Centers the triangle visually */
}

/* Hover States */
.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--regulatory-gold);
}

.video-card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
  color: var(--regulatory-gold);
}

.video-info {
  padding: 24px;
  flex-grow: 1; /* Pushes content to fill card */
}

.video-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--regulatory-gold);
  margin-bottom: 12px;
}

.video-info h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.2;
}

/*=== Contact section === */

.contact-section {
  padding: 32px 2.5rem;
  background: var(--bg-deep);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Info Panel Styling */
.contact-info-panel .info-item {
  display: flex;
  /* gap: 20px;*/
  margin-top: 40px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--regulatory-gold);
}

.info-item h4 {
  margin-bottom: 5px;
  color: #fff;
}

.info-item a, .info-item p {
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.6;
}

/* Form Panel Styling */
.contact-form-panel {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cesign-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cesign-form input, 
.cesign-form textarea, 
.cesign-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  transition: border-color 0.3s;
}

.cesign-form input:focus, 
.cesign-form select:focus {
  outline: none;
  border-color: var(--regulatory-gold);
}

.w-100 { width: 100%; }

/* Mobile */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}



/* === Validate Document ====*/

/* --- Validation Page Specifics --- */
.validate-section {
    padding: 60px 2.5rem;
    background: var(--bg-deep);
    color: #fff;
}

.validate-container {
    max-width: 1200px;
    margin: 0 auto;
}

.validate-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

/* Upload Panel */
.upload-box {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.file-input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.custom-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.custom-file-label i { font-size: 2.5rem; color: var(--regulatory-gold); }

/* Results Grid */
.validate-results-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

.preview-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    margin: 15px 0;
}

.preview-container iframe { width: 100%; height: 100%; border: none; }

/* Timeline UI */
.custom-timeline {
    position: relative;
    padding-left: 50px;
}

.custom-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.tl-node {
    position: relative;
    margin-bottom: 30px;
}

.tl-icon {
    position: absolute;
    left: -45px;
    width: 30px;
    height: 30px;
    background: var(--bg-deep);
    border: 1px solid var(--regulatory-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--regulatory-gold);
    z-index: 2;
}

.tl-content-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
}

.tl-head {
    font-weight: 600;
    color: var(--regulatory-gold);
    margin-bottom: 8px;
}

/* Status Pills */
.status-pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.status-pill.valid { background: rgba(40, 167, 69, 0.2); color: #28a745; }
.status-pill.invalid { background: rgba(220, 53, 69, 0.2); color: #dc3545; }

@media (max-width: 992px) {
    .validate-results-grid { grid-template-columns: 1fr; }
}

/* Align the button and the error message */
.action-row {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the button */
    gap: 15px;
}

/* Optional: If you want the button to be a bit wider or standard size */
#UploadBtn {
    min-width: 200px;
    justify-content: center;
}

/* Status message styling for "Invalid Document" */
.status-msg.invalid {
    color: #ff4d4d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 77, 77, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
}


/* Billing Page */

.checkout-section {
    padding: 60px 2.5rem;
    background: var(--bg-deep);
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.checkout-card, .summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
}

.checkout-title {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.title-underline {
    height: 4px;
    width: 100px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 30px;
    border-radius: 2px;
}

.title-underline span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--regulatory-gold);
}

.req { color: #ff4d4d; margin-left: 3px; }

/* Sticky Summary */
.order-summary-sidebar {
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.5rem;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.summary-item ul {
    list-style: square;
    padding-left: 18px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--regulatory-gold);
}

.consent-row {
    margin: 30px 0;
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkout-btn {
    padding: 15px 40px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .order-summary-sidebar { position: static; order: -1; }
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}


.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}


.form-group input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.form-group input:focus {
    outline: none;
    border-color: var(--regulatory-gold); 
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15); 
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
}

/* form drop down*/

.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}


.form-group select:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.07);
}

.form-group select:focus {
    outline: none;
    border-color: var(--regulatory-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.form-group select option {
    background-color: #1a1a1a; 
    color: #fff;
    padding: 10px;
}