*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --saffron: #C45E1A;
  --saffron-light: #E8853F;
  --saffron-deep: #8B3A0E;
  --gold: #D4A853;
  --gold-light: #F0D9A0;
  --cream: #FDF6EC;
  --cream-dark: #F5E8D4;
  --bark: #3D2B1F;
  --bark-light: #5C4033;
  --sage: #7A8B6F;
  --sage-light: #A8B89E;
  --white: #FFFCF7;
  --text: #2C1810;
  --text-muted: #7A6B60;
  --shadow: rgba(60, 40, 20, 0.08);
  --shadow-lg: rgba(60, 40, 20, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C45E1A' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
}

a { text-decoration: none; color: inherit; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.scrolled {
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px var(--shadow);
  padding: 0.7rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 4px 15px rgba(196, 94, 26, 0.3);
}

.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.4s;
}

.nav.scrolled .nav-logo span {
  color: var(--saffron-deep);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav.scrolled .nav-links a {
  color: var(--text-muted);
}

.nav.scrolled .nav-links a:hover {
  color: var(--saffron);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span {
  background: var(--bark);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--bark);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.85) !important; font-size: 1rem; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.55) 0%,
    rgba(44, 24, 16, 0.35) 40%,
    rgba(44, 24, 16, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s ease forwards;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 1s 0.5s ease forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  opacity: 0.85;
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeSlideUp 1s 0.9s ease forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: white;
  box-shadow: 0 6px 25px rgba(196, 94, 26, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(196, 94, 26, 0.45);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeSlideUp 1s 1.2s ease forwards;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

/* Swiper pagination */
.heroSwiper .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  transition: all 0.3s;
}

.heroSwiper .swiper-pagination-bullet-active {
  width: 50px;
  background: var(--gold);
}

/* ── SECTIONS ── */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: var(--saffron);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--bark);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ── PLAYER SECTION ── */
.player-section {
  margin-top: -6rem;
  position: relative;
  z-index: 20;
  padding: 0 1.5rem 3rem;
}

.player-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.8);
  overflow: hidden;
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem 0.75rem;
}

.player-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-live-dot {
  width: 10px;
  height: 10px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.player-header h2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--bark);
}

.player-header-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--saffron);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

.player-embed {
  padding: 0.5rem 2rem 2rem;
}

.player-embed iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 16px;
  padding: 20px;
  background: #212529;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid rgba(196, 94, 26, 0.06);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-icon.saffron {
  background: linear-gradient(135deg, rgba(196,94,26,0.1), rgba(196,94,26,0.05));
  color: var(--saffron);
}

.feature-icon.gold {
  background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.05));
  color: var(--gold);
}

.feature-icon.sage {
  background: linear-gradient(135deg, rgba(122,139,111,0.15), rgba(122,139,111,0.05));
  color: var(--sage);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--bark);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── HISTORY & SCHEDULE ── */
.iframe-card {
  background: #212529;
  border-radius: 24px;
  box-shadow: 0 8px 35px var(--shadow);
  border: 1px solid rgba(196, 94, 26, 0.04);
  overflow: hidden;
  margin-bottom: 3rem;
  padding: 20px;
}

.iframe-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(196, 94, 26, 0.06);
}

.iframe-card-header h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.iframe-card iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bark);
  padding: 3.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(196,94,26,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(212,168,83,0.1) 0%, transparent 60%);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── CONTACT ── */
.contact-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 35px var(--shadow);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(196,94,26,0.06);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item-text p {
  font-size: 1rem;
  color: var(--bark);
  font-weight: 500;
}

.social-card {
  background: linear-gradient(135deg, var(--saffron-deep), var(--saffron));
  border-radius: 24px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.social-card h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  position: relative;
}

.social-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 360px;
  position: relative;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

/* ── FOOTER ── */
.footer {
  background: var(--bark);
  color: rgba(255,255,255,0.5);
  padding: 3rem 1.5rem;
  position: relative;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}

.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.footer-copy {
  font-size: 0.82rem;
  text-align: center;
}

.footer-copy a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.footer-copy a:hover { color: var(--gold); }

.footer-service {
  font-size: 0.78rem;
}

.footer-service a {
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

.footer-service a:hover { color: var(--gold); }

/* ── DECORATIVE DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.divider-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

.divider-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: 550px; }
  .player-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .player-embed { padding: 0.5rem 1rem 1.5rem; }
  .section { padding: 3.5rem 1rem; }
  .iframe-card-header { padding: 1.25rem 1.5rem; }
  .contact-info-card { padding: 1.75rem; }
  .social-card { padding: 1.75rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}








/* Desktop downloads */
.desktop-download{
  margin-top:40px;
  text-align:center;
}

.desktop-title{
  font-size:28px;
  margin-bottom:6px;
}

.desktop-subtitle{
  opacity:.7;
  margin-bottom:30px;
}

.download-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}

.download-card{
  background:white;
  border-radius:14px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:all .3s ease;
}

.download-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

.download-header{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:18px;
}

.download-header img{
  width:28px;
}

.download-header h4{
  font-size:18px;
}

.download-btn{
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-decoration:none;
  padding:10px 14px;
  margin-bottom:10px;
  border-radius:8px;
  background:#f6f6f6;
  color:#333;
  font-weight:500;
  transition:.25s;
}

.download-btn span{
  font-size:12px;
  opacity:.6;
}

.download-btn:hover{
  background:#eaeaea;
}

.download-version{
  margin-top:25px;
  font-size:13px;
  opacity:.6;
}

.desktop-buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.desktop-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:12px;
  font-size:0.9rem;
  font-weight:600;
  text-decoration:none;
  color:white;
  transition:all .25s ease;
  box-shadow:0 5px 18px rgba(0,0,0,0.15);
}

.desktop-btn img{
  height:26px;
}

.desktop-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 25px rgba(0,0,0,0.25);
}

/* OS Colors */

.desktop-btn.windows{
  background:linear-gradient(135deg,#0078D6,#0a84ff);
}

.desktop-btn.mac{
  background:linear-gradient(135deg,#333,#555);
}

.desktop-btn.linux{
  background:linear-gradient(135deg,#E95420,#ff7a2f);
}



.desktop-download {
  margin: 0;
  padding: 3rem 2.5rem 2.5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
  border-top: 1px solid rgba(196, 94, 26, 0.08);
  position: relative;
}

.desktop-download::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(196, 94, 26, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Header ── */
.dd-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.dd-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.85rem;
}

.dd-label-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--saffron);
  opacity: 0.6;
}

.dd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.dd-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--saffron);
}

.dd-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Card Grid ── */
.dd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto 2rem;
  position: relative;
}

@media (max-width: 900px) {
  .dd-grid { grid-template-columns: 1fr; max-width: 420px; }
}

.dd-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto 2rem;
  position: relative;
}

/* ── Card ── */
.dd-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(60, 40, 20, 0.04),
    0 8px 24px rgba(60, 40, 20, 0.06);
  border: 1px solid rgba(196, 94, 26, 0.06);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.dd-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 4px 12px rgba(60, 40, 20, 0.06),
    0 20px 48px rgba(60, 40, 20, 0.12);
}

.dd-card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dd-card:hover .dd-card-accent {
  opacity: 1;
}

.dd-card-featured .dd-card-accent {
  opacity: 1;
}

.dd-card-inner {
  padding: 1.75rem 1.5rem 1.5rem;
}

/* ── OS Header ── */
.dd-os {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(196, 94, 26, 0.06);
}

.dd-os-icon {
  width: 32px;
  height: 32px;
  color: var(--bark);
  opacity: 0.75;
  flex-shrink: 0;
}

.dd-os h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.2;
}

.dd-arch {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ── Download Buttons ── */
.dd-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dd-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.dd-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.dd-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 94, 26, 0.3);
}

.dd-btn:hover::before {
  opacity: 1;
}

.dd-btn-alt {
  background: var(--cream);
  color: var(--bark);
}

.dd-btn-alt:hover {
  background: var(--cream-dark);
  box-shadow: 0 4px 12px rgba(60, 40, 20, 0.08);
}

.dd-btn-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  position: relative;
}

.dd-btn-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.dd-btn-alt .dd-btn-badge {
  background: rgba(196, 94, 26, 0.08);
  color: var(--saffron);
}

/* ── Footer ── */
.dd-footer {
  text-align: center;
  position: relative;
}

.dd-version {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.dd-version-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  background: rgba(196, 94, 26, 0.08);
  color: var(--saffron);
}

.dd-features-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.7;
}

.dd-features-strip .dd-dot {
  opacity: 0.4;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .desktop-download {
    padding: 2.5rem 1.25rem 2rem;
  }

  .dd-card-inner {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .dd-features-strip {
    gap: 0.35rem;
    font-size: 0.68rem;
  }
}
