@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/fa-solid-900.woff2') format('woff2'), url('../fonts/fa-solid-900.ttf') format('truetype');
}

@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fa-regular-400.woff2') format('woff2'), url('../fonts/fa-regular-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fa-brands-400.woff2') format('woff2'), url('../fonts/fa-brands-400.ttf') format('truetype');
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #334155;
  background-color: #F0F4F8;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0B1829;
  margin-bottom: 0.5em;
}

h1 { font-size: 42px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.4; letter-spacing: 0em; }

p { margin-bottom: 1em; }
a { color: #14B8A6; text-decoration: none; }
a:hover { color: #0D9488; }

code, pre, .ss-mono {
  font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  color: #14B8A6;
}

.ss-bg-base { background-color: #F0F4F8; }
.ss-bg-alt { background-color: #E2EAF2; }
.ss-bg-dark { background-color: #060D1B; }

.ss-section { padding: 96px 0; }
.ss-section-sm { padding: 64px 0; }

.ss-btn-primary {
  display: inline-block;
  background-color: #14B8A6;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.ss-btn-primary:hover {
  background-color: #0D9488;
  color: #FFFFFF;
  text-decoration: none;
}

.ss-btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #14B8A6;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border: 2px solid #14B8A6;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.ss-btn-outline:hover {
  background-color: rgba(20,184,166,0.10);
  color: #0D9488;
  text-decoration: none;
}

.ss-btn-ghost {
  display: inline-block;
  background-color: rgba(255,255,255,0.08);
  color: #F1F5F9;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.ss-btn-ghost:hover {
  background-color: rgba(255,255,255,0.14);
  color: #FFFFFF;
  text-decoration: none;
}

.ss-btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.ss-accent { color: #14B8A6; }
.ss-secondary-color { color: #22D3EE; }
.ss-text-heading { color: #0B1829; }
.ss-text-body { color: #334155; }
.ss-text-muted { color: #64748B; }
.ss-text-heading-dark { color: #F1F5F9; }
.ss-text-body-dark { color: #CBD5E1; }
.ss-text-muted-dark { color: #94A3B8; }

.ss-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.ss-nav.nav-transparent {
  background-color: #060D1B;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.ss-nav.nav-solid,
.ss-nav.scrolled {
  background-color: #060D1B;
  box-shadow: 0 2px 8px rgba(6,13,27,0.40);
}

.ss-nav .navbar-brand {
  font-size: 22px;
  font-weight: 700;
  color: #F1F5F9;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.ss-nav .navbar-brand:hover { color: #14B8A6; }

.ss-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: #CBD5E1;
  padding: 8px 14px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.ss-nav .nav-link:hover,
.ss-nav .nav-link.active {
  color: #14B8A6;
}

.ss-nav .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}

.ss-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28203%2C213%2C225%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.ss-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #060D1B;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: none;
}

.ss-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(6,13,27,0.80);
  z-index: 1;
}

.ss-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ss-hero h1 {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #F1F5F9;
}

.ss-hero p.ss-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: #CBD5E1;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.ss-hero-subpage h1 {
  font-size: 42px;
}

.ss-hero-trust {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #94A3B8;
}

.ss-hero-trust span {
  color: #14B8A6;
}

.ss-dark-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 60% 40%, #0F1E35 0%, #060D1B 70%);
  padding: 80px 0 60px;
}

.ss-card {
  background-color: #FFFFFF;
  border: 1px solid #D1DCE9;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(6,13,27,0.08);
  transition: box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.ss-card:hover {
  box-shadow: 0 8px 24px rgba(6,13,27,0.14);
  border-left: 3px solid #14B8A6;
}

.ss-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ss-card-dark {
  background-color: #0F1E35;
  border: 1px solid #1E3358;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(6,13,27,0.08);
  transition: box-shadow 0.2s ease;
}

.ss-card-dark:hover {
  box-shadow: 0 8px 24px rgba(6,13,27,0.14);
}

.ss-feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(20,184,166,0.10);
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 22px;
  color: #14B8A6;
}

.ss-feature-icon-lg {
  width: 64px;
  height: 64px;
  font-size: 28px;
}

.ss-stats-bar .ss-stat-item {
  text-align: center;
  padding: 40px 16px;
}

.ss-stats-bar .ss-stat-number {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: #14B8A6;
  display: block;
}

.ss-stats-bar .ss-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  margin-top: 6px;
  display: block;
}

.ss-steps {
  position: relative;
}

.ss-step-item {
  text-align: center;
  padding: 0 24px;
}

.ss-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(20,184,166,0.12);
  border: 2px solid #14B8A6;
  color: #14B8A6;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ss-step-connector {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, #14B8A6 20%, #14B8A6 80%, transparent 95%);
  opacity: 0.30;
  pointer-events: none;
}

.ss-integrations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.ss-integration-chip {
  background-color: #FFFFFF;
  border: 1px solid #D1DCE9;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 2px 8px rgba(6,13,27,0.06);
}

.ss-img-placeholder {
  background-color: #D1DCE9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 13px;
  font-weight: 500;
  width: 100%;
}

.ss-about-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.ss-feature-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.ss-pull-quote {
  border-left: 4px solid #14B8A6;
  padding: 20px 28px;
  margin: 2rem 0;
  background-color: #FFFFFF;
  border-radius: 0 10px 10px 0;
  font-size: 18px;
  font-style: italic;
  color: #0B1829;
  font-weight: 500;
}

.ss-team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  max-width: 160px;
  margin: 0 auto 1rem;
}

.ss-team-card {
  background-color: #FFFFFF;
  border: 1px solid #D1DCE9;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(6,13,27,0.08);
  transition: box-shadow 0.2s ease;
}

.ss-team-card:hover {
  box-shadow: 0 8px 24px rgba(6,13,27,0.14);
}

.ss-ceo-card {
  background-color: #0F1E35;
  border: 1px solid #1E3358;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.ss-ceo-card .ss-team-photo {
  max-width: 140px;
  flex-shrink: 0;
}

.ss-blog-card {
  background-color: #FFFFFF;
  border: 1px solid #D1DCE9;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(6,13,27,0.08);
  transition: box-shadow 0.2s ease;
}

.ss-blog-card:hover {
  box-shadow: 0 8px 24px rgba(6,13,27,0.14);
}

.ss-blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ss-blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ss-blog-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #64748B;
  margin-bottom: 0.5rem;
  display: block;
}

.ss-blog-body h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #0B1829;
  margin-bottom: 0.75rem;
}

.ss-blog-body h5 a {
  color: #0B1829;
  text-decoration: none;
}

.ss-blog-body h5 a:hover {
  color: #14B8A6;
}

.ss-blog-body p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  flex: 1;
}

.ss-read-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #14B8A6;
  margin-top: auto;
  padding-top: 0.75rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ss-read-more:hover { color: #0D9488; }

.ss-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 3rem;
}

.ss-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #D1DCE9;
  background-color: #FFFFFF;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ss-pagination a:hover,
.ss-pagination a.active {
  background-color: #14B8A6;
  border-color: #14B8A6;
  color: #FFFFFF;
}

.ss-form-group {
  margin-bottom: 1.25rem;
}

.ss-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}

.ss-form-control {
  width: 100%;
  background-color: #FFFFFF;
  color: #0B1829;
  border: 1px solid #D1DCE9;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.ss-form-control::placeholder { color: #94A3B8; }

.ss-form-control:focus {
  border: 2px solid #14B8A6;
}

textarea.ss-form-control {
  min-height: 120px;
  resize: vertical;
}

.ss-contact-card {
  background-color: #FFFFFF;
  border: 1px solid #D1DCE9;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(6,13,27,0.08);
}

.ss-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.ss-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(20,184,166,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 15px;
  flex-shrink: 0;
}

.ss-contact-item p {
  margin: 0;
  font-size: 15px;
  color: #334155;
}

.ss-contact-item a {
  color: #14B8A6;
}

.ss-footer {
  background-color: #060D1B;
  padding: 64px 0 32px;
}

.ss-footer .ss-footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #F1F5F9;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.ss-footer .ss-footer-tagline {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.ss-footer .ss-footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F1F5F9;
  margin-bottom: 1rem;
}

.ss-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ss-footer ul li {
  margin-bottom: 0.5rem;
}

.ss-footer ul li a {
  font-size: 14px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ss-footer ul li a:hover { color: #14B8A6; }

.ss-footer .ss-footer-contact p {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 0.5rem;
}

.ss-footer .ss-footer-contact a {
  color: #94A3B8;
  text-decoration: none;
}

.ss-footer .ss-footer-contact a:hover { color: #14B8A6; }

.ss-footer-divider {
  border-top: 1px solid #1E3358;
  margin: 2rem 0 1.5rem;
}

.ss-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ss-footer-copy {
  font-size: 13px;
  color: #64748B;
}

.ss-social-links {
  display: flex;
  gap: 12px;
}

.ss-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #94A3B8;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ss-social-links a:hover {
  background-color: rgba(20,184,166,0.15);
  border-color: #14B8A6;
  color: #14B8A6;
}

.ss-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #0F1E35;
  border-top: 1px solid #1E3358;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 -4px 16px rgba(6,13,27,0.40);
}

.ss-cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: #CBD5E1;
  flex: 1;
  min-width: 200px;
}

.ss-cookie-banner p a {
  color: #14B8A6;
  text-decoration: underline;
}

.ss-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ss-legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.ss-legal-content h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: #0B1829;
}

.ss-legal-content h3 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #0B1829;
}

.ss-legal-content p, .ss-legal-content li {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
}

.ss-legal-content ul, .ss-legal-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.ss-values-row .ss-value-card {
  background-color: #0F1E35;
  border: 1px solid #1E3358;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ss-404-page {
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 30%, #0F1E35 0%, #060D1B 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ss-404-icon {
  font-size: 5rem;
  color: #14B8A6;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 24px rgba(20,184,166,0.35));
}

.ss-404-code {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #14B8A6;
  margin-bottom: 0.5rem;
  display: block;
}

.ss-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #14B8A6;
  margin-bottom: 0.75rem;
}

.ss-divider {
  border: none;
  border-top: 1px solid #D1DCE9;
  margin: 0;
}

.ss-divider-dark {
  border: none;
  border-top: 1px solid #1E3358;
  margin: 0;
}

.ss-module-card {
  background-color: #FFFFFF;
  border: 1px solid #D1DCE9;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(6,13,27,0.08);
  transition: box-shadow 0.2s ease;
}

.ss-module-card:hover {
  box-shadow: 0 8px 24px rgba(6,13,27,0.14);
}

.ss-module-card .ss-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ss-module-card .ss-text-link {
  color: #14B8A6;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.75rem;
}

.ss-module-card .ss-text-link:hover { color: #0D9488; }

.ss-zigzag-item {
  padding: 64px 0;
}

.ss-zigzag-item .ss-feature-img {
  border-radius: 12px;
}

.ss-usecase-card {
  background-color: #FFFFFF;
  border: 1px solid #D1DCE9;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(6,13,27,0.08);
}

.ss-usecase-industry {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14B8A6;
  background-color: rgba(20,184,166,0.10);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
  .ss-hero h1 { font-size: 44px; }
  .ss-section { padding: 72px 0; }
  .ss-step-connector { display: none; }
  .ss-ceo-card { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 767px) {
  .ss-hero h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .ss-section { padding: 56px 0; }
  .ss-stats-bar .ss-stat-number { font-size: 32px; }
  .ss-footer-bottom { flex-direction: column; text-align: center; }
}

/* === Logo v2: dual-variant dark/light === */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}

/* Starseer nav + footer are always on dark bg; always show light logo variant */
.logo-img--light { display: inline-block !important; }
.logo-img--dark  { display: none !important; }

/* Blog detail hero image: centered, wider than text column, rounded */
.ss-blog-hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Footer logo always shows light variant */
footer .logo-img { max-height: 48px; }
