:root {
  --ink: #0f172a;
  --ink-light: #1e293b;
  --green: #14b8a6;
  --green-hover: #0d9488;
  --white: #f8fafc;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', sans-serif;
  --grotesk: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hidden {
  display: none !important;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  color: var(--white);
}

/* Layout */
.layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Typography */
.hero-title {
  font-family: var(--mono);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(248, 250, 252, 0.7);
  max-width: 540px;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--mono);
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.section-title-center {
  font-family: var(--mono);
  font-size: 1.25rem;
  text-align: center;
  color: rgba(248, 250, 252, 0.5);
  margin-bottom: 32px;
}

/* Hero Image */
.hero-image-container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bullets */
.feature-bullets {
  margin-bottom: 60px;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bullet-icon {
  background: rgba(20, 184, 166, 0.1);
  color: var(--green);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullet-content strong {
  display: block;
  font-family: var(--grotesk);
  font-size: 1.125rem;
  margin-bottom: 4px;
  color: var(--white);
}

.bullet-content p {
  color: rgba(248, 250, 252, 0.6);
  font-size: 0.95rem;
}

/* Social Proof */
.social-proof {
  margin-bottom: 80px;
}

.logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(248, 250, 252, 0.6);
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 1.25rem;
}

.logo-item svg {
  opacity: 0.6;
}

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

@media (max-width: 768px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}

.quote-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--green);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-text {
  font-style: italic;
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--mono);
  font-size: 0.8rem;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--grotesk);
}

.author-info span {
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.5);
}

/* Comparison Table */
.table-container {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--grotesk);
}

.comparison-table th, 
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  color: rgba(248, 250, 252, 0.5);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.highlight-col {
  color: var(--white) !important;
}

.highlight-cell {
  background: rgba(20, 184, 166, 0.05);
  font-weight: 600;
}

.green-text {
  color: var(--green);
}

.comparison-table td {
  color: rgba(248, 250, 252, 0.8);
  font-size: 0.95rem;
}

/* Sticky Form Column */
.sticky-form-wrapper {
  position: sticky;
  top: 40px;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-family: var(--mono);
  font-size: 2rem;
  margin-bottom: 8px;
}

.form-subtitle {
  color: rgba(248, 250, 252, 0.6);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* Form Styles */
.input-group {
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.half {
  flex: 1;
}

.input-group label {
  display: block;
  font-family: var(--grotesk);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(248, 250, 252, 0.8);
}

.optional {
  color: rgba(248, 250, 252, 0.4);
  font-weight: 400;
  font-size: 0.75rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
select {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f8fafc' opacity='0.5' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Multi-select Chips */
.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip input[type="checkbox"] {
  display: none;
}

.chip-label {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-family: var(--grotesk);
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.7);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.chip input[type="checkbox"]:checked + .chip-label {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
  font-weight: 600;
}

/* Calendar Slots */
.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.slot-card input[type="radio"] {
  display: none;
}

.slot-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.1);
}

.slot-card input[type="radio"]:checked + .slot-content {
  border-color: var(--green);
  background: rgba(20, 184, 166, 0.1);
  box-shadow: inset 0 0 0 1px var(--green);
}

.slot-time {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 4px;
}

.slot-card input[type="radio"]:checked + .slot-content .slot-time {
  color: var(--green);
  font-weight: 700;
}

.slot-eng {
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.5);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: var(--green);
  color: var(--ink);
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--grotesk);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
}

.submit-btn:hover:not(:disabled) {
  background: var(--green-hover);
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Error/Success Msg */
.error-msg {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.success-panel {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-details {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.8);
}

#wbx-powered-by-slot {
  margin-top: auto;
  padding-bottom: 24px;
}
