@charset "utf-8";

.dsc-hero { padding: var(--section-gap-sm) 0 0; margin: 0px; background: rgb(255, 255, 255); position: relative; overflow: hidden; }

.dsc-hero::before { content: ""; position: absolute; inset: 0px; background: radial-gradient(at 70% 40%, rgba(36, 52, 71, 0.1) 0%, transparent 60%); pointer-events: none; }

.dsc-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

@media (max-width: 820px) {
  .dsc-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.dsc-hero-title { font-family: Georgia, serif; font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; color: var(--char); line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.02em; }

.dsc-hero-tag { font-size: 1rem; color: var(--navy-primary); font-weight: 600; font-style: italic; margin-bottom: 16px; }

.dsc-hero-desc { color: var(--brown); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; max-width: 460px; }

.dsc-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.dsc-wave { display: block; width: 100%; line-height: 0; margin-bottom: -2px; }

.dsc-wave svg { display: block; width: 100%; }

.dsc-explorer { background: rgb(255, 255, 255); padding: var(--section-gap) 0; }

.dsc-search-wrap { position: relative; max-width: 640px; margin: 0px auto 24px; }

.dsc-search { width: 100%; padding: 18px 60px 18px 52px; border-radius: 50px; border: 2px solid rgba(36, 52, 71, 0.2); font-size: 1rem; font-family: inherit; background: rgb(250, 250, 248); box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 28px; outline: none; color: var(--char); transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box; }

.dsc-search:focus { border-color: var(--navy-primary); box-shadow: rgba(36, 52, 71, 0.16) 0px 6px 32px; }

.dsc-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; pointer-events: none; }

.dsc-search-go { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); }

.dsc-cats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }

.dsc-cat { padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; border: 1.5px solid rgba(36, 52, 71, 0.2); background: rgb(255, 255, 255); color: var(--brown); cursor: pointer; transition: 0.2s; font-family: inherit; }

.dsc-cat:hover, .dsc-cat.active { background: var(--navy-primary); color: rgb(255, 255, 255); border-color: var(--navy-primary); }

.dsc-hub-cards { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

.dsc-hub-card { flex: 1 1 0%; min-width: 140px; background: rgb(255, 255, 255); border-radius: 16px; padding: 16px 14px; box-shadow: rgba(30, 45, 61, 0.08) 0px 3px 18px; border: 1px solid rgba(30, 45, 61, 0.06); text-align: center; cursor: pointer; transition: 0.22s; animation: 5s ease-in-out 0s infinite normal none running dscFloat; }

.dsc-hub-card:nth-child(2) { animation-delay: -1s; }

.dsc-hub-card:nth-child(3) { animation-delay: -2s; }

.dsc-hub-card:nth-child(4) { animation-delay: -3s; }

.dsc-hub-card:nth-child(5) { animation-delay: -4s; }

.dsc-hub-card:hover { transform: translateY(-4px); box-shadow: rgba(30, 45, 61, 0.12) 0px 8px 28px; }

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

.dsc-hub-icon { font-size: 1.6rem; margin-bottom: 7px; }

.dsc-hub-label { font-size: 0.76rem; font-weight: 700; color: rgb(30, 45, 61); line-height: 1.3; }

.dsc-hub-sub { font-size: 0.68rem; color: var(--brown); margin-top: 3px; }

.dsc-flow-section { background: linear-gradient(145deg, rgb(247, 248, 246), rgb(250, 250, 248)); padding: var(--section-gap) var(--content-pad); }

.dsc-flow-inner { max-width: 1000px; margin: 0px auto; }

.dsc-flow-row { display: flex; align-items: flex-start; gap: 0px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

.dsc-flow-step { flex: 1 1 0%; min-width: 160px; max-width: 190px; text-align: center; position: relative; padding: 0px 8px; }

.dsc-flow-step:not(:last-child)::after { content: "→"; position: absolute; right: -14px; top: 22px; font-size: 1.3rem; color: var(--navy-primary); font-weight: 700; }

.dsc-flow-circle { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,var(--navy-primary),var(--navy-soft)); color: rgb(255, 255, 255); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0px auto 12px; box-shadow: rgba(74, 122, 78, 0.28) 0px 4px 16px; }

.dsc-flow-step h4 { font-size: 0.88rem; font-weight: 700; color: rgb(30, 45, 61); margin-bottom: 5px; }

.dsc-flow-step p { font-size: 0.74rem; color: var(--brown); line-height: 1.55; }

@media (max-width: 700px) {
  .dsc-flow-row { flex-direction: column; align-items: center; gap: 24px; }
  .dsc-flow-step { max-width: 260px; }
  .dsc-flow-step:not(:last-child)::after { content: "↓"; inset: auto auto -20px 50%; transform: translateX(-50%); }
}

.dsc-feat-section { background: rgb(255, 255, 255); padding: var(--section-gap) var(--content-pad); }

.dsc-feat-inner { max-width: var(--content-max); margin: 0px auto; }

.dsc-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.dsc-feat-grid .dsc-feat-card:nth-child(4), .dsc-feat-grid .dsc-feat-card:nth-child(5) { grid-column: span 1; }

@media (max-width: 900px) {
  .dsc-feat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .dsc-feat-grid { grid-template-columns: 1fr; }
}

.dsc-feat-card { border-radius: 22px; overflow: hidden; box-shadow: rgba(30, 45, 61, 0.08) 0px 4px 24px; border: 1px solid rgba(30, 45, 61, 0.06); background: rgb(255, 255, 255); cursor: pointer; transition: 0.24s; display: flex; flex-direction: column; }

.dsc-feat-card:hover { transform: translateY(-5px); box-shadow: rgba(30, 45, 61, 0.13) 0px 12px 40px; }

.dsc-feat-banner { padding: 32px 24px 24px; display: flex; align-items: flex-start; gap: 16px; }

.dsc-feat-emoji { font-size: 2.8rem; flex-shrink: 0; }

.dsc-feat-body { flex: 1 1 0%; }

.dsc-feat-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }

.dsc-feat-tag { font-size: 0.63rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: rgba(36, 52, 71, 0.12); color: var(--sage-dk); }

.dsc-feat-card h3 { font-family: Georgia, serif; font-size: 1.08rem; font-weight: 700; color: rgb(30, 45, 61); margin-bottom: 7px; line-height: 1.2; }

.dsc-feat-card p { font-size: 0.82rem; color: var(--brown); line-height: 1.65; margin-bottom: 0px; }

.dsc-feat-foot { padding: 0px 24px 22px; margin-top: auto; }

.dsc-feat-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; background: linear-gradient(135deg,var(--navy-primary),var(--navy-soft)); color: rgb(255, 255, 255); border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; cursor: pointer; font-family: inherit; transition: 0.2s; box-shadow: rgba(74, 122, 78, 0.25) 0px 3px 12px; }

.dsc-feat-btn:hover { transform: translateY(-1px); box-shadow: rgba(74, 122, 78, 0.35) 0px 5px 18px; }

.dsc-season-section { background: linear-gradient(145deg, rgb(250, 250, 248), rgb(240, 248, 241)); padding: var(--section-gap) var(--content-pad); }

.dsc-season-inner { max-width: 1100px; margin: 0px auto; }

.dsc-season-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

@media (max-width: 760px) {
  .dsc-season-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .dsc-season-grid { grid-template-columns: 1fr; }
}

.dsc-season-card { background: rgb(255, 255, 255); border-radius: 18px; padding: 22px 18px; box-shadow: rgba(30, 45, 61, 0.07) 0px 2px 14px; border: 1px solid rgba(30, 45, 61, 0.05); cursor: pointer; transition: 0.22s; }

.dsc-season-card:hover { transform: translateY(-3px); box-shadow: rgba(30, 45, 61, 0.1) 0px 7px 24px; }

.dsc-season-icon { font-size: 1.6rem; margin-bottom: 9px; }

.dsc-season-card h4 { font-size: 0.92rem; font-weight: 700; color: rgb(30, 45, 61); margin-bottom: 5px; }

.dsc-season-card p { font-size: 0.79rem; color: var(--brown); line-height: 1.6; margin-bottom: 11px; }

.dsc-season-link { font-size: 0.74rem; font-weight: 600; color: var(--sage-dk); background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; cursor: pointer; font-family: inherit; padding: 0px; transition: color 0.18s; }

.dsc-season-link:hover { color: var(--navy-primary); }

.dsc-stories-section { background: rgb(255, 255, 255); padding: var(--section-gap) var(--content-pad); }

.dsc-stories-inner { max-width: 1100px; margin: 0px auto; }

.dsc-stories-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

@media (max-width: 760px) {
  .dsc-stories-track { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .dsc-stories-track { grid-template-columns: 1fr; }
}

.dsc-story-card { background: linear-gradient(145deg, rgb(250, 248, 245), rgb(247, 248, 246)); border-radius: 18px; padding: 22px 20px; box-shadow: rgba(30, 45, 61, 0.06) 0px 2px 14px; border: 1px solid rgba(30, 45, 61, 0.05); display: flex; flex-direction: column; gap: 10px; }

.dsc-story-icon { font-size: 1.4rem; }

.dsc-story-quote { font-size: 0.86rem; color: rgb(30, 45, 61); line-height: 1.7; font-style: italic; font-weight: 400; flex: 1 1 0%; }

.dsc-story-tag { display: inline-flex; font-size: 0.66rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: var(--sage-lt); color: var(--sage-dk); align-self: flex-start; }

.dsc-story-link { font-size: 0.73rem; font-weight: 600; color: var(--sage-dk); background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; cursor: pointer; font-family: inherit; padding: 0px; transition: color 0.18s; }

.dsc-story-link:hover { color: var(--navy-primary); }

.dsc-sec-eyebrow { font-size: 0.69rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-primary); text-align: center; margin-bottom: 9px; }

.dsc-sec-title { font-family: Georgia, serif; font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; color: rgb(30, 45, 61); text-align: center; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 9px; }

.dsc-sec-sub { font-size: 0.95rem; color: var(--brown); line-height: 1.75; text-align: center; max-width: 520px; margin: 0px auto 44px; font-weight: 300; }

.dsc-sec-cta-row { text-align: center; margin-top: 36px; }

@media (max-width: 560px) {
  .dsc-hub-cards { gap: 8px; }
  .dsc-hub-card { min-width: 120px; padding: 12px 10px; }
  .dsc-feat-banner { padding: 22px 18px 16px; }
  .dsc-feat-foot { padding: 0px 18px 18px; }
}