/* Market Session Clock */
.session-clock-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    background: var(--navy-mid);
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.session-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}

.session-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
}

.session-status {
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 2px;
    font-weight: 700;
}

.status-open {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.status-closed {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.session-time {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
}

/* Calculator Styles */
.calculator-section {
    padding: 80px 48px;
    background: var(--white);
}

.calculator-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.calc-card {
    background: var(--off-white);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 32px;
}

.calc-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-title svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-bright);
}

.calc-group {
    margin-bottom: 16px;
}

.calc-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.calc-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--rule);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'IBM Plex Mono', monospace;
    background: var(--white);
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
}

.calc-group input:focus {
    border-color: var(--blue-bright);
}

.calc-result {
    margin-top: 24px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-result-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.calc-result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue-bright);
    font-family: 'IBM Plex Mono', monospace;
}

/* Embeds Section */
.embeds-section {
    padding: 80px 48px;
    background: var(--navy);
}

.embeds-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.embed-container {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
    padding: 24px;
}

.embed-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Email Capture */
.lead-capture {
    background: var(--blue);
    padding: 80px 48px;
    text-align: center;
}

.lead-inner {
    max-width: 600px;
    margin: 0 auto;
}

.lead-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.lead-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.lead-form {
    display: flex;
    gap: 12px;
}

.lead-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
}

.lead-form button {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 0 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.lead-form button:hover {
    background: var(--ink);
}

@media (max-width: 768px) {
    .embeds-grid { grid-template-columns: 1fr; }
    .lead-form { flex-direction: column; }
    .lead-form button { padding: 14px; }
}

/* Interactive Scrubber UI */
.chart-controls {
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}
.replay-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.replay-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.replay-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.replay-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-bright);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  border: 2px solid var(--white);
  transition: transform 0.1s;
}
.replay-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.replay-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-bright);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  border: 2px solid var(--white);
  transition: transform 0.1s;
}
.replay-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}
