.home-page { font-family: var(--font); color: var(--body); background: var(--white); }
.home-page main:focus { outline: none; }
.hero { padding: 100px 0 80px; background: var(--white); border-bottom: 1px solid var(--border); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero-eyebrow span { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.hero h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p { font-size: 18px; color: var(--muted); line-height: 1.65; margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 500; }
.trust-item svg { color: var(--green); }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-video-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 80px rgba(12,21,45,.18); max-height: 520px; aspect-ratio: 9/16; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-mute-btn {
  position: absolute; bottom: 16px; right: 16px; z-index: 10;
  background: rgba(0, 0, 0, 0.5); color: white; border: none;
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.video-mute-btn:hover { background: rgba(0, 0, 0, 0.7); }
.video-play-btn { top: 64px; }
.proof-bar { background: var(--bg); padding: 40px 0; border-bottom: 1px solid var(--border); }
.proof-bar-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.proof-stat { text-align: center; }
.proof-stat .num { font-size: 28px; font-weight: 700; color: var(--dark); display: block; }
.proof-stat .lbl { font-size: 13px; color: var(--muted); font-weight: 500; }
.proof-divider { width: 1px; height: 40px; background: var(--border); }
.proof-logos { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.proof-logos-label { font-size: 12px; color: var(--muted); font-weight: 500; white-space: nowrap; }
.college-logo { height: 32px; padding: 6px 14px; border: 1px solid var(--border); border-radius: 6px; background: var(--white); font-size: 12px; font-weight: 600; color: var(--muted); display: flex; align-items: center; white-space: nowrap; text-decoration: none; transition: border-color .15s, color .15s; }
a.college-logo:hover { border-color: var(--blue); color: var(--blue); }
.audience-split { background: var(--white); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.audience-card { border: 1.5px solid var(--border); border-radius: 16px; padding: 40px; transition: border-color .2s, box-shadow .2s; }
.audience-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(91,168,216,.12); }
.audience-card .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.audience-card h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.audience-card p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.audience-bullets { list-style: none; margin-bottom: 28px; }
.audience-bullets li { font-size: 14px; color: var(--body); padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; }
.audience-bullets li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); margin-top: 6px; flex-shrink: 0; }
.audience-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none; transition: gap .15s; }
.audience-cta:hover { gap: 10px; }
.comparison { background: var(--bg); }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 48px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.comparison-table th { padding: 18px 24px; text-align: left; font-size: 14px; font-weight: 600; }
.comparison-table th:first-child { background: var(--bg); color: var(--muted); width: 35%; }
.comparison-table th.legacy { background: var(--legacy-th-bg, #F8F0F0); color: var(--legacy-text, #8B4444); }
.comparison-table th.ezhomeo { background: var(--blue-light); color: var(--blue); }
.comparison-table td { padding: 16px 24px; font-size: 14px; border-top: 1px solid var(--border); vertical-align: top; }
.comparison-table td:first-child { color: var(--body); font-weight: 500; background: var(--white); }
.comparison-table td.legacy { color: var(--legacy-text, #8B4444); background: var(--legacy-bg, #FDF8F8); }
.comparison-table td.ezhomeo { color: var(--green); background: var(--blue-light); }
.check { color: var(--green); font-weight: 700; }
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.feature-card { padding: 32px 28px; border: 1px solid var(--border); border-radius: 14px; transition: box-shadow .2s, transform .2s; }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 20px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.workflow { background: var(--bg); }
.flow-wrap { display: grid; grid-template-columns: 300px 40px 1fr; gap: 24px; align-items: stretch; margin-top: 48px; }
.flow-you { background: var(--blue); color: #fff; border-radius: 16px; padding: 36px 32px; text-align: center; box-shadow: 0 12px 40px rgba(91,168,216,.3); display: flex; flex-direction: column; justify-content: center; }
.flow-you-badge { display: inline-block; background: rgba(255,255,255,.2); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin: 0 auto 18px; }
.flow-you-icon { font-size: 40px; margin-bottom: 14px; }
.flow-you h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.flow-you p { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.6; }
.flow-arrow { display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--blue); font-weight: 300; }
.flow-auto { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 30px 34px; box-shadow: var(--shadow-sm); }
.flow-auto-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 20px; letter-spacing: .02em; }
.flow-auto-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 36px; }
.auto-step { display: flex; align-items: flex-start; gap: 12px; }
.auto-num { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-light); color: var(--blue); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.auto-step strong { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.auto-step span { font-size: 12px; color: var(--muted); line-height: 1.45; }
.included-band { margin-top: 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; padding: 30px 36px; background: var(--blue-light); border-radius: 16px; }
.included-item { display: flex; align-items: flex-start; gap: 12px; }
.ib-icon { font-size: 24px; flex-shrink: 0; line-height: 1; }
.included-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.included-item span { font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.workflow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.workflow-steps::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px; background: var(--border); z-index: 0; }
.workflow-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 18px; font-weight: 700; color: var(--blue); box-shadow: var(--shadow-sm); }
.workflow-step h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.workflow-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.workflow-stat { margin-top: 56px; display: flex; align-items: center; justify-content: center; gap: 48px; padding: 32px; background: var(--white); border-radius: 16px; border: 1px solid var(--border); }
.workflow-stat-item { text-align: center; }
.workflow-stat-item strong { display: block; font-size: 32px; font-weight: 700; color: var(--blue); }
.workflow-stat-item span { font-size: 14px; color: var(--muted); }
.home-contact { background: var(--bg); }
.home-contact .section-label, .home-contact .section-title { margin-left: auto; margin-right: auto; }
.home-contact-wrap { max-width: 620px; margin: 40px auto 0; }
.testimonials { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 32px; }
.testimonial-stars { color: #F5A623; font-size: 14px; margin-bottom: 16px; }
.testimonial-quote { font-size: 15px; color: var(--body); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.author-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--dark); }
.author-info span { font-size: 12px; color: var(--muted); }
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--dark); text-align: left; transition: color .15s; }
.faq-q:hover { color: var(--blue); }
.faq-icon { font-size: 20px; color: var(--blue); font-weight: 300; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.final-cta { background: #0c152d; color: #ffffff; text-align: center; padding: 100px 0; }
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #ffffff; margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: #6A8A9E; max-width: 540px; margin: 0 auto 40px; line-height: 1.65; }
.final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-white { background: #ffffff; color: #0c152d; font-family: var(--font); font-size: 16px; font-weight: 600; padding: 14px 28px; border-radius: var(--radius-sm); text-decoration: none; transition: all .15s; border: none; cursor: pointer; }
.btn-white:hover { background: #eef2ff; }
.btn-ghost-white { background: none; color: rgba(255,255,255,.7); font-family: var(--font); font-size: 15px; font-weight: 500; padding: 14px 24px; border-radius: var(--radius-sm); text-decoration: none; border: 1.5px solid rgba(255,255,255,.2); transition: all .15s; }
.btn-ghost-white:hover { border-color: rgba(255,255,255,.5); color: #ffffff; }
/* WHAT DO YOU LIKE THE MOST */
.love { background: var(--white); text-align: center; overflow: hidden; }
.love-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); background: var(--blue-light); padding: 7px 16px; border-radius: 999px; margin-bottom: 20px; }
.love-q { margin: 0 auto; }
.love-choose { font-size: 15px; color: var(--muted); margin: 12px 0 36px; }
.love-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.love-opt { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 30px 20px; background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; cursor: pointer; font-family: var(--font); transition: border-color .2s, box-shadow .2s, transform .2s, background .2s; }
.love-opt:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(34,95,230,.12); transform: translateY(-3px); }
.love-opt.selected { border-color: var(--blue); background: var(--blue-light); box-shadow: 0 8px 28px rgba(34,95,230,.16); }
.love-opt-emoji { font-size: 34px; line-height: 1; }
.love-opt-label { font-size: 15px; font-weight: 600; color: var(--dark); }
.love-response { margin: 36px auto 0; max-width: 520px; padding: 32px; border-radius: 16px; background: var(--bg); border: 1px solid var(--border); animation: loveFade .4s ease; }
.love-response-line { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.love-response-sub { font-size: 16px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.love-reveal-btn { border: none; cursor: pointer; }

.love-reveal { animation: loveFade .5s ease; }
.love-perfect { font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.love-blank { font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--dark); margin-top: 14px; }
.love-blank em { font-style: normal; color: var(--blue); }
.love-reveal-sub { font-size: 17px; color: var(--muted); line-height: 1.7; margin-top: 16px; }
.love-stage { display: flex; align-items: center; justify-content: center; gap: 24px; margin: 48px auto 40px; max-width: 640px; }
.love-actor { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--dark); }
.love-actor-emoji { width: 68px; height: 68px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 32px; }
.love-link { flex: 1; max-width: 260px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.love-link-label { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); }
.love-link-line { width: 100%; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light)); background-size: 200% 100%; animation: loveFlow 2s linear infinite; }
.love-working { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto 48px; text-align: left; }
.love-step { display: flex; align-items: center; gap: 14px; padding: 12px 18px; border-radius: 12px; background: var(--bg); border: 1px solid transparent; opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease, border-color .3s, background .3s; }
.love-step.active { opacity: 1; transform: translateY(0); }
.love-step.final.active { border-color: var(--green); background: color-mix(in oklab, var(--green) 12%, transparent); }
.love-step-emoji { font-size: 20px; line-height: 1; }
.love-step-label { font-size: 15px; font-weight: 600; color: var(--body); }
.love-punchline { max-width: 560px; margin: 0 auto; }
.love-punchline h3 { font-size: clamp(22px, 3.2vw, 30px); font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.love-punchline p { font-size: 17px; color: var(--muted); margin-bottom: 28px; }
.love-punch-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.love-again { background: none; border: none; font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--muted); cursor: pointer; transition: color .15s; }
.love-again:hover { color: var(--blue); }
@keyframes loveFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes loveFlow { from { background-position: 0% 0; } to { background-position: 200% 0; } }

/* TRUST */
.trust { background: var(--bg); text-align: center; }
.trust .section-label, .trust .section-title { margin-left: auto; margin-right: auto; }
.trust-sub { margin: 16px auto 0; }
.trust-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.trust-badge { font-size: 13px; font-weight: 700; letter-spacing: .03em; color: var(--dark); background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 9px 18px; box-shadow: var(--shadow-sm); }
.trust-gallery { margin-top: 44px; display: flex; flex-direction: column; gap: 16px; }
.trust-row { display: grid; gap: 16px; }
.trust-row-lead { grid-template-columns: 1fr 1fr; }
.trust-row-rest { grid-template-columns: repeat(3, 1fr); }
.trust-photo { position: relative; margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--blue-light); box-shadow: var(--shadow-sm); }
.trust-row-lead .trust-photo { aspect-ratio: 16 / 10; }
.trust-row-rest .trust-photo { aspect-ratio: 4 / 3; }
.trust-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.trust-photo:hover .trust-photo-img { transform: scale(1.04); }
.trust-photo-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; text-align: left; font-size: 13.5px; font-weight: 600; color: #fff; background: linear-gradient(transparent, rgba(12,21,45,.82)); opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.trust-photo:hover .trust-photo-cap, .trust-photo:focus-within .trust-photo-cap { opacity: 1; transform: translateY(0); }

.home-resources { padding: 88px 0; background: var(--bg); }
.home-resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.home-resource-card { display: block; padding: 26px; border: 1px solid var(--border); border-radius: 14px; background: var(--white); color: inherit; text-decoration: none; box-shadow: var(--shadow-sm); transition: border-color .18s, transform .18s; }
.home-resource-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.home-resource-card span { display: block; margin-bottom: 10px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-resource-card h3 { margin-bottom: 8px; color: var(--dark); font-size: 19px; }
.home-resource-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.home-resource-more { margin-top: 28px; color: var(--muted); text-align: center; }
.home-resource-more a { color: var(--blue); font-weight: 600; }

/* DON'T BUY EZHOMEO — PAIN BUBBLES */
.dbb { position: relative; overflow: hidden; background: #070f24; padding: 100px 0 88px; text-align: center; }
.dbb-container { position: relative; z-index: 1; }
.dbb-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .45; pointer-events: none; }
.dbb-b1 { width: 480px; height: 480px; background: #225fe6; top: -140px; left: -120px; animation: dbbDrift 18s ease-in-out infinite alternate; }
.dbb-b2 { width: 420px; height: 420px; background: #1d7f8f; bottom: -140px; right: -100px; animation: dbbDrift 22s ease-in-out 2s infinite alternate-reverse; }
.dbb-b3 { width: 360px; height: 360px; background: #4b3bb4; top: 35%; left: 42%; opacity: .35; animation: dbbDrift 26s ease-in-out 1s infinite alternate; }
.dbb-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ffb4a2; background: rgba(255,120,90,.12); border: 1px solid rgba(255,120,90,.3); padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; }
.dbb-title { font-size: clamp(34px, 5vw, 54px); font-weight: 700; color: #fff; line-height: 1.15; letter-spacing: -.01em; }
.dbb-title em { font-style: normal; padding: 0 6px; background: linear-gradient(transparent 62%, rgba(255,107,107,.45) 62%); border-radius: 2px; }
.dbb-sub { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.65; max-width: 580px; margin: 18px auto 0; }
.dbb-sub strong { color: #fff; }

.dbb-stage { position: relative; height: 620px; max-width: 1080px; margin: 52px auto 0; }
.dbb-doc-wrap { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -52%); width: 250px; pointer-events: none; }
.dbb-doc-svg { width: 100%; display: block; transform-origin: 50% 90%; animation: dbbBob 4.5s ease-in-out infinite; }
.dbb-mood-0 .dbb-doc-svg { animation: dbbFret 2.6s ease-in-out infinite; }
.dbb-doc-label { margin-top: 4px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); }
/* doctor expressions per mood */
.dbb-doc-svg .x-eyes-tired, .dbb-doc-svg .x-eyes-happy, .dbb-doc-svg .x-brows-worry, .dbb-doc-svg .x-brows-calm,
.dbb-doc-svg .x-mouth-sad, .dbb-doc-svg .x-mouth-mid, .dbb-doc-svg .x-mouth-happy,
.dbb-doc-svg .x-stress, .dbb-doc-svg .x-sparkle, .dbb-doc-svg .x-papers { transition: opacity .5s ease; }
.dbb-doc-svg .x-eyes-happy, .dbb-doc-svg .x-brows-calm, .dbb-doc-svg .x-mouth-mid,
.dbb-doc-svg .x-mouth-happy, .dbb-doc-svg .x-sparkle { opacity: 0; }
.dbb-doc-svg .x-sweat { opacity: 0; }
.dbb-mood-0 .x-sweat, .dbb-mood-1 .x-sweat { animation: dbbDrip 1.9s ease-in infinite; }
.dbb-mood-1 .x-stress, .dbb-mood-2 .x-stress, .dbb-mood-3 .x-stress { opacity: 0; }
.dbb-mood-2 .x-eyes-tired, .dbb-mood-3 .x-eyes-tired,
.dbb-mood-2 .x-brows-worry, .dbb-mood-3 .x-brows-worry,
.dbb-mood-2 .x-mouth-sad, .dbb-mood-3 .x-mouth-sad { opacity: 0; }
.dbb-mood-2 .x-eyes-happy, .dbb-mood-3 .x-eyes-happy,
.dbb-mood-2 .x-brows-calm, .dbb-mood-3 .x-brows-calm { opacity: 1; }
.dbb-mood-2 .x-mouth-mid { opacity: 1; }
.dbb-mood-3 .x-mouth-happy { opacity: 1; }
.dbb-mood-2 .x-papers { opacity: .45; }
.dbb-mood-3 .x-papers { opacity: 0; }
.dbb-mood-3 .x-sparkle { opacity: 1; }

.dbb-bubble { position: absolute; max-width: 250px; z-index: 2; transition: transform .35s ease, opacity .35s ease; }
.dbb-bubble.open { z-index: 6; max-width: 330px; width: 330px; }
.dbb-bubble.solved:not(.open) { transform: scale(.88); opacity: .72; }
.dbb-float { animation: dbbFloat var(--dur, 5.5s) ease-in-out var(--delay, 0s) infinite alternate; }
.dbb-bubble.open .dbb-float { animation-play-state: paused; }
.dbb-glass {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  box-shadow: 0 8px 32px rgba(2,8,30,.35), inset 0 1px 0 rgba(255,255,255,.25);
  overflow: hidden; text-align: left;
  transition: background .3s, border-color .3s, box-shadow .3s, transform .25s;
}
.dbb-bubble:not(.open) .dbb-glass:hover { transform: translateY(-3px); background: rgba(255,255,255,.14); box-shadow: 0 14px 40px rgba(2,8,30,.45), inset 0 1px 0 rgba(255,255,255,.3); }
.dbb-bubble.solved .dbb-glass { background: rgba(72,187,120,.12); border-color: rgba(126,212,168,.35); animation: dbbPop .45s ease; }
.dbb-bubble.mine .dbb-glass { background: rgba(255,166,87,.13); border-color: rgba(255,183,110,.45); box-shadow: 0 8px 32px rgba(255,150,60,.14), inset 0 1px 0 rgba(255,255,255,.25); }
.dbb-bubble.faded:not(.open) { opacity: .38; }
.dbb-hrs { flex-shrink: 0; margin-left: auto; font-size: 11px; font-weight: 800; letter-spacing: .02em; color: #ffcf9b; background: rgba(255,166,87,.18); border: 1px solid rgba(255,183,110,.4); border-radius: 999px; padding: 3px 8px; white-space: nowrap; }
.dbb-head { display: flex; align-items: center; gap: 10px; width: 100%; padding: 13px 18px; background: none; border: none; cursor: pointer; font-family: var(--font); text-align: left; }
.dbb-emoji { font-size: 20px; line-height: 1; flex-shrink: 0; }
.dbb-bubble.solved .dbb-emoji { font-size: 15px; font-weight: 800; color: #8fe0b5; width: 22px; height: 22px; border-radius: 50%; background: rgba(126,212,168,.2); display: flex; align-items: center; justify-content: center; }
.dbb-pain { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.4; }
.dbb-bubble.solved .dbb-pain { text-decoration: line-through; color: rgba(255,255,255,.55); }
.dbb-fix { max-height: 0; opacity: 0; padding: 0 18px; overflow: hidden; transition: max-height .45s ease, opacity .35s ease, padding .45s ease; }
.dbb-bubble.open .dbb-fix { max-height: 280px; opacity: 1; padding: 0 18px 16px; }
.dbb-fix-label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #7fd4a8; margin: 2px 0 8px; }
.dbb-fix p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 14px; }
.dbb-claim { font-family: var(--font); font-size: 13px; font-weight: 700; color: #ffcf9b; background: rgba(255,166,87,.15); border: 1px solid rgba(255,183,110,.45); border-radius: 999px; padding: 7px 14px; cursor: pointer; transition: background .2s, transform .2s; }
.dbb-claim:hover { background: rgba(255,166,87,.28); transform: scale(1.04); }
.dbb-claim.claimed { background: rgba(255,166,87,.3); color: #fff; }
.dbb-popped { font-size: 13px; font-weight: 700; color: #8fe0b5; }

.dbb-footer { margin-top: 48px; }
.dbb-progress { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 10px 20px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85); animation: loveFade .4s ease; }
.dbb-progress strong { color: #ffcf9b; }
.dbb-progress.dbb-all { background: rgba(126,212,168,.14); border-color: rgba(126,212,168,.4); color: #a9ecc8; }
.dbb-progress.dbb-all strong { color: #d3f7e2; }
.dbb-ctas { margin-top: 22px; display: flex; justify-content: center; }
.dbb-resolve { border: none; cursor: pointer; }
.dbb-links { margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.dbb-link { background: none; border: none; font-family: var(--font); font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.55); cursor: pointer; transition: color .15s; }
.dbb-link:hover { color: #fff; }
.dbb-escape { margin-top: 18px; font-size: 13.5px; color: rgba(255,255,255,.45); }

@keyframes dbbFloat { from { transform: translateY(-7px); } to { transform: translateY(7px); } }
@keyframes dbbBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes dbbFret { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-1.4deg); } 75% { transform: rotate(1.4deg); } }
@keyframes dbbDrip { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 75% { opacity: 1; } 100% { transform: translateY(13px); opacity: 0; } }
@keyframes dbbDrift { from { transform: translate(0, 0) scale(1); } to { transform: translate(60px, 40px) scale(1.15); } }
@keyframes dbbPop { 0% { transform: scale(1); } 40% { transform: scale(1.1); } 100% { transform: scale(1); } }

@media (max-width: 900px) {
  .dbb { padding: 72px 0 64px; }
  .dbb-stage { height: auto; display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
  .dbb-doc-wrap { position: static; transform: none; width: 190px; margin: 0 auto 14px; }
  .dbb-bubble, .dbb-bubble.open { position: static; width: 100%; max-width: 100%; }
  .dbb-bubble.solved:not(.open) { transform: none; }
  .dbb-float { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .dbb-float, .dbb-doc-svg, .dbb-blob, .x-sweat { animation: none !important; }
  .love-response, .love-reveal, .love-link-line { animation: none; }
  .love-step { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
  .trust-row-lead { grid-template-columns: 1fr; }
  .trust-row-rest { grid-template-columns: 1fr 1fr; }
  .trust-row-rest .trust-photo:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  /* No hover on touch — keep captions visible */
  .trust-photo-cap { opacity: 1; transform: none; }
  .home-resource-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .love-options { grid-template-columns: 1fr 1fr; }
  .love-stage { gap: 12px; }
  .love-actor-emoji { width: 56px; height: 56px; font-size: 26px; }
  .hero-visual { justify-content: center; }
  .hero-video-wrap { max-height: none; width: 100%; max-width: 360px; border-radius: 16px; }
  .audience-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .included-band { grid-template-columns: 1fr 1fr; }
  .flow-wrap { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); height: 36px; }
  .flow-auto-steps { grid-template-columns: 1fr; }
}
