  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

  :root {
    --gold: #C59365;
    --gold-light: #E8C9A8;
    --gold-dark: #8B6914;
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --text-muted: #9B9B9B;
    --white: #FFFFFF;
    --red-soft: #C44D4D;
    --green-soft: #4D8B6A;
    --border: #E8E0D4;
    --shadow: rgba(26, 26, 26, 0.08);
  }

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

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
  }

  h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

  /* Navigation */
  .nav-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px; height: 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .dropdown-item.active { background-color: var(--cream-dark); color: var(--gold-dark);}
  .nav-bar .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 600; color: var(--charcoal); letter-spacing: -0.5px;
  }
  .nav-bar .logo span { color: var(--gold); }
  .nav-tabs {
    display: flex; gap: 4px; background: var(--cream-dark);
    border-radius: 10px; padding: 4px;
  }
  .nav-tab {
    padding: 8px 14px; border-radius: 8px; border: none; background: transparent;
    font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
    color: var(--text-secondary); cursor: pointer; transition: all 0.2s; white-space: nowrap;
  }
  .nav-tab.active {
    background: var(--white); color: var(--charcoal);
    box-shadow: 0 1px 3px var(--shadow);
  }
  .nav-tab:hover:not(.active) { color: var(--charcoal); }
  .nav-tabs-wrapper {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    max-width: calc(100vw - 160px);
  }
  .nav-tabs-wrapper::-webkit-scrollbar { display: none; }

  /* Layout */
  .screen-container {
    /* margin-top: 60px; display: flex; justify-content: center;
    padding: 40px 20px; min-height: calc(100vh - 60px); */
  }
  .layout-with-notes { display: flex; gap: 40px; align-items: flex-start; max-width: 820px; }
  .phone-wrapper { position: relative; padding-bottom: 60px; }
  .phone-frame {
    width: 390px; min-height: 760px; background: var(--cream);
    border-radius: 32px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.15), 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden; position: relative; border: 8px solid var(--charcoal);
  }
  .phone-notch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 150px; height: 28px; background: var(--charcoal);
    border-radius: 0 0 20px 20px; z-index: 10;
  }
  .phone-screen { height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .phone-screen::-webkit-scrollbar { display: none; }
  .screen-label {
    position: absolute; bottom: -48px; left: 50%; transform: translateX(-50%);
    font-size: 13px; font-weight: 600; color: var(--text-secondary);
    letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
  }
  .notes-panel { width: 340px; padding-top: 20px; flex-shrink: 0; }
  .note-card {
    background: var(--white); border-radius: 12px; padding: 20px; margin-bottom: 16px;
    border-left: 3px solid var(--gold); box-shadow: 0 2px 8px var(--shadow);
  }
  .note-card h4 {
    font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 8px;
  }
  .note-card p { font-size: 13px; line-height: 1.6; color: var(--text-secondary); }

  .screen { display: none; }
  .screen.active { display: block; }

  @media (max-width: 900px) {
    .layout-with-notes { flex-direction: column; align-items: center; }
    .notes-panel { width: 100%; max-width: 390px; }
  }

  /* ==================== SHARED COMPONENTS ==================== */
  .progress-bar { display: flex; gap: 4px; margin-bottom: 32px; padding-top: 8px; }
  .progress-seg { height: 3px; flex: 1; border-radius: 2px; background: var(--border); }
  .progress-seg.active { background: var(--gold); }

  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block; font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 8px;
  }
  .form-input {
    width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; background: var(--white);
    color: var(--charcoal); outline: none; transition: border-color 0.2s;
  }
  .form-input:focus { border-color: var(--gold); }
  .form-input::placeholder { color: var(--text-muted); }

  .btn-primary {
    display: block; width: 100%; padding: 16px; border: none; border-radius: 12px;
    background: var(--charcoal); color: var(--white); font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 24px;
  }
  .btn-primary:hover { opacity: 0.9; }
  .btn-gold {
    display: block; width: 100%; padding: 16px; border: none; border-radius: 12px;
    background: var(--gold); color: var(--white); font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 16px;
  }
  .btn-outline {
    display: block; width: 100%; padding: 16px; border: 1px solid var(--border);
    border-radius: 12px; background: transparent; color: var(--text-secondary);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    cursor: pointer; margin-top: 12px;
  }

  /* ==================== 1. LANDING ==================== */
  .landing-screen {
    background: linear-gradient(180deg, var(--charcoal) 0%, #0D0D0D 100%);
    min-height: 760px; text-align: center; color: var(--white);
    position: relative;
  }
  .landing-screen::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 15%, rgba(196,149,106,0.12) 0%, transparent 60%);
  }
  .landing-content { position: relative; z-index: 1; padding: 40px 28px; }
  .landing-logo {
    font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300;
    letter-spacing: 2px; margin-bottom: 4px;
  }
  .landing-logo span { color: var(--gold-light); }
  .landing-tagline {
    font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 300;
    font-style: italic; color: var(--gold-light); margin-bottom: 48px; opacity: 0.7;
  }
  .landing-hero-text {
    font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 400;
    line-height: 1; margin-bottom: 16px; color: var(--cream);
  }
  .landing-hero-text em { color: var(--gold-light); font-style: normal; }
  .landing-sub {
    font-size: 17px; color: rgba(255,255,255,0.45); line-height: 1.6;
    margin-bottom: 40px; max-width: 300px; margin-left: auto; margin-right: auto;
  }
  .landing-cta {
    display: block; width: 100%; padding: 18px; border: none; border-radius: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; margin-bottom: 12px; transition: all 0.2s;
  }
  .cta-men { background: var(--gold); color: var(--white); }
  .cta-women {
    background: transparent; color: var(--gold-light);
    border: 1px solid rgba(196,149,106,0.4);
  }
  .landing-regions {
    margin-top: 40px; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
  }
  .regions-label {
    font-size: 10px; text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.25); margin-bottom: 14px; text-align: center;
  }
  .marquee-wrapper {
    overflow: hidden; position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }
  .marquee-track {
    display: flex; gap: 24px; width: max-content;
    animation: marqueeScroll 18s linear infinite;
  }
  .marquee-track span {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: rgba(255,255,255,0.45);
    white-space: nowrap; flex-shrink: 0;
  }
  .marquee-track .divider {
    color: rgba(255,255,255,0.1); font-size: 10px;
  }
  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .landing-stats {
    display: flex; justify-content: center; gap: 32px; margin-top: 28px;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600;
    color: var(--gold-light);
  }
  .stat-label {
    font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase;
    letter-spacing: 1px; margin-top: 2px;
  }
  .landing-trust {
    margin-top: 28px; font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.5px;
  }

  /* ==================== 2. APPLY — MEN ==================== */
  .apply-screen { background: var(--cream); min-height: 80vh; padding: 48px 24px 24px; }
  .apply-header { text-align: center; margin-bottom: 28px; }
  .apply-header h2 { font-size: 26px; font-weight: 400; color: var(--charcoal); margin-bottom: 8px; }
  .apply-header p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

  .photo-upload { display: flex; gap: 10px; margin-top: 8px; }
  .photo-slot {
    width: 72px; height: 72px; border-radius: 12px; border: 2px dashed var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 24px;
    color: var(--text-muted); background: var(--white); cursor: pointer; transition: all 0.2s;
  }
  .photo-slot:hover { border-color: var(--gold); color: var(--gold); }
  .photo-slot.filled {
    background: var(--gold-light); border: 2px solid var(--gold);
    color: var(--gold-dark); font-size: 14px; font-weight: 600;
  }

  /* ==================== 3. PROFILE QUESTIONS ==================== */
  .question-screen { background: var(--cream); min-height: 760px; padding: 48px 24px 24px; }
  .question-num {
    font-size: 12px; font-weight: 600; color: var(--gold); text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 16px;
  }
  .question-text {
    font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500;
    line-height: 1.3; color: var(--charcoal); margin-bottom: 24px;
  }
  .option-card {
    padding: 16px 20px; border: 1px solid var(--border); border-radius: 12px;
    margin-bottom: 10px; background: var(--white); cursor: pointer; transition: all 0.2s;
    font-size: 14px; color: var(--text-primary);
  }
  .option-card:hover { border-color: var(--gold); }
  .option-card.selected { border-color: var(--gold); background: rgba(196,149,106,0.08); }
  .option-card.selected::before { content: '✓ '; color: var(--gold); font-weight: 700; }
  .text-area {
    width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; background: var(--white);
    color: var(--charcoal); outline: none; resize: none; height: 120px; line-height: 1.6;
  }

  /* Gender / Orientation */
  .orientation-section { margin-top: 32px; }
  .orientation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .orientation-card {
    padding: 20px 16px; border: 1px solid var(--border); border-radius: 14px;
    background: var(--white); cursor: pointer; transition: all 0.2s; text-align: center;
  }
  .orientation-card:hover { border-color: var(--gold); }
  .orientation-card.selected { border-color: var(--gold); background: rgba(196,149,106,0.08); }
  .orientation-card .oc-emoji { font-size: 28px; margin-bottom: 8px; }
  .orientation-card .oc-label { font-size: 13px; font-weight: 600; color: var(--charcoal); }
  .orientation-card .oc-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

  .waitlist-banner {
    margin-top: 16px; padding: 16px 20px; border-radius: 12px;
    background: rgba(196,149,106,0.08); border: 1px solid rgba(196,149,106,0.2);
    display: none;
  }
  .waitlist-banner.visible { display: block; }

  .route-card {
    flex: 1; padding: 24px 16px; border: 1px solid var(--border); border-radius: 16px;
    background: var(--white); cursor: pointer; transition: all 0.2s; text-align: center;
  }
  .route-card:hover { border-color: var(--gold); }
  .route-card.selected { border-color: var(--gold); background: rgba(196,149,106,0.08); box-shadow: 0 0 0 2px rgba(196,149,106,0.2); }

  .disabled {
    cursor: not-allowed !important;
    opacity: .7;
  }
  .intent-card {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; border: 1px solid var(--border);
    background: var(--white); cursor: pointer; transition: all 0.2s;
    margin-bottom: 10px;
  }
  .intent-card:hover { border-color: var(--gold); }
  .intent-card.selected { border-color: var(--gold-dark); background: rgba(196,149,106,0.26); box-shadow: 0 0 0 2px rgba(196,149,106,0.15); }
  .intent-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
  .intent-label { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
  .intent-desc { font-size: 12px; line-height: 1.4; }

  /* Vibe Check Cards */
  .vibe-container { position: relative; overflow: hidden; }
  .vibe-card {
    background: var(--charcoal); padding: 32px 24px;
    color: var(--white); margin-bottom: 16px; position: relative; overflow: hidden;
  }
  .vibe-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(196,149,106,0.1) 0%, transparent 60%);
  }
  .vibe-card-content { position: relative; z-index: 1; }
  .vibe-number {
    font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold-light); margin-bottom: 16px; opacity: 0.6;
  }
  .vibe-quote {
    font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400;
    line-height: 1.5; color: var(--cream); font-style: italic; margin-bottom: 24px;
  }
  .vibe-options { display: flex; flex-direction: column; gap: 8px; }
  .vibe-option {
    padding: 12px 16px; border: 1px solid var(--border);
    font-size: 13px; color: #000; cursor: pointer; transition: all 0.2s;
    background: var(--white);
  }
  .vibe-option:hover { border-color: var(--gold); color: var(--charcoal); }
  .vibe-option.selected { border-color: #000; background:#000; color: #fff; box-shadow: 0 0 0 2px rgba(196,149,106,0.15); }
  .vibe-counter {
    text-align: center; font-size: 12px; color: var(--text-muted); margin-bottom: 24px;
  }
  .vibe-counter span { color: var(--gold); font-weight: 600; }


  .waitlist-banner p {
    font-size: 13px; color: var(--gold-dark); line-height: 1.5;
  }
  .waitlist-banner p strong { color: var(--charcoal); }

  .dots {
    display: flex;
    gap:5px;
  }
  .dot {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: var(--gold);
  }
  .dot.active {
    height:10px;
    width:30px;
    border-radius: 10px;
    background-color: var(--oxblood);
  }

  /* ==================== 4. APPLICATION SUBMITTED ==================== */
  .submitted-screen {
    background: var(--cream); min-height: 760px; padding: 48px 24px 24px; text-align: center;
  }
  .submitted-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-soft), #3a7a5a);
    display: flex; align-items: center; justify-content: center;
    margin: 40px auto 24px; font-size: 36px;
  }
  .submitted-title {
    font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500;
    margin-bottom: 12px;
  }
  .submitted-sub {
    font-size: 14px; color: var(--text-secondary); line-height: 1.6;
    margin-bottom: 36px; max-width: 300px; margin-left: auto; margin-right: auto;
  }
  .what-next {
    text-align: left; background: var(--white); border-radius: 16px;
    padding: 24px; border: 1px solid var(--border);
  }
  .what-next h3 {
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 16px;
  }
  .next-step {
    display: flex; gap: 14px; padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
  }
  .next-step:last-child { border-bottom: none; }
  .step-num {
    width: 28px; height: 28px; border-radius: 50%; background: var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--gold); flex-shrink: 0;
  }
  .step-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
  .step-text strong { color: var(--text-primary); }

  .founder-note {
    margin-top: 28px; padding: 20px; border-radius: 12px;
    background: var(--charcoal); color: var(--white); text-align: left;
  }
  .founder-note .fn-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gold-light); margin-bottom: 10px;
  }
  .founder-note p {
    font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.75);
    font-style: italic;
  }
  .founder-note .fn-sig {
    margin-top: 12px; font-style: normal; font-weight: 600;
    color: var(--white); font-size: 14px;
  }

  /* ==================== 5. DASHBOARD ==================== */
  .dashboard-screen { background: var(--cream); min-height: 80vh; padding: 48px 24px 24px; }
  .dash-greeting {
    font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin-bottom: 4px;
  }
  .dash-status { font-size: 13px; color: var(--gold); font-weight: 500; margin-bottom: 28px; }
  .status-card {
    background: var(--white); padding: 20px;
    border: 1px solid var(--border); margin-bottom: 16px;
  }
  .status-card-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
  }
  .status-card-title {
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-muted);
  }
  .status-badge {
    font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px;
    background: rgba(77,139,106,0.1); color: var(--green-soft);
  }
  .status-badge.pending { background: rgba(196,149,106,0.15); color: var(--gold); }
  .timeline { margin-top: 8px; }
  .timeline-item { display: flex; gap: 12px; padding: 12px 0; }
  .timeline-dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
    margin-top: 4px; flex-shrink: 0;
  }
  .timeline-dot.done { background: var(--green-soft); }
  .timeline-dot.future { background: var(--border); }
  .timeline-text { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
  .timeline-text strong { color: var(--text-primary); }

  /* ==================== 6. MATCH ==================== */
  .match-screen { background: var(--cream); min-height: 760px; padding: 48px 24px 24px; }
  .match-notification { text-align: center; margin-bottom: 24px; }
  .match-notification .emoji { font-size: 32px; margin-bottom: 8px; }
  .match-notification h2 { font-size: 24px; font-weight: 400; }
  .match-notification p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
  .match-profile {
    background: var(--white); border-radius: 20px; overflow: hidden;
    border: 1px solid var(--border); margin-bottom: 16px;
  }
  .match-photo {
    width: 100%; height: 280px;
    background: linear-gradient(135deg, var(--gold-light), var(--cream-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; position: relative;
  }
  .match-verified {
    position: absolute; top: 16px; right: 16px;
    background: rgba(255,255,255,0.9); padding: 4px 10px; border-radius: 20px;
    font-size: 11px; font-weight: 600; color: var(--green-soft);
  }
  .match-info { padding: 20px; }
  .match-name {
    font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; margin-bottom: 2px;
  }
  .match-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
  .matchmaker-note {
    background: var(--cream); border-radius: 12px; padding: 16px; margin-bottom: 16px;
  }
  .matchmaker-note-label {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--gold); margin-bottom: 6px;
  }
  .matchmaker-note p {
    font-size: 13px; color: var(--text-secondary); line-height: 1.5; font-style: italic;
  }
  .match-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
  .match-tag {
    font-size: 12px; padding: 6px 12px; border-radius: 20px;
    background: var(--cream); color: var(--text-secondary);
  }
  .match-actions { display: flex; gap: 10px; }
  .btn-interested {
    flex: 1; padding: 14px; border: none; border-radius: 12px; background: var(--gold);
    color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px;
    font-weight: 600; cursor: pointer;
  }
  .btn-pass {
    padding: 14px 20px; border: 1px solid var(--border); border-radius: 12px;
    background: var(--white); color: var(--text-muted); font-family: 'DM Sans', sans-serif;
    font-size: 14px; cursor: pointer;
  }

  /* ==================== 7. CHAT ==================== */
  .chat-screen {
    background: var(--cream); min-height: 760px;
    display: flex; flex-direction: column;
  }
  .chat-header {
    padding: 48px 20px 16px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px; background: var(--white);
  }
  .chat-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--gold-light);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .chat-header-info h3 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; }
  .chat-header-info span { font-size: 12px; color: var(--green-soft); }
  .chat-monitored-badge {
    margin-left: auto; font-size: 10px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-muted); background: var(--cream);
    padding: 4px 8px; border-radius: 6px;
  }
  .chat-messages {
    flex: 1; padding: 20px; display: flex; flex-direction: column;
    gap: 12px; overflow-y: auto;
  }
  .chat-bubble {
    max-width: 80%; padding: 12px 16px; border-radius: 16px; font-size: 14px; line-height: 1.5;
  }
  .chat-bubble.sent {
    align-self: flex-end; background: var(--charcoal); color: var(--white);
    border-bottom-right-radius: 4px;
  }
  .chat-bubble.received {
    align-self: flex-start; background: var(--white); color: var(--text-primary);
    border: 1px solid var(--border); border-bottom-left-radius: 4px;
  }
  .chat-bubble.system {
    align-self: center; background: rgba(196,149,106,0.1); color: var(--gold);
    font-size: 12px; font-weight: 500; text-align: center; max-width: 90%; border-radius: 10px;
  }
  .chat-time { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
  .chat-time.sent-time { text-align: right; }
  .chat-input-area {
    padding: 12px 20px; border-top: 1px solid var(--border); background: var(--white);
    display: flex; gap: 10px; align-items: center;
  }
  .chat-input {
    flex: 1; padding: 12px 16px; border: 1px solid var(--border); border-radius: 24px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; background: var(--cream);
  }
  .chat-send {
    width: 40px; height: 40px; border: none; border-radius: 50%; background: var(--gold);
    color: var(--white); font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }

  /* ==================== 8. VIDEO ==================== */
  .video-screen { background: var(--cream); min-height: 760px; padding: 48px 24px 24px; text-align: center; }
  .video-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    margin: 20px auto; font-size: 36px;
  }
  .video-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 8px; }
  .video-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
  .time-slots { text-align: left; margin-bottom: 24px; }
  .time-slot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px; background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; margin-bottom: 8px; cursor: pointer; transition: all 0.2s;
  }
  .time-slot:hover, .time-slot.selected { border-color: var(--gold); background: rgba(196,149,106,0.04); }
  .time-slot-day { font-size: 14px; font-weight: 600; color: var(--charcoal); }
  .time-slot-time { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
  .time-slot-tz { font-size: 12px; color: var(--text-muted); text-align: right; }
  .time-slot-tz span { display: block; font-size: 11px; color: var(--gold); }
  .timezone-note {
    font-size: 12px; color: var(--text-muted); text-align: center;
    margin-bottom: 24px; font-style: italic;
  }

  /* ==================== 9. WOMEN'S LANDING ==================== */
  .women-landing {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    min-height: 760px; padding: 48px 24px 24px; text-align: center;
  }
  .women-logo {
    font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300;
    color: var(--charcoal); margin-bottom: 4px;
  }
  .women-logo span { color: var(--gold); }
  .women-tagline { font-size: 13px; color: var(--text-muted); font-style: italic; margin-bottom: 36px; }
  .women-hero {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400;
    line-height: 1.3; color: var(--charcoal); margin-bottom: 16px;
  }
  .women-hero em { color: var(--gold); font-style: normal; }
  .women-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 36px; }
  .trust-points { text-align: left; margin-bottom: 32px; }
  .trust-point {
    display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border);
  }
  .trust-point:last-child { border-bottom: none; }
  .trust-icon {
    width: 36px; height: 36px; border-radius: 10px; background: rgba(196,149,106,0.1);
    display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
  }
  .trust-point h4 {
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
    color: var(--charcoal); margin-bottom: 2px;
  }
  .trust-point p { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
  .btn-women-cta {
    display: block; width: 100%; padding: 16px; border: none; border-radius: 12px;
    background: var(--gold); color: var(--white); font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600; cursor: pointer;
  }
  .free-badge { font-size: 12px; color: var(--gold); font-weight: 600; margin-top: 12px; }

  /* Apply steps */
  .apply-step { display: block; }
  /* .apply-step.active { display: block; } */
  .vibe-next { display: none; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* Ethnicity hierarchy */
  .eth-group { margin-bottom: 6px; }
  .eth-parent {
    display: flex; align-items: center; gap: 8px; padding: 10px 12px;
    border: 1px solid var(--border); border-radius: 10px; background: var(--white);
    cursor: pointer; transition: all 0.2s; font-size: 13px; font-weight: 600; color: var(--charcoal);
  }
  .eth-parent:hover { border-color: var(--gold); }
  .eth-parent.open { border-color: var(--gold); background: rgba(196,149,106,0.04); border-radius: 10px 10px 0 0; border-bottom: none; }
  .eth-parent .arrow { margin-left: auto; font-size: 10px; color: var(--text-muted); transition: transform 0.2s; }
  .eth-parent.open .arrow { transform: rotate(90deg); color: var(--gold); }
  .eth-children {
    display: none; padding: 6px 12px 10px; border: 1px solid var(--gold); border-top: none;
    border-radius: 0 0 10px 10px; background: rgba(196,149,106,0.02);
  }
  .eth-children.open { display: block; }
  .eth-child {
    display: flex; align-items: center; gap: 8px; padding: 7px 0 7px 20px;
    font-size: 12px; color: var(--text-secondary); cursor: pointer;
  }
  .eth-child .check-box { width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 9px; color: transparent; flex-shrink: 0; }
  .eth-child.on .check-box { border-color: var(--gold); background: rgba(196,149,106,0.1); color: var(--gold); }
  .eth-specify { padding: 4px 0 4px 20px; }
  .eth-specify input {
    width: calc(100% - 20px); padding: 8px 12px; border: 1px solid var(--border); border-radius: 8px;
    font-family: 'DM Sans', sans-serif; font-size: 12px; background: var(--white); color: var(--charcoal); outline: none;
  }
  .eth-specify input::placeholder { color: var(--text-muted); }
  .eth-leaf {
    display: flex; align-items: center; gap: 8px; padding: 10px 12px;
    border: 1px solid var(--border); border-radius: 10px; background: var(--white);
    cursor: pointer; transition: all 0.2s; font-size: 13px; color: var(--charcoal); margin-bottom: 6px;
  }
  .eth-leaf:hover { border-color: var(--gold); }
  .eth-leaf.on, .eth-parent.on { border-color: var(--gold); background: rgba(196,149,106,0.06); }
  .eth-leaf .check-box, .eth-parent .pcheck { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 10px; color: transparent; flex-shrink: 0; }
  .eth-leaf.on .check-box, .eth-parent.on .pcheck { border-color: var(--gold); background: rgba(196,149,106,0.1); color: var(--gold); }

  /* Checkbox list for ethnicity */
  .check-list { display: flex; flex-direction: column; gap: 6px; }
  .check-item {
    display: flex; align-items: center; gap: 10px; padding: 11px 14px;
    border: 1px solid var(--border); border-radius: 10px; background: var(--white);
    cursor: pointer; transition: all 0.15s; font-size: 14px; color: var(--text-primary);
  }
  .check-item:hover { border-color: var(--gold); }
  .check-item.checked { border-color: var(--gold); background: rgba(196,149,106,0.06); }
  .check-box {
    width: 20px; height: 20px; border-radius: 5px; border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-size: 12px; color: transparent; transition: all 0.15s;
  }
  .check-item.checked .check-box {
    background: var(--gold); border-color: var(--gold); color: var(--white);
  }

  .region-cards { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
  .region-card-sm {
    padding: 8px 14px; border-radius: 20px; background: var(--cream-dark);
    font-size: 12px; color: var(--text-secondary); font-weight: 500;
  }

  /* Bootstrap 5 overrides to preserve Truly.me design */
  .tm-input {
    padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; background: var(--white);
    color: var(--charcoal);
  }
  .tm-input:focus { border-color: var(--gold); box-shadow: 0 0 0 0.15rem rgba(196,149,106,0.25); }
  .tm-input::placeholder { color: var(--text-muted); }

  .tm-btn-dark {
    padding: 16px; border-radius: 12px; background: var(--charcoal); color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    border: none; margin-top: 24px;
  }
  .tm-btn-dark:hover { background: var(--charcoal-light); color: var(--white); }

  .tm-btn-gold {
    padding: 16px; border-radius: 12px; background: var(--gold); color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    border: none; margin-top: 16px;
  }
  .tm-btn-gold:hover { background: #b8895e; color: var(--white); }

  .tm-btn-outline {
    padding: 16px; border-radius: 12px; border: 1px solid var(--border);
    background: transparent; color: var(--text-secondary);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  }

  a {
    color: var(--gold); text-decoration: none; font-weight: 400; font-size: 15px;
  }

  .btn:focus { box-shadow: 0 0 0 0.15rem rgba(196,149,106,0.35); }

  /* FA icon sizing in specific contexts */
  .eth-parent .fa-chevron-right { font-size: 10px; transition: transform 0.2s; }
  .eth-parent.open .fa-chevron-right { transform: rotate(90deg); color: var(--gold); }
  .check-box .fa-check { font-size: 10px; }
  .submitted-icon .fa-check { font-size: 36px; color: white; }


  /* ==================== EXTRACTED INLINE STYLES ==================== */
  .tm-landing-centered {
    text-align:center;
    margin-top:12px;
    margin-bottom:8px;
  }
  .tm-landing-style {
    font-size:15px;
    color:var(--gold-light);
    font-weight:500;
    cursor:pointer;
    text-decoration:underline;
  }
  .tm-landing-text {
    font-size:15px;
    color:rgba(255,255,255,0.3);
  }
  .tm-landing-flex-row {
    display:flex;
    justify-content:center;
    gap:6px;
    flex-wrap:wrap;
  }
  .tm-landing-text-2 {
    font-size:15px;
    color:rgba(255,255,255,0.4);
  }
  .tm-landing-text-3 {
    font-size:15px;
    color:rgba(255,255,255,0.15);
  }
  .tm-landing-text-4 {
    font-size:15px;
    color:var(--gold-light);
    font-weight:500;
  }
  .tm-popup-style {
    flex-direction:column;
    gap:0;
    padding-top:24px;
    cursor:pointer;
  }
  .tm-popup-subhead {
    font-family:'Cormorant Garamond',serif;
    font-size:18px;
    font-weight:400;
    color:var(--cream);
    margin-bottom:6px;
  }
  .tm-popup-text {
    font-size:11px;
    color:var(--gold-light);
    font-weight:500;
  }
  .tm-popup-overlay {
    display:none;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.7);
    z-index:9999;
    align-items:center;
    justify-content:center;
    padding:24px;
  }
  .tm-popup-style-2 {
    background:var(--cream);
    border-radius:20px;
    padding:32px 24px;
    max-width:360px;
    width:100%;
    position:relative;
    max-height:80vh;
    overflow-y:auto;
  }
  .tm-popup-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-weight:500;
    color:var(--charcoal);
    margin-bottom:16px;
  }
  .tm-popup-text-2 {
    font-size:15px;
    color:var(--text-secondary);
    line-height:1.7;
    margin-bottom:15px;
  }
  .tm-popup-text-3 {
    font-size:15px;
    color:var(--text-secondary);
    line-height:1.7;
    margin-bottom:24px;
  }
  .tm-popup-divider {
    border-top:1px solid var(--border);
    padding-top:16px;
  }
  .tm-popup-text-4 {
    font-weight:600;
    font-size:15px;
    color:var(--charcoal);
  }
  .tm-popup-text-5 {
    font-size:12px;
    color:var(--text-muted);
  }
  .tm-popup-flex-row {
    position:absolute;
    top:16px;
    right:16px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:var(--cream-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:16px;
    color:var(--text-muted);
  }
  .tm-login-flex-col {
    display:flex;
    flex-direction:column;
    min-height:700px;
  }
  .tm-login1-centered {
    text-align:center;
    margin-bottom:40px;
    padding-top:40px;
  }
  .tm-login1-style {
    color:var(--gold);
  }
  .tm-login1-display {
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    font-weight:300;
    letter-spacing:1px;
    color:var(--charcoal);
    margin-bottom:4px;
  }
  .tm-login1-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    font-weight:500;
    color:var(--charcoal);
    margin-bottom:8px;
    text-align:center;
  }
  .tm-login1-centered-2 {
    font-size:13px;
    color:var(--text-muted);
    margin-bottom:32px;
    text-align:center;
  }
  .tm-hidden {
    display:none;
  }
  .tm-login2-centered {
    text-align:center;
    padding-top:80px;
  }
  .tm-login2-flex-row {
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(196,149,106,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 24px;
    font-size:32px;
  }
  .tm-login2-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    font-weight:500;
    color:var(--charcoal);
    margin-bottom:12px;
  }
  .tm-login2-text {
    font-size:15px;
    color:var(--text-secondary);
    line-height:1.6;
    margin-bottom:8px;
  }
  .tm-login2-text-2 {
    font-size:15px;
    color:var(--charcoal);
    font-weight:600;
    margin-bottom:24px;
  }
  .tm-login2-text-3 {
    font-size:13px;
    color:var(--text-muted);
    line-height:1.6;
  }
  .tm-login2-divider {
    margin-top:40px;
    padding-top:24px;
    border-top:1px solid var(--border);
  }
  .tm-login2-text-4 {
    font-size:12px;
    color:var(--text-muted);
    margin-bottom:12px;
  }
  .tm-login2-text-5 {
    font-size:13px;
    color:var(--gold);
    font-weight:500;
    cursor:pointer;
  }
  .tm-login3a-flex-row {
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(77,139,106,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 24px;
    font-size:32px;
  }
  .tm-login3a-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    font-weight:500;
    color:var(--charcoal);
    margin-bottom:8px;
  }
  .tm-login3a-text {
    font-size:15px;
    color:var(--text-muted);
    line-height:1.6;
    margin-bottom:32px;
  }
  .tm-login3a-circle {
    width:40px;
    height:40px;
    border:3px solid var(--gold);
    border-top-color:transparent;
    border-radius:50%;
    margin:0 auto;
    animation:spin 1s linear infinite;
  }
  .tm-login3c-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    font-weight:500;
    color:var(--charcoal);
    margin-bottom:8px;
  }
  .tm-login3c-card {
    margin-top:32px;
    background:var(--white);
    border-radius:14px;
    padding:20px;
    border:1px solid var(--border);
    text-align:left;
  }
  .tm-login3c-label {
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--gold);
    margin-bottom:12px;
  }
  .tm-login3c-flex-center {
    display:flex;
    align-items:center;
    gap:10px;
  }
  .tm-login3c-gold-btn {
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--gold);
  }
  .tm-login3c-text {
    font-size:13px;
    color:var(--text-secondary);
  }
  .tm-login3d-text {
    font-size:13px;
    color:var(--text-muted);
    line-height:1.6;
    margin-bottom:32px;
  }
  .tm-apply-flex-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
    padding-top:8px;
  }
  .tm-apply-label {
    font-size:11px;
    font-weight:600;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:1.5px;
  }
  .tm-apply-text {
    font-size:11px;
    color:var(--text-muted);
  }
  .tm-step1-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    font-weight:500;
    color:var(--charcoal);
    margin-bottom:24px;
  }
  .tm-step1-style {
    display:flex;
    gap:12px;
  }
  .tm-step1-style-2 {
    font-size:32px;
    margin-bottom:8px;
  }
  .tm-hidden-2 {
    display:none;
    margin-top:24px;
  }
  .tm-step1-centered {
    padding:24px;
    border-radius:16px;
    background:var(--white);
    border:1px solid var(--border);
    text-align:center;
  }
  .tm-step1-style-3 {
    font-size:36px;
    margin-bottom:16px;
  }
  .tm-step1-headline-2 {
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-weight:500;
    margin-bottom:12px;
  }
  .tm-step1-text {
    font-size:15px;
    color:var(--text-secondary);
    line-height:1.6;
    margin-bottom:20px;
  }
  .tm-step1-style-4 {
    text-align:left;
    margin-bottom:16px;
  }
  .tm-step1-style-5 {
    margin-top:0;
  }
  .tm-step2-dark-card {
    background:var(--charcoal);
    padding:32px 24px;
    color:var(--white);
    position:relative;
    overflow:hidden;
  }
  .tm-step2-overlay {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:radial-gradient(ellipse at 30% 20%,rgb(107, 31, 26, .3) 0%,transparent 60%);
  }
  .tm-step2-style {
    position:relative;
    z-index:1;
  }
  .tm-step2-label {
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:var(--gold-light);
    margin-bottom:20px;
    opacity:0.6;
  }
  .tm-step2-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:24px;
    font-weight:400;
    line-height:1.35;
    margin-bottom:16px;
  }
  .tm-step2-text {
    font-size:15px;
    color:rgba(255,255,255,0.55);
    line-height:1.7;
    margin-bottom:16px;
  }
  .tm-step2-text-2 {
    font-size:15px;
    color:var(--gold-light);
    font-weight:500;
    font-style:italic;
  }
  .tm-step2-style-2 {
    margin-top:16px;
  }
  .tm-step6-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    font-weight:500;
    line-height:1.3;
    color:var(--charcoal);
    margin-bottom:8px;
  }
  .tm-step6-text {
    font-size:13px;
    color:var(--text-muted);
    margin-bottom:24px;
  }
  .tm-step8-style {
    color:var(--gold);
    font-weight:500;
  }
  .tm-step12-text {
    font-size:13px;
    color:var(--text-muted);
    margin-bottom:20px;
  }
  .tm-step12-divider {
    margin-top:24px;
    padding-top:20px;
    border-top:1px solid var(--border);
  }
  .tm-step12-style {
    font-weight:400;
    text-transform:none;
    letter-spacing:0;
    font-size:11px;
    color:var(--text-muted);
  }
  .tm-step13-text {
    font-size:13px;
    color:var(--text-muted);
    margin-bottom:28px;
  }
  .tm-step14-gold-bg {
    padding:12px 16px;
    border-radius:10px;
    background:rgba(196,149,106,0.08);
    margin-bottom:20px;
  }
  .tm-step14-text {
    font-size:12px;
    color:var(--gold);
    line-height:1.5;
  }
  .tm-step14-style {
    color:var(--red-soft);
  }
  .tm-hidden-3 {
    display:none;
    margin-top:12px;
    padding:16px;
    border-radius:12px;
    background:var(--cream-dark);
    border:1px solid var(--border);
  }
  .tm-step14-style-2 {
    color:var(--text-primary);
  }
  .tm-step14-text-2 {
    font-size:13px;
    color:var(--text-secondary);
    line-height:1.6;
    margin-bottom:8px;
  }
  .tm-step14-text-3 {
    font-size:13px;
    color:var(--text-secondary);
    line-height:1.6;
  }
  .tm-step14-style-3 {
    background:none;
    border:none;
    font-size:12px;
    color:var(--text-muted);
    cursor:pointer;
    margin-top:8px;
    text-decoration:underline;
    font-family:'DM Sans',sans-serif;
  }
  .tm-step14-text-4 {
    font-size:11px;
    color:var(--text-muted);
    margin-top:4px;
  }
  .tm-step14-centered {
    font-size:11px;
    color:var(--text-muted);
    text-align:center;
    margin-top:10px;
    line-height:1.5;
  }
  .tm-tasks-style {
    padding-top:8px;
    margin-bottom:24px;
  }
  .tm-tasks-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    font-weight:500;
    color:var(--charcoal);
    margin-bottom:4px;
  }
  .tm-tasks-text {
    font-size:13px;
    color:var(--text-muted);
    margin-bottom:16px;
  }
  .tm-tasks-flex-center {
    display:flex;
    align-items:center;
    gap:12px;
  }
  .tm-tasks-style-2 {
    flex:1;
    height:6px;
    border-radius:3px;
    background:var(--cream-dark);
    overflow:hidden;
  }
  .tm-tasks-gold-btn {
    width:0%;
    height:100%;
    border-radius:3px;
    background:var(--gold);
    transition:width 0.5s;
  }
  .tm-tasks-text-2 {
    font-size:12px;
    font-weight:600;
    color:var(--gold);
  }
  .tm-task-photos-card {
    background:var(--white);
    border-radius:16px;
    border:1px solid var(--border);
    overflow:hidden;
    margin-bottom:14px;
  }
  .tm-task-photos-flex-row {
    padding:18px 18px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
  .tm-task-photos-style {
    font-size:20px;
  }
  .tm-task-photos-text {
    font-size:15px;
    font-weight:600;
    color:var(--charcoal);
  }
  .tm-task-photos-text-2 {
    font-size:12px;
    color:transparent;
  }
  .tm-task-photos-flex-row-2 {
    width:24px;
    height:24px;
    border-radius:50%;
    border:2px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .tm-task-photos-flex-row-2.checked {
    border-color: rgb(77, 139, 106);
    background: rgb(77, 139, 106);
  }
  .tm-task-photos-flex-row-2.checked .tm-task-photos-text-2{
    color: #fff;
  }

  .tm-task-photos-style-2 {
    padding:14px 18px 18px;
  }
  .tm-task-photos-text-3 {
    font-size:12px;
    color:var(--text-secondary);
    line-height:1.6;
    margin-bottom:14px;
  }
  .tm-task-photos-style-3 {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:12px;
  }
  .tm-task-photos-flex-row-3 {
    width:196px;
    height:196px;
    border-radius:12px;
    border:2px dashed var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:var(--text-muted);
    cursor:pointer;
    overflow: hidden;
    position: relative;
  }
  .photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .photo-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
  }
  .progress-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0,0,0,0.2);
  }

  .progress-bar {
    height: 100%;
    background: #28a745;
    transition: width 0.2s;
  }
  .fade-slide-enter-active,
  .fade-slide-leave-active {
    transition: all 0.25s ease;
  }
  .fade-slide-enter {
    opacity: 0;
    transform: translateX(15px);
  }
  .fade-slide-leave-to {
    opacity: 0;
    transform: translateX(-15px);
  }

  .vibe-option {
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .swipe-card {
    touch-action: pan-y;
  }
  .face-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    border: 3px solid var(--gold); /* gold ring */
    box-shadow: 0 0 0 2000px rgba(0, 0, 0, 0.5); /* dark outside */
    pointer-events: none;
  }
  .tm-task-mbti-spacing {
    margin-bottom:14px;
  }
  .tm-task-mbti-text {
    font-size:12px;
    font-weight:600;
    color:var(--charcoal);
    margin-bottom:8px;
  }
  .tm-task-mbti-style {
    display:flex;
    gap:8px;
  }
  .tm-task-mbti-centered {
    flex:1;
    padding:10px;
    border:1px solid var(--border);
    border-radius:8px;
    font-size:11px;
    color:var(--text-secondary);
    text-align:center;
    cursor:pointer;
    background:var(--cream);
  }
  .tm-task-mbti-centered-2 {
    text-align:center;
    font-size:11px;
    color:var(--text-muted);
  }
  .tm-task-mbti-centered-3 {
    background:var(--charcoal);
    border-radius:10px;
    padding:12px;
    text-align:center;
    margin-top:12px;
    cursor:pointer;
  }
  .tm-task-mbti-text-2 {
    font-size:13px;
    font-weight:600;
    color:var(--white);
  }
  .tm-task-face-centered {
    background:var(--charcoal);
    border-radius:14px;
    padding:24px;
    text-align:center;
    position:relative;
    overflow:hidden;
    margin-bottom:12px;
  }
  .tm-task-face-flex-row {
    width:120px;
    height:120px;
    border-radius:50%;
    border:3px solid var(--gold);
    margin:0 auto 16px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .tm-task-face-flex-row-2 {
    width:108px;
    height:108px;
    border-radius:50%;
    border:2px dashed rgba(196,149,106,0.3);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .tm-task-face-style {
    color:rgba(255,255,255,0.3);
  }
  .tm-task-face-style-2 {
    font-size:40px;
  }
  .tm-task-face-text {
    font-size:12px;
    color:rgba(255,255,255,0.5);
  }
  .tm-task-face-text-2 {
    font-size:10px;
    color:rgba(255,255,255,0.25);
    margin-top:4px;
  }
  .tm-task-face-centered-2 {
    background:var(--gold);
    border-radius:10px;
    padding:12px;
    text-align:center;
    cursor:pointer;
  }
  .tm-task-face-centered-3 {
    padding:16px;
    border-radius:12px;
    background:var(--cream-dark);
    text-align:center;
    margin-top:8px;
  }
  .tm-task-face-text-3 {
    font-size:12px;
    color:var(--text-secondary);
    line-height:1.6;
  }
  .tm-dashboard-flex-center {
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:8px;
  }
  .tm-dashboard-flex-row {
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--gold-light);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
  }
  .tm-dashboard-style {
    font-weight:600;
    font-size:15px;
  }
  .tm-dashboard-text {
    margin-top:12px;
    font-size:13px;
    color:var(--text-secondary);
    line-height:1.5;
  }
  .tm-dashboard-centered {
    text-align:center;
    padding:20px 0;
    color:var(--text-muted);
    font-size:13px;
  }
  .tm-dashboard-dark-card {
    background:var(--charcoal);
    border-color:var(--charcoal);
  }
  .tm-dashboard-centered-2 {
    font-size:12px;
    color:rgba(255,255,255,0.5);
    text-align:center;
    line-height:1.6;
  }
  .tm-dashboard-style-2 {
    color:var(--gold-light);
    font-weight:600;
  }
  .tm-chat-style {
    margin-top:8px;
  }
  .tm-women-style {
    min-height:760px;
    background:linear-gradient(180deg, #2C1810 0%, #1A0F0A 40%, var(--charcoal) 100%);
    position:relative;
    overflow:hidden;
  }
  .tm-women-overlay {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:radial-gradient(ellipse at 50% 30%,rgba(196,149,106,0.18) 0%,transparent 55%);
  }
  .tm-women-style-2 {
    position:relative;
    z-index:1;
    padding:48px 28px;
  }
  .tm-women-centered {
    text-align:center;
    margin-bottom:28px;
  }
  .tm-women-style-3 {
    color:var(--gold-light);
  }
  .tm-women-display {
    font-family:'Cormorant Garamond',serif;
    font-size:36px;
    font-weight:300;
    letter-spacing:2px;
    color:var(--cream);
  }
  .tm-women-headline {
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    font-weight:400;
    line-height:1.25;
    color:var(--cream);
    margin-bottom:14px;
  }
  .tm-women-text {
    font-size:14px;
    color:var(--gold-light);
    line-height:1.6;
  }
  .tm-women-flex-col {
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:28px;
  }
  .tm-women-flex-center {
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(196,149,106,0.12);
    border-radius:14px;
  }
  .tm-women-flex-row {
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(196,149,106,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    flex-shrink:0;
    color:var(--gold-light);
    font-weight:700;
  }
  .tm-women-text-2 {
    font-size:13px;
    font-weight:600;
    color:var(--cream);
  }
  .tm-women-text-3 {
    font-size:11px;
    color:rgba(255,255,255,0.35);
  }
  .tm-women-flex-center-2 {
    display:flex;
    align-items:center;
    gap:16px;
    margin:24px 0;
  }
  .tm-women-style-4 {
    flex:1;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(196,149,106,0.3),transparent);
  }
  .tm-women-label {
    font-size:8px;
    color:var(--gold);
    letter-spacing:3px;
    text-transform:uppercase;
  }
  .tm-women-style-5 {
    margin-bottom:28px;
    padding:0 4px;
  }
  .tm-women-headline-2 {
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-weight:500;
    color:var(--cream);
    line-height:1.3;
    margin-bottom:16px;
  }
  .tm-women-text-4 {
    font-size:13px;
    color:rgba(255,255,255,0.5);
    line-height:1.8;
    margin-bottom:0;
  }
  .tm-women-flex-col-2 {
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:24px;
  }
  .tm-women-flex-row-2 {
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(196,149,106,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
  }
  .tm-women-text-5 {
    font-size:13px;
    font-weight:600;
    color:var(--cream);
    margin-bottom:1px;
  }
  .tm-women-flex-row-3 {
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:24px;
  }
  .tm-women-gold-bg {
    padding:5px 12px;
    border-radius:20px;
    background:rgba(196,149,106,0.1);
    font-size:11px;
    color:var(--gold-light);
  }
  .tm-women-centered-2 {
    background:var(--gold);
    border-radius:14px;
    padding:18px;
    text-align:center;
    margin-bottom:12px;
  }
  .tm-women-style-6 {
    font-family:'DM Sans',sans-serif;
    font-size:16px;
    font-weight:600;
    color:var(--white);
  }
  .tm-women-centered-3 {
    text-align:center;
    font-size:13px;
    color:var(--gold-light);
    font-weight:600;
  }
  .tm-women-centered-4 {
    text-align:center;
    margin-top:28px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.06);
  }
  .tm-women-text-6 {
    font-size:12px;
    color:rgba(255,255,255,0.3);
    line-height:1.6;
    margin-bottom:6px;
  }
  .tm-women-subhead {
    font-family:'Cormorant Garamond',serif;
    font-size:14px;
    font-style:italic;
    color:rgba(255,255,255,0.2);
    line-height:1.6;
  }


/* Mobile Phone Styles */
@media (max-width: 768px) {
    body {
        padding:0;
        margin: 0;
        overflow: auto;
    }
  /* Add mobile-specific styles here */
  .screen-container {
    padding: 0;
    margin: 0;
  }

.landing-screen {
    padding: 0;
    margin: 0;
    overflow: auto;
  }
  .landing-hero-text {
    font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400;
    line-height: 1.3; margin-bottom: 16px; color: var(--cream);
  }
  .landing-sub {
    font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6;
    margin-bottom: 40px; max-width: 300px; margin-left: auto; margin-right: auto;
  }
  .phone-frame {
    width: 100%;
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: auto;
  }
  .phone-wrapper {
    margin: 0;
    padding: 0;
  }
  .phone-notch {
    display: none;
  }
  .tm-landing-style, .tm-landing-text, .tm-landing-text-2, .tm-landing-text-3, .tm-landing-text-4 {
    font-size:13px;
  }
}

[upload-profile-photo] ing {
    cursor: pointer;
}

@media (max-width: 690px) {
  .tm-task-photos-flex-row-3 {
    width:150px;
    height:150px;
  }
}
@media (max-width: 400px) {
  .tm-task-photos-flex-row-3 {
    width:125px;
    height:125px;
  }
}
