:root {
  --bg-base: #0A0A0B;
  --bg-surface: #1A1A1C;
  --border-subtle: #2E2E32;
  --text-primary: #EDEDED;
  --text-secondary: #A1A1AA;
  --accent-blue: #0062FF;
  --accent-blue-hover: #0055DF;
  --border-hover: #4A4A52;
}

html,
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

::selection {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.site-header {
  background: rgba(10, 10, 11, 0.9);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.nav-link {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-primary);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 34px 8px 12px;
  line-height: 1;
  transition: all 0.2s ease;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-secondary) 50%),
    linear-gradient(135deg, var(--text-secondary) 50%, transparent 50%);
  background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.lang-select:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.lang-select:focus {
  outline: none;
  border-color: rgba(0, 98, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.20);
}

.hero-pill {
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
}

.hero-title {
  color: var(--text-primary);
}

.hero-subtitle {
  color: var(--text-secondary);
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-blue);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 999px;
  padding: 14px 32px;
  transition: all 0.2s ease;
}

.btn-primary-cta:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.25);
}

.hero-note {
  color: var(--text-secondary);
}

.hero-visual-container {
  max-width: 1500px;
  margin: 64px auto;
  aspect-ratio: 16 / 9;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-video,
.hero-visual-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-proof {
  width: 100%;
  max-width: 1000px;
  margin: -32px auto 0;
  padding: 0 0 6px;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.social-proof-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.trust-bar {
  margin-top: 22px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.trust-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.trust-pill:hover {
  opacity: 1;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: all 0.2s ease;
}

.platform-pill:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.platform-pill--jira {
  color: #2684FF;
}

.platform-pill--notion {
  color: #EFEFEF;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-title {
  color: var(--text-primary);
}

.feature-desc {
  color: var(--text-secondary);
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.section-shell {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  color: var(--text-primary);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
  text-align: center;
}

.asset-board-media {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.asset-board-media img {
  width: 100%;
  height: auto;
  display: block;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.plan-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.plan-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.plan-card.is-future {
  opacity: 0.5;
}

.plan-badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.plan-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin: 0;
}

.plan-price {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin: 0;
}

.plan-price small {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0;
  margin-left: 8px;
}

.plan-tagline {
  margin: -6px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.plan-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.plan-check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  opacity: 0.8;
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 12px;
}

.btn-plan-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  padding: 12px 16px;
  background-color: var(--accent-blue);
  color: #FFFFFF;
  font-weight: 700;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-plan-primary:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.25);
}

@media (min-width: 860px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}
