/* ═══════════════════════════════════════════════════════════
   DATA SAILORS — COMPLETE DARK DASHBOARD THEME
   Professional landing page with infographic-style visuals
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --ds-bg:           #090b14;
  --ds-bg-alt:       #0c1021;
  --ds-surface:      #0f172a;
  --ds-card:         rgba(15, 23, 42, 0.65);
  --ds-card-solid:   #111827;
  --ds-border:       rgba(100, 116, 139, 0.18);
  --ds-border-hover: rgba(14, 165, 233, 0.4);
  --ds-text:         #94a3b8;
  --ds-text-muted:   #475569;
  --ds-heading:      #ffffff;
  --ds-primary:      #0ea5e9;
  --ds-primary-dark: #0284c7;
  --ds-accent:       #22c55e;
  --ds-amber:        #f59e0b;
  --ds-orange:       #FF6F00;
  --ds-purple:       #a855f7;
  --ds-red:          #ef4444;
  --ds-radius:       16px;
  --ds-radius-sm:    12px;
  --ds-radius-xs:    8px;
  --ds-glass:        blur(20px);
  --ds-shadow:       0 24px 60px rgba(0, 0, 0, 0.5);
  --ds-shadow-lg:    0 40px 100px rgba(0, 0, 0, 0.7);
  --ds-font:         'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --ds-mono:         'JetBrains Mono', 'Fira Code', monospace;
  --ds-transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Global Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ds-bg) !important;
  background-image:
    radial-gradient(ellipse 600px 400px at 10% 20%, rgba(14, 165, 233, 0.04), transparent),
    radial-gradient(ellipse 500px 500px at 90% 80%, rgba(168, 85, 247, 0.03), transparent) !important;
  color: var(--ds-text) !important;
  font-family: var(--ds-font) !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(14, 165, 233, 0.25);
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ds-bg); }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  color: var(--ds-heading) !important;
  font-family: var(--ds-font) !important;
  font-weight: 700;
  line-height: 1.15;
}

p { color: var(--ds-text); line-height: 1.7; }
a { color: var(--ds-primary); text-decoration: none; transition: color var(--ds-transition); }
a:hover { color: #38bdf8; }

.ds-gradient-text {
  background: linear-gradient(130deg, #1976D2 0%, #0ea5e9 40%, #38bdf8 65%, #0ea5e9 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: dsGradientShift 5s ease infinite;
}

.ds-mono { font-family: var(--ds-mono) !important; }

/* ── Background Textures ── */
.ds-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(30, 41, 59, 0.25) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 41, 59, 0.25) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.ds-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ds-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(14,165,233,0.4), transparent);
  pointer-events: none;
  animation: dsScanline 10s linear infinite;
  z-index: 1;
}

/* ── Animations ── */
@keyframes dsFloatA {
  0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
  50%      { transform: translateY(-10px) rotate(-0.5deg); }
}
@keyframes dsFloatB {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50%      { transform: translateY(-7px) rotate(2deg); }
}
@keyframes dsFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes dsScanline {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 0.8; }
  95%  { opacity: 0.3; }
  100% { top: 100%; opacity: 0; }
}
@keyframes dsBarRise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes dsFadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dsPingDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.65); }
}
@keyframes dsAlertPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
  50%      { box-shadow: 0 0 0 10px rgba(239,68,68,0.18); }
}
@keyframes dsPulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(14,165,233,0.15); }
  50%      { box-shadow: 0 0 50px rgba(14,165,233,0.35); }
}
@keyframes dsCountUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dsGaugeStroke {
  from { stroke-dashoffset: 207.3; }
}
@keyframes dsSlideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes dsSlideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes dsShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
@keyframes dsGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes dsWidgetEntrance {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ds-float-a  { animation: dsFloatA 7s ease-in-out infinite; }
.ds-float-b  { animation: dsFloatB 9s ease-in-out infinite; }
.ds-float     { animation: dsFloat  6s ease-in-out infinite; }
.ds-dot-ping { animation: dsPingDot 2s ease-in-out infinite; }
.ds-alert-ring { animation: dsAlertPulse 2.5s ease-in-out infinite; }
.ds-pulse-glow { animation: dsPulseGlow 3s ease-in-out infinite; }

.ds-bar-anim {
  transform-origin: bottom;
  animation: dsBarRise 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--d, 0s);
}
.ds-fade-in {
  animation: dsFadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}

/* ── Navbar ── */
.ds-navbar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(9, 11, 20, 0.75);
  backdrop-filter: var(--ds-glass);
  border-bottom: 1px solid var(--ds-border);
  transition: background var(--ds-transition);
}
.ds-navbar-wrap.scrolled {
  background: rgba(9, 11, 20, 0.95);
}
.ds-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.ds-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ds-logo img { width: 36px; height: 36px; border-radius: 8px; }
.ds-logo span {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.ds-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ds-nav-links a {
  color: #94a3b8 !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--ds-transition);
  position: relative;
}
.ds-nav-links a:hover,
.ds-nav-links a.active {
  color: #fff !important;
}
.ds-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--ds-primary);
  border-radius: 1px;
}
.ds-nav-links a.ds-nav-cta {
  background: var(--ds-primary) !important;
  color: #ffffff !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.2px;
  border: none;
  transition: background var(--ds-transition), color var(--ds-transition);
}
.ds-nav-links a.ds-nav-cta:hover {
  background: #38bdf8 !important;
  color: #000000 !important;
}

/* Mobile nav */
.ds-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ds-border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.ds-nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #e2e8f0;
  margin: 4px 0;
  border-radius: 1px;
  transition: var(--ds-transition);
}

@media (max-width: 991px) {
  .ds-nav-toggle { display: block; }
  .ds-nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(9, 11, 20, 0.97);
    backdrop-filter: var(--ds-glass);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--ds-border);
    transform: translateY(-120%);
    transition: transform var(--ds-transition);
  }
  .ds-nav-links.open { transform: translateY(0); }
}

/* ── Section Layout ── */
.ds-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.ds-section-alt {
  background: var(--ds-bg-alt);
}
.ds-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.ds-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.ds-section-header h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}
.ds-section-header p {
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
}
.ds-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--ds-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--ds-mono);
  margin-bottom: 24px;
}

/* ── Buttons ── */
.ds-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--ds-radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--ds-transition), box-shadow var(--ds-transition);
}
.ds-btn-primary {
  background: linear-gradient(135deg, var(--ds-primary), var(--ds-primary-dark));
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.3);
}
.ds-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.4);
  color: #fff !important;
}
.ds-btn-outline {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(100, 116, 139, 0.3);
  color: #e2e8f0 !important;
  backdrop-filter: var(--ds-glass);
}
.ds-btn-outline:hover {
  background: rgba(14, 165, 233, 0.08);
  border-color: var(--ds-border-hover);
  color: #fff !important;
}

/* ── Glass Cards ── */
.ds-glass-card {
  background: var(--ds-card);
  backdrop-filter: var(--ds-glass);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ds-transition), border-color var(--ds-transition), box-shadow var(--ds-transition);
}
.ds-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.ds-glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.03) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.ds-glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--ds-border-hover);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.ds-glass-card:hover::after { transform: translateX(100%); }

.ds-glass-card h4 {
  font-size: 18px;
  margin: 16px 0 12px;
}
.ds-glass-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.65;
}

/* Card icon badges (top-left mini-charts) */
.ds-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--ds-radius-xs);
  font-family: var(--ds-mono);
  font-size: 11px;
  font-weight: 700;
}

/* ── Mini Dashboard Widgets (used inside cards) ── */
.ds-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  padding: 4px 0;
}
.ds-mini-chart .bar {
  width: 6px;
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
  animation: dsBarRise 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--d, 0s);
}

.ds-mini-gauge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ds-mini-gauge .value {
  position: absolute;
  font-family: var(--ds-mono);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}

/* ── Stat Counter Row ── */
.ds-stats-row {
  display: flex;
  align-items: center;
  column-gap: 24px;
  row-gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ds-stat-item .number {
  font-family: var(--ds-mono);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.ds-stat-item .label {
  font-size: 11px;
  color: var(--ds-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.ds-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(100, 116, 139, 0.2);
}

/* ── Feature Pills ── */
.ds-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 30, 48, 0.75);
  border: 1px solid var(--ds-border);
  padding: 12px 16px;
  border-radius: var(--ds-radius-sm);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color var(--ds-transition), transform var(--ds-transition);
  cursor: default;
}
.ds-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.ds-pill:hover::after { transform: translateX(100%); }
.ds-pill:hover {
  border-color: var(--ds-border-hover);
  transform: translateY(-2px);
}
.ds-pill-icon {
  padding: 7px;
  border-radius: var(--ds-radius-xs);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-pill span {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

/* ── Grid Layouts ── */
.ds-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ds-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ds-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (max-width: 991px) {
  .ds-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ds-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .ds-grid-4,
  .ds-grid-3,
  .ds-grid-2 { grid-template-columns: 1fr; }
  .ds-section { padding: 80px 0; }
}

/* ── Hero Section ── */
.ds-hero {
  position: relative;
  padding: 160px 0 120px;
  background: var(--ds-bg);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.ds-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ds-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 20px;
}
.ds-hero .subtitle {
  font-size: 17px;
  color: var(--ds-text);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}
.ds-hero-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 440px;
}
.ds-hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.ds-graphic-area {
  position: relative;
  min-height: 500px;
}
@media (max-width: 991px) {
  .ds-hero { padding: 120px 0 80px; min-height: auto; }
  .ds-hero-content { grid-template-columns: 1fr; }
  .ds-graphic-area { display: none; }
}

/* ── Dashboard Widget Cards (floating in hero/sections) ── */
.ds-widget {
  background: rgba(9, 17, 31, 0.93);
  backdrop-filter: blur(24px);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  padding: 20px;
  box-shadow: var(--ds-shadow-lg);
  position: absolute;
}
.ds-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.ds-widget-label {
  font-family: var(--ds-mono);
  font-size: 10px;
  color: var(--ds-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.ds-widget-value {
  font-family: var(--ds-mono);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.ds-widget-unit {
  font-size: 14px;
  color: var(--ds-text-muted);
  font-weight: 600;
  margin-left: 6px;
}
.ds-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.ds-live-badge span {
  font-family: var(--ds-mono);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--ds-accent);
}

/* Bar chart inside widget */
.ds-bar-chart {
  height: 88px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.ds-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
}
.ds-bar-col .bar-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.ds-bar-col .bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  position: relative;
  transform-origin: bottom;
  animation: dsBarRise 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--d, 0s);
}
.ds-bar-col .bar .dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px var(--ds-primary);
}
.ds-bar-col .day {
  font-family: var(--ds-mono);
  font-size: 8.5px;
  color: #334155;
}
.ds-bar-col.today .day {
  color: var(--ds-primary);
  font-weight: 700;
}
.ds-bar-col.today .bar {
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.5);
}

/* Growth tag */
.ds-growth {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}
.ds-growth span {
  color: #4ade80;
  font-size: 11px;
  font-weight: 600;
}

/* Metric divider row */
.ds-metric-row {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(30, 41, 59, 0.7);
}
.ds-metric-row .metric .key {
  font-family: var(--ds-mono);
  font-size: 9px;
  color: var(--ds-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ds-metric-row .metric .val {
  font-family: var(--ds-mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.ds-metric-row .divider {
  width: 1px;
  background: rgba(30, 41, 59, 0.7);
}

/* Chip badges */
.ds-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-family: var(--ds-mono);
  font-size: 10px;
  font-weight: 700;
}

/* Alert widget */
.ds-alert-widget {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ds-alert-icon {
  background: var(--ds-red);
  border-radius: 50%;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}
.ds-alert-tag {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--ds-mono);
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ds-red);
}

/* ── Platform Cards with mini dashboard graphics ── */
.ds-platform-card {
  position: relative;
}
.ds-platform-card .card-chart {
  margin-top: 20px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--ds-radius-xs);
  border: 1px solid rgba(100, 116, 139, 0.1);
}

/* ── Dashboard Mockup Section ── */
.ds-mockup-frame {
  background: rgba(9, 17, 31, 0.8);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  overflow: hidden;
  box-shadow: var(--ds-shadow-lg);
  backdrop-filter: var(--ds-glass);
}
.ds-mockup-toolbar {
  height: 44px;
  border-bottom: 1px solid var(--ds-border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}
.ds-mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.ds-mockup-url {
  margin-left: 12px;
  background: rgba(255,255,255,0.04);
  padding: 5px 14px;
  border-radius: 6px;
  font-family: var(--ds-mono);
  font-size: 11px;
  color: var(--ds-text);
}

/* ── Industries Section ── */
.ds-industry-card {
  text-align: center;
  padding: 40px 28px;
}
.ds-industry-card .icon-wrap {
  width: 70px; height: 70px;
  border-radius: var(--ds-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ds-industry-card h4 { font-size: 18px; margin-bottom: 12px; }

/* ── Tech Cards ── */
.ds-tech-card {
  display: flex;
  gap: 20px;
  align-items: start;
}
.ds-tech-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--ds-radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-tech-card h5 {
  font-size: 16px;
  margin: 0 0 8px;
}
.ds-tech-card p {
  font-size: 14px;
  margin: 0;
}

/* ── CTA Band ── */
.ds-cta-band {
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(168,85,247,0.05));
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--ds-radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.ds-cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,165,233,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ds-cta-band h3 {
  font-size: 28px;
  margin: 0 0 8px;
}
.ds-cta-band p {
  margin: 0;
  max-width: 520px;
}

.ds-badge-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.ds-badge {
  font-family: var(--ds-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ds-text);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--ds-border);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ── FAQ Section ── */
.ds-faq-item {
  padding: 28px 32px;
  cursor: pointer;
}
.ds-faq-item h4 {
  font-size: 16px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ds-faq-item h4::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ds-primary);
  flex-shrink: 0;
}
.ds-faq-item p {
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
  padding-left: 14px;
}

/* ── Footer ── */
.ds-footer {
  background: var(--ds-bg);
  border-top: 1px solid var(--ds-border);
  padding: 80px 0 40px;
  color: var(--ds-text);
}
.ds-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ds-footer h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ds-footer p { font-size: 14px; }
.ds-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ds-footer-links li { margin-bottom: 10px; }
.ds-footer-links a {
  color: var(--ds-text) !important;
  font-size: 14px;
  transition: color var(--ds-transition);
}
.ds-footer-links a:hover { color: #fff !important; }

.ds-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--ds-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ds-text-muted);
}
.ds-footer-bottom a {
  color: var(--ds-text-muted) !important;
  font-size: 13px;
}
.ds-footer-bottom a:hover { color: var(--ds-primary) !important; }

@media (max-width: 767px) {
  .ds-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ds-cta-band {
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
  }
  .ds-hero-pills { grid-template-columns: 1fr; }
  .ds-stats-row { gap: 16px; }
  .ds-stat-divider { display: none; }
  .ds-footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Service Badge Tags ── */
.ds-service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ds-service-tag {
  font-family: var(--ds-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ds-primary);
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

/* ── Numbered Feature List ── */
.ds-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.ds-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(100, 116, 139, 0.1);
  font-size: 14px;
  color: var(--ds-text) !important;
}
.ds-feature-list li:last-child { border-bottom: none; }
.ds-feature-list .num {
  font-family: var(--ds-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ds-primary);
  background: rgba(14, 165, 233, 0.08);
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Intersection observer fade-in ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }
[data-animate][data-delay="4"] { transition-delay: 0.4s; }
[data-animate][data-delay="5"] { transition-delay: 0.5s; }
[data-animate][data-delay="6"] { transition-delay: 0.6s; }

/* ── Trusted By / Logo Row ── */
.ds-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0.4;
  filter: grayscale(1) brightness(2);
}
.ds-logo-row img { height: 28px; }

/* ── Responsive: services/mobile 2-col inline grids ── */
@media (max-width: 991px) {
  [style*="grid-template-columns: 1fr 1fr"][style*="gap:60px"],
  [style*="grid-template-columns:1fr 1fr"][style*="gap:60px"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECONDARY PAGES — Policy, Support, Contact, Deletion
   ═══════════════════════════════════════════════════════════ */

/* Page hero for secondary pages */
.ds-page-hero {
  padding: 140px 0 60px;
  background: var(--ds-bg);
  position: relative;
  overflow: hidden;
}
.ds-page-hero .ds-grid-bg { opacity: 0.3; }

.ds-page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 16px 0 20px;
  letter-spacing: -0.03em;
}
.ds-page-hero .ds-lead {
  font-size: 17px;
  color: var(--ds-text);
  max-width: 680px;
  line-height: 1.7;
}

/* Content cards for policy sections */
.ds-content-card {
  background: var(--ds-card);
  backdrop-filter: var(--ds-glass);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  padding: 28px 32px;
  transition: border-color var(--ds-transition);
}
.ds-content-card:hover {
  border-color: var(--ds-border-hover);
}
.ds-content-card h4 {
  font-size: 16px;
  color: var(--ds-heading) !important;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ds-content-card h4::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ds-primary);
  flex-shrink: 0;
}
.ds-content-card p,
.ds-content-card li {
  font-size: 14px;
  color: var(--ds-text);
  line-height: 1.7;
}
.ds-content-card ul,
.ds-content-card ol {
  padding-left: 18px;
  margin: 0;
}
.ds-content-card li {
  margin-bottom: 6px;
}
.ds-content-card a {
  color: var(--ds-primary);
  font-weight: 600;
}
.ds-content-card a:hover {
  color: #38bdf8;
}

/* Contact cards (larger, icon-based) */
.ds-contact-card {
  background: linear-gradient(135deg, rgba(14,165,233,0.04), rgba(15,23,42,0.65));
  backdrop-filter: var(--ds-glass);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  padding: 32px;
  text-align: center;
  transition: transform var(--ds-transition), border-color var(--ds-transition), box-shadow var(--ds-transition);
}
.ds-contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--ds-border-hover);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.ds-contact-card .icon-circle {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.ds-contact-card h4 {
  font-size: 16px;
  color: var(--ds-heading) !important;
  margin: 0 0 8px;
}
.ds-contact-card p {
  font-size: 14px;
  color: var(--ds-text);
  margin: 0;
  line-height: 1.6;
}
.ds-contact-card a {
  color: var(--ds-primary);
  font-weight: 600;
}

/* CTA band for secondary pages */
.ds-page-cta {
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(168,85,247,0.04));
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--ds-radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ds-page-cta h4 {
  font-size: 20px;
  margin: 0 0 6px;
}
.ds-page-cta p {
  margin: 0;
  font-size: 14px;
}

/* Action hero buttons */
.ds-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Simple ordered list with numbers */
.ds-ordered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.ds-ordered-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(100,116,139,0.1);
  font-size: 14px;
  color: var(--ds-text);
  line-height: 1.65;
}
.ds-ordered-list li:last-child { border-bottom: none; }
.ds-ordered-list li::before {
  content: counter(step);
  font-family: var(--ds-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ds-primary);
  background: rgba(14,165,233,0.08);
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Secondary page footer (simple) */
.ds-simple-footer {
  border-top: 1px solid var(--ds-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ds-text-muted);
}
.ds-simple-footer a {
  color: var(--ds-text-muted) !important;
  font-size: 13px;
  font-weight: 500;
}
.ds-simple-footer a:hover { color: var(--ds-primary) !important; }
.ds-footer-link-row {
  display: flex;
  gap: 20px;
}

/* Extra mobile polish */
@media (max-width: 576px) {
  .ds-section { padding: 60px 0; }
  .ds-section-header { margin-bottom: 48px; }
  .ds-section-header h2 { font-size: 28px; }
  .ds-glass-card { padding: 24px; }
  .ds-page-hero { padding: 120px 0 40px; }
  .ds-page-cta { flex-direction: column; text-align: center; padding: 28px 20px; }
  .ds-simple-footer { flex-direction: column; text-align: center; }
  .ds-contact-card { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   NEW SECTIONS — Trust Bar, Process, Impact, Differentiators
   UI/UX Pro Max: Enterprise Gateway + Social Proof patterns
   ═══════════════════════════════════════════════════════════ */

/* ── Trust Bar ── */
.ds-trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--ds-border);
  background: var(--ds-bg-alt);
}
.ds-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ds-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-sm);
  font-family: var(--ds-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ds-text);
  white-space: nowrap;
  transition: border-color var(--ds-transition), transform var(--ds-transition);
}
.ds-trust-badge:hover {
  border-color: var(--ds-border-hover);
  transform: translateY(-2px);
}

/* ── Process Steps ── */
.ds-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.ds-process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--ds-primary), var(--ds-accent), var(--ds-amber), var(--ds-purple));
  opacity: 0.2;
}
.ds-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ds-process-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--ds-mono);
  font-size: 28px;
  font-weight: 800;
  position: relative;
}
.ds-process-num::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(100, 116, 139, 0.2);
}
.ds-process-step h4 { font-size: 18px; margin: 0 0 8px; }
.ds-process-step p { font-size: 14px; max-width: 220px; margin: 0 auto; line-height: 1.65; }

/* ── Impact Numbers ── */
.ds-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ds-impact-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--ds-card);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  transition: transform var(--ds-transition), border-color var(--ds-transition);
}
.ds-impact-item:hover {
  transform: translateY(-4px);
  border-color: var(--ds-border-hover);
}
.ds-impact-number {
  font-family: var(--ds-mono);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.ds-impact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ds-impact-sublabel {
  font-size: 12px;
  color: var(--ds-text-muted);
  margin-top: 4px;
}

/* ── New section responsive ── */
@media (max-width: 991px) {
  .ds-process-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-process-grid::before { display: none; }
  .ds-impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .ds-process-grid { grid-template-columns: 1fr; }
  .ds-impact-grid { grid-template-columns: 1fr; }
  .ds-impact-number { font-size: 36px; }
  .ds-trust-badges { gap: 10px; }
  .ds-trust-badge { padding: 6px 12px; font-size: 10px; }
}

/* ═══════════════════════════════════════════════════════════
   SECURITY & TRUST SECTION
   ═══════════════════════════════════════════════════════════ */
.ds-security-graphic {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-shield-container {
  position: relative;
  z-index: 5;
}
.ds-shield-core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.06);
  border: 2px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dsSecurityPulse 3s ease-in-out infinite;
}
.ds-shield-pulse {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.15);
  animation: dsShieldPulseRing 3s ease-in-out infinite;
}
.ds-orbit-ring {
  position: absolute;
  inset: 0;
  animation: dsOrbitSpin 30s linear infinite;
}
.ds-orbit-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  background: rgba(9, 17, 31, 0.9);
  border: 1px solid var(--ds-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(var(--orbit-angle)) translateX(140px) rotate(calc(-1 * var(--orbit-angle)));
  animation: dsOrbitCounterSpin 30s linear infinite;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Security pillar summary bar */
.ds-security-pillar {
  text-align: center;
  padding: 24px 12px;
  background: var(--ds-card);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-sm);
  transition: transform var(--ds-transition), border-color var(--ds-transition);
}
.ds-security-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.3);
}
.ds-security-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

@keyframes dsSecurityPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
  50%      { box-shadow: 0 0 40px 10px rgba(34, 197, 94, 0.12); }
}
@keyframes dsShieldPulseRing {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.15); opacity: 0.1; }
}
@keyframes dsOrbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes dsOrbitCounterSpin {
  from { transform: rotate(var(--orbit-angle)) translateX(140px) rotate(calc(-1 * var(--orbit-angle) - 0deg)); }
  to   { transform: rotate(calc(var(--orbit-angle) + 360deg)) translateX(140px) rotate(calc(-1 * var(--orbit-angle) - 360deg)); }
}

/* ── Security responsive ── */
@media (max-width: 991px) {
  .ds-security-graphic { width: 280px; height: 280px; margin: 0 auto; }
  .ds-orbit-badge { transform: rotate(var(--orbit-angle)) translateX(110px) rotate(calc(-1 * var(--orbit-angle))); }
  #security [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  #security [style*="grid-template-columns:repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 576px) {
  .ds-security-graphic { width: 240px; height: 240px; }
  .ds-orbit-badge { width: 34px; height: 34px; margin: -17px 0 0 -17px; transform: rotate(var(--orbit-angle)) translateX(95px) rotate(calc(-1 * var(--orbit-angle))); }
  .ds-orbit-badge svg { width: 13px; height: 13px; }
  #security [style*="grid-template-columns:repeat(5"] { grid-template-columns: repeat(2, 1fr) !important; }
}
