/* TableCurve Studio Specific Styles */
:root {
  --tc-primary-blue: #2563eb;
  --tc-primary-blue-dark: #1d4ed8;
  --tc-accent-purple: #7c3aed;
  --tc-accent-purple-light: #8b5cf6;
  --tc-text-main: #111827;
  --tc-text-muted: #4b5563;
  --tc-text-light: #9ca3af;
  --tc-bg-white: #ffffff;
  --tc-bg-offwhite: #f8fafc;
  --tc-bg-card: #ffffff;
  --tc-border-color: #e2e8f0;
  --tc-card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --tc-card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tc-page {
  color: var(--tc-text-main);
  background-color: var(--tc-bg-white);
  padding-top: 5rem;
}

.tc-page section {
  padding: 5rem 0;
}

.tc-page .text-blue {
  color: var(--tc-primary-blue);
}

.tc-page .text-purple {
  color: var(--tc-accent-purple);
}

.tc-page .bg-offwhite {
  background-color: var(--tc-bg-offwhite);
}

.tc-page .fw-500 {
  font-weight: 500;
}

.tc-page .fw-600 {
  font-weight: 600;
}

.tc-btn-primary {
  background: linear-gradient(135deg, var(--tc-primary-blue) 0%, var(--tc-accent-purple) 100%);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
  border: none;
}

.tc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(124, 58, 237, 0.39);
  color: white;
}

.tc-btn-outline {
  background: transparent;
  color: var(--tc-primary-blue);
  border: 2px solid var(--tc-primary-blue);
}

.tc-btn-outline:hover {
  background: var(--tc-bg-offwhite);
  transform: translateY(-2px);
}

.tc-btn-secondary {
  background: var(--tc-bg-white);
  color: var(--tc-text-main);
  border: 1px solid var(--tc-border-color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.tc-btn-secondary:hover {
  border-color: var(--tc-text-muted);
  background: var(--tc-bg-offwhite);
}

/* Hero */
.tc-hero {
  padding-top: 5rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tc-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.tc-hero::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.tc-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.tc-hero .badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--tc-primary-blue);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.tc-hero h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: var(--tc-text-main);
}

.tc-hero h1 span {
  background: linear-gradient(to right, var(--tc-primary-blue), var(--tc-accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-hero .subtitle {
  font-size: 1.5rem;
  color: var(--tc-text-muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.tc-hero .description {
  font-size: 1.125rem;
  color: var(--tc-text-muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tc-hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--tc-border-color);
}

.tc-stat-item h3 {
  font-size: 2rem;
  color: var(--tc-primary-blue);
  margin-bottom: 0.25rem;
}

.tc-stat-item p {
  color: var(--tc-text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.tc-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Grid Sections */
.tc-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tc-section-header .subheading {
  color: var(--tc-accent-purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.tc-section-header h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.tc-section-header p {
  font-size: 1.125rem;
  color: var(--tc-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.tc-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tc-overview-supports {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--tc-bg-offwhite);
  border-radius: 1rem;
  border-left: 4px solid var(--tc-primary-blue);
}

.tc-overview-supports ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tc-overview-supports li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.tc-overview-supports li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tc-primary-blue);
  font-weight: bold;
}

.tc-overview-image {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
  border: 1px solid var(--tc-border-color);
}

.tc-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.tc-capability-card {
  background: var(--tc-bg-card);
  border: 1px solid var(--tc-border-color);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tc-capability-card:hover {
  box-shadow: var(--tc-card-shadow-hover);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}

.tc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--tc-primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.tc-capability-card.purple .tc-card-icon {
  background: rgba(124, 58, 237, 0.1);
  color: var(--tc-accent-purple);
}

.tc-capability-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.tc-capability-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  flex-grow: 1;
}

.tc-capability-card ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--tc-text-muted);
}

.tc-capability-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--tc-primary-blue);
  font-weight: bold;
}

.tc-capability-card.purple ul li::before {
  color: var(--tc-accent-purple);
}

.tc-capability-highlight {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tc-primary-blue);
  background: rgba(37, 99, 235, 0.05);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  display: inline-block;
}

.tc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.tc-app-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tc-app-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--tc-bg-white);
  border: 1px solid var(--tc-border-color);
  border-radius: 0.5rem;
  font-weight: 500;
}

.tc-app-item i {
  color: var(--tc-accent-purple);
  font-size: 1.25rem;
}

.tc-advantage-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tc-adv-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--tc-primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-adv-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.tc-adv-content p {
  color: var(--tc-text-muted);
  font-size: 0.9375rem;
}

.tc-features-table {
  background: var(--tc-bg-white);
  border: 1px solid var(--tc-border-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--tc-card-shadow);
}

.tc-feature-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  border-bottom: 1px solid var(--tc-border-color);
}

.tc-feature-row:last-child {
  border-bottom: none;
}

.tc-feature-label {
  padding: 1.5rem;
  background: var(--tc-bg-offwhite);
  font-weight: 600;
  color: var(--tc-text-main);
  border-right: 1px solid var(--tc-border-color);
}

.tc-feature-details {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.tc-feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(37, 99, 235, 0.05);
  color: var(--tc-text-muted);
  border-radius: 2rem;
  font-size: 0.875rem;
  border: 1px solid var(--tc-border-color);
}

.tc-sys-req {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.tc-req-card {
  padding: 2rem;
  background: var(--tc-bg-card);
  border-radius: 1rem;
  border: 1px solid var(--tc-border-color);
  text-align: center;
}

.tc-req-card i {
  font-size: 2.5rem;
  color: var(--tc-text-light);
  margin-bottom: 1rem;
}

.tc-req-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.tc-req-card ul {
  list-style: none;
  padding: 0;
  text-align: center;
  color: var(--tc-text-muted);
}

.tc-summary-box {
  background: linear-gradient(135deg, var(--tc-bg-offwhite) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid var(--tc-border-color);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.tc-summary-box h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--tc-primary-blue), var(--tc-accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-summary-box p {
  font-size: 1.125rem;
  color: var(--tc-text-muted);
  margin-bottom: 0;
}

.tc-final-cta {
  background: linear-gradient(135deg, var(--tc-text-main) 0%, #000000 100%);
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.tc-final-cta h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.tc-final-cta .tc-btn-outline {
  color: white;
  border-color: white;
}

.tc-final-cta .tc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tc-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 992px) {

  .tc-overview-grid,
  .tc-two-col {
    grid-template-columns: 1fr;
  }

  .tc-hero h1 {
    font-size: 2.75rem;
  }

  .tc-feature-row {
    grid-template-columns: 1fr;
  }

  .tc-feature-label {
    border-right: none;
    border-bottom: 1px solid var(--tc-border-color);
  }
}

@media (max-width: 768px) {

  .tc-hero-cta,
  .tc-cta-buttons {
    flex-direction: column;
  }

  .tc-app-list,
  .tc-sys-req {
    grid-template-columns: 1fr;
  }

  .tc-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.zigzag {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.zigzag.reverse {
  flex-direction: row-reverse;
}

.zigzag .text {
  flex: 1;
}

.zigzag .image {
  flex: 1;
}

.zigzag img {
  width: 100%;
  border-radius: 12px;
}