.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: 
    linear-gradient(rgba(30, 30, 45, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 30, 45, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  z-index: 0;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 64px);
}

.hero-content {
  max-width: 840px;
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-morph {
  margin-top: 64px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-morph-badge {
  margin-bottom: 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce-down 2s ease-in-out infinite;
}

.scroll-indicator-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.scroll-indicator-link:hover {
  opacity: 1;
  color: var(--accent);
}

.scroll-indicator-link svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce-down {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Flow section */
.flow-section {
  background: var(--bg-soft);
  padding: 80px 0;
}

.flow-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.flow-visual > * {
  flex-shrink: 0;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 160px;
  max-width: 260px;
  flex: 1 1 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.flow-node:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.flow-core {
  min-width: 200px;
  max-width: 300px;
  padding: 32px 24px;
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(13, 148, 136, 0.08);
}

.flow-core:hover {
  box-shadow: 0 0 60px rgba(13, 148, 136, 0.15);
}

.flow-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
}

.flow-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.flow-label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.flow-label-core {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.flow-sublabel {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
  max-width: 220px;
}

.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}

.flow-tag {
  padding: 4px 10px;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}

.flow-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
  border-radius: 1px;
}

.flow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(13, 148, 136, 0.4);
}

/* Bidirectional connector */
.flow-connector.bidirectional {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
}

.flow-arrow-top,
.flow-arrow-bottom {
  color: var(--accent);
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-arrow-top svg,
.flow-arrow-bottom svg {
  width: 16px;
  height: 16px;
}

/* Step number badge */
.flow-step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
}

/* Steps list inside GROWYNK node */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
  max-width: 220px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: left;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border-left: 2px solid var(--accent);
}

.flow-step::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  opacity: 0.6;
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Editorial providers section */
.providers-editorial {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.providers-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 24px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.providers-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  min-width: 100px;
}

.providers-stat:first-child {
  min-width: 120px;
}

.providers-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 4px;
}

.providers-number.accent {
  color: var(--accent);
  text-shadow: 0 0 60px rgba(13, 148, 136, 0.2);
}

.providers-label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.providers-con,
.providers-plus {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.4;
  font-style: italic;
  align-self: center;
  padding-top: 12px;
}

/* Watermark rows */
.providers-watermark-top,
.providers-watermark-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.providers-watermark-top span,
.providers-watermark-bottom span {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--text);
  opacity: 0.06;
  margin: 0 16px;
  line-height: 1.4;
  transition: opacity 0.4s ease, color 0.4s ease;
  cursor: default;
  user-select: none;
  white-space: nowrap;
}

.providers-watermark-top span:hover,
.providers-watermark-bottom span:hover {
  opacity: 1;
  color: var(--accent);
}

.providers-watermark-top span:nth-child(2n),
.providers-watermark-bottom span:nth-child(2n) {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 700;
  opacity: 0.04;
}

.providers-watermark-top span:nth-child(3n),
.providers-watermark-bottom span:nth-child(3n) {
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  font-weight: 500;
  opacity: 0.08;
}

.providers-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 500px;
  margin: 24px auto;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.provider-name:nth-child(4n) {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  opacity: 0.03;
}

.provider-name:nth-child(5n) {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 600;
  opacity: 0.05;
}

.final-cta {
  background-color: var(--accent);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.final-cta .section-header {
  position: relative;
  z-index: 1;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(13, 148, 136, 0.3);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}
