    :root {
      --bg: #ffffff;
      --surface: #ffffff;
      --text: #0f172a;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #CE6632;
      --accent-2: #732E0C;
      --shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 8px 24px rgba(0, 0, 0, .06);
      --radius: 18px;
      --maxw: 1180px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box
    }

    html,
    body {
      height: 100%
    }

    body {
      margin: 0;
      font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--text);
      background: var(--bg);
    }

    a {
      color: inherit;
      text-decoration: none
    }

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 20px
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden
    }

    .skip-link:focus {
      left: 16px;
      top: 16px;
      width: auto;
      height: auto;
      background: #fff;
      color: #000;
      padding: 8px 12px;
      border-radius: 8px;
      box-shadow: var(--shadow)
    }

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: #fff;
      border-bottom: 1px solid var(--border)
    }

    @media (prefers-color-scheme: dark) {
      header {
        background: linear-gradient(180deg, rgba(17, 22, 29, .7), rgba(17, 22, 29, .5))
      }
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: .3px
    }

    .brand-badge {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow: var(--shadow);
      display: grid;
      place-items: center
    }

    .brand-badge svg {
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25))
    }

    .nav a {
      padding: 8px 12px;
      border-radius: 10px
    }

    .nav a[aria-current="page"],
    .nav a:hover {
      background: #f5f5f5
    }

    .masthead {
      line-height: 0;
      border-bottom: 1px solid var(--border);
      padding: 0
    }

    .masthead img {
      width: 100%;
      height: clamp(220px, 38vw, 480px);
      object-fit: cover;
      display: block
    }

    .hero {
      position: relative;
      padding: 28px 0 36px;
      overflow: hidden
    }

    .hero-wrap {
      position: relative
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .9rem;
      color: var(--muted);
      background: #f8fafc;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid var(--border)
    }

    .hero h1 {
      font-size: clamp(2.1rem, 4vw, 3.2rem);
      line-height: 1.1;
      margin: 14px 0 12px;
      letter-spacing: -.02em
    }

    .hero p {
      font-size: clamp(1rem, 2vw, 1.125rem);
      color: var(--muted);
      max-width: 60ch
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: 10px 14px;
      border-radius: 12px;
      border: 1px solid var(--border);
      cursor: pointer;
      background: var(--surface);
      font: inherit;
      font-weight: 600;
      line-height: 1.2;
      text-decoration: none
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      border-color: transparent
    }

    .btn:hover {
      box-shadow: var(--shadow)
    }

    main>section.container {
      padding: 40px 0
    }

    .sessions-grid {
      display: grid;
      gap: 28px;
      grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
      align-items: start
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow)
    }

    .card h2 {
      margin: 0 0 10px;
      font-size: 1.2rem
    }

    .session-list {
      padding: 16px
    }

    .session-list h2 {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .session-search {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px 12px;
      font: inherit;
      margin: 12px 0
    }

    .session-items {
      display: grid;
      gap: 10px
    }

    .session-item {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px;
      background: #fff;
      text-align: left;
      cursor: pointer;
      display: grid;
      gap: 4px
    }

    .session-item:hover {
      border-color: rgba(206, 102, 50, .4);
      box-shadow: var(--shadow)
    }

    .session-item[aria-pressed="true"] {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(206, 102, 50, .18)
    }

    .session-name {
      font-weight: 700
    }

    .session-meta {
      margin: 0;
      color: var(--muted);
      font-size: .92rem
    }

    .pill {
      display: inline-block;
      font-size: .78rem;
      padding: .25rem .55rem;
      border-radius: 999px;
      background: #f6f6f6;
      border: 1px solid var(--border);
      margin-right: 6px
    }

    .session-detail {
      padding: 28px;
      display: grid;
      gap: 28px
    }

    .detail-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 20px;
      flex-wrap: wrap
    }

    .detail-head h2 {
      margin: 6px 0 8px;
      font-size: 1.6rem
    }

    .lede {
      margin: 0;
      color: var(--muted)
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center
    }

    .meta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-bottom: 20px
    }

    .meta-card {
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px 18px;
      background: #fff;
      display: grid;
      gap: 8px;
      box-shadow: var(--shadow)
    }

    .meta-card strong {
      display: block;
      font-size: .95rem
    }

    .meta-card p {
      margin: 4px 0 0;
      color: var(--muted)
    }

    .detail-panels {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px
    }

    .panel {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px;
      background: #fff;
      height: 100%;
      display: grid;
      gap: 12px;
      box-shadow: var(--shadow)
    }

    .panel h3 {
      margin: 0;
      font-size: 1.05rem
    }

    .panel ul {
      margin: 0;
      padding-left: 20px;
      color: var(--muted);
      display: grid;
      gap: 8px
    }

    .panel li {
      margin: 0
    }

    .actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center
    }

    .ghost {
      background: #fff;
      border: 1px solid var(--border);
      color: var(--text)
    }

    .note {
      margin: 0;
      color: var(--muted);
      font-size: .95rem
    }

    .ad-slot {
      display: flex;
      justify-content: center;
      padding: 24px 0;
      margin: 0 auto;
      max-width: min(100%, 960px)
    }

    .ad-slot .adsbygoogle {
      display: block;
      margin: 0 auto;
      max-width: 100%
    }

    body.mock-ads .adsbygoogle {
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, rgba(148, 163, 184, 0.2) 0, rgba(148, 163, 184, 0.2) 10px, rgba(226, 232, 240, 0.45) 10px, rgba(226, 232, 240, 0.45) 20px);
      border: 1px dashed #cbd5f5;
      color: var(--muted);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      position: relative;
    }

    body.mock-ads .adsbygoogle::after {
      content: "Mock ad";
      position: absolute;
    }


    footer {
      margin-top: 36px;
      padding: 28px 0 40px;
      border-top: 1px solid var(--border);
      color: var(--muted)
    }

    .made {
      display: flex;
      gap: 8px;
      align-items: center
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0
    }

    @media (max-width:960px) {
      .sessions-grid {
        grid-template-columns: 1fr
      }
    }

    @media print {

      header,
      .masthead,
      .hero,
      .session-list,
      .ad-slot,
      footer,
      .hero-actions,
      .detail-head .actions {
        display: none
      }

      body {
        background: #fff;
        font-size: 14px
      }

      main>section.container {
        padding: 0
      }

      .container {
        max-width: 100%;
        padding: 0 12px
      }

      .card {
        box-shadow: none;
        border: 1px solid #e5e7eb
      }

      .session-detail {
        padding: 20px;
        break-inside: avoid;
        page-break-inside: avoid;
        width: 100%
      }

      .detail-panels,
      .meta-grid {
        gap: 14px
      }

      .panel,
      .meta-card {
        box-shadow: none;
        break-inside: avoid;
        page-break-inside: avoid
      }

      .panel ul {
        gap: 6px
      }
    }
  


.nav-links{display:flex; gap:6px; align-items:center}
.hero-gradient-text{background:linear-gradient(135deg,var(--accent),var(--accent-2)); -webkit-background-clip:text; background-clip:text; color:transparent}
.search-wrap{margin-top:18px; max-width:680px}
.ad-banner-728x90{display:inline-block; width:728px; height:90px}
.footer-row{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.copyright-meta{opacity:.8}
.footer-link-spaced{margin-right:12px}
.footer-row-ios{display:flex; flex-wrap:wrap; gap:18px; justify-content:space-between; align-items:center}
.secondary-nav-links{display:flex; gap:12px; flex-wrap:wrap}
