*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg:        #080d1a;
    --bg2:       #0f1626;
    --bg3:       #141d2e;
    --surface:   #111827;
    --teal:      #28c3ff;
    --teal-mid:  #1aa7e0;
    --teal-deep: #0a2a3a;
    --teal-dim:  rgba(40,195,255,0.12);
    --text:      #f0ede6;
    --text-mid:  #8a8782;
    --text-dim:  #6c7484;
    --border:    rgba(255,255,255,0.07);
    --border2:   rgba(255,255,255,0.13);
    --serif:     'Instrument Serif', Georgia, serif;
    --sans:      'DM Sans', system-ui, sans-serif;
    --radius:    12px;
    --max:       1280px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
  }

  .wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes glow-pulse {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 0.7; }
  }

  .anim-1 { animation: fadeUp 0.7s ease both; }
  .anim-2 { animation: fadeUp 0.7s 0.1s ease both; }
  .anim-3 { animation: fadeUp 0.7s 0.2s ease both; }
  .anim-4 { animation: fadeUp 0.7s 0.3s ease both; }
  .anim-5 { animation: fadeUp 0.7s 0.4s ease both; }

  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(8,13,26,0.85);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .logo {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .logo span {
    color: rgba(40,195,255,0.85);
    font-style: italic;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.01em;
  }

  .nav-links a:hover { color: var(--text); }


  #hero {
    padding: 72px 0 72px;
    position: relative;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 700px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(40,195,255,0.16) 0%, transparent 70%);
    animation: glow-pulse 6s ease-in-out infinite;
    pointer-events: none;
  }

  .hero-glow-2 {
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(40,195,255,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
    gap: 44px;
    align-items: start;
  }

  .hero-media {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 100%;
  }

  .hero-logo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(40,195,255,0.22);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    max-width: 360px;
    align-self: flex-start;
  }

  .hero-logo-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 24px;
  }

  .hero-h1 {
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 84px);
    line-height: 1.08;
    font-weight: 400;
    margin-bottom: 28px;
    max-width: 760px;
  }

  .hero-h1 em {
    color: var(--teal);
    font-style: italic;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 560px;
    margin-bottom: 44px;
    font-weight: 300;
  }

  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal) 100%);
    color: #062134;
    padding: 14px 28px;
    border-radius: 32px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 0 0 0 rgba(40,195,255,0);
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, #1fb6f2 0%, #4fd0ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(40,195,255,0.3);
  }

  .btn-primary svg { flex-shrink: 0; }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-mid);
    text-decoration: none;
    border-bottom: 1px solid var(--text-dim);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-ghost:hover {
    color: var(--text);
    border-color: var(--text-mid);
  }

  .stats-bar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 56px;
    margin-bottom: 36px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  }

  .stat-item {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .stat-num {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1;
    color: var(--text);
  }

  .stat-label {
    font-size: 12px;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    margin: 0 40px;
    flex-shrink: 0;
  }

  .stat-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
  }

  .platform-pill {
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid var(--border2);
    color: var(--text-mid);
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .platform-pill:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-dim);
  }

  .platform-pill.primary {
    background: var(--teal-dim);
    border-color: rgba(40,195,255,0.35);
    color: var(--teal);
  }

  section { padding: 56px 0; }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.42);
    margin-bottom: 14px;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .section-title em {
    font-style: italic;
    color: var(--teal);
  }

  .section-sub {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 300;
  }

  .section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }

  #episodes { background: var(--bg2); }

  .episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
  }

  .ep-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s, transform 0.2s, box-shadow 0.2s;
    cursor: default;
  }

  .ep-card:hover {
    border-color: rgba(40,195,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.14);
  }

  .ep-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ep-num {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
  }

  .ep-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .ep-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
    background: var(--teal-dim);
    color: var(--teal);
    border: 1px solid rgba(40,195,255,0.2);
    letter-spacing: 0.02em;
  }

  .ep-title {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--text);
    flex: 1;
  }

  .ep-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300;
  }

  .ep-player { margin-top: 4px; }

  .ep-player iframe {
    border-radius: 10px;
    width: 100%;
    border: none;
  }

  .ep-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
  }

  .ep-link {
    font-size: 13px;
    color: var(--text-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
  }

  .ep-link:hover { color: var(--teal); }

  #hosts { background: var(--bg); }

  .hosts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .host-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .host-card:hover {
    border-color: var(--border2);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  }

  .host-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }

  .host-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    background: var(--teal-deep);
    border: 1px solid rgba(40,195,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 20px;
    color: var(--teal);
    flex-shrink: 0;
  }

  .host-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 4px;
  }

  .host-title {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 300;
  }

  .host-bio {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }

  .host-links {
    display: flex;
    gap: 14px;
  }

  .host-link {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
  }

  .host-link:hover { color: var(--teal); }

  #waitlist { background: var(--bg2); }

  .newsletter-inner {
    background: linear-gradient(135deg, rgba(40,195,255,0.12) 0%, rgba(10,42,58,0.24) 100%);
    border: 1px solid rgba(40,195,255,0.2);
    border-radius: 16px;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
  }

  .nl-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.15;
  }

  .nl-sub {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    max-width: 440px;
  }

  .nl-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 300px;
  }

  .nl-note {
    font-size: 11px;
    color: var(--text-dim);
    text-align: center;
  }

  #suggest { background: var(--bg); }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .info-card .section-label { margin-bottom: 20px; }
  .info-card .section-title { font-size: 28px; margin-bottom: 12px; }

  .info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 32px;
  }

  .info-list li {
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    font-weight: 300;
  }

  .info-list li::before {
    content: '→';
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 1px;
  }

.suggest-form,
.sponsor-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.suggest-form .section-sub,
.sponsor-form .section-sub {
  margin-bottom: 0;
  max-width: none;
}

.suggest-form .btn-primary,
.sponsor-form .btn-primary {
  width: 100%;
  justify-content: center;
}

.nl-form .btn-primary {
  width: 100%;
  justify-content: center;
}

  #sponsor { background: var(--bg2); }

  .sponsor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }

  .sponsor-stat {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
  }

  .sponsor-stat-num {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--text);
    margin-bottom: 4px;
  }

  .sponsor-stat-label {
    font-size: 12px;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* ─── YOUTUBE SECTION ─── */
  #youtube {
    padding: 80px 0;
  }

  .youtube-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .youtube-header .section-label {
    color: #28c3ff;
  }

  .youtube-header .section-title {
    margin-bottom: 20px;
  }

  .youtube-header .section-sub {
    font-size: 15px;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto;
  }

  .featured-video {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
  }

  .featured-video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: url('https://img.youtube.com/vi/Qg2IN-1XJgY/maxresdefault.jpg') center/cover no-repeat;
  }

  .featured-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
  }

  .featured-video-info h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }

  .featured-video-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-mid);
  }

  .featured-video-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .featured-video-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .youtube-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #28c3ff;
    color: var(--bg);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
  }

  .youtube-cta:hover {
    background: #1aa7e0;
  }

  .videos-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }

  .videos-section-header h2 {
    font-size: 24px;
    font-weight: 600;
  }

  .videos-section-header a {
    color: #28c3ff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
  }

  .videos-section-header a:hover {
    color: #1aa7e0;
  }

  .videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }

  .video-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }

  .video-card:hover {
    border-color: rgba(40,195,255,0.25);
    transform: translateY(-3px);
  }

  .video-card-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--bg);
  }

  .video-card-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(40,195,255,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .video-card:hover .play-icon {
    opacity: 1;
  }

  .video-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .video-card-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    flex: 1;
  }

  .video-card-meta {
    font-size: 12px;
    color: var(--text-mid);
  }

  .youtube-subscribe-banner {
    background: linear-gradient(135deg, rgba(40,195,255,0.08) 0%, rgba(40,195,255,0.04) 100%);
    border: 1px solid rgba(40,195,255,0.15);
    border-radius: 12px;
    padding: 36px;
    text-align: center;
  }

  .youtube-subscribe-banner h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .youtube-subscribe-banner p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .youtube-subscribe-btn {
    background: #28c3ff;
    color: var(--bg);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: background 0.2s;
  }

  .youtube-subscribe-btn:hover {
    background: #1aa7e0;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .featured-video {
      grid-template-columns: 1fr;
    }

    .videos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    #youtube {
      padding: 60px 0;
    }

    .featured-video {
      padding: 24px;
      gap: 24px;
    }

    .videos-grid {
      grid-template-columns: 1fr;
    }

    .videos-section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
  }

  footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    background: var(--bg);
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-logo {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--text-mid);
    text-decoration: none;
  }

  .footer-logo span { color: var(--teal); }

  .footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--text-mid); }

  .footer-copy {
    font-size: 12px;
    color: var(--text-dim);
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-top: 8px;
  }

  @media (max-width: 1100px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-logo-card { max-width: 320px; }
  }

  @media (max-width: 900px) {
    .wrap { padding: 0 24px; }

    .nav-links { display: none; }

    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      padding: 20px 24px;
      gap: 16px;
      z-index: 99;
    }

    .hosts-grid, .two-col { grid-template-columns: 1fr; }

    .newsletter-inner {
      grid-template-columns: 1fr;
      padding: 36px 28px;
    }

    .nl-form { min-width: unset; }
    .stats-bar { flex-direction: column; gap: 24px; align-items: flex-start; }
    .stat-divider { display: none; }
    .stat-platforms { margin-left: 0; }
    .episodes-grid { grid-template-columns: 1fr; }
    .sponsor-stats { grid-template-columns: 1fr 1fr; }
    #hero { padding: 60px 0 48px; }
    section { padding: 56px 0; }
  }

  @media (max-width: 540px) {
    .hero-h1 { font-size: 44px; }
    .sponsor-stats { grid-template-columns: 1fr; }

    .hero-logo-card { max-width: 100%; }
  }


  .modal-trigger {
    border: none;
    cursor: pointer;
  }

  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 8, 18, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .modal-panel {
    width: min(720px, 100%);
    max-height: min(88vh, 920px);
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(20,29,46,0.98), rgba(13,19,33,0.98));
    border: 1px solid rgba(40,195,255,0.22);
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
    padding: 28px 28px 24px;
    position: relative;
  }

  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border2);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }

  .modal-close:hover {
    border-color: rgba(40,195,255,0.35);
    color: var(--teal);
  }

  .modal-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.42);
    margin-bottom: 14px;
    padding-right: 52px;
  }

  .modal-title {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 12px;
  }

  .modal-sub {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 560px;
  }

  .modal-form-wrap {
    min-height: 120px;
  }

  .modal-note {
    margin-top: 14px;
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.6;
  }

  body.modal-open {
    overflow: hidden;
  }

  @media (max-width: 640px) {
    .modal-panel {
      padding: 22px 18px 18px;
    }
  }
