html, body { background: #0C0B0A; color: #F5F0E8; font-family: 'Inter Tight', sans-serif; }
    .font-display { font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 500; letter-spacing: -0.02em; }
    .font-mono { font-family: 'IBM Plex Mono', monospace; }

    .grain::before { content:""; position:fixed; inset:0; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E"); opacity:0.05; pointer-events:none; z-index:1; mix-blend-mode:overlay; }

    .drift { position:absolute; border-radius:50%; filter:blur(80px); pointer-events:none; opacity:0.5; will-change:transform; }
    @keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,-40px) scale(1.15); } }
    .drift-a { animation: drift1 14s ease-in-out infinite; }

    .card { background: linear-gradient(180deg, rgba(245,240,232,0.02) 0%, rgba(245,240,232,0) 100%); border: 1px solid #2A2620; transition: border-color 250ms ease, background 250ms ease; }
    .divider { height:1px; background: linear-gradient(90deg, transparent, #2a2620, transparent); }
    ::selection { background: #00D68F; color: #0C0B0A; }

    .reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
    .reveal.is-in { opacity: 1; transform: none; }

    .mega-panel { position:absolute; top:calc(100% + 8px); left:50%; transform:translateX(-50%) translateY(-6px); opacity:0; pointer-events:none; transition:opacity 220ms ease, transform 220ms ease; }
    .mega-panel::before { content:""; position:absolute; top:-28px; left:-48px; right:-48px; height:32px; }
    .mega-trigger { }
    .mega-trigger:hover .mega-panel,
    .mega-trigger:focus-within .mega-panel,
    .mega-trigger.is-open .mega-panel,
    .mega-panel:hover { opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }.magnet { will-change: transform; transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1); }

    .breadcrumb { display: flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #6B6761; padding: 88px 0 8px; }
    .breadcrumb a { color: #9B968C; transition: color .2s; }
    .breadcrumb a:hover { color: #00D68F; }
    .breadcrumb .sep { color: #3A342B; }
    .breadcrumb .current { color: #F5F0E8; }

    /* CHANNELS */
    .channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    @media (max-width: 800px) { .channel-grid { grid-template-columns: 1fr; } }
    .channel {
      display: flex; flex-direction: column; gap: 14px;
      padding: 24px 24px 22px;
      border: 1px solid #2A2620;
      border-radius: 16px;
      background: #0E0D0C;
      transition: border-color .25s, background .25s, transform .25s cubic-bezier(.22,1,.36,1);
    }
    .channel:hover { border-color: rgba(0,214,143,0.45); background: rgba(0,214,143,0.04); transform: translateY(-2px); }
    .channel-ico {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(0,214,143,0.1);
      border: 1px solid rgba(0,214,143,0.3);
      display: grid; place-items: center;
      color: #00D68F;
    }
    .channel-name { font-family: 'Fraunces', serif; font-variation-settings: 'wght' 500; font-size: 22px; color: #F5F0E8; line-height: 1; letter-spacing: -0.01em; }
    .channel-sub { color: #9B968C; font-size: 13px; line-height: 1.5; }
    .channel-arr { display: inline-flex; align-items: center; gap: 6px; color: #00D68F; font-size: 13px; margin-top: auto; transition: gap .25s; }
    .channel:hover .channel-arr { gap: 10px; }

    /* CALENDAR / TIME PICKER */
    .booking-card {
      background: linear-gradient(180deg, rgba(245,240,232,0.02), rgba(245,240,232,0) 60%);
      border: 1px solid #2A2620;
      border-radius: 22px;
      padding: clamp(24px, 4vw, 36px);
    }
    .booking-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #00D68F; margin-bottom: 8px; }
    .booking-h { font-family: 'Inter Tight', sans-serif; font-weight: 500; font-size: clamp(26px, 3vw, 36px); line-height: 1.08; letter-spacing: -0.02em; color: #F5F0E8; margin-bottom: 10px; }
    .booking-h em { font-family: 'Fraunces', serif; font-style: italic; color: #00D68F; font-variation-settings: 'wght' 500, 'SOFT' 80; }
    .booking-strap { color: #9B968C; font-size: 14px; line-height: 1.55; margin-bottom: 24px; }

    /* Side-by-side picker, calendar on left, time slots on right */
    .picker-row {
      display: grid;
      grid-template-columns: minmax(280px, 360px) 1fr;
      gap: 32px;
      align-items: start;
    }
    @media (max-width: 820px) {
      .picker-row { grid-template-columns: 1fr; gap: 28px; }
    }
    .picker-col h2.booking-h { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 6px; }
    .picker-col .booking-eyebrow { margin-bottom: 6px; }
    .picker-col .booking-strap { font-size: 13px; margin-bottom: 16px; }

    /* Compact Calendly-style month calendar */
    .cal-card {
      border: 1px solid #2A2620;
      border-radius: 16px;
      padding: 18px 18px 20px;
      background: rgba(245,240,232,0.015);
    }
    .cal-head {
      display: flex; align-items: center; justify-content: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .cal-month-label {
      font-family: 'Fraunces', serif;
      font-variation-settings: 'wght' 500;
      font-size: 18px;
      color: #F5F0E8;
      letter-spacing: -0.01em;
      line-height: 1;
      min-width: 132px;
      text-align: center;
    }
    .cal-nav-btn {
      width: 30px; height: 30px;
      border: 1px solid #2A2620;
      border-radius: 9px;
      background: #0C0B0A;
      color: #9B968C;
      display: flex; align-items: center; justify-content: center;
      padding: 0; line-height: 0;
      cursor: pointer;
      transition: all .2s;
      flex-shrink: 0;
    }
    .cal-nav-btn svg { display: block; margin: 0; }
    .cal-nav-btn:hover:not(:disabled) { border-color: rgba(0,214,143,0.5); color: #00D68F; }
    .cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
    .cal-dow-row {
      display: grid; grid-template-columns: repeat(7, 1fr);
      gap: 4px;
      margin-bottom: 6px;
    }
    .cal-dow {
      text-align: center;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #6B6761;
      padding: 3px 0;
    }
    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }
    /* Clean, airy cells: transparent by default so the grid reads calmly; only
       hover / today / selected stand out (the old per-cell tint looked noisy). */
    .cal-day {
      position: relative;
      min-width: 0;            /* allow 1fr columns to shrink so the 7th (Sat) never overflows the card */
      aspect-ratio: 1/1;
      display: grid; place-items: center;
      border-radius: 10px;
      border: 1px solid transparent;
      background: transparent;
      color: #E8E4DC;
      font-family: 'Inter Tight', sans-serif;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background .15s ease, color .15s ease, border-color .15s ease;
    }
    .cal-day:hover:not(:disabled):not(.is-empty):not(.is-active) {
      background: rgba(0,214,143,0.12);
      color: #00D68F;
    }
    .cal-day:disabled,
    .cal-day.is-disabled {
      color: #45403A;
      cursor: not-allowed;
    }
    .cal-day.is-empty {
      background: transparent;
      cursor: default;
      pointer-events: none;
    }
    .cal-day.is-today:not(.is-active) { color: #00D68F; font-weight: 600; }
    .cal-day.is-today:not(.is-active)::after {
      content: ""; position: absolute; bottom: 5px;
      width: 4px; height: 4px; border-radius: 50%; background: #00D68F;
    }
    .cal-day.is-active {
      background: #00D68F;
      color: #0C0B0A;
      border-color: #00D68F;
      font-weight: 600;
      box-shadow: 0 2px 7px rgba(0,214,143,0.20);
    }
    .cal-day.is-active::after { display: none; }
    @media (max-width: 480px) {
      .cal-card { padding: 14px; max-width: 100%; }
      .cal-day { font-size: 12px; border-radius: 8px; }
    }

    /* Top bar: intro + the visitor timezone selector */
    .booking-topbar {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 20px; flex-wrap: wrap;
      margin-bottom: 30px;
      padding-bottom: 24px;
      border-bottom: 1px solid #221F1A;
    }
    .booking-topbar .booking-strap { font-size: 14px; max-width: 34ch; }
    .tz-field { display: inline-flex; flex-direction: column; gap: 7px; }
    .tz-field-lbl {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #6B6761;
    }
    .tz-control {
      position: relative; display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid #2A2620; border-radius: 12px;
      background: #0E0D0C;
      padding-left: 13px;
      transition: border-color .2s, background .2s;
    }
    .tz-control:hover { border-color: #3A342B; }
    .tz-control:focus-within { border-color: rgba(0,214,143,0.4); background: #100F0D; box-shadow: 0 0 0 3px rgba(0,214,143,0.10); }
    .tz-globe { display: inline-flex; color: #00D68F; flex-shrink: 0; }
    .tz-select {
      appearance: none; -webkit-appearance: none; -moz-appearance: none;
      background: transparent; border: none; outline: none;
      color: #F5F0E8;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px; letter-spacing: 0.02em;
      padding: 12px 36px 12px 0;
      cursor: pointer;
      max-width: 340px; text-overflow: ellipsis;
    }
    .tz-select option { background: #16140F; color: #F5F0E8; }
    .tz-chev { position: absolute; right: 12px; color: #9B968C; pointer-events: none; display: inline-flex; }
    @media (max-width: 560px) {
      .booking-topbar { flex-direction: column; align-items: stretch; gap: 16px; }
      .tz-field { width: 100%; }
      .tz-control { width: 100%; }
      .tz-select { flex: 1; max-width: none; }
    }
    /* "Times shown in GMT+X" indicator next to the time slots */
    .tz-shown {
      display: inline-flex; align-items: center; gap: 5px;
      font-family: 'IBM Plex Mono', monospace; font-size: 11px;
      color: #6B6761; white-space: nowrap;
    }
    .tz-shown strong { color: #00D68F; font-weight: 500; }

    /* time slots */
    .slot-group { margin-bottom: 14px; }
    .slot-group-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #6B6761; margin-bottom: 8px; }
    .slot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(86px, 1fr)); gap: 6px; }
    .slot-btn {
      padding: 9px 6px;
      border: 1px solid #2A2620;
      border-radius: 9px;
      background: #0C0B0A;
      color: #F5F0E8;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px; letter-spacing: 0.04em;
      cursor: pointer;
      transition: all .2s;
    }
    .slot-btn:hover { border-color: #3A342B; }
    .slot-btn.is-active {
      border-color: #00D68F;
      background: rgba(0,214,143,0.08);
      color: #00D68F;
    }
    .slot-btn .tz { font-size: 9px; color: #6B6761; letter-spacing: 0.12em; display: block; margin-top: 2px; }
    .slot-btn.is-active .tz { color: rgba(0,214,143,0.6); }

    /* Full-width footer row (moved out of the right column for balance) */
    .custom-time-row {
      display: flex; align-items: center; gap: 12px;
      margin-top: 28px;
      padding: 14px 16px;
      border: 1px solid #2A2620;
      border-radius: 14px;
      background: rgba(245,240,232,0.02);
      flex-wrap: wrap;
    }
    .custom-time-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #6B6761; white-space: nowrap; }
    .custom-time-input {
      flex: 1; min-width: 160px;
      background: #0C0B0A;
      border: 1px solid #2A2620;
      border-radius: 9px;
      padding: 9px 12px;
      color: #F5F0E8;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
      color-scheme: dark;
    }
    .custom-time-input:focus { border-color: rgba(0,214,143,0.5); outline: none; }
    .custom-time-set {
      background: rgba(0,214,143,0.1);
      border: 1px solid rgba(0,214,143,0.35);
      color: #00D68F;
      padding: 8px 14px;
      border-radius: 9px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px; letter-spacing: 0.1em;
      cursor: pointer;
      transition: all .2s;
    }
    .custom-time-set:hover { background: rgba(0,214,143,0.18); }

    .booking-summary {
      margin-top: 22px;
      padding: 16px 18px;
      border: 1px solid #2A2620;
      border-radius: 12px;
      background: #0C0B0A;
      display: none;
      gap: 14px; align-items: center;
      flex-wrap: wrap;
    }
    .booking-summary.is-on { display: flex; }
    .booking-summary .ico { width: 28px; height: 28px; border-radius: 50%; background: rgba(0,214,143,0.1); border: 1px solid rgba(0,214,143,0.4); color: #00D68F; display: grid; place-items: center; flex-shrink: 0; }
    .booking-summary .lbl { font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #6B6761; }
    .booking-summary .v { color: #F5F0E8; font-family: 'Fraunces', serif; font-variation-settings: 'wght' 500; font-size: 18px; line-height: 1.1; margin-top: 4px; }
    .booking-summary .sub { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.02em; color: #9B968C; margin-top: 7px; }

    /* FORM */
    .input, .textarea {
      width: 100%;
      background: #0C0B0A;
      border: 1px solid #2A2620;
      border-radius: 12px;
      padding: 14px 16px;
      color: #F5F0E8;
      font-family: 'Inter Tight', sans-serif;
      font-size: 15px;
      outline: none;
      transition: border-color .2s, background .2s;
    }
    .input:hover, .textarea:hover { border-color: #3A342B; }
    .input:focus, .textarea:focus { border-color: #00D68F; background: #0E0D0C; }
    .textarea { min-height: 100px; resize: vertical; line-height: 1.6; }

    .input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    @media (max-width: 600px) { .input-grid { grid-template-columns: 1fr; } }

    .opt-toggle {
      background: transparent; border: none; padding: 0;
      color: #9B968C; cursor: pointer;
      font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 6px;
      transition: color .2s;
    }
    .opt-toggle:hover { color: #F5F0E8; }
    .opt-toggle .chev { transition: transform .25s; }
    .opt-toggle.is-open .chev { transform: rotate(180deg); }
    .opt-fields { display: none; gap: 12px; flex-direction: column; padding-top: 10px; }
    .opt-fields.is-open { display: flex; }

    .submit-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: #00D68F; color: #0C0B0A;
      padding: 14px 26px;
      border-radius: 12px;
      font-weight: 500; font-size: 15px;
      transition: background .2s, transform .2s;
      cursor: pointer; border: none;
      width: 100%;
    }
    .submit-btn:hover { background: #F5F0E8; transform: translateY(-1px); }
    .submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

    .form-success {
      padding: 38px 32px;
      border: 1px solid rgba(0,214,143,0.4);
      border-radius: 22px;
      background: rgba(0,214,143,0.04);
      text-align: center;
      display: none;
    }
    .form-success.is-on { display: block; }
    .form-success .ico { width: 56px; height: 56px; border-radius: 50%; background: #00D68F; color: #0C0B0A; display: grid; place-items: center; margin: 0 auto 18px; }

    /* FAQ */
    .faq details {
      background: rgba(245,240,232,0.02);
      border: 1px solid #2A2620;
      border-radius: 12px;
      margin-bottom: 8px;
      transition: border-color .2s, background .2s;
    }
    .faq details[open] { border-color: rgba(0,214,143,0.4); background: rgba(0,214,143,0.04); }
    .faq summary { padding: 18px 20px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: 'Fraunces', serif; font-variation-settings: 'wght' 500; color: #F5F0E8; }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary .plus { color: #00D68F; font-size: 22px; line-height: 1; transition: transform .25s; }
    .faq details[open] summary .plus { transform: rotate(45deg); }
    .faq .answer { padding: 0 20px 18px; color: #9B968C; font-size: 14px; line-height: 1.6; }

    /* Reach badge */
    .reach-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(0,214,143,0.35); background: rgba(0,214,143,0.06); color: #F5F0E8; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
    .reach-badge .glow { width: 8px; height: 8px; border-radius: 50%; background: #00D68F; box-shadow: 0 0 0 4px rgba(0,214,143,0.18); animation: pulse 2.4s ease-in-out infinite; }
    @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

    a:focus-visible, button:focus-visible, [tabindex="0"]:focus-visible, input:focus-visible, textarea:focus-visible, details > summary:focus-visible { outline:2px solid #00D68F; outline-offset:3px; border-radius:6px; }

    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration:0.01ms !important; transition-duration:0.01ms !important; } .reveal { opacity:1; transform:none; } }