@charset "UTF-8";
/*
 * SwiftCull Landing Page Styles
 * Design system: Shadeholt (Montserrat + Roboto Slab, dark theme, glass morphism)
 * Accent: Amber/warm (#E8830C / #FF8C00) for photography tool identity
 */

/* ===== Custom Properties ===== */
:root {
  --sc-accent: #E8830C;
  --sc-accent-dark: #C06D0A;
  --sc-accent-light: #FF8C00;
  --sc-accent-rgb: 232, 131, 12;
  --sc-accent-shadow: rgba(232, 131, 12, 0.25);

  --sc-bg-deep: #0f0f1a;
  --sc-bg-dark: #1a1a2e;
  --sc-bg-mid: #16213e;
  --sc-bg-blue: #0f3460;

  --sc-text-primary: #ffffff;
  --sc-text-secondary: rgba(255, 255, 255, 0.7);
  --sc-text-muted: rgba(255, 255, 255, 0.5);

  --font-heading: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ===== Base ===== */
html {
  scroll-padding-top: 4.5rem;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--sc-text-primary);
  background-color: var(--sc-bg-dark);
  line-height: 1.75;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sc-accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ===== Focus Styles ===== */
:focus-visible {
  outline: 2px solid var(--sc-accent);
  outline-offset: 2px;
}

/* ===== Navigation ===== */
#mainNav {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212529;
  transition: padding 0.3s ease, background-color 0.3s ease;
}

#mainNav .navbar-toggler {
  padding: 0.75rem;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
}

#mainNav .navbar-brand {
  color: var(--sc-accent-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: 0.0625em;
  text-transform: uppercase;
}

#mainNav .navbar-brand:hover {
  color: var(--sc-accent);
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #E5E7EB;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: var(--sc-accent-light);
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border: none;
    background-color: transparent;
  }

  #mainNav .navbar-brand {
    font-size: 1.5em;
  }

  #mainNav.navbar-shrink {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.25em;
  }

  #mainNav .navbar-nav .nav-item {
    margin-right: 1rem;
  }

  #mainNav .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
}

/* ===== Buttons ===== */
.btn-xl {
  padding: 1.25rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 8px;
}

.btn-accent {
  background: linear-gradient(135deg, var(--sc-accent-light), var(--sc-accent));
  border: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--sc-accent), var(--sc-accent-dark));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--sc-accent-rgb), 0.4);
}

.btn-accent:focus-visible {
  box-shadow: 0 0 0 0.25rem var(--sc-accent-shadow);
}

.btn-outline-light {
  border-width: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .btn-accent:hover,
  .btn-outline-light:hover {
    transform: none;
  }
}

/* ===== Section Headings ===== */
.page-section {
  padding: 6rem 0;
}

.section-heading {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--sc-text-primary);
}

.section-subheading {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-body);
  margin-bottom: 3rem;
  color: var(--sc-text-secondary);
}

.text-muted {
  color: var(--sc-text-secondary) !important;
}

@media (min-width: 768px) {
  .page-section {
    padding: 8rem 0;
  }
}

/* ===== Hero Section ===== */
.app-hero {
  padding: 8rem 0 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern overlay */
.app-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232, 131, 12, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(15, 52, 96, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.app-hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.app-hero-content {
  flex: 1;
}

.app-hero-visual {
  flex: 0 0 420px;
  position: relative;
}

.app-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--sc-accent-light);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.app-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.app-tagline {
  font-size: 1.25rem;
  color: var(--sc-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Desktop Mockup ===== */
.desktop-mockup {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 10;
  background: #111;
  border-radius: 12px;
  padding: 8px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.desktop-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-text-muted);
  font-size: 1rem;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Feature Grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(232, 131, 12, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .feature-card {
    transition: none;
  }
  .feature-card:hover {
    transform: none;
  }
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sc-accent-light), var(--sc-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  color: #fff;
  fill: #fff;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--sc-text-primary);
}

.feature-card p {
  color: var(--sc-text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

/* ===== Comparison Section ===== */
.comparison-section {
  padding: 6rem 0;
  background: var(--sc-bg-deep);
}

.comparison-section .section-heading {
  color: var(--sc-text-primary);
}

.comparison-section .section-subheading {
  color: var(--sc-text-secondary);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table thead th {
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--sc-text-primary);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--sc-text-secondary);
  text-align: center;
  font-size: 0.95rem;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--sc-text-primary);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.highlight-col {
  background: rgba(232, 131, 12, 0.06) !important;
  color: var(--sc-text-primary) !important;
}

thead .highlight-col {
  color: var(--sc-accent-light) !important;
  border-bottom-color: rgba(232, 131, 12, 0.2) !important;
}

.check {
  color: var(--sc-accent-light);
  font-weight: 700;
  font-size: 1.1rem;
}

.cross {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .comparison-section {
    padding: 8rem 0;
  }
}

/* ===== Pricing Section ===== */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--sc-bg-dark) 0%, var(--sc-bg-mid) 100%);
}

.pricing-section .section-heading {
  color: var(--sc-text-primary);
}

.pricing-section .section-subheading {
  color: var(--sc-text-secondary);
}

.pricing-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .pricing-cards {
    flex-wrap: wrap;
  }
  .pricing-card {
    min-width: 280px;
  }
}

.pricing-card-featured {
  border-color: rgba(232, 131, 12, 0.3);
  box-shadow: 0 0 40px rgba(232, 131, 12, 0.1);
}

.pricing-card-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sc-accent), var(--sc-accent-light), var(--sc-accent));
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--sc-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-period {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--sc-text-muted);
}

.pf-check {
  color: var(--sc-accent-light);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sc-text-secondary);
  margin-bottom: 1rem;
}

.pricing-amount {
  font-size: 4.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--sc-accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-note {
  color: var(--sc-text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.6rem 0;
  color: var(--sc-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-check {
  color: var(--sc-accent-light);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 8rem 0;
  }
}

/* ===== Download Section ===== */
.download-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--sc-bg-mid) 0%, var(--sc-bg-blue) 100%);
}

.download-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3.5rem;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.download-card h2 {
  font-size: 2rem;
  color: var(--sc-text-primary);
  margin-bottom: 0.75rem;
}

.download-subtitle {
  color: var(--sc-text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

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

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .download-section {
    padding: 8rem 0;
  }
}

/* ===== Footer ===== */
.footer {
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--sc-accent-light) !important;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .app-hero .container {
    flex-direction: column;
    text-align: center;
  }

  .app-hero-visual {
    order: -1;
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 2rem;
  }

  .app-title {
    font-size: 2.5rem;
  }

  .app-tagline {
    font-size: 1.1rem;
  }

  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .app-title {
    font-size: 2rem;
  }

  .btn-xl {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .download-btn {
    justify-content: center;
  }

  .pricing-amount {
    font-size: 3.5rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.75rem 0.75rem;
    font-size: 0.85rem;
  }
}
