/* Maker Index v5 — extracted from flux-form-maker-index-v5.html */
/* ============================================
       FLUX+FORM MAKER INDEX — DESIGN TOKENS
       ============================================ */
    :root {
      --surface-deep: #0E0E12;
      --surface-base: #16161C;
      --surface-lifted: #1F1F28;
      --surface-overlay: #2A2A35;
      --hairline: rgba(232, 232, 224, 0.08);
      --hairline-bright: rgba(232, 232, 224, 0.18);
      --form-blue: #4A6B8F;
      --form-blue-bright: #6B8FB8;
      --synapse-spark: #C8E8FF;
      --synapse-spark-glow: rgba(200, 232, 255, 0.4);
      --oxblood: #722F37;
      --oxblood-bright: #8E3A45;
      --text-primary: #F2F0EB;
      --text-secondary: #A8A8A0;
      --text-tertiary: #6E6E68;
      --font-display: 'Fraunces', Georgia, serif;
      --font-body: 'Geist', system-ui, sans-serif;
      --font-mono: 'Geist Mono', ui-monospace, monospace;
      --container-max: 1280px;
      --gutter: clamp(24px, 5vw, 80px);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--surface-deep);
      color: var(--text-primary);
      line-height: 1.5;
      font-feature-settings: 'ss01', 'cv11';
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      min-height: 100vh;
    }

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

    /* ============================================
       NAV (mirror of homepage)
       ============================================ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 24px var(--gutter);
      backdrop-filter: blur(16px);
      background: rgba(14, 14, 18, 0.7);
      border-bottom: 1px solid transparent;
      transition: border-color 0.4s ease;
    }
    .nav.scrolled { border-bottom-color: var(--hairline); }
    .nav-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
      transition: opacity 0.3s ease;
    }
    .nav-brand:hover { opacity: 0.85; }
    .nav-brand img { height: 44px; width: auto; display: block; }
    .nav-links { display: flex; gap: 40px; align-items: center; }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .nav-links a:hover { color: var(--text-primary); }
    .nav-links a.active { color: var(--text-primary); }
    .nav-cta {
      padding: 10px 20px;
      background: transparent;
      border: 1px solid var(--hairline-bright);
      border-radius: 4px;
      font-size: 13px;
      color: var(--text-primary) !important;
      transition: all 0.3s ease;
    }
    .nav-cta:hover {
      border-color: var(--synapse-spark);
      color: var(--synapse-spark) !important;
    }
    @media (max-width: 768px) {
      .nav-links a:not(.nav-cta) { display: none; }
    }

    /* Hide nav during quiz/processing/result screens */
    body.in-quiz .nav { opacity: 0; pointer-events: none; transition: opacity 0.6s ease; }

    /* ============================================
       SCREEN SYSTEM
       Each "screen" is a full-page state. Only one
       is visible at a time. JS toggles the .active class.
       ============================================ */
    .screen {
      display: none;
      min-height: 100vh;
      position: relative;
      z-index: 2;
    }
    .screen.active {
      display: block;
      animation: screen-enter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes screen-enter {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ============================================
       LANDING SCREEN
       ============================================ */
    .landing-hero {
      padding: 140px var(--gutter) 80px;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }
    .landing-hero::before {
      content: '';
      position: absolute;
      top: 30%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, 
        rgba(200, 232, 255, 0.07) 0%, 
        rgba(200, 232, 255, 0.015) 30%, 
        transparent 60%);
      filter: blur(40px);
      pointer-events: none;
      z-index: 1;
    }
    .landing-hero-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      position: relative;
      z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 80px;
      align-items: center;
    }
    
    .landing-hero-content {
      max-width: 720px;
    }
    
    /* Right-side mini conversion panel */
    .hero-stance-panel {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-self: center;
    }
    
    .hero-stance {
      padding: 24px 28px;
      background: var(--surface-base);
      border: 1px solid var(--hairline);
      border-radius: 4px;
      position: relative;
    }
    
    .hero-stance-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 12px;
      color: var(--text-tertiary);
    }
    .hero-stance.is-not .hero-stance-label { color: var(--oxblood-bright); }
    .hero-stance.is .hero-stance-label { color: var(--synapse-spark); }
    
    .hero-stance h4 {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.3;
      letter-spacing: -0.01em;
      color: var(--text-primary);
      margin-bottom: 8px;
    }
    
    .hero-stance p {
      font-size: 13px;
      line-height: 1.55;
      color: var(--text-secondary);
      margin: 0;
      max-width: none;
    }
    
    /* Scroll cue */
    .scroll-cue {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-tertiary);
      opacity: 0;
      animation: scroll-cue-appear 0.8s ease 1.2s forwards, scroll-cue-pulse 2.5s ease 2s infinite;
      z-index: 3;
      pointer-events: none;
    }
    
    @keyframes scroll-cue-appear {
      to { opacity: 0.7; }
    }
    
    @keyframes scroll-cue-pulse {
      0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
      50% { transform: translate(-50%, 4px); opacity: 1; }
    }
    
    @media (max-width: 900px) {
      .landing-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .hero-stance-panel {
        order: 2;
      }
      .scroll-cue { display: none; }
    }

    .eyebrow {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 48px;
      display: inline-flex;
      align-items: center;
    }
    .eyebrow::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 1px;
      background: var(--synapse-spark);
      margin-right: 16px;
      box-shadow: 0 0 6px var(--synapse-spark-glow);
    }

    .landing-hero h1 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(48px, 8vw, 128px);
      line-height: 0.98;
      letter-spacing: -0.035em;
      max-width: 14ch;
      font-feature-settings: 'ss01';
    }
    .landing-hero h1 em {
      font-style: italic;
      color: var(--synapse-spark);
    }

    .landing-hero-subhead {
      margin-top: 48px;
      max-width: 56ch;
      font-size: 20px;
      line-height: 1.55;
      color: var(--text-secondary);
    }

    .landing-cta {
      margin-top: 64px;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .landing-meta {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.1em;
      color: var(--text-tertiary);
    }

    /* Firing divider */
    .firing-divider {
      height: 1px;
      background: var(--hairline);
      position: relative;
      overflow: visible;
    }
    .firing-divider::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      height: 1px;
      width: 0%;
      background: linear-gradient(90deg, transparent 0%, var(--synapse-spark) 50%, transparent 100%);
      box-shadow: 0 0 12px var(--synapse-spark-glow);
      transform: translateX(-50%);
      transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .firing-divider.fired::before { width: 100%; }

    /* Section base */
    .section {
      padding: 120px var(--gutter);
      position: relative;
      z-index: 2;
    }
    .section-inner {
      max-width: var(--container-max);
      margin: 0 auto;
    }
    .section-eyebrow {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--synapse-spark);
      margin-bottom: 32px;
      display: inline-flex;
      align-items: center;
    }
    .section-eyebrow::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--synapse-spark);
      border-radius: 50%;
      margin-right: 12px;
      box-shadow: 0 0 8px var(--synapse-spark-glow);
    }
    .section h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(32px, 4.5vw, 56px);
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 40px;
      max-width: 22ch;
    }
    .section p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 60ch;
      margin-bottom: 24px;
    }
    .section p.emphasis {
      color: var(--text-primary);
      max-width: 48ch;
    }

    /* What this is */
    .what-this-is {
      background: var(--surface-base);
    }

    /* Begin section */
    .begin {
      text-align: center;
      padding: 160px var(--gutter);
      position: relative;
    }
    .begin::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(200, 232, 255, 0.04) 0%, transparent 60%);
      filter: blur(40px);
      pointer-events: none;
    }
    .begin-inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .begin h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(32px, 4vw, 56px);
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 32px;
      max-width: 18ch;
      margin-left: auto;
      margin-right: auto;
    }
    .begin p {
      color: var(--text-secondary);
      font-size: 18px;
      max-width: 50ch;
      margin: 0 auto 48px;
    }

    /* ============================================
       BUTTONS
       ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.01em;
      text-decoration: none;
      border-radius: 4px;
      cursor: pointer;
      border: none;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--form-blue);
      color: var(--text-primary);
    }
    .btn-primary:hover:not(:disabled) {
      background: var(--form-blue-bright);
      transform: translateY(-1px);
    }
    .btn-primary:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }
    .btn-secondary {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--hairline-bright);
    }
    .btn-secondary:hover {
      border-color: var(--synapse-spark);
      color: var(--synapse-spark);
    }
    .btn-ghost {
      background: transparent;
      color: var(--text-secondary);
      padding: 12px 16px;
      font-size: 13px;
    }
    .btn-ghost:hover { color: var(--text-primary); }
    .btn .arrow { display: inline-block; transition: transform 0.3s ease; }
    .btn:hover .arrow { transform: translateX(3px); }
    .btn-large {
      padding: 20px 36px;
      font-size: 16px;
    }

    /* ============================================
       INTAKE FORM (modal-feeling, full screen)
       ============================================ */
    .intake-screen, .warning-screen, .processing-screen {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px var(--gutter) 80px;
    }
    .intake-inner {
      max-width: 640px;
      width: 100%;
    }
    .intake-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--synapse-spark);
      margin-bottom: 32px;
    }
    .intake-eyebrow::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--synapse-spark);
      border-radius: 50%;
      margin-right: 12px;
      vertical-align: middle;
      box-shadow: 0 0 8px var(--synapse-spark-glow);
    }
    .intake-screen h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 16px;
      max-width: 18ch;
    }
    .intake-screen .subtitle {
      color: var(--text-secondary);
      font-size: 17px;
      line-height: 1.55;
      margin-bottom: 56px;
      max-width: 48ch;
    }
    .form-field {
      margin-bottom: 32px;
    }
    .form-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 12px;
    }
    .form-input,
    .form-select {
      width: 100%;
      padding: 16px 20px;
      background: var(--surface-base);
      border: 1px solid var(--hairline-bright);
      border-radius: 4px;
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--text-primary);
      transition: border-color 0.3s ease, background 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
    }
    .form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23A8A8A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 20px center;
      padding-right: 48px;
      cursor: pointer;
    }
    .form-input:focus,
    .form-select:focus {
      outline: none;
      border-color: var(--synapse-spark);
      background: var(--surface-lifted);
    }
    .intake-actions {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .intake-actions .privacy-note {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.06em;
      color: var(--text-tertiary);
    }

    /* ============================================
       WARNING SCREEN — DRAMATIC, ABOVE FOLD
       ============================================ */
    .warning-screen {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px var(--gutter) 80px;
      overflow: hidden;
    }
    
    /* Ambient atmosphere — oxblood-tinted glow off-canvas */
    .warning-screen::before {
      content: '';
      position: absolute;
      top: 50%;
      left: -10%;
      transform: translateY(-50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, 
        rgba(142, 58, 69, 0.08) 0%, 
        rgba(142, 58, 69, 0.02) 30%, 
        transparent 60%);
      filter: blur(60px);
      pointer-events: none;
      z-index: 1;
    }
    
    .warning-screen::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -10%;
      transform: translateY(-50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, 
        rgba(200, 232, 255, 0.04) 0%, 
        transparent 50%);
      filter: blur(60px);
      pointer-events: none;
      z-index: 1;
    }
    
    .warning-inner {
      max-width: 880px;
      width: 100%;
      position: relative;
      z-index: 2;
      text-align: left;
    }
    
    .warning-screen .eyebrow {
      color: var(--oxblood-bright);
      margin-bottom: 32px;
    }
    .warning-screen .eyebrow::before {
      background: var(--oxblood-bright);
      box-shadow: 0 0 8px rgba(142, 58, 69, 0.5);
    }
    
    .warning-screen .lead {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(40px, 6.5vw, 88px);
      line-height: 0.98;
      letter-spacing: -0.035em;
      color: var(--text-primary);
      margin-bottom: 32px;
      max-width: 16ch;
    }
    
    .warning-screen .lead em {
      font-style: italic;
      color: var(--oxblood-bright);
    }
    
    .warning-screen .declaration {
      font-family: var(--font-display);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(22px, 2.6vw, 32px);
      line-height: 1.4;
      letter-spacing: -0.015em;
      color: var(--text-secondary);
      margin-bottom: 48px;
      max-width: 36ch;
      padding-left: 24px;
      border-left: 2px solid var(--oxblood);
    }
    
    .warning-screen .declaration .lift {
      color: var(--text-primary);
      font-style: italic;
    }
    
    .warning-actions {
      margin-top: 0;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    
    .warning-screen .meta-line {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.16em;
      color: var(--text-tertiary);
    }
    
    @media (max-width: 768px) {
      .warning-screen {
        padding: 80px var(--gutter) 60px;
      }
      .warning-screen .declaration {
        padding-left: 16px;
      }
    }

    /* ============================================
       QUIZ INTERFACE
       ============================================ */
    .quiz-screen {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .quiz-progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--hairline);
      z-index: 200;
    }
    .quiz-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--form-blue), var(--synapse-spark));
      width: 0%;
      transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 0 8px var(--synapse-spark-glow);
    }
    .quiz-header {
      padding: 32px var(--gutter);
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: var(--container-max);
      margin: 0 auto;
      width: 100%;
    }
    .quiz-counter {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.16em;
      color: var(--text-secondary);
    }
    .quiz-counter .current {
      color: var(--text-primary);
    }
    .quiz-category-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-tertiary);
    }

    .quiz-question {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px var(--gutter) 80px;
    }
    .quiz-question-inner {
      max-width: 800px;
      width: 100%;
    }
    .quiz-question-text {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      margin-bottom: 64px;
      min-height: 4em;
      transition: opacity 0.4s ease;
    }
    .quiz-options {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .quiz-option {
      padding: 28px 32px;
      background: var(--surface-base);
      border: 1px solid var(--hairline);
      border-radius: 4px;
      font-family: var(--font-body);
      font-size: 18px;
      line-height: 1.5;
      color: var(--text-primary);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      text-align: left;
      width: 100%;
      position: relative;
      overflow: hidden;
    }
    .quiz-option::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 3px;
      background: var(--form-blue);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .quiz-option:hover {
      border-color: var(--hairline-bright);
      background: var(--surface-lifted);
      transform: translateX(4px);
    }
    .quiz-option:hover::before { opacity: 1; }
    .quiz-option.selected {
      border-color: var(--synapse-spark);
      background: var(--surface-lifted);
    }
    .quiz-option.selected::before {
      background: var(--synapse-spark);
      opacity: 1;
      box-shadow: 0 0 8px var(--synapse-spark-glow);
    }
    .quiz-footer {
      padding: 24px var(--gutter) 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: var(--container-max);
      margin: 0 auto;
      width: 100%;
    }
    .quiz-question-fade {
      opacity: 0;
    }

    /* ============================================
       PROCESSING SCREEN
       ============================================ */
    .processing-inner {
      text-align: center;
      max-width: 600px;
    }
    .processing-pulse {
      width: 80px;
      height: 80px;
      margin: 0 auto 48px;
      position: relative;
    }
    .processing-pulse::before,
    .processing-pulse::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--synapse-spark);
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    .processing-pulse::after {
      animation-delay: 1s;
    }
    @keyframes pulse {
      0% { transform: scale(0.5); opacity: 0.6; }
      100% { transform: scale(2); opacity: 0; }
    }
    .processing-pulse-core {
      position: absolute;
      inset: 30%;
      background: var(--synapse-spark);
      border-radius: 50%;
      box-shadow: 0 0 24px var(--synapse-spark-glow);
    }
    .processing-text {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--text-primary);
    }
    .processing-text em {
      font-style: italic;
      color: var(--synapse-spark);
    }
    .processing-substeps {
      margin-top: 48px;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.16em;
      color: var(--text-tertiary);
      min-height: 2em;
    }

    /* ============================================
       RESULT SCREEN — light surface, editorial
       ============================================ */
    .result-screen {
      background: #FAF9F5;
      color: #1A1A1F;
      min-height: 100vh;
      padding: 100px 0 0;
    }
    .result-hero {
      padding: 80px var(--gutter) 60px;
      max-width: var(--container-max);
      margin: 0 auto;
    }
    .result-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #6E6E68;
      margin-bottom: 32px;
    }
    .result-eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: var(--oxblood);
      margin-right: 12px;
      vertical-align: middle;
    }
    .made-by-label {
      font-family: var(--font-mono);
      font-size: 14px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #6E6E68;
      margin-bottom: 16px;
    }
    .result-name {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(64px, 12vw, 160px);
      line-height: 0.92;
      letter-spacing: -0.045em;
      color: #1A1A1F;
      margin-bottom: 16px;
    }
    .result-name em { font-style: italic; }
    .result-persona-name {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(24px, 3vw, 36px);
      color: var(--oxblood);
      letter-spacing: -0.01em;
    }
    .result-section {
      padding: 60px var(--gutter);
      max-width: var(--container-max);
      margin: 0 auto;
    }
    .result-section + .result-section {
      border-top: 1px solid rgba(26, 26, 31, 0.08);
    }
    .result-section h3 {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #6E6E68;
      margin-bottom: 32px;
    }
    .result-section p {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(20px, 2.4vw, 26px);
      line-height: 1.55;
      letter-spacing: -0.01em;
      color: #1A1A1F;
      max-width: 28em;
      margin-bottom: 24px;
    }
    .result-section.bridge {
      background: #F2EEE5;
    }
    .result-cta-section {
      padding: 100px var(--gutter);
      background: #1A1A1F;
      color: #F2F0EB;
      text-align: center;
    }
    .result-cta-inner {
      max-width: 700px;
      margin: 0 auto;
    }
    .result-cta-section h3 {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--synapse-spark);
      margin-bottom: 24px;
    }
    .result-cta-section h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: #F2F0EB;
      margin-bottom: 40px;
      max-width: 22ch;
      margin-left: auto;
      margin-right: auto;
    }
    .result-cta-section .btn-primary {
      padding: 20px 36px;
      font-size: 16px;
    }

    /* ============================================
       EMAIL CAPTURE OVERLAY
       Appears as a modal on the result page
       ============================================ */
    .email-overlay {
      position: fixed;
      inset: 0;
      background: rgba(14, 14, 18, 0.92);
      backdrop-filter: blur(8px);
      z-index: 300;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .email-overlay.active {
      display: flex;
      animation: screen-enter 0.4s ease;
    }
    .email-overlay-card {
      background: var(--surface-base);
      border: 1px solid var(--hairline);
      border-radius: 6px;
      padding: 56px 48px;
      max-width: 560px;
      width: 100%;
      position: relative;
    }
    .email-overlay-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: var(--text-tertiary);
      cursor: pointer;
      font-size: 14px;
      font-family: var(--font-mono);
      letter-spacing: 0.1em;
    }
    .email-overlay-close:hover { color: var(--text-primary); }
    .email-overlay h3 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 32px;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      margin-bottom: 16px;
    }
    .email-overlay p {
      font-size: 15px;
      line-height: 1.55;
      color: var(--text-secondary);
      margin-bottom: 32px;
    }

    /* ============================================
       SHARE SCREEN
       ============================================ */
    .share-screen {
      background: var(--surface-deep);
      color: var(--text-primary);
      min-height: 100vh;
      padding: 120px var(--gutter) 80px;
    }
    .share-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }
    .share-screen h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 24px;
    }
    .share-screen .preview {
      margin: 48px auto;
      padding: 56px 40px;
      background: var(--surface-base);
      border: 1px solid var(--hairline);
      border-radius: 4px;
      max-width: 520px;
    }
    .share-preview-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      color: var(--text-tertiary);
      margin-bottom: 20px;
    }
    .share-preview-line {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 18px;
      color: var(--text-primary);
      line-height: 1.5;
    }
    .share-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 32px;
    }
    .share-btn {
      padding: 12px 20px;
      background: var(--surface-base);
      border: 1px solid var(--hairline-bright);
      border-radius: 4px;
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 13px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .share-btn:hover {
      border-color: var(--synapse-spark);
      color: var(--synapse-spark);
    }

    /* Reveals */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal.delay-1 { transition-delay: 0.1s; }
    .reveal.delay-2 { transition-delay: 0.2s; }
    .reveal.delay-3 { transition-delay: 0.3s; }
    .reveal.delay-4 { transition-delay: 0.45s; }
    .reveal.delay-5 { transition-delay: 0.6s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .firing-divider::before { width: 100% !important; }
      .processing-pulse::before, .processing-pulse::after { animation: none; }
    }

/* ============================================
   CANVAS-PORT OVERRIDES (added during canvas integration)
   ============================================ */

/* Bump "What it is" / "What it is not" labels for legibility */
.hero-stance-label {
  font-size: 14px !important;
  letter-spacing: 0.16em !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}
.hero-stance h4 {
  font-size: clamp(18px, 1.8vw, 22px) !important;
  margin-bottom: 12px !important;
}

/* Begin screen ("There are no right answers. Only honest ones.")
   - Stack children vertically with flex column so the CTA always lands on its own line
   - Constrain subtitle to a comfortable measure with no awkward hyphenation */
.begin-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.begin-inner > * { max-width: 100%; }
.begin-inner > h2 { max-width: 22ch; }
.begin-inner > p {
  max-width: 56ch;
  margin: 24px 0 0;
  line-height: 1.55;
  text-wrap: pretty;
  hyphens: none;
  -webkit-hyphens: none;
}
.begin-inner > .btn,
.begin-inner > .btn-large {
  display: inline-flex !important;
  margin: 40px 0 0 !important;
  width: auto !important;
  max-width: 100% !important;
  align-self: center !important;
}


/* ============================================
   RESULT PAGE AUGMENTATION — v5
   Goals:
   - Who section dark band, body text passes WCAG AAA (the previous version
     was losing the cascade fight against .result-section p { color: #1A1A1F }).
   - CTAs center-aligned under the headline.
   - Share buttons rendered via CSS mask-image with data-URI SVGs (HTML <svg>
     gets stripped by WordPress wp_kses sanitization in Custom HTML blocks).
   ============================================ */

/* Screen-reader-only utility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* WHO SECTION — full-bleed dark band, inner content constrained to
   var(--container-max) with gutter padding so text aligns with the cream
   .result-section blocks above and below.

   Structure:
     <div class="result-section result-who-section">    ← 100vw dark band
       <div class="result-who-inner">                   ← max-width container
         <eyebrow / headline / body paragraphs>
       </div>
     </div>

   Why the inner wrapper: an earlier version constrained direct children
   with !important rules, but child rules with margin-shorthand (margin: 0 0 24px)
   silently reset margin-left/right to 0, beating margin: auto. The wrapper
   eliminates that specificity war entirely. */
.result-screen .result-section.result-who-section {
  background: #0E0E12 !important;
  color: #F2F0EB !important;
  max-width: 100vw !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 80px 0 !important;
  overflow: hidden;
}
.result-screen .result-section.result-who-section .result-who-inner {
  max-width: var(--container-max, 1280px);
  margin: 0 auto;
  padding: 0 var(--gutter, 40px);
  box-sizing: border-box;
  width: 100%;
}
.result-screen .result-section.result-who-section + .result-section { border-top: none; }
.result-screen .result-section.result-who-section .result-who-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--synapse-spark, #C8E8FF) !important;
  margin: 0 0 24px !important;
}
.result-screen .result-section.result-who-section .result-who-headline {
  /* Slightly larger / lighter to read as the section's voice, but kept
     proportionally consistent with the cream section's body. */
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2F0EB !important;
  margin: 0 0 32px !important;
  max-width: 22ch;
  text-transform: none !important;
}
.result-screen .result-section.result-who-section .result-who-body {
  /* Match the cream .result-section p typography — Fraunces serif, lighter
     weight, fluid size — so the dark band reads as part of the same essay
     rather than a different system. Color is the only thing that changes
     to keep WCAG AAA contrast on the dark background. */
  font-family: var(--font-display) !important;
  font-weight: 300 !important;
  font-size: clamp(20px, 2.4vw, 26px) !important;
  line-height: 1.55 !important;
  letter-spacing: -0.01em !important;
  color: #E3E0D7 !important;
  max-width: 28em !important;
  margin: 0 0 24px !important;
}
.result-screen .result-section.result-who-section .result-who-body:last-child { margin-bottom: 0 !important; }
.result-screen .result-section.result-who-section .result-who-link {
  color: var(--synapse-spark, #C8E8FF) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}
.result-screen .result-section.result-who-section .result-who-link:hover {
  color: #F2F0EB !important;
}

/* FOOTER — removed from maker-index.css in v14.

   Why: 5 of 6 pages (Home, About, Workshop, Resources, Book a Call) all
   render their footer correctly using ONLY style.css's body.flux-canvas
   .footer rules. The Maker Index page is the only one that loads
   maker-index.css. Every attempt to "fix" the footer in maker-index.css
   has either left it narrow (v10/v11) or removed it entirely (v12).

   Occam's Razor: stop fighting the cascade. style.css's footer rules are
   already proven to work. maker-index.css will NOT touch the footer. */


/* PRIMARY CTA ROW — centered horizontally */
.result-cta-section .result-primary-ctas {
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 700px) {
  .result-cta-section .result-primary-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

/* SHARE BLOCK */
.result-cta-section .result-share-block {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 232, 224, 0.10);
}
.result-cta-section .result-share-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8A8579;
  margin-bottom: 20px;
  text-align: center;
}
.result-cta-section .result-share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

/* Icon-only share buttons — mask-image with data-URI SVGs */
.result-cta-section .result-share-buttons .share-btn {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(232, 232, 224, 0.22);
  border-radius: 50%;
  color: #E3E0D7;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}
.result-cta-section .result-share-buttons .share-btn::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask-image: var(--share-icon);
          mask-image: var(--share-icon);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.result-cta-section .result-share-buttons .share-btn:hover {
  border-color: var(--synapse-spark, #C8E8FF);
  color: var(--synapse-spark, #C8E8FF);
  background: rgba(200, 232, 255, 0.06);
  transform: translateY(-1px);
}
.result-cta-section .result-share-buttons .share-btn:focus-visible {
  outline: 2px solid var(--synapse-spark, #C8E8FF);
  outline-offset: 2px;
}
.result-cta-section .result-share-buttons .share-btn.share-native {
  background: var(--synapse-spark, #C8E8FF) !important;
  color: #0E0E12 !important;
  border-color: var(--synapse-spark, #C8E8FF) !important;
}
.result-cta-section .result-share-buttons .share-btn.share-native:hover {
  background: #F2F0EB !important;
  border-color: #F2F0EB !important;
  color: #0E0E12 !important;
  transform: translateY(-1px);
}
.result-cta-section .result-share-buttons .share-btn.is-copied {
  font-size: 10px !important;
  line-height: 44px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--synapse-spark, #C8E8FF);
  border-color: var(--synapse-spark, #C8E8FF);
}
.result-cta-section .result-share-buttons .share-btn.is-copied::before { display: none; }

/* Per-button icon mask URLs (data-URI SVGs — bypass wp_kses entirely) */
.share-icon--device {
  --share-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2 7 7h3v7h4V7h3l-5-5zM5 13v6c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-6h-2v6H7v-6H5z'/></svg>");
}
.share-icon--linkedin {
  --share-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14zM8.34 18V10.13H5.67V18h2.67zM7 8.95a1.55 1.55 0 1 0 0-3.1 1.55 1.55 0 0 0 0 3.1zM18.34 18v-4.31c0-2.48-1.34-3.63-3.13-3.63-1.45 0-2.1.8-2.46 1.36V10.13h-2.67c.04.75 0 7.87 0 7.87h2.67v-4.4c0-.24.02-.48.09-.65.19-.48.63-.98 1.37-.98.97 0 1.36.74 1.36 1.81V18h2.77z'/></svg>");
}
.share-icon--twitter {
  --share-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M17.53 3H21l-7.39 8.45L22 21h-6.85l-5.36-7.04L3.6 21H.13l7.93-9.06L0 3h7l4.86 6.43L17.53 3zm-1.2 16.2h1.92L7.78 4.7H5.7l10.63 14.5z'/></svg>");
}
.share-icon--facebook {
  --share-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M22 12a10 10 0 1 0-11.56 9.88v-6.99H7.9V12h2.54V9.8c0-2.51 1.49-3.89 3.78-3.89 1.09 0 2.24.2 2.24.2v2.46h-1.26c-1.24 0-1.63.77-1.63 1.56V12h2.77l-.44 2.89h-2.33v6.99A10 10 0 0 0 22 12z'/></svg>");
}
.share-icon--threads {
  --share-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12.18 2C6.7 2 3.06 5.83 3.04 12.01c.02 6.18 3.66 9.99 9.14 9.99 4.03 0 6.5-1.7 7.91-4.27.59-1.06.55-2.12.36-2.83-.41-1.62-2.14-3.07-4.71-3.59-2.85-.58-4.86.7-5.16 2.43-.32 1.86 1.16 3.18 3.06 3.36.95.09 1.96-.04 2.74-.36-.36 1.59-1.83 2.78-3.99 2.78-3.32 0-5.14-2.27-5.16-6.51.02-4.21 1.84-6.45 5.16-6.45 2.04 0 3.5.93 4.13 2.6l1.65-.83C17.49 4.06 15.31 2 12.18 2zm.49 11.21c1.49.31 2.41 1.04 2.6 1.78.05.18.07.51-.06.73-.43.78-1.65 1.18-3.18 1.04-1.04-.1-1.7-.62-1.61-1.21.1-.66 1.13-1.65 2.25-2.34z'/></svg>");
}
.share-icon--bluesky {
  --share-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 57'><path fill='black' d='M13.873 3.805C21.21 9.332 29.103 20.537 32 26.55v15.882c0-.338-.13.044-.41.867-1.512 4.456-7.418 21.847-20.923 7.944-7.111-7.32-3.819-14.64 9.125-16.85-7.405 1.264-15.73-.825-18.014-9.015C1.12 23.022 0 8.51 0 6.55 0-3.268 8.579-.182 13.873 3.805ZM50.127 3.805C42.79 9.332 34.897 20.537 32 26.55v15.882c0-.338.13.044.41.867 1.512 4.456 7.418 21.847 20.923 7.944 7.111-7.32 3.819-14.64-9.125-16.85 7.405 1.264 15.73-.825 18.014-9.015C62.88 23.022 64 8.51 64 6.55 64-3.268 55.421-.182 50.127 3.805Z'/></svg>");
}
.share-icon--email {
  --share-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z'/></svg>");
}
.share-icon--copy {
  --share-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z'/></svg>");
}

/* Lightweight ack toast after email recap submit */
.email-success-ack {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: #16110A;
  color: #F3EDE0;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 9999;
}

/* Intake conditional fields */
.intake-agency-only[hidden] { display: none !important; }

/* ============================================
   EMAIL-A-COLLEAGUE MODAL (v12)
   - Triggered by data-action="emailColleague" on the result-page CTA
   - Inline modal so the experience works in incognito / no default mail client
   - User can either launch mailto: or copy the message text to clipboard
   ============================================ */
.ec-modal {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(14, 14, 18, 0.85) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  padding: 24px !important;
  box-sizing: border-box !important;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ec-modal.active {
  display: flex !important;
  opacity: 1;
}
.ec-modal-dialog {
  background: #16161C !important;
  border: 1px solid rgba(232,232,224,0.12) !important;
  border-radius: 4px !important;
  width: 100% !important;
  max-width: 560px !important;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px !important;
  box-sizing: border-box !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  color: #F2F0EB !important;
  font-family: var(--font-body, system-ui, sans-serif) !important;
}
.ec-modal-eyebrow {
  font-family: var(--font-mono, ui-monospace, monospace) !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #C8E8FF !important;
  margin: 0 0 12px !important;
}
.ec-modal-title {
  font-family: var(--font-display, Georgia, serif) !important;
  font-weight: 400 !important;
  font-size: 24px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
  color: #F2F0EB !important;
  margin: 0 0 8px !important;
}
.ec-modal-sub {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: #A8A8A0 !important;
  margin: 0 0 24px !important;
}
.ec-field {
  margin-bottom: 16px !important;
}
.ec-field label {
  display: block !important;
  font-family: var(--font-mono, ui-monospace, monospace) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #6E6E68 !important;
  margin: 0 0 8px !important;
}
.ec-field input,
.ec-field textarea {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: #0E0E12 !important;
  border: 1px solid rgba(232,232,224,0.12) !important;
  border-radius: 3px !important;
  padding: 10px 12px !important;
  font-family: var(--font-body, system-ui, sans-serif) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #F2F0EB !important;
  transition: border-color 0.2s ease;
}
.ec-field textarea {
  resize: vertical !important;
  min-height: 160px !important;
}
.ec-field input:focus,
.ec-field textarea:focus {
  outline: none !important;
  border-color: #C8E8FF !important;
}
.ec-modal-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 24px !important;
  align-items: center !important;
}
.ec-modal-actions .ec-btn-primary {
  background: #4A6B8F !important;
  color: #F2F0EB !important;
  border: 1px solid #4A6B8F !important;
  padding: 12px 22px !important;
  font-family: var(--font-body, system-ui, sans-serif) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ec-modal-actions .ec-btn-primary:hover { background: #6B8FB8 !important; border-color: #6B8FB8 !important; }
.ec-modal-actions .ec-btn-secondary {
  background: transparent !important;
  color: #F2F0EB !important;
  border: 1px solid rgba(232,232,224,0.24) !important;
  padding: 12px 22px !important;
  font-family: var(--font-body, system-ui, sans-serif) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.ec-modal-actions .ec-btn-secondary:hover { border-color: #C8E8FF !important; color: #C8E8FF !important; }
.ec-modal-close {
  background: transparent !important;
  color: #6E6E68 !important;
  border: none !important;
  padding: 8px 12px !important;
  font-family: var(--font-mono, ui-monospace, monospace) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-left: auto !important;
  transition: color 0.2s ease;
}
.ec-modal-close:hover { color: #F2F0EB !important; }
.ec-modal-status {
  margin-top: 16px !important;
  font-family: var(--font-mono, ui-monospace, monospace) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #C8E8FF !important;
  min-height: 16px;
}
