/* ═══════════════════════════════════════════════════ */
/* SUPRISMA.COM — Stylesheet                          */
/* ═══════════════════════════════════════════════════ */

:root{
  --navy:#0A1628;
  --navy-light:#1B2A4A;
  --blue:#2563EB;
  --blue-dark:#1D4ED8;
  --green:#059669;
  --amber:#F59E0B;
  --red:#EF4444;
  --white:#FFFFFF;
  --gray-50:#F8FAFC;
  --gray-100:#F1F5F9;
  --gray-200:#E2E8F0;
  --gray-300:#CBD5E1;
  --gray-400:#94A3B8;
  --gray-500:#64748B;
  --gray-600:#475569;
  --gray-700:#334155;
  --shadow-sm:0 1px 2px rgba(10,22,40,.04);
  --shadow-md:0 4px 16px rgba(10,22,40,.06);
  --shadow-lg:0 12px 40px rgba(10,22,40,.08);
  --shadow-xl:0 24px 64px rgba(10,22,40,.1);
  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:16px;
  --radius-xl:24px;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  background:var(--white);
  color:var(--navy);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img,svg{display:block}
button,input,textarea{font:inherit}

.container{width:min(1200px,calc(100% - 48px));margin:0 auto}

/* ═══════════ NAV ═══════════ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid transparent;
  transition:all .3s ease;
}
.nav.scrolled{border-bottom-color:var(--gray-200);box-shadow:var(--shadow-sm)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.nav-brand{text-decoration:none}
.nav-logo{display:flex;flex-direction:column;align-items:center;gap:0}
.nav-logo-bar{width:48px;height:1.5px;background:var(--gray-400);opacity:.4;border-radius:2px}
.nav-logo-text{font-weight:800;font-size:19px;color:var(--navy);letter-spacing:-.03em;padding:3px 0}
.nav-links{display:flex;gap:36px;list-style:none}
.nav-links a{
  font-size:.875rem;font-weight:500;color:var(--gray-500);
  transition:color .2s;position:relative;
}
.nav-links a:hover{color:var(--navy)}
.nav-links a::after{
  content:'';position:absolute;bottom:-4px;left:0;right:0;
  height:1.5px;background:var(--navy);
  transform:scaleX(0);transform-origin:right;transition:transform .3s ease;
}
.nav-links a:hover::after{transform:scaleX(1);transform-origin:left}
.nav-cta{
  font-size:.85rem;font-weight:600;color:var(--white);
  background:var(--navy);padding:10px 24px;border-radius:var(--radius-sm);
  transition:all .2s;
}
.nav-cta:hover{background:var(--navy-light);transform:translateY(-1px)}

.nav-menu-btn{
  display:none;background:none;border:none;cursor:pointer;
  width:28px;height:20px;position:relative;
}
.nav-menu-btn span{
  position:absolute;left:0;width:100%;height:2px;
  background:var(--navy);border-radius:1px;
  transition:all .3s cubic-bezier(.215,.61,.355,1);
}
.nav-menu-btn span:nth-child(1){top:0}
.nav-menu-btn span:nth-child(2){top:9px}
.nav-menu-btn span:nth-child(3){bottom:0}
.nav-menu-btn.open span:nth-child(1){top:9px;transform:rotate(45deg)}
.nav-menu-btn.open span:nth-child(2){opacity:0;transform:translateX(-8px)}
.nav-menu-btn.open span:nth-child(3){bottom:9px;transform:rotate(-45deg)}

.mobile-menu{
  position:fixed;top:0;left:0;right:0;bottom:0;z-index:99;
  background:rgba(255,255,255,.98);backdrop-filter:blur(24px);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.mobile-menu.open{opacity:1;pointer-events:auto}
.mobile-menu ul{list-style:none;text-align:center;display:flex;flex-direction:column;gap:24px}
.mobile-menu a{font-size:1.5rem;font-weight:700;color:var(--navy);transition:color .2s}
.mobile-menu a:hover{color:var(--blue)}
.mobile-menu .mobile-cta{
  display:inline-block;background:var(--navy);color:var(--white);
  padding:14px 40px;border-radius:var(--radius-sm);font-size:1rem;margin-top:8px;
}

/* ═══════════ BUTTONS ═══════════ */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-weight:600;font-size:.95rem;
  padding:14px 32px;border-radius:var(--radius-md);
  transition:all .25s ease;cursor:pointer;text-decoration:none;border:none;
}
.btn-primary{
  background:var(--navy);color:var(--white);
  box-shadow:0 2px 8px rgba(10,22,40,.15);
}
.btn-primary:hover{
  background:var(--navy-light);transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(10,22,40,.15);
}
.btn-ghost{
  background:transparent;color:var(--gray-600);border:1px solid var(--gray-200);
}
.btn-ghost:hover{border-color:var(--gray-300);background:var(--gray-50);transform:translateY(-1px)}

/* ═══════════ HERO ═══════════ */
.hero{
  padding:180px 0 160px;
  position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;top:-300px;right:-100px;
  width:800px;height:800px;border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,.03),transparent 70%);
  pointer-events:none;
}
/* Hero grid layout */
.hero-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.hero-content{
  opacity:0;transform:translateY(20px);
  transition:all .8s cubic-bezier(.16,1,.3,1);
}
.hero-content.visible{opacity:1;transform:translateY(0)}
.hero-visual{
  opacity:0;transform:translateY(30px) scale(.97);
  transition:all .9s cubic-bezier(.16,1,.3,1) .15s;
}
.hero-visual.visible{opacity:1;transform:translateY(0) scale(1)}

.hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 16px;border-radius:999px;
  border:1px solid var(--gray-200);background:var(--gray-50);
  font-size:.78rem;font-weight:600;color:var(--gray-500);
  letter-spacing:.04em;text-transform:uppercase;
  margin-bottom:32px;
}
.eyebrow-dot{
  width:7px;height:7px;border-radius:50%;background:var(--blue);
  animation:pulse 2.5s infinite;
}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}

.hero-title{
  font-size:clamp(2.8rem,5vw,4.2rem);
  font-weight:800;letter-spacing:-.045em;
  line-height:1.08;color:var(--navy);
  margin-bottom:24px;
}
.hero-title-accent{
  color:var(--blue);display:inline-block;
  transition:all .3s ease;
}
.hero-desc{
  font-size:clamp(1.05rem,1.6vw,1.2rem);
  color:var(--gray-500);line-height:1.7;
  max-width:560px;margin-bottom:40px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

/* ═══════════ STATEMENT / QUOTE ═══════════ */
.section-statement{
  padding:48px 0;
  border-top:1px solid var(--gray-200);
  border-bottom:1px solid var(--gray-200);
  opacity:0;transform:translateY(20px);
  transition:all .7s cubic-bezier(.16,1,.3,1);
}
.section-statement.visible{opacity:1;transform:translateY(0)}
.statement-centered{
  display:flex;align-items:center;justify-content:center;gap:16px;
}
.statement-mark{
  font-size:2rem;line-height:1;
  color:var(--blue);opacity:.3;flex-shrink:0;
  font-family:Georgia,serif;font-weight:700;
}
.statement-body{display:flex;align-items:baseline;gap:12px;flex-wrap:wrap}
.statement-quote{
  font-size:.95rem;font-weight:500;
  line-height:1.6;color:var(--gray-500);
  font-style:italic;
}
.statement-name{
  font-size:.78rem;font-weight:700;color:var(--navy);
  font-style:normal;white-space:nowrap;
}

/* ═══════════ SECTIONS ═══════════ */
.section{
  padding:150px 0;
  opacity:0;transform:translateY(30px);
  transition:all .7s cubic-bezier(.16,1,.3,1);
}
.section.visible{opacity:1;transform:translateY(0)}
.section-gray{background:var(--gray-50)}

.section-header{max-width:560px;margin-bottom:72px}
.section-eyebrow{
  font-size:.7rem;font-weight:700;letter-spacing:.16em;
  text-transform:uppercase;color:var(--blue);margin-bottom:12px;
}
.section-title{
  font-size:clamp(1.8rem,3vw,2.5rem);
  font-weight:800;letter-spacing:-.035em;
  color:var(--navy);line-height:1.15;margin-bottom:12px;
}
.section-desc{font-size:1rem;color:var(--gray-500);line-height:1.7}
.section-subtitle{font-size:1rem;color:var(--gray-500);line-height:1.7;margin-top:16px}

/* Split layout */
.split-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:80px;align-items:start}
.split-left{position:sticky;top:100px}

/* ═══════════ ABOUT ═══════════ */
.about-text{margin-bottom:48px}
.about-text p{
  font-size:1.05rem;color:var(--gray-600);line-height:1.75;
  margin-bottom:16px;
}
.about-text p:last-child{
  font-weight:600;color:var(--navy);
}
.about-values{display:flex;flex-direction:column;gap:0}
.value{
  display:flex;gap:20px;align-items:flex-start;
  padding:28px 0;border-top:1px solid var(--gray-200);
}
.value-number{
  font-size:1.8rem;font-weight:800;color:var(--gray-200);
  letter-spacing:-.04em;line-height:1;flex-shrink:0;width:48px;
}
.value h4{font-size:.95rem;font-weight:700;color:var(--navy);margin-bottom:4px}
.value p{font-size:.88rem;color:var(--gray-500);line-height:1.6}

/* ═══════════ PRODUCTS ═══════════ */
.products-grid{display:grid;grid-template-columns:1.2fr .9fr .9fr;gap:20px}

.product-card{
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:var(--radius-xl);padding:36px;
  display:flex;flex-direction:column;justify-content:space-between;
  position:relative;overflow:hidden;
  transition:box-shadow .3s,transform .3s;
  text-decoration:none;color:inherit;
}
.product-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.product-color-bar{
  position:absolute;bottom:0;left:0;right:0;height:3px;
  transition:height .3s ease;
}
.product-card:hover .product-color-bar{height:4px}

.product-top{margin-bottom:24px}
.product-bottom{margin-top:auto}

.product-badge{
  display:inline-block;font-size:.65rem;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;
  padding:5px 12px;border-radius:999px;
  background:#F0FDF4;color:var(--green);margin-bottom:16px;
}
.product-badge.soon{background:var(--gray-100);color:var(--gray-400)}
.product-badge.custom{background:#EFF6FF;color:var(--blue)}

.product-logo{margin-bottom:12px}
.product-logo-s{font-weight:800;font-size:26px;letter-spacing:-.04em}
.product-logo-name{font-weight:800;font-size:26px;letter-spacing:-.04em;color:var(--navy)}
.product-desc{font-size:.9rem;color:var(--gray-500);line-height:1.6}

.product-custom-title{
  font-size:1.3rem;font-weight:800;color:var(--navy);
  letter-spacing:-.02em;margin-bottom:12px;
}

.product-industry{
  display:flex;align-items:center;gap:8px;
  font-size:.78rem;color:var(--gray-500);font-weight:500;
  margin-bottom:16px;
}
.product-arrow{
  display:flex;align-items:center;gap:8px;
  font-size:.88rem;font-weight:600;color:var(--navy);
  transition:gap .3s;
}
.product-card:hover .product-arrow{gap:12px;color:var(--blue)}

.product-soon{border-style:dashed;cursor:default}
.product-soon:hover{transform:none;box-shadow:none}

.product-custom{border-style:solid;cursor:default}
.product-custom:hover{transform:translateY(-3px)}

/* ═══════════ PHILOSOPHY ═══════════ */
.philosophy-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.philosophy-card{
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:var(--radius-xl);padding:40px;
  transition:box-shadow .3s,transform .3s;
}
.philosophy-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.philosophy-icon{
  width:56px;height:56px;border-radius:var(--radius-md);
  background:var(--gray-50);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
}
.philosophy-card h3{
  font-size:1.05rem;font-weight:700;color:var(--navy);
  margin-bottom:8px;letter-spacing:-.01em;
}
.philosophy-card p{font-size:.9rem;color:var(--gray-500);line-height:1.65}

/* ═══════════ QUOTE ═══════════ */
.section-quote{
  padding:120px 0;
  border-top:1px solid var(--gray-200);
  border-bottom:1px solid var(--gray-200);
  opacity:0;transform:translateY(20px);
  transition:all .7s cubic-bezier(.16,1,.3,1);
}
.section-quote.visible{opacity:1;transform:translateY(0)}
.quote-grid{
  display:grid;grid-template-columns:1fr .7fr;gap:64px;align-items:center;
}
.quote{
  font-size:clamp(1.4rem,2.5vw,2rem);
  font-weight:700;letter-spacing:-.03em;
  line-height:1.45;color:var(--navy);
  font-style:normal;
  position:relative;
  padding-left:28px;
  border-left:3px solid var(--blue);
}
.quote span{color:var(--gray-400);font-weight:500}

/* Quote visual — pulse */
.quote-visual{
  display:flex;flex-direction:column;align-items:center;
  justify-content:center;
}
.qv-pulse{width:100%;max-width:260px;height:40px}
.qv-pulse-line{
  animation:pulseDraw 4s linear infinite;
}
@keyframes pulseDraw{
  0%{stroke-dashoffset:600}
  100%{stroke-dashoffset:0}
}

/* ═══════════ CONTACT FORM ═══════════ */
.contact-form{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-xl);
  padding:36px;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:20px}
.form-group label{
  font-size:.78rem;font-weight:600;color:var(--navy);
}
.form-group input,
.form-group textarea{
  font-family:Inter,sans-serif;
  font-size:.92rem;color:var(--navy);
  padding:12px 16px;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-sm);
  background:var(--gray-50);
  transition:all .2s;
  outline:none;
  resize:vertical;
}
.form-group input:focus,
.form-group textarea:focus{
  border-color:var(--blue);
  background:var(--white);
  box-shadow:0 0 0 3px rgba(37,99,235,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder{
  color:var(--gray-400);font-weight:400;
}
.form-submit{
  width:100%;justify-content:center;margin-top:4px;
}
.form-note{
  font-size:.75rem;color:var(--gray-400);text-align:center;
  margin-top:12px;
}
.form-success{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;padding:56px 36px;
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:var(--radius-xl);
}
.form-success-icon{margin-bottom:16px}
.form-success h3{
  font-size:1.2rem;font-weight:700;color:var(--navy);margin-bottom:8px;
}
.form-success p{
  font-size:.92rem;color:var(--gray-500);line-height:1.6;max-width:320px;
}

/* ═══════════ CTA ═══════════ */
.section-cta{
  padding:150px 0;background:var(--gray-50);
  border-top:1px solid var(--gray-200);
  opacity:0;transform:translateY(30px);
  transition:all .7s cubic-bezier(.16,1,.3,1);
}
.section-cta.visible{opacity:1;transform:translateY(0)}

.cta-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.cta-title{
  font-size:clamp(1.6rem,3vw,2.2rem);
  font-weight:800;letter-spacing:-.03em;
  color:var(--navy);line-height:1.2;margin-bottom:12px;
}
.cta-desc{font-size:1rem;color:var(--gray-500);line-height:1.65}

.cta-right{display:flex;flex-direction:column;gap:12px}
.cta-card{
  display:flex;align-items:center;gap:16px;
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);padding:20px 24px;
  transition:all .25s;text-decoration:none;color:inherit;
}
.cta-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px);border-color:var(--gray-300)}
.cta-card-icon{
  width:48px;height:48px;border-radius:var(--radius-md);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.cta-card-icon.green{background:#F0FDF4;color:var(--green)}
.cta-card-icon.blue{background:#EFF6FF;color:var(--blue)}
.cta-card-title{font-size:.95rem;font-weight:700;color:var(--navy);margin-bottom:2px}
.cta-card-sub{font-size:.78rem;color:var(--gray-400)}
.cta-card-arrow{
  margin-left:auto;flex-shrink:0;
  transition:transform .3s;
}
.cta-card:hover .cta-card-arrow{transform:translateX(4px)}

/* ═══════════ FOOTER ═══════════ */
.footer{padding:80px 0 32px;border-top:1px solid var(--gray-200)}
.footer-grid{
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;
  gap:40px;margin-bottom:56px;
}
.footer-tagline{font-size:.88rem;color:var(--gray-500);line-height:1.6;max-width:280px}
.footer-col h4{
  font-size:.72rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.1em;color:var(--navy);margin-bottom:16px;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-col a{font-size:.85rem;color:var(--gray-500);transition:color .2s}
.footer-col a:hover{color:var(--blue)}
.footer-bottom{padding-top:24px;border-top:1px solid var(--gray-200)}
.footer-bottom p{font-size:.78rem;color:var(--gray-400)}


/* ═══════════ ABOUT ILLUSTRATION ═══════════ */
.about-illustration{
  margin-top:40px;
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);padding:24px;
}
.about-illustration svg{width:100%;height:auto}

/* ═══════════ PRODUCT PREVIEWS ═══════════ */
.product-preview{
  margin-top:20px;background:var(--gray-50);
  border-radius:var(--radius-md);padding:12px;
  display:flex;flex-direction:column;gap:0;
}
.product-preview-row{
  display:flex;align-items:center;gap:8px;
  padding:6px 8px;border-bottom:1px solid var(--gray-100);
  font-size:.7rem;color:var(--gray-600);font-weight:500;
}
.product-preview-row:last-child{border-bottom:none}
.product-preview-row.fade{opacity:.4}
.product-preview-row span:first-of-type{flex:1}
.pp-dot{width:5px;height:5px;border-radius:50%;flex-shrink:0}
.pp-dot.green{background:var(--green)}
.pp-dot.amber{background:var(--amber)}
.pp-time{font-size:.6rem;color:var(--gray-400);flex-shrink:0}

.product-blueprint{
  margin-top:20px;background:var(--gray-50);
  border-radius:var(--radius-md);padding:16px 12px;
}
.product-blueprint svg{width:100%;height:auto}

/* ═══════════ CTA ILLUSTRATION ═══════════ */
.cta-illustration{margin-top:32px;display:flex;flex-direction:column;gap:12px}
.cta-bubble{display:flex;gap:10px;align-items:flex-start}
.cta-bubble-them{justify-content:flex-start}
.cta-bubble-us{justify-content:flex-start}
.cta-bubble-avatar{
  width:28px;height:28px;border-radius:50%;
  background:var(--white);border:1px solid var(--gray-200);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.cta-bubble-text{
  font-size:.85rem;line-height:1.5;padding:12px 16px;
  border-radius:14px;max-width:320px;
}
.cta-bubble-them .cta-bubble-text{
  background:var(--gray-100);color:var(--gray-600);
  border-top-left-radius:4px;
}
.cta-bubble-us .cta-bubble-text{
  background:var(--white);border:1px solid var(--gray-200);
  color:var(--navy);font-weight:600;
  border-top-left-radius:4px;
}

/* ═══════════ CURSOR PARTICLES ═══════════ */
#cursorParticles{
  position:absolute;top:0;left:0;width:100%;
  pointer-events:none;z-index:1;
}

/* ═══════════ DASHBOARD VISUAL ═══════════ */
.dash{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-xl);
}
.dash-topbar{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 20px;border-bottom:1px solid var(--gray-100);
  background:var(--gray-50);
}
.dash-dots{display:flex;gap:6px}
.dash-dots span{width:8px;height:8px;border-radius:50%}
.dash-dots span:nth-child(1){background:#ff5f57}
.dash-dots span:nth-child(2){background:#febc2e}
.dash-dots span:nth-child(3){background:#28c840}
.dash-tabs{display:flex;gap:0}
.dash-tab{
  font-size:.68rem;font-weight:600;color:var(--gray-400);
  padding:5px 14px;border-radius:6px;
  transition:all .2s;
}
.dash-tab.active{background:var(--white);color:var(--navy);box-shadow:var(--shadow-sm)}

.dash-body{display:flex;min-height:320px}

/* Sidebar */
.dash-sidebar{
  width:48px;border-right:1px solid var(--gray-100);
  padding:16px 0;display:flex;flex-direction:column;align-items:center;gap:4px;
  background:var(--gray-50);
}
.dash-sidebar-item{
  width:32px;height:32px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:var(--gray-400);transition:all .2s;
}
.dash-sidebar-item.active{background:var(--white);color:var(--navy);box-shadow:var(--shadow-sm)}

/* Main area */
.dash-main{flex:1;padding:20px;display:flex;flex-direction:column;gap:16px}

/* Stats */
.dash-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.dash-stat{
  background:var(--gray-50);border-radius:var(--radius-md);padding:14px;
}
.dash-stat-label{font-size:.6rem;font-weight:600;color:var(--gray-400);text-transform:uppercase;letter-spacing:.06em;margin-bottom:6px}
.dash-stat-value{display:flex;align-items:baseline;gap:2px;margin-bottom:8px}
.dash-stat-value span:first-child{font-size:1.5rem;font-weight:800;color:var(--navy);letter-spacing:-.03em}
.dash-stat-unit{font-size:.75rem;font-weight:600;color:var(--gray-400)}
.dash-stat-bar{height:3px;background:var(--gray-200);border-radius:2px;overflow:hidden}
.dash-stat-fill{height:100%;border-radius:2px;transition:width 1.5s cubic-bezier(.16,1,.3,1)}
.dash-stat-fill.green{background:var(--green)}
.dash-stat-fill.blue{background:var(--blue)}

/* Feed */
.dash-feed{display:flex;flex-direction:column;gap:0}
.dash-feed-title{
  font-size:.6rem;font-weight:700;color:var(--gray-400);
  text-transform:uppercase;letter-spacing:.08em;margin-bottom:8px;
}
.dash-feed-item{
  display:flex;align-items:center;gap:8px;
  padding:7px 0;border-bottom:1px solid var(--gray-100);
  transition:all .3s ease;
}
.dash-feed-item.fade{opacity:.4}
.dash-feed-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.dash-feed-dot.green{background:var(--green)}
.dash-feed-dot.amber{background:var(--amber)}
.dash-feed-dot.blue{background:var(--blue)}
.dash-feed-text{font-size:.7rem;font-weight:500;color:var(--gray-600);flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.dash-feed-time{font-size:.6rem;color:var(--gray-400);flex-shrink:0}

/* Chart */
.dash-chart{margin-top:auto}
.dash-chart-label{font-size:.6rem;font-weight:700;color:var(--gray-400);text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px}
.dash-chart-svg{width:100%;height:60px}
.chart-line{
  stroke-dasharray:400;stroke-dashoffset:400;
  animation:drawLine 2s ease forwards 0.5s;
}
.chart-area{
  opacity:0;
  animation:fadeIn .8s ease forwards 1.5s;
}
@keyframes drawLine{to{stroke-dashoffset:0}}
@keyframes fadeIn{to{opacity:1}}

/* Live indicator */
.dash-live{
  padding:10px 20px;border-top:1px solid var(--gray-100);
  font-size:.65rem;font-weight:600;color:var(--gray-400);
  display:flex;align-items:center;gap:8px;
  background:var(--gray-50);
}
.dash-live-dot{
  width:6px;height:6px;border-radius:50%;background:var(--green);
  animation:pulse 2s infinite;
}

/* ═══════════ RESPONSIVE ═══════════ */

/* Tablet */
@media(max-width:960px){
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero-visual{max-width:500px}
  .split-grid{grid-template-columns:1fr;gap:48px}
  .split-left{position:static}
  .products-grid{grid-template-columns:1fr}
  .philosophy-grid{grid-template-columns:1fr}
  .quote-grid{grid-template-columns:1fr;gap:32px}
  .cta-grid{grid-template-columns:1fr;gap:40px}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr;gap:32px}
  .nav-links,.nav-cta{display:none}
  .nav-menu-btn{display:block}
  .section{padding:100px 0}
  .section-statement{padding:36px 0}
  .section-quote{padding:64px 0}
  .statement-centered{flex-direction:column;text-align:center;gap:8px}
}

/* Mobile */
@media(max-width:560px){
  .container{width:calc(100% - 32px)}

  /* Nav */
  .nav-inner{height:60px}
  .nav-logo-bar{width:36px}
  .nav-logo-text{font-size:15px}

  /* Hero */
  .hero{padding:110px 0 64px}
  .hero-title{font-size:1.8rem}
  .hero-desc{font-size:.95rem}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%;justify-content:center}

  /* Dashboard */
  .dash-stats{grid-template-columns:1fr 1fr 1fr}
  .dash-stat{padding:10px}
  .dash-stat-value span:first-child{font-size:1.1rem}
  .dash-sidebar{display:none}
  .dash-body{min-height:auto}
  .dash-topbar{padding:10px 14px}
  .dash-tab{font-size:.6rem;padding:4px 10px}
  .dash-main{padding:14px}
  .dash-feed-text{font-size:.62rem}

  /* Sections */
  .section{padding:72px 0}
  .section-title{font-size:1.4rem}
  .section-header{margin-bottom:40px}
  .section-eyebrow{font-size:.65rem;margin-bottom:8px}

  /* Statement */
  .section-statement{padding:28px 0}
  .statement-mark{font-size:1.5rem}
  .statement-quote{font-size:.85rem}
  .statement-name{font-size:.72rem}
  .statement-centered{flex-direction:column;text-align:center;gap:6px}

  /* About */
  .about-text p{font-size:.95rem}
  .value{flex-direction:column;gap:6px}
  .value-number{width:auto;font-size:1.4rem}

  /* Products */
  .product-card{padding:24px}
  .product-logo-s,.product-logo-name{font-size:22px}
  .product-desc{font-size:.85rem}
  .product-custom-title{font-size:1.1rem}

  /* Philosophy */
  .philosophy-card{padding:28px}
  .philosophy-card h3{font-size:.95rem}

  /* Quote */
  .section-quote{padding:56px 0}
  .quote-grid{gap:24px}
  .quote{font-size:1.05rem;padding-left:16px}
  .quote-visual{display:none}

  /* Form */
  .form-row{grid-template-columns:1fr}
  .contact-form{padding:24px}
  .cta-title{font-size:1.3rem}
  .form-submit{padding:12px 24px;font-size:.88rem}

  /* Footer */
  .footer{padding:56px 0 24px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:20px}
  .footer-brand-col{grid-column:1/-1}
  .footer-tagline{font-size:.82rem}
  .footer-col h4{font-size:.68rem;margin-bottom:10px}
  .footer-col a{font-size:.8rem}

  /* Particles */
  #cursorParticles{display:none}
}
</style>
