:root {
  --text-main: #fff;
  --bg-main: #08090a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-main);
}

.navbar {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.logo img {
  height: 24px;
}

.logo span {
  color: var(--text-main);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-secondary {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
  color: #020617;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 99px;
  background-color: var(--text-main);
}

.btn-primary:hover {
  background-color: #f1f5f9;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;

  background-image: url("./assets/hero-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 36px;
  text-align: center;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
}

.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 4px 10px;
  background: rgba(91, 100, 117, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s;
}

.announcement-pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.badge-new {
  background: #059669;
  color: var(--text-main);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.announcement-text {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
}

.arrow-circle {
  width: 24px;
  height: 24px;
  background: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.arrow-circle svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

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

.email-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.215);
  border: 1px solid rgba(255, 255, 255, 0.215);
  backdrop-filter: blur(4px);
  padding: 8px;
  border-radius: 99px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.email-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  padding-left: 1.5rem;
  flex: 1;
  font-size: 1rem;
}

.btn-start {
  background: var(--text-main);
  color: #020617;
  border: none;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.hero-ui-preview {
  margin-top: 5rem;
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.hero-ui-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -20px 50px -10px rgba(16, 185, 129, 0.3);
}

.logo-garden {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 6rem;
  width: 100%;
  max-width: 1100px;
  align-items: center;
  justify-items: center;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
}

.logo-item img {
  max-width: 140px;
  max-height: 40px;
  width: auto;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo-item img:hover {
  opacity: 1;
}

.features-section {
  padding: 120px 20px;
  color: #fff;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: span 2;
}

.card-content {
  padding: 40px 40px 20px 40px;
}

.centered-card .card-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.feature-tag {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--text-main);
  line-height: 1.6;
  font-size: 1rem;
}

.card-visual {
  margin-top: auto;
  padding: 24px 92px;
  width: 100%;
  position: relative;
}

.large-visual video {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.enterprise-section {
  background-color: #151616;
  padding: 120px 20px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.enterprise-container {
  max-width: 1000px;
  margin: 0 auto;
}

.enterprise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 2rem;
}

.section-tag {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.enterprise-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.enterprise-subtitle {
  color: var(--text-main);
  font-size: 1.125rem;
  max-width: 500px;
  line-height: 1.6;
}

.btn-enterprise {
  background: #ffffff;
  color: #020617;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.enterprise-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  max-width: 900px;
}

.ent-icon {
  color: #10b981;
  margin-bottom: 1.5rem;
}

.ent-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ent-feature-desc {
  color: #a2aaab;
  line-height: 1.6;
  font-size: 1rem;
}

.story-card {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  background-image: url("./assets/story-bg.svg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
}

.story-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  width: 100%;
  max-width: 600px;
}

.story-label {
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.story-headline {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.story-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
}

.story-stats {
  display: flex;
  gap: 4rem;
  margin-top: auto;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: #94a3b8;
  font-size: 0.875rem;
  display: block;
  max-width: 200px;
  line-height: 1.5;
}

.enterprise-logos {
  display: flex;
  justify-content: space-evenly;
  gap: 3rem;
  margin-top: 40px;
  padding-left: 20px;
}

.logo-text {
  font-weight: 600;
  font-size: 1.2rem;
}

.customers-section {
  background-color: var(--bg-main);
  padding: 100px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.customers-container {
  margin: 0 auto;
}

.section-tag {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
  text-align: center;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.customer-card {
  display: flex;
  flex-direction: column;
}

.customer-card-visual {
  height: 260px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.visual-lovable {
  background-image: url("./assets/lovable-bg.webp");
}
.visual-x {
  background-image: url("./assets/x-bg.png");
}
.visual-kalshi {
  background-image: url("./assets/kalshi-bg.png");
}
.visual-together-ai {
  background-image: url("./assets/together-ai.webp");
}

.visual-logo-img {
  position: relative;
  z-index: 2;
  max-width: 140px;
  max-height: 50px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.customer-card:hover .visual-logo-img {
  transform: translateY(-5px);
}

.card-body {
  padding: 0 4px;
}

.customer-quote {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-story {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.read-story:hover .arrow {
  transform: translateX(4px);
}

.arrow {
  transition: transform 0.2s;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #020617;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.nav-arrow:hover {
  opacity: 0.9;
}

.cta-section {
  padding: 120px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  color: #94a3b8;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 5rem;
}

.btn-cta-primary {
  background: #ffffff;
  color: #020617;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 99px;
  transition: background 0.2s;
}

.btn-cta-primary:hover {
  background: #f1f5f9;
}

.btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s;
}

.btn-cta-secondary:hover {
  border-color: #ffffff;
}

.cta-resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.resource-block {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bordered {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-icon {
  width: 48px;
  height: 48px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #10b981;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resource-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.resource-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.resource-link:hover .arrow {
  transform: translateX(3px);
}

.arrow {
  transition: transform 0.2s;
  font-size: 1.2em;
  line-height: 1;
}

.site-footer {
  background: linear-gradient(to bottom, #08090a 0%, #151616 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 20px;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 974px;
  margin: 0 auto;

  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  padding: 80px 40px 40px;

  min-height: 400px;
}

.footer-security,
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-logo img {
  height: 24px;
}

.footer-socials {
  display: flex;
  gap: 20px;
  color: #3a3b3b;
}

.footer-socials a {
  color: inherit;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #6e6f6f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #10b981;
}

.footer-security {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.security-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.soc2-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge-ring {
  font-size: 8px;
  line-height: 1;
  color: #94a3b8;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  font-size: 0.85rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 99px;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.theme-toggles {
  display: flex;
  align-items: center;
  background: #212222;
  padding: 4px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 2px;
}

.theme-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.theme-btn:hover {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.1);
}

.theme-btn.active {
  background-color: #ffffff;
  color: #020617;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.theme-btn.active:hover {
  background-color: #ffffff;
}
