/* Entry Page Styles - Bold & Modern */

.entry-page {
  min-height: calc(100vh - var(--header-height));
  --glow-color: var(--octc-color-primary);
}

/* Entry page has no sidebar, so main content uses full width */
.entry-page .main {
  margin-left: 0;
}

/* Hero Section - Full viewport height */
.hero {
  position: relative;
  min-height: calc(100vh - var(--octc-header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

/* Scroll indicator */
.hero::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--octc-color-border);
  border-radius: 12px;
  opacity: 0.6;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--octc-color-primary);
  border-radius: 2px;
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}

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

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--octc-color-primary);
  background: rgba(var(--hero-glow-rgb, 183, 65, 14), 0.1);
  border: 1px solid rgba(var(--hero-glow-rgb, 183, 65, 14), 0.2);
  border-radius: 2rem;
  letter-spacing: 0.02em;
}

.hero-name {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--octc-color-text);
}

.hero-text {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--octc-color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  opacity: 0.9;
}

.hero-tagline {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--octc-color-text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  opacity: 0.8;
}

.hero-image {
  margin: 2rem auto;
  max-width: 320px;
}

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-action-brand {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--octc-color-primary) 0%,
    var(--octc-color-primary-hover) 100%
  );
  box-shadow:
    0 4px 20px rgba(var(--hero-glow-rgb, 183, 65, 14), 0.3),
    0 0 0 0 rgba(var(--hero-glow-rgb, 183, 65, 14), 0);
}

.hero-action-brand:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 30px rgba(var(--hero-glow-rgb, 183, 65, 14), 0.4),
    0 0 0 4px rgba(var(--hero-glow-rgb, 183, 65, 14), 0.1);
  text-decoration: none;
  color: #fff;
}

.hero-action-alt {
  color: var(--octc-color-text);
  background: var(--octc-color-bg);
  border: 1px solid var(--octc-color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-action-alt:hover {
  background: var(--octc-color-bg-alt);
  border-color: var(--octc-color-text-muted);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: var(--octc-color-text);
}

/* Features Section */
.features {
  padding: 6rem 2rem 8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--octc-color-border);
  transition: all 0.2s ease;
}

.feature-card:first-child {
  border-top: 1px solid var(--octc-color-border);
}

.feature-card:hover {
  background: var(--octc-color-bg-alt);
  text-decoration: none;
  color: inherit;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  color: var(--octc-color-primary);
  flex-shrink: 0;
}

.feature-icon img {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-icon .iconify-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--octc-color-primary);
}

.feature-card .feature-body {
  min-width: 0;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--octc-color-text);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.feature-details {
  font-size: 0.875rem;
  color: var(--octc-color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.feature-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--octc-color-text-muted);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.feature-link::after {
  content: "\2192";
  font-size: 1.125rem;
}

.feature-card:hover .feature-link {
  color: var(--octc-color-primary);
  transform: translateX(4px);
}

/* Content Section (after hero/features) */
.entry-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.entry-content .content {
  max-width: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - var(--octc-header-height) - 56px);
    padding: 2rem 1.5rem;
  }

  .hero::after,
  .hero::before {
    bottom: 1.5rem;
  }

  .hero-image {
    max-width: 180px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-action {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .features {
    padding: 4rem 0 6rem;
  }

  .feature-card {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .feature-icon {
    width: 2rem;
    height: 2rem;
  }

  .feature-icon .iconify-icon,
  .feature-icon img {
    width: 1rem;
    height: 1rem;
  }

  .feature-title {
    font-size: 0.9375rem;
  }

  .feature-details {
    font-size: 0.8125rem;
  }

  .entry-content {
    padding: 0 1.5rem 3rem;
  }
}