﻿.landing-body {
  margin: 0;
  background:
    radial-gradient(ellipse 90% 55% at 8% -8%, rgba(13, 148, 136, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 15%, rgba(30, 41, 59, 0.06), transparent 50%),
    linear-gradient(180deg, #f1f5f9 0%, #f8fafc 40%, #eef2f7 100%);
  color: var(--asya-text);
  font-family: var(--asya-font);
}

.landing-nav {
  border-bottom: 1px solid var(--asya-border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.landing-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--asya-text);
  text-decoration: none;
}

.landing-brand:hover {
  color: var(--asya-accent);
}

.landing-logo {
  height: 36px;
  width: auto;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.landing-hero {
  padding: 3.5rem 0 2.5rem;
}

.landing-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--asya-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.landing-hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  max-width: 18ch;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.landing-lead {
  max-width: 38rem;
  font-size: 1.08rem;
  color: var(--asya-text-muted);
  margin-bottom: 1.5rem;
}

.landing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.landing-cta-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--asya-text-muted);
}

/* Hero visual panel */
.landing-hero-visual {
  position: relative;
  padding: 0.5rem;
}

.landing-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -4% -6% 18%;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.22), rgba(30, 41, 59, 0.12));
  transform: rotate(3deg);
  z-index: 0;
}

.landing-hero-panel {
  position: relative;
  z-index: 1;
  background: var(--asya-surface);
  border: 1px solid var(--asya-border);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.landing-hero-panel-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, #1e293b, #334155);
  color: #e2e8f0;
  font-size: 0.85rem;
}

.landing-hero-panel-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #64748b;
}

.landing-hero-panel-bar span:nth-child(1) { background: #f87171; }
.landing-hero-panel-bar span:nth-child(2) { background: #fbbf24; }
.landing-hero-panel-bar span:nth-child(3) { background: #34d399; }

.landing-hero-panel-bar strong {
  margin-left: 0.5rem;
  font-weight: 600;
}

.landing-hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.9), #fff);
}

.landing-hero-tile {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  border-radius: var(--asya-radius);
  border: 1px solid var(--asya-border);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--asya-text);
  box-shadow: var(--asya-shadow);
}

.landing-hero-tile .oi {
  color: var(--asya-accent);
  font-size: 0.95rem;
}

/* Feature message boxes */
.landing-features {
  padding: 1.5rem 0 3rem;
}

.landing-section-head {
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.landing-section-head h2 {
  margin-bottom: 0.4rem;
}

.landing-section-head p {
  margin: 0;
  color: var(--asya-text-muted);
}

.landing-msg {
  height: 100%;
  background: var(--asya-surface);
  border: 1px solid var(--asya-border);
  border-radius: var(--asya-radius);
  box-shadow: var(--asya-shadow);
  padding: 1.15rem 1.2rem 1.2rem;
  border-left: 4px solid var(--asya-accent);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-msg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.landing-msg-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--asya-accent);
  margin-bottom: 0.75rem;
}

.landing-msg-icon .oi {
  font-size: 1rem;
}

.landing-msg h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.landing-msg p {
  margin: 0;
  color: var(--asya-text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

a.landing-msg-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

a.landing-msg-link:hover .landing-msg {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  border-left-color: var(--asya-accent-hover);
}

a.landing-msg-link .landing-msg-more {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--asya-accent);
}

/* Feature detail page */
.feature-detail-crumb {
  font-size: 0.9rem;
  color: var(--asya-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.feature-detail-crumb a {
  color: var(--asya-accent);
}

.feature-detail-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 992px) {
  .feature-detail-gallery:has(.feature-detail-shot:nth-child(2)) {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.feature-detail-shot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--asya-border);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  background: #fff;
}

.feature-detail-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.feature-detail-caption {
  margin: 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  color: #475569;
  background: #f8fafc;
  border-top: 1px solid var(--asya-border);
}

.feature-detail-body {
  max-width: 46rem;
  margin: 0 auto;
  padding-top: 0.5rem;
}

.feature-detail-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--asya-accent);
}

.feature-detail-icon .oi {
  font-size: 1.15rem;
}

.feature-detail-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.feature-detail-summary {
  font-size: 1.1rem;
  color: var(--asya-text-muted);
  margin-bottom: 1.25rem;
}

.feature-detail-p {
  color: var(--asya-text);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.feature-detail-h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.75rem;
}

.feature-detail-list {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--asya-text);
}

.feature-detail-list li {
  margin-bottom: 0.45rem;
  line-height: 1.5;
}

.feature-detail-cta {
  align-items: flex-start;
}

.landing-bottom-cta {
  padding: 0 0 3.5rem;
}

.landing-bottom-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.6rem;
  background: var(--asya-surface);
  border: 1px solid var(--asya-border);
  border-radius: 12px;
  box-shadow: var(--asya-shadow);
}

.landing-bottom-box h2 {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.landing-bottom-box p {
  margin: 0;
  color: var(--asya-text-muted);
  max-width: 36rem;
}

.landing-contact {
  padding: 0 0 3.5rem;
}

.landing-contact .landing-section-head a {
  color: var(--asya-accent);
  font-weight: 600;
  text-decoration: none;
}

.landing-contact .landing-section-head a:hover {
  text-decoration: underline;
}

.landing-contact-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  height: 100%;
  padding: 1.15rem 1.2rem;
  background: var(--asya-surface);
  border: 1px solid var(--asya-border);
  border-radius: 12px;
  box-shadow: var(--asya-shadow);
}

.landing-contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.12);
  color: var(--asya-accent);
}

.landing-contact-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.landing-contact-card p {
  margin: 0;
  color: var(--asya-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.landing-contact-card a {
  color: var(--asya-accent);
  text-decoration: none;
}

.landing-contact-card a:hover {
  text-decoration: underline;
}

.landing-contact-site {
  margin-top: 0.55rem !important;
  font-size: 0.88rem !important;
}

.landing-social {
  margin-top: 1.75rem;
  text-align: center;
}

.landing-social h3 {
  font-size: 1.1rem;
  margin: 0 0 0.85rem;
}

.landing-social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.landing-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--asya-border);
  background: #fff;
  color: var(--asya-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.landing-social-btn:hover {
  color: var(--asya-accent);
  border-color: rgba(13, 148, 136, 0.35);
}

.landing-footer {
  border-top: 1px solid var(--asya-border);
  padding: 1.25rem 0;
  color: var(--asya-text-muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.65);
}

.landing-footer a {
  color: var(--asya-text-muted);
}

.landing-footer a:hover {
  color: var(--asya-accent);
}

@media (max-width: 991.98px) {
  .landing-hero h1 {
    max-width: none;
  }
}

@media (max-width: 576px) {
  .landing-hero {
    padding-top: 2.25rem;
  }

  .landing-cta-row .btn-lg {
    width: 100%;
  }

  .landing-hero-tiles {
    grid-template-columns: 1fr;
  }
}
