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

.sc { background: #ffffff; color: #0a0a0a; font-family: 'Inter', -apple-system, sans-serif; min-height: 100vh; -webkit-font-smoothing: antialiased; }
.sc *, .sc *::before, .sc *::after { box-sizing: border-box; }
.sc a { color: inherit; text-decoration: none; }
.sc-mono { font-family: 'JetBrains Mono', monospace; }

/* Brand palette — aqua marine (#00acc1 reference) */
:root {
  --aq-50:  #e0f7fa;
  --aq-100: #b2ebf2;
  --aq-200: #80deea;
  --aq-300: #4dd0e1;
  --aq-400: #26c6da;
  --aq-500: #00bcd4;
  --aq-600: #00acc1;
  --aq-700: #0097a7;
  --aq-800: #00838f;
  --aq-900: #006064;
  --navy-900: #0a1f33;
  --navy-700: #1e3a5f;
  --navy-500: #2d5a87;
}

/* Nav */
.sc-nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid #f1f3f5; gap: 24px; }
.sc-nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; cursor: pointer; border-radius: 6px; transition: background 0.15s; }
.sc-nav-toggle:hover { background: var(--aq-50); }
.sc-nav-toggle span { display: block; width: 22px; height: 2px; background: #0a0a0a; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.sc-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.sc-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sc-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.sc-brand { display: inline-flex; align-items: center; }
.sc-brand-logo { height: 32px; width: auto; display: block; }
.sc-nav-links { display: flex; gap: 32px; font-size: 14px; color: #525252; font-weight: 500; align-items: center; }
.sc-nav-links a { transition: color 0.2s; }
.sc-nav-links a:hover { color: var(--aq-700); }

/* Nav dropdown */
.sc-nav-dropdown { position: relative; }
.sc-nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; padding: 0; margin: 0;
  font: inherit; color: #525252; font-weight: 500; font-size: 14px;
  cursor: pointer; transition: color 0.2s;
}
.sc-nav-dropdown-toggle:hover { color: var(--aq-700); }
.sc-nav-dropdown-toggle svg { transition: transform 0.2s; opacity: 0.7; }
.sc-nav-dropdown-toggle[aria-expanded="true"] { color: var(--aq-700); }
.sc-nav-dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.sc-nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  min-width: 240px; padding: 6px;
  background: #ffffff;
  border: 1px solid #e5e7eb; border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.04);
  display: flex; flex-direction: column;
  z-index: 100;
}
.sc-nav-dropdown-menu::before {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px; background: #ffffff; border-left: 1px solid #e5e7eb; border-top: 1px solid #e5e7eb;
}
.sc-nav-dropdown-item {
  padding: 9px 12px; font-size: 14px; color: #262626;
  border-radius: 8px; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.sc-nav-dropdown-item:hover { background: var(--aq-50); color: var(--aq-700); }
.sc-nav-actions { display: flex; gap: 8px; align-items: center; }
.sc-nav-signin { padding: 8px 14px; font-size: 14px; color: #525252; font-weight: 500; }
.sc-nav-signin:hover { color: #0a0a0a; }
.sc-nav-cta { padding: 8px 16px; border-radius: 8px; background: var(--aq-600); color: #fff !important; font-size: 14px; font-weight: 500; transition: background 0.2s; box-shadow: 0 1px 2px rgba(0, 131, 143, 0.18); }
.sc-nav-cta:hover { background: var(--aq-700); }

/* Hero */
.sc-hero { position: relative; padding: 80px 24px 0; text-align: center; overflow: hidden; }
.sc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--aq-100) 0%, transparent 70%),
    linear-gradient(180deg, #f4faf9 0%, #ffffff 70%);
  pointer-events: none;
  z-index: 0;
}
.sc-hero-inner { position: relative; max-width: 980px; margin: 0 auto; z-index: 1; }
.sc-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(255,255,255,0.75); border: 1px solid var(--aq-200); border-radius: 999px; font-size: 13px; color: var(--aq-800); font-weight: 500; backdrop-filter: blur(8px); margin-bottom: 28px; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.sc-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--aq-500); box-shadow: 0 0 0 3px rgba(77, 166, 169, 0.22); }
.sc-h1 { font-size: clamp(2.5rem, 1.75rem + 4vw, 5rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.04em; margin: 0 0 24px; color: #0a0a0a; }
.sc-h1 span { background: linear-gradient(135deg, var(--navy-700) 0%, var(--aq-600) 50%, var(--aq-400) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sc-tagline { font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem); color: #525252; line-height: 1.55; max-width: 640px; margin: 0 auto 36px; }
.sc-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.sc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 10px; font-weight: 500; font-size: 15px; transition: all 0.2s; }
.sc-btn-primary { background: var(--aq-600); color: #ffffff; box-shadow: 0 2px 6px rgba(0, 131, 143, 0.22), inset 0 1px 0 rgba(255,255,255,0.18); }
.sc-btn-primary:hover { background: var(--aq-700); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 131, 143, 0.32); }

/* Hero product mockup wrapper */
.sc-hero-roles { position: relative; z-index: 1; max-width: 1240px; margin: 56px auto 0; padding: 0 24px; }
.sc-actions-after-roles { justify-content: center; margin-top: 64px; }
.sc-mock-section { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-3xl); }
.sc-mock-wrap { position: relative; max-width: 1240px; margin: 0 auto; padding: 0 24px; z-index: 1; }
.sc-mock-wrap::before {
  content: '';
  position: absolute;
  inset: -60px -60px 0 -60px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(77, 166, 169, 0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}
.sc-mock { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px; box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06); overflow: hidden; }
.sc-mock-bar { display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-bottom: 1px solid #f1f3f5; background: #fafbfc; }
.sc-mock-dots { display: flex; gap: 6px; }
.sc-mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: #e5e7eb; }
.sc-mock-url { flex: 1; max-width: 360px; padding: 4px 12px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 6px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #737373; }

/* === Dashboard mockup === */
.sc-dash { background: #f5f5f5; padding: 16px; }
.sc-dash-row { display: grid; gap: 12px; margin-bottom: 12px; }
.sc-dash-row.kpis { grid-template-columns: repeat(4, 1fr); }
.sc-dash-row.split { grid-template-columns: 1.4fr 1fr; }
.sc-dash-row:last-child { margin-bottom: 0; }

.sc-kpi { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 14px 16px 16px; position: relative; overflow: hidden; }
.sc-kpi::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; }
.sc-kpi.kpi-blue::before { background: var(--aq-500); }
.sc-kpi.kpi-amber::before { background: #f59e0b; }
.sc-kpi-h { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #6b7280; font-weight: 500; }
.sc-kpi-h svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--aq-600); }
.sc-kpi.kpi-amber .sc-kpi-h svg { color: #b45309; }
.sc-kpi-num { font-size: 32px; font-weight: 800; color: #0a0a0a; line-height: 1.1; margin-top: 4px; letter-spacing: -0.025em; }

.sc-panel { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; }
.sc-panel-h { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; }
.sc-panel-h h3 { font-size: 15px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.sc-panel-h-tools { display: flex; align-items: center; gap: 8px; }
.sc-panel-h .refresh { width: 22px; height: 22px; border-radius: 4px; color: #9ca3af; display: inline-flex; align-items: center; justify-content: center; cursor: default; }
.sc-pill-mini { font-size: 11px; padding: 3px 9px; border-radius: 999px; font-weight: 500; }
.pl-red { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.pl-green { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.pl-amber { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.pl-blue { background: var(--aq-50); color: var(--aq-700); border: 1px solid var(--aq-200); }
.pl-gray { background: #f9fafb; color: #525252; border: 1px solid #e5e7eb; }
.pl-red-out { background: transparent; color: #b91c1c; border: 1px solid #fecaca; }
.pl-blue-out { background: transparent; color: var(--aq-700); border: 1px solid var(--aq-200); }

/* Maintenance alerts */
.sc-alerts { padding: 0 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.sc-alert { background: #fafafa; border: 1px solid #f1f3f5; border-left: 4px solid; border-radius: 6px; padding: 10px 12px; display: grid; grid-template-columns: 24px 1fr auto; gap: 12px; align-items: center; }
.sc-alert.crit { border-left-color: #dc2626; }
.sc-alert.high { border-left-color: #f59e0b; }
.sc-alert.med { border-left-color: #f59e0b; opacity: 0.95; }
.sc-alert-icon { width: 22px; height: 22px; border-radius: 4px; background: #f1f3f5; color: #6b7280; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.sc-alert.crit .sc-alert-icon { background: #fef2f2; color: #dc2626; }
.sc-alert-meta b { font-weight: 600; font-size: 13px; }
.sc-alert-meta .vessel-pill { display: inline-block; font-size: 10.5px; padding: 1px 7px; background: #f1f3f5; color: #525252; border-radius: 4px; margin-right: 6px; font-weight: 500; }
.sc-alert-meta .sub { display: block; font-size: 11.5px; color: #737373; margin-top: 4px; }
.sc-alert-meta .bar { display: block; height: 3px; border-radius: 2px; margin-top: 6px; max-width: 100%; }
.sc-alert.crit .bar { background: #dc2626; }
.sc-alert.high .bar { background: #f59e0b; }
.sc-alert.med .bar { background: #f59e0b; opacity: 0.7; }
.sc-alert .ext { width: 22px; height: 22px; color: #9ca3af; display: inline-flex; align-items: center; justify-content: center; }

/* Risk panel */
.sc-risk { padding: 0 16px 16px; }
.sc-risk-avg { font-size: 12px; color: #525252; margin-bottom: 4px; }
.sc-risk-avgbar { height: 4px; background: #ecfdf5; border-radius: 2px; overflow: hidden; margin-bottom: 18px; }
.sc-risk-avgbar > i { display: block; height: 100%; background: #10b981; width: 27%; }
.sc-risk-list { display: flex; flex-direction: column; gap: 16px; }
.sc-risk-row { font-size: 13px; }
.sc-risk-row-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.sc-risk-row-head svg { width: 14px; height: 14px; color: var(--aq-600); }
.sc-risk-row-head b { font-weight: 600; font-size: 13px; }
.sc-risk-row-head .loc { color: #737373; font-size: 11.5px; margin-left: 4px; font-weight: 400; }
.sc-risk-bar { position: relative; height: 4px; background: #f1f3f5; border-radius: 2px; }
.sc-risk-bar > i { position: absolute; left: 0; top: 0; height: 100%; border-radius: 2px; }
.sc-risk-row.medium .sc-risk-bar > i { background: #f59e0b; width: 48%; }
.sc-risk-row.low-1 .sc-risk-bar > i { background: #10b981; width: 16%; }
.sc-risk-row.low-2 .sc-risk-bar > i { background: #10b981; width: 16%; }
.sc-risk-row-foot { display: flex; align-items: center; justify-content: flex-end; gap: 6px; margin-top: 4px; font-size: 11.5px; color: #525252; }

/* Faults panel */
.sc-faults-tabs { display: flex; gap: 6px; padding: 0 16px 12px; }
.sc-tab-pill { font-size: 12px; padding: 4px 10px; border-radius: 999px; font-weight: 500; cursor: default; }
.sc-faults-list { padding: 0 12px 12px; max-height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.sc-faults-list::-webkit-scrollbar { width: 8px; }
.sc-faults-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
.sc-fault { background: #fafafa; border: 1px solid #f1f3f5; border-left: 4px solid transparent; border-radius: 6px; padding: 12px; display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; }
.sc-fault.review { border-left-color: var(--aq-500); }
.sc-fault.open { border-left-color: transparent; }
.sc-fault-meta b { font-weight: 600; font-size: 13px; }
.sc-fault-meta .vessel-pill { display: inline-block; font-size: 10.5px; padding: 1px 7px; background: #f1f3f5; color: #525252; border-radius: 4px; margin-right: 6px; font-weight: 500; }
.sc-fault-meta .ico { color: #f59e0b; font-size: 11px; margin-right: 4px; }
.sc-fault-meta .sub { display: block; font-size: 11.5px; color: #737373; margin-top: 4px; }
.sc-fault .ext { width: 22px; height: 22px; color: #9ca3af; display: inline-flex; align-items: center; justify-content: center; }

/* Logo strip */
.sc-logos { padding: 100px 32px 0; max-width: 1080px; margin: 0 auto; text-align: center; }
.sc-logos-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #a3a3a3; font-weight: 600; margin-bottom: 24px; }
.sc-logos-row { display: flex; justify-content: space-around; align-items: center; gap: 32px; flex-wrap: wrap; opacity: 0.55; }
.sc-logo-faux { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.015em; color: #525252; }

/* Section base */
.sc-section { padding: 100px 32px; max-width: 1280px; margin: 0 auto; }
.sc-section-head { margin: 0 auto 56px; max-width: 720px; text-align: center; }
.sc-section-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--aq-700); margin-bottom: 14px; }
.sc-section-title { font-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 14px; color: #0a0a0a; }
.sc-section-sub { font-size: 17px; color: #525252; line-height: 1.55; margin: 0; }

/* Roles grid */
.sc-roles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.sc-role { padding: 22px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; gap: 14px; }
.sc-role:hover { transform: translateY(-4px); border-color: var(--aq-200); box-shadow: 0 12px 28px rgba(77, 166, 169, 0.12); }
.sc-role-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--aq-50) 0%, var(--aq-100) 100%); border: 1px solid var(--aq-200); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; color: var(--aq-700); }
.sc-role h3 { font-size: 16px; font-weight: 700; margin: 0; letter-spacing: -0.01em; color: #0a0a0a; }
.sc-role ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sc-role li { font-size: 13.5px; line-height: 1.5; color: #525252; padding-left: 18px; position: relative; }
.sc-role li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--aq-500); opacity: 0.85; }

/* Stats */
.sc-stats { background: #f4faf9; border-top: 1px solid #f1f3f5; border-bottom: 1px solid #f1f3f5; }
.sc-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1080px; margin: 0 auto; }
.sc-stat { padding: 32px 28px; border-right: 1px solid #e5e7eb; }
.sc-stat:last-child { border-right: none; }
.sc-stat-num { font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #0a0a0a; }
.sc-stat-num span { color: var(--aq-700); }
.sc-stat-title { font-size: 14px; font-weight: 600; color: #0a0a0a; margin: 12px 0 4px; }
.sc-stat-desc { font-size: 13px; color: #737373; line-height: 1.5; }
.sc-stats-foot { padding: 16px 32px; max-width: 1080px; margin: 0 auto; font-size: 11px; color: #a3a3a3; text-align: center; line-height: 1.5; }

/* AI section */
.sc-ai { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sc-ai-side h2 { font-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 16px; }
.sc-ai-side p { color: #525252; font-size: 16px; line-height: 1.6; margin: 0 0 28px; }
.sc-ai-features { display: flex; flex-direction: column; gap: 16px; }
.sc-ai-feature { display: flex; gap: 14px; }
.sc-ai-feature-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: var(--aq-50); border: 1px solid var(--aq-200); color: var(--aq-700); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.sc-ai-feature b { display: block; font-size: 15px; color: #0a0a0a; margin-bottom: 3px; font-weight: 600; }
.sc-ai-feature span { font-size: 14px; color: #525252; line-height: 1.5; }

.sc-chat { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px; box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10); overflow: hidden; }
.sc-chat-head { padding: 12px 16px; border-bottom: 1px solid #f1f3f5; background: #fafbfc; display: flex; align-items: center; gap: 10px; font-size: 13px; }
.sc-chat-head-mark { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, var(--aq-500), var(--aq-700)); }
.sc-chat-head b { font-weight: 600; }
.sc-chat-head .conn { margin-left: auto; font-size: 11px; color: #047857; display: inline-flex; align-items: center; gap: 4px; font-family: 'JetBrains Mono', monospace; }
.sc-chat-head .conn::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #047857; }
.sc-chat-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.sc-chat-msg-user { align-self: flex-end; max-width: 80%; padding: 10px 14px; background: #0a0a0a; color: white; border-radius: 16px 16px 4px 16px; font-size: 13px; line-height: 1.45; }
.sc-chat-msg-ai { display: flex; gap: 10px; align-items: flex-start; }
.sc-chat-msg-ai .avatar { width: 24px; height: 24px; border-radius: 6px; background: linear-gradient(135deg, var(--aq-500), var(--aq-700)); flex-shrink: 0; }
.sc-chat-msg-ai .bubble { flex: 1; background: #f8fafc; border: 1px solid #f1f3f5; border-radius: 4px 16px 16px 16px; padding: 12px 14px; font-size: 13px; line-height: 1.55; color: #262626; }
.sc-chat-msg-ai .bubble p { margin: 0 0 6px; }
.sc-chat-msg-ai .bubble p:last-child { margin: 0; color: #737373; font-size: 12px; }
.sc-chat-msg-ai .bubble .hl { color: var(--aq-700); font-weight: 600; }

/* CTA */
.sc-cta { padding: 80px 32px; }
.sc-cta-card { max-width: 1080px; margin: 0 auto; padding: 64px 48px; border-radius: 20px; background: linear-gradient(135deg, var(--navy-700) 0%, var(--aq-700) 50%, var(--aq-500) 100%); color: white; text-align: center; position: relative; overflow: hidden; }
.sc-cta-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 70%); pointer-events: none; }
.sc-cta-card h2 { font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 28px; position: relative; }
.sc-cta-card .sc-actions { position: relative; margin: 0; }
.sc-cta-card .sc-btn-primary { background: white; color: var(--aq-800); }
.sc-cta-card .sc-btn-primary:hover { background: var(--aq-50); color: var(--aq-800); }

/* Events / Blog cards */
.sc-events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.sc-events-grid-lg { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px; }
.sc-event-card { display: flex; flex-direction: column; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; text-decoration: none; color: inherit; }
a.sc-event-card:hover { transform: translateY(-3px); border-color: var(--aq-200); box-shadow: 0 12px 28px rgba(0, 172, 193, 0.10); }
.sc-event-card img { width: 100%; height: 200px; object-fit: cover; }
.sc-events-grid:not(.sc-events-grid-lg) .sc-event-card img { height: 160px; }
.sc-event-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; }
.sc-event-body h3 { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; color: #0a0a0a; }
.sc-event-date { display: inline-flex; align-self: flex-start; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--aq-700); background: var(--aq-50); border: 1px solid var(--aq-200); letter-spacing: 0.01em; }
.sc-event-date-muted { color: #737373; background: #f1f3f5; border-color: #e5e7eb; }
.sc-event-meta { font-size: 13px; color: #525252; display: flex; align-items: center; gap: 6px; }
.sc-event-blurb { margin: 4px 0 0; font-size: 14px; line-height: 1.6; color: #525252; }
.sc-event-past { opacity: 0.78; }
.sc-event-past:hover { opacity: 1; }

/* Full footer */
.sc-foot-wrap { background: #fafbfc; border-top: 1px solid #f1f3f5; padding: 56px 32px 24px; }
.sc-foot-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid #f1f3f5; }
.sc-foot-brand { display: flex; flex-direction: column; gap: 14px; }
.sc-foot-brand .sc-brand-logo { height: 36px; }
.sc-foot-brand p { margin: 0; max-width: 280px; color: #525252; font-size: 14px; line-height: 1.55; }
.sc-foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sc-foot-cols h4 { margin: 0 0 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #0a0a0a; }
.sc-foot-cols a { display: block; padding: 4px 0; font-size: 14px; color: #525252; text-decoration: none; transition: color 0.2s; }
.sc-foot-cols a:hover { color: var(--aq-700); }
.sc-foot-bottom { max-width: 1280px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #737373; }
.sc-foot-legal { display: flex; gap: 20px; }
.sc-foot-legal a { color: #737373; text-decoration: none; }
.sc-foot-legal a:hover { color: var(--aq-700); }

/* Compact footer (kept for /preview/showcase) */
.sc-foot { padding: 40px 32px; border-top: 1px solid #f1f3f5; display: flex; justify-content: space-between; font-size: 13px; color: #737373; }
.sc-foot a { color: var(--aq-700); }

@media (max-width: 1080px) {
  .sc-dash-row.kpis { grid-template-columns: repeat(2, 1fr); }
  .sc-dash-row.split { grid-template-columns: 1fr; }
  .sc-foot-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .sc-stats-grid { grid-template-columns: 1fr 1fr; }
  .sc-stat { border-right: none; border-bottom: 1px solid #e5e7eb; }
  .sc-ai { grid-template-columns: 1fr; }
  .sc-nav-toggle { display: inline-flex; }
  .sc-nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; border-bottom: 1px solid #e5e7eb; flex-direction: column; align-items: stretch; padding: 12px 16px 18px; gap: 4px; box-shadow: 0 8px 24px rgba(15,23,42,0.06); }
  .sc-nav-links.open { display: flex; }
  .sc-nav-links a, .sc-nav-dropdown-toggle { padding: 10px 12px; border-radius: 8px; }
  .sc-nav-links a:hover, .sc-nav-dropdown-toggle:hover { background: var(--aq-50); }
  .sc-nav-dropdown { width: 100%; }
  .sc-nav-dropdown-menu { position: static; transform: none; margin-top: 4px; min-width: 0; box-shadow: none; border: 1px solid #f1f3f5; }
  .sc-nav-dropdown-menu::before { display: none; }
  .sc-foot-cols { grid-template-columns: 1fr 1fr; }
  .sc-foot-bottom { flex-direction: column; gap: 12px; }
}
