/* ================================================
   DIORETSA AI — Global Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --blue:        #1D6FFF;
  --blue-dark:   #1558CC;
  --blue-light:  #EBF2FF;
  --black:       #0A0A0A;
  --white:       #FFFFFF;

  --bg:          #FFFFFF;
  --bg-sub:      #F9FAFB;
  --bg-card:     #FFFFFF;
  --text-1:      #0A0A0A;
  --text-2:      #4B5563;
  --text-3:      #9CA3AF;
  --border:      #E5E7EB;
  --border-sub:  #F3F4F6;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.10);
  --shadow-xl:  0 24px 48px rgba(0,0,0,.12);

  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --r-f:   9999px;

  --nav-h: 68px;
  --max-w: 1200px;
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:       #0A0A0A;
    --bg-sub:   #111111;
    --bg-card:  #141414;
    --text-1:   #F9FAFB;
    --text-2:   #9CA3AF;
    --text-3:   #6B7280;
    --border:   #222222;
    --border-sub: #1A1A1A;
    --blue-light: rgba(29,111,255,.12);
  }
}

html.dark {
  --bg:       #0A0A0A;
  --bg-sub:   #111111;
  --bg-card:  #141414;
  --text-1:   #F9FAFB;
  --text-2:   #9CA3AF;
  --text-3:   #6B7280;
  --border:   #222222;
  --border-sub: #1A1A1A;
  --blue-light: rgba(29,111,255,.12);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .3s, color .3s;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.12; letter-spacing: -.025em; color: var(--text-1); }
h1 { font-size: clamp(40px, 5.5vw, 68px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 28px); }
h4 { font-size: 18px; font-weight: 700; }
p { color: var(--text-2); line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 600; border: none;
  cursor: pointer; transition: all .2s; white-space: nowrap;
  text-decoration: none; font-family: inherit;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 0 0 rgba(29,111,255,.4);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 24px rgba(29,111,255,.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--text-1);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-sub); border-color: var(--text-3);
  transform: translateY(-1px);
}
.btn-sm  { padding: 8px 18px; font-size: 14px; }
.btn-lg  { padding: 15px 32px; font-size: 16px; border-radius: var(--r-lg); }
.btn-xl  { padding: 18px 40px; font-size: 17px; border-radius: var(--r-lg); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ===== SECTION ===== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--blue);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.section-tag {
  display: inline-block; padding: 5px 14px;
  background: var(--blue-light); border-radius: var(--r-f);
  font-size: 12px; font-weight: 700; color: var(--blue);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px;
}
.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 18px; color: var(--text-2); max-width: 580px; line-height: 1.65;
  margin-bottom: 48px;
}
.section-sub.c { margin-left: auto; margin-right: auto; text-align: center; }
.tc { text-align: center; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
html.dark .nav.scrolled { background: rgba(10,10,10,.88); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--blue); overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark img { width: 28px; height: 28px; object-fit: contain; }
.logo-text { font-size: 17px; font-weight: 800; letter-spacing: -.4px; color: var(--text-1); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 6px 14px; font-size: 14px; font-weight: 500;
  color: var(--text-2); border-radius: 8px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-1); background: var(--bg-sub); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-login {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 8px 16px; border-radius: 8px; transition: all .2s;
}
.nav-login:hover { color: var(--text-1); background: var(--bg-sub); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; border: none; background: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-1); border-radius: 2px; transition: all .3s;
}

/* Drawer */
.drawer {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 90vw); height: 100vh;
  background: var(--bg); border-left: 1px solid var(--border);
  z-index: 200; padding: 24px;
  display: flex; flex-direction: column; gap: 4px;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.12);
}
.drawer.open { right: 0; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.drawer-close {
  width: 34px; height: 34px; border: 1.5px solid var(--border);
  background: none; border-radius: 8px; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
}
.drawer a {
  display: block; padding: 12px 14px; font-size: 15px; font-weight: 500;
  color: var(--text-1); border-radius: var(--r-md); transition: background .2s;
}
.drawer a:hover { background: var(--bg-sub); }
.drawer .drawer-cta { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.drawer .btn { width: 100%; justify-content: center; }

.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 150; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.overlay.open { opacity: 1; pointer-events: all; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-sub);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
}
.footer-tagline {
  font-size: 14px; color: var(--text-2);
  line-height: 1.6; max-width: 210px; margin: 14px 0 20px;
}
.socials { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px; border: 1.5px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: all .2s;
}
.social-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

.footer-col-title {
  font-size: 12px; font-weight: 700; color: var(--text-1);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: var(--text-2); transition: color .2s;
}
.footer-links a:hover { color: var(--blue); }

.nl-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text-1); }
.nl-sub { font-size: 13px; color: var(--text-2); margin-bottom: 16px; line-height: 1.5; }
.nl-form { display: flex; gap: 8px; }
.nl-input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--r-md); font-size: 14px; font-family: inherit;
  background: var(--bg); color: var(--text-1); outline: none; transition: border-color .2s;
}
.nl-input:focus { border-color: var(--blue); }
.nl-input::placeholder { color: var(--text-3); }

.footer-bottom {
  margin-top: 56px; padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-copy { font-size: 13px; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-3); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--text-2); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(29,111,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,111,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-radial {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at 50% 30%, rgba(29,111,255,.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 820px; margin: 0 auto; padding: 80px 24px 64px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--r-f);
  background: var(--blue-light); border: 1px solid rgba(29,111,255,.2);
  font-size: 13px; font-weight: 500; color: var(--blue); margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 76px); font-weight: 900;
  letter-spacing: -.035em; line-height: 1.03; margin-bottom: 24px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--blue) 0%, #7B9FFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; color: var(--text-2); max-width: 560px;
  margin: 0 auto 40px; line-height: 1.65;
}
.hero-actions {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; flex-wrap: wrap; margin-bottom: 72px;
}

/* ===== PIPELINE SVG ===== */
.pipeline-wrap { max-width: 800px; margin: 0 auto; }
.pipeline-svg { width: 100%; height: auto; display: block; }

/* ===== SOCIAL PROOF ===== */
.proof { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-cap {
  text-align: center; font-size: 12px; font-weight: 600;
  color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 32px;
}
.proof-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.proof-logo {
  font-size: 16px; font-weight: 800; color: var(--text-3);
  letter-spacing: -.5px; opacity: .55; transition: opacity .2s;
  white-space: nowrap;
}
.proof-logo:hover { opacity: .9; }

/* ===== STATS ===== */
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
}
.stat-card { background: var(--bg); padding: 40px 28px; text-align: center; }
.stat-card:hover { background: var(--bg-sub); }
.stat-n {
  font-size: clamp(36px, 4vw, 54px); font-weight: 900;
  color: var(--blue); letter-spacing: -.04em; line-height: 1; margin-bottom: 8px;
}
.stat-l { font-size: 14px; color: var(--text-2); line-height: 1.45; }

/* ===== FEATURES GRID ===== */
.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
}
.feat-card { background: var(--bg); padding: 36px 32px; transition: background .2s; }
.feat-card:hover { background: var(--bg-sub); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; color: var(--blue); flex-shrink: 0;
}
.feat-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.2px; }
.feat-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.hiw { background: var(--bg-sub); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); position: relative; }
.step {
  padding: 48px 40px; text-align: center; position: relative;
}
.step + .step {
  border-left: 1px solid var(--border);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--blue);
  color: #fff; font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.step-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--text-2); line-height: 1.65; }

/* ===== USE CASES ===== */
.uc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.uc-card {
  padding: 36px; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  cursor: pointer; transition: all .2s; background: var(--bg-card);
}
.uc-card:hover {
  border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-lg);
}
.uc-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--blue); flex-shrink: 0; }
.uc-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.uc-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1D6FFF 0%, #0048CC 100%);
  border-radius: var(--r-xl); padding: 80px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: #fff; position: relative; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 18px; margin-bottom: 36px; position: relative; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 130px 0 80px;
  border-bottom: 1px solid var(--border); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: var(--bg-sub);
  background-image:
    linear-gradient(rgba(29,111,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,111,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ===== PRODUCT — DEEP DIVES ===== */
.deep-dive {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--border);
}
.deep-dive:last-child { border-bottom: none; }
.deep-dive.flip { direction: rtl; }
.deep-dive.flip > * { direction: ltr; }
.deep-visual {
  border-radius: var(--r-xl); background: var(--bg-sub);
  border: 1.5px solid var(--border); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.deep-content .section-tag { margin-bottom: 16px; }
.deep-content h3 { font-size: 28px; margin-bottom: 16px; }
.deep-content p  { margin-bottom: 24px; line-height: 1.7; }
.deep-list { display: flex; flex-direction: column; gap: 10px; }
.deep-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); }
.deep-list li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Integrations */
.int-cat { margin-bottom: 40px; }
.int-cat-title {
  font-size: 12px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
.int-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.int-item {
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 16px 8px; text-align: center; cursor: pointer;
  transition: all .2s; background: var(--bg-card);
}
.int-item:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.int-icon { width: 36px; height: 36px; border-radius: 9px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.int-name { font-size: 11px; font-weight: 600; color: var(--text-2); }

/* Security/Compliance */
.comp-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.comp-badge {
  padding: 14px 28px; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); font-size: 13px; font-weight: 700;
  color: var(--text-2); text-transform: uppercase; letter-spacing: .06em;
  background: var(--bg-card); display: flex; align-items: center; gap: 8px;
}
.comp-check { color: var(--blue); font-size: 16px; }

/* ===== SOLUTIONS — TABS ===== */
.tabs-bar {
  display: flex; gap: 4px; padding: 6px;
  background: var(--bg-sub); border: 1px solid var(--border);
  border-radius: var(--r-lg); margin-bottom: 48px; flex-wrap: wrap;
}
.tab-btn {
  flex: 1; padding: 10px 20px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none;
  background: transparent; color: var(--text-2); font-family: inherit;
  transition: all .2s; white-space: nowrap; min-width: max-content;
}
.tab-btn.active { background: var(--bg); color: var(--text-1); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sol-pain, .sol-outcome {
  padding: 20px 24px; border-radius: var(--r-lg);
  margin-bottom: 20px;
}
.sol-pain { background: rgba(239,68,68,.06); border-left: 3px solid #EF4444; }
.sol-outcome { background: rgba(29,111,255,.06); border-left: 3px solid var(--blue); }
.sol-pain-label, .sol-outcome-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 8px;
}
.sol-pain-label { color: #EF4444; }
.sol-outcome-label { color: var(--blue); }
.sol-pain p, .sol-outcome p { font-size: 14px; line-height: 1.6; }
.sol-outcome .outcome-stat {
  font-size: 28px; font-weight: 900; color: var(--blue);
  letter-spacing: -.04em; display: block; margin-bottom: 4px;
}
.sol-solution-list { display: flex; flex-direction: column; gap: 12px; }
.sol-solution-item { display: flex; align-items: flex-start; gap: 12px; }
.sol-solution-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; color: var(--blue); flex-shrink: 0; font-size: 14px;
}
.sol-solution-item p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
.sol-visual {
  border-radius: var(--r-xl); background: var(--bg-sub);
  border: 1.5px solid var(--border); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}

/* ===== PRICING ===== */
.price-toggle-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 48px;
}
.toggle-label { font-size: 14px; font-weight: 500; color: var(--text-2); }
.toggle-switch { position: relative; width: 46px; height: 26px; display: inline-block; }
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track {
  position: absolute; inset: 0; background: var(--border);
  border-radius: 13px; cursor: pointer; transition: background .3s;
}
.toggle-track::before {
  content: ''; position: absolute; left: 3px; top: 3px;
  width: 20px; height: 20px; background: #fff;
  border-radius: 50%; transition: transform .3s; box-shadow: var(--shadow-sm);
}
.toggle-switch input:checked + .toggle-track { background: var(--blue); }
.toggle-switch input:checked + .toggle-track::before { transform: translateX(20px); }
.annual-pill {
  background: rgba(16,185,129,.12); color: #059669;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--r-f); letter-spacing: .04em; text-transform: uppercase;
  display: none;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; align-items: start;
}
.price-card {
  border: 1.5px solid var(--border); border-radius: var(--r-xl);
  background: var(--bg-card); padding: 36px;
  position: relative; transition: all .2s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29,111,255,.08);
}
.featured-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: var(--r-f); white-space: nowrap; letter-spacing: .04em;
}
.price-plan { font-size: 13px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-amount { font-size: 50px; font-weight: 900; color: var(--text-1); letter-spacing: -.05em; line-height: 1; }
.price-per { font-size: 15px; color: var(--text-2); }
.price-desc { font-size: 14px; color: var(--text-2); margin-bottom: 28px; line-height: 1.55; }
.price-divider { height: 1px; background: var(--border); margin: 24px 0; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.5; }
.pf-check {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-top: 1px; font-size: 10px;
}

/* Comparison table */
.comp-table-wrap { margin-top: 72px; overflow-x: auto; }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th,
.comp-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.comp-table th { font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); background: var(--bg-sub); }
.comp-table td:first-child { font-weight: 500; color: var(--text-1); }
.comp-table td { color: var(--text-2); }
.comp-yes { color: var(--blue); font-weight: 700; }
.comp-no  { color: var(--text-3); }
.comp-table tr:hover td { background: var(--bg-sub); }

/* FAQ */
.faq-list { border: 1.5px solid var(--border); border-radius: var(--r-xl); overflow: hidden; margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-size: 15px; font-weight: 600; color: var(--text-1);
  cursor: pointer; transition: background .2s; user-select: none;
}
.faq-q:hover { background: var(--bg-sub); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px;
  background: var(--bg-sub); display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-3); transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-light); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 4px 24px 20px; font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ===== ABOUT ===== */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 5px; top: 10px; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item::before {
  content: ''; position: absolute; left: -25px; top: 7px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); border: 2.5px solid var(--bg); box-shadow: 0 0 0 2px var(--blue);
}
.tl-year { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.tl-text { font-size: 15px; color: var(--text-2); font-weight: 500; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.team-card {
  padding: 28px; border: 1.5px solid var(--border);
  border-radius: var(--r-xl); background: var(--bg-card); transition: all .2s;
}
.team-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #0044BB);
  margin-bottom: 16px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; font-weight: 900; color: #fff;
}
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.team-role { font-size: 12px; color: var(--blue); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.team-bio { font-size: 13px; color: var(--text-2); line-height: 1.55; }
.team-li { margin-top: 12px; color: var(--text-3); transition: color .2s; display: inline-block; }
.team-li:hover { color: var(--blue); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { padding: 36px; border: 1.5px solid var(--border); border-radius: var(--r-xl); background: var(--bg-card); }
.value-n { font-size: 52px; font-weight: 900; color: var(--blue); opacity: .12; letter-spacing: -.05em; line-height: 1; margin-bottom: 16px; }
.value-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.value-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }

.investors-logos { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; justify-content: center; }
.investor-logo {
  font-size: 18px; font-weight: 900; color: var(--text-3);
  letter-spacing: -1px; opacity: .4; padding: 12px 20px;
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
}

/* ===== BLOG ===== */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; margin-bottom: 48px; cursor: pointer;
  transition: all .2s; background: var(--bg-card);
}
.blog-featured:hover { border-color: var(--blue); box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.blog-featured-visual {
  background: linear-gradient(135deg, #1D6FFF 0%, #0040BB 100%);
  display: flex; align-items: center; justify-content: center; min-height: 320px;
  position: relative; overflow: hidden;
}
.blog-featured-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: 28px; margin-bottom: 14px; line-height: 1.25; }
.blog-featured-body p { font-size: 15px; margin-bottom: 24px; }

.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 7px 18px; border-radius: var(--r-f);
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text-2); font-family: inherit; transition: all .2s;
}
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.filter-btn:hover:not(.active) { border-color: var(--text-3); color: var(--text-1); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  border: 1.5px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; background: var(--bg-card);
}
.blog-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.blog-card-vis { height: 176px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.blog-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; letter-spacing: -.2px; color: var(--text-1); }
.blog-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-3); }
.blog-author { display: flex; align-items: center; gap: 6px; }
.blog-author-av { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), #0044BB); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; }

.load-more-wrap { text-align: center; margin-top: 48px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: .04s; }
.stagger.visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.visible > *:nth-child(3) { transition-delay: .12s; }
.stagger.visible > *:nth-child(4) { transition-delay: .16s; }
.stagger.visible > *:nth-child(5) { transition-delay: .20s; }
.stagger.visible > *:nth-child(6) { transition-delay: .24s; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes scaleIn { from { opacity:0; transform:scale(.95); } to { opacity:1; transform:none; } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity:.4; transform:scale(1); } 50% { opacity:.1; transform:scale(1.1); } }
@keyframes spin { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes dashflow { from { stroke-dashoffset:0; } to { stroke-dashoffset:-32; } }

/* ===== MISC UTILS ===== */
.divider { height:1px; background:var(--border); margin:48px 0; }
.gap-8 { gap:8px; }
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mb-16 { margin-bottom:16px; }
.mb-32 { margin-bottom:32px; }
.badge {
  display:inline-flex; align-items:center; padding:4px 12px;
  border-radius:var(--r-f); font-size:12px; font-weight:700; letter-spacing:.04em;
}
.badge-blue { background:var(--blue-light); color:var(--blue); }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .feat-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .int-grid { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:768px) {
  .section { padding:64px 0; }
  .nav-links, .nav-login { display:none; }
  .nav-actions .btn { display:none; }
  .hamburger { display:flex; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .feat-grid { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr; }
  .step + .step { border-left:none; border-top:1px solid var(--border); }
  .uc-grid { grid-template-columns:1fr; }
  .cta-banner { padding:48px 28px; }
  .pricing-grid { grid-template-columns:1fr; }
  .deep-dive { grid-template-columns:1fr; gap:40px; }
  .deep-dive.flip { direction:ltr; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .values-grid { grid-template-columns:1fr; }
  .blog-featured { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .tabs-bar { flex-direction:column; }
  .tab-panel.active { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .int-grid { grid-template-columns:repeat(3,1fr); }
  .hero-content { padding:60px 24px 48px; }
}
@media (max-width:480px) {
  .stats-grid { grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; width:100%; }
  .hero-actions .btn { width:100%; justify-content:center; }
  .proof-logos { gap:24px; }
  .int-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:1fr; }
  .comp-grid { gap:10px; }
}
