/* Eclipse Landing - Index Page Styles */

/* HERO */
.hero {
  padding: 100px 64px 80px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 24px;
}

h1 span {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
}

/* HERO DEMO WINDOW */
.hero-demo {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(11,17,32,0.15);
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
}

.demo-bar {
  background: #1a2235;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.demo-bar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
}
.demo-bar-logo {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #1a2235;
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: -3px -3px 0 0 #2563EB;
  flex-shrink: 0;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.demo-dots span:nth-child(1) { background: #FF5F56; }
.demo-dots span:nth-child(2) { background: #FFBD2E; }
.demo-dots span:nth-child(3) { background: #27C93F; }

.demo-title {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 600;
}

.demo-body {
  padding: 32px;
}

/* DEMO TABS */
.demo-tabs {
  display: flex;
  gap: 6px;
  padding: 12px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #151d2e;
}
.demo-tabs::-webkit-scrollbar { display: none; }

.demo-tab {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.demo-tab:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}
.demo-tab.active {
  color: white;
  background: rgba(37,99,235,0.25);
  border-color: rgba(37,99,235,0.5);
}

/* CHAT */
.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-row.visible { opacity: 1; transform: translateY(0); }
.chat-row.user { flex-direction: row-reverse; }

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.chat-avatar.ai {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: white;
}

.chat-avatar.human {
  background: #2d3748;
  color: #9CA3AF;
}

.chat-bubble {
  max-width: 70%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-bubble.human {
  background: #1e2d47;
  color: #CBD5E1;
  border-radius: 12px 12px 4px 12px;
}

.chat-bubble.ai {
  background: #131e30;
  color: #E2E8F0;
  border-radius: 12px 12px 12px 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

.chat-bubble.ai strong {
  color: #60A5FA;
}

.metric-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chip {
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: #93C5FD;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

.chip.red {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.25);
  color: #FCA5A5;
}

.chip.green {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.25);
  color: #86EFAC;
}

/* CHAT ANIMATION */
.typing-indicator {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.typing-indicator.show { display: flex; }

.typing-dots {
  background: #131e30;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px 12px 12px 4px;
  padding: 12px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.typing-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4B5563;
  animation: typingBounce 1.2s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); background: #4B5563; }
  30% { transform: translateY(-5px); background: #6366F1; }
}
.replay-btn {
  display: none; margin: 12px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 12px; font-weight: 500;
  padding: 6px 16px; border-radius: 100px;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  width: fit-content;
}
.replay-btn:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.replay-btn.show { display: block; }

/* MINI DASHBOARD PREVIEW */
.mini-dash {
  background: #0d1524;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-top: 12px;
  overflow: hidden;
}
.mini-dash-bar {
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-dash-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.mini-dash-live {
  font-size: 9px;
  font-weight: 600;
  color: #34D399;
  display: flex;
  align-items: center;
  gap: 4px;
}
.mini-dash-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34D399;
}
.mini-dash-body {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mini-dash-metric {
  text-align: center;
}
.mini-dash-metric-value {
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.mini-dash-metric-label {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.mini-dash-metric-delta {
  font-size: 10px;
  font-weight: 600;
  margin-top: 2px;
}
.mini-dash-metric-delta.up { color: #34D399; }
.mini-dash-metric-delta.down { color: #F87171; }
.mini-dash-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mini-dash-chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  position: relative;
}
.mini-dash-chart-bar span {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.mini-dash-actions {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mini-dash-action {
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  cursor: default;
}

/* USE CASE CARD HIGHLIGHT */
.use-case-card.active {
  border-color: #93C5FD;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.15), 0 8px 24px rgba(37,99,235,0.1);
  transform: translateY(-2px);
}

/* INTEGRATIONS / LOGOS */
.logos-section {
  padding: 80px 64px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.logos-section .section-label {
  text-align: center;
}

.logos-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}

.logos-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  transition: opacity 0.25s;
}
.logo-item:hover { opacity: 1; }

.logo-item img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* USE CASES */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.use-case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.use-case-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 8px 24px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}

.use-case-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.use-case-icon svg {
  color: var(--blue);
}

.use-case-role {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.use-case-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.use-case-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* HOW IT WORKS */
.how-section {
  background: var(--navy);
  padding: 96px 64px;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-section .section-label { color: #93C5FD; }
.how-section .section-title { color: white; }
.how-section .section-sub { color: #9CA3AF; }

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

.layer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 32px 28px;
  transition: background 0.2s;
}
.layer-card:hover { background: rgba(255,255,255,0.07); }

.layer-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.layer-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.layer-desc {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.6;
}

/* STATS BAR */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 64px;
}
.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
}
.stat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
}
.stat-source {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 4px;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 96px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-align: left;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.author-role {
  font-size: 12px;
  color: var(--muted);
}

.stars {
  color: #FBBF24;
  font-size: 13px;
  margin-bottom: 14px;
}

/* SECURITY SECTION */
.security-section {
  padding: 96px 64px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.security-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.security-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.security-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 8px 24px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}
.security-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--blue);
}
.security-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.security-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* PRICING */
.pricing-section {
  padding: 96px 64px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.15), 0 12px 32px rgba(37,99,235,0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.pricing-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.25;
}

.pricing-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-check svg {
  width: 12px;
  height: 12px;
  color: var(--blue);
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
}
.pricing-cta:hover { transform: translateY(-1px); }

.pricing-cta.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.pricing-cta.primary:hover { opacity: 0.9; }

.pricing-cta.secondary {
  color: var(--text);
  background: white;
  border: 1.5px solid var(--border);
}
.pricing-cta.secondary:hover { border-color: #9CA3AF; }

/* CTA SECTION */
.cta-section {
  padding: 100px 64px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-section p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* TECH CALLOUT */
.tech-callout {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 64px;
  text-align: center;
}
.tech-callout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.tech-callout-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}
.tech-callout-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.tech-callout-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: white;
}
.tech-callout h3 {
  font-size: 22px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.3px; margin-bottom: 10px;
}
.tech-callout p {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-width: 560px; margin: 0 auto 24px;
}
.tech-callout-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--blue);
  text-decoration: none; transition: gap 0.2s;
}
.tech-callout-link:hover { gap: 10px; }

/* INTEGRATIONS LIBRARY LINK */
.integrations-link {
  display: inline-block;
  margin-top: 32px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.1s;
}
.integrations-link:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mobile-menu-cta {
  margin-top: 8px;
}

.stats-bar-title {
  text-align: center;
  margin: 0 auto 12px;
  max-width: 640px;
}

.stats-bar-sub {
  text-align: center;
  margin: 0 auto 48px;
}

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.tech-icon-blue {
  background: linear-gradient(135deg, #2563EB, #3B82F6);
}

.tech-icon-indigo {
  background: linear-gradient(135deg, #6366F1, #818CF8);
}

.tech-icon-purple {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.section-title-centered {
  margin: 0 auto 12px;
  text-align: center;
}

.section-sub-centered {
  margin: 0 auto;
  text-align: center;
}

.author-avatar-blue {
  background: linear-gradient(135deg, #3B82F6, #6366F1);
}

.author-avatar-green {
  background: linear-gradient(135deg, #10B981, #3B82F6);
}

.author-avatar-orange {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.pricing-title-centered {
  margin: 0 auto 12px;
  text-align: center;
  max-width: 600px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.footer-copy-spaced {
  margin-left: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero, .logos-section, .how-section, .testimonials-section, .pricing-section, .cta-section, .tech-callout, .stats-bar, .security-section { padding-left: 24px; padding-right: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .use-cases-grid, .layers-grid, .testimonials-grid, .security-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .hero-actions { flex-direction: column; }
}
