/* ============================================================
   Debut — component & section styles
   ============================================================ */

/* ---------------- NAV ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(1.2) blur(8px);
  background: rgba(236,227,207,0.78);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-mark { font-family: var(--serif); font-size: 26px; letter-spacing: -0.02em; color: var(--ink); }
.brand-mark b { font-weight: 600; }
.brand-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--camel); display: inline-block; transform: translateY(-2px); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--walnut); padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,.4); white-space: nowrap;
}
.nav-pill .live { width: 8px; height: 8px; border-radius: 50%; background: #3FA46A; box-shadow: 0 0 0 0 rgba(63,164,106,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(63,164,106,.55)} 70%{box-shadow:0 0 0 8px rgba(63,164,106,0)} 100%{box-shadow:0 0 0 0 rgba(63,164,106,0)} }
.nav .btn { padding: 11px 20px; font-size: 14px; }
@media (max-width: 680px){ .nav-pill{ display:none; } }

/* ---------------- HERO ---------------- */
.hero { position: relative; padding: 64px 0 30px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 560px; }
.hero h1 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.025em;
  font-size: clamp(42px, 5.4vw, 68px); line-height: 1.02; margin: 20px 0 0; color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--camel-deep); }
.hero-sub { font-size: clamp(17px, 1.5vw, 19.5px); line-height: 1.55; color: var(--text-soft); margin-top: 22px; }
.hero-sub b { color: var(--text); font-weight: 600; }
.hero-form { margin-top: 28px; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 22px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-soft); font-weight: 500; }
.trust-item svg { color: var(--camel-deep); }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--cream); margin-left: -9px;
  background-size: cover; font-size: 11px; font-weight: 700; color: #fff; display: grid; place-items: center;
}
.trust-avatars span:first-child { margin-left: 0; }

.hero-visual { position: relative; }
.hero-visual .frame-tag {
  position: absolute; z-index: 5; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--paper); font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
@media (max-width: 900px){
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 40px; }
}

/* ---------------- BEFORE / AFTER (real photos) ---------------- */
.ba {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(22,27,36,.12); user-select: none; touch-action: pan-y;
  background: var(--ink);
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-top { will-change: clip-path; }
/* "straight off your phone" treatment: flat, cool, under-exposed */
.ba-raw { will-change: clip-path; filter: saturate(.4) brightness(.82) contrast(.9) hue-rotate(10deg); }
.ba-raw-vig {
  position: absolute; inset: 0; pointer-events: none; will-change: clip-path; z-index: 2;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 52%, rgba(12,18,28,.42) 100%),
    linear-gradient(180deg, rgba(120,140,160,.12), rgba(40,46,58,.10));
}

.ba-handle { position: absolute; top: 0; bottom: 0; width: 0; z-index: 8; cursor: ew-resize; }
.ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: var(--paper); box-shadow: 0 0 0 1px rgba(22,27,36,.25); }
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--paper); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); border: 1px solid rgba(22,27,36,.12);
}
.ba-knob svg { margin: -3px; }
.ba-caption {
  position: absolute; bottom: 6%; z-index: 6; font-size: 11.5px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; pointer-events: none; transition: opacity .2s;
  backdrop-filter: blur(4px);
}
.ba-cap-before { left: 5%; background: rgba(20,24,31,.7); color: #EFE7D5; }
.ba-cap-after { right: 5%; background: var(--camel); color: #fff; box-shadow: 0 6px 16px rgba(168,112,47,.4); }

/* ---------------- AUDIENCE STRIP ---------------- */
.strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-in { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.strip-label { font-size: 13px; font-weight: 600; color: var(--text-soft); letter-spacing: .02em; }
.strip-roles { display: flex; gap: 12px; flex-wrap: wrap; }
.strip-role { font-family: var(--serif); font-size: 22px; color: var(--ink); opacity: .72; }

/* ---------------- SECTION SHELL ---------------- */
.section { padding: 92px 0; }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section h2 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em;
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.06; color: var(--ink); margin-top: 16px;
}
.on-dark h2 { color: var(--paper); }
.section-lead { font-size: 18px; line-height: 1.55; color: var(--text-soft); margin-top: 16px; }
.on-dark .section-lead { color: var(--text-on-dark-soft); }

/* ---------------- BENEFITS ---------------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.bcard {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px 28px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bcard-top { height: 4px; position: absolute; left: 0; right: 0; top: 0; }
.bcard:nth-child(1) .bcard-top { background: var(--camel); }
.bcard:nth-child(2) .bcard-top { background: var(--walnut); }
.bcard:nth-child(3) .bcard-top { background: var(--ink); }
.bcard-ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.bcard:nth-child(1) .bcard-ico { background: var(--camel); }
.bcard:nth-child(2) .bcard-ico { background: var(--walnut); }
.bcard:nth-child(3) .bcard-ico { background: var(--ink); }
.bcard h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); }
.bcard p { font-size: 15.5px; line-height: 1.55; color: var(--text-soft); margin-top: 10px; }
.bcard-tag { display: inline-block; margin-top: 16px; font-size: 12.5px; font-weight: 700; color: var(--camel-deep); letter-spacing: .04em; }
@media (max-width: 820px){ .benefits { grid-template-columns: 1fr; } }

/* ---------------- DARK AI SECTION ---------------- */
.dark { background: var(--ink); color: var(--text-on-dark); position: relative; }
.dark::before { content:""; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background:
    repeating-linear-gradient(0deg, rgba(236,227,207,.04) 0 22px, transparent 22px 44px),
    repeating-linear-gradient(90deg, rgba(236,227,207,.04) 0 22px, transparent 22px 44px);
}
.dark .wrap { position: relative; z-index: 1; }
.dark h1, .dark h2, .dark h3 { color: var(--paper); }
.dark .section-lead { color: var(--text-on-dark-soft); }
.ai-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; margin-top: 8px; }
@media (max-width: 900px){ .ai-grid { grid-template-columns: 1fr; gap: 40px; } }

.ai { background: #11151C; border: 1px solid rgba(236,227,207,.14); border-radius: 18px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.45); }
.ai-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: #0C0F15; border-bottom: 1px solid rgba(236,227,207,.1); }
.ai-dot { width: 11px; height: 11px; border-radius: 50%; background: #3a414d; }
.ai-dot:nth-child(1){ background:#E0795B; } .ai-dot:nth-child(2){ background:#E6B95C; } .ai-dot:nth-child(3){ background:#69B07E; }
.ai-bar-label { margin-left: 10px; font-size: 12.5px; color: var(--text-on-dark-soft); font-weight: 600; }
.ai-body { padding: 22px; min-height: 280px; display: flex; flex-direction: column; gap: 18px; }
.ai-q, .ai-a { display: flex; gap: 12px; align-items: flex-start; }
.ai-avatar { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--denim); color: #fff; font-weight: 700; font-size: 13px; display: grid; place-items: center; }
.ai-avatar-ai { background: var(--camel); }
.ai-bubble { background: #1B2029; border: 1px solid rgba(236,227,207,.12); border-radius: 4px 14px 14px 14px; padding: 13px 16px; font-size: 15px; line-height: 1.5; color: var(--text-on-dark); min-height: 20px; }
.ai-caret { display: inline-block; width: 2px; height: 1.05em; background: var(--camel); margin-left: 2px; vertical-align: -2px; opacity: 0; }
.ai-caret.on { animation: blink 1s steps(2) infinite; }
@keyframes blink { 0%,50%{opacity:1} 50.01%,100%{opacity:0} }
.ai-answer { flex: 1; }
.ai-think { display: flex; gap: 6px; padding: 12px 4px; }
.ai-think span { width: 9px; height: 9px; border-radius: 50%; background: var(--camel); opacity: .4; animation: think 1.2s infinite; }
.ai-think span:nth-child(2){ animation-delay: .18s; } .ai-think span:nth-child(3){ animation-delay: .36s; }
@keyframes think { 0%,100%{opacity:.3; transform:translateY(0)} 40%{opacity:1; transform:translateY(-4px)} }
.ai-answer-in { animation: rise .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes rise { from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:none} }
.ai-text { font-size: 14.5px; line-height: 1.5; color: var(--text-on-dark-soft); margin-bottom: 12px; }
.ai-card { display: flex; align-items: center; gap: 14px; background: #F6F0E2; border-radius: 14px; padding: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.3); transition: transform .2s ease; }
.ai-card:hover { transform: translateY(-2px); }
.ai-card-thumb { width: 92px; height: 70px; border-radius: 9px; flex: none; position: relative; overflow: hidden; }
.ai-card-badge { position: absolute; left: 6px; bottom: 6px; background: var(--ink); color: var(--paper); font-size: 9.5px; font-weight: 700; padding: 3px 7px; border-radius: 999px; letter-spacing: .04em; }
.ai-card-meta { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.ai-card-meta strong { font-family: var(--serif); font-size: 18px; color: var(--ink); font-weight: 600; }
.ai-card-meta span { font-size: 12.5px; color: var(--text-soft); }
.ai-card-cite { display: inline-flex; align-items: center; gap: 5px; color: #2F7D52 !important; font-weight: 600; }

/* ---------------- LISTING PAGE MOCK ---------------- */
.listing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px){ .listing-grid { grid-template-columns: 1fr; gap: 40px; } }
.lp {
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(22,27,36,.12); background: var(--paper); transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform .5s ease;
}
.lp:hover { transform: perspective(1400px) rotateY(0) rotateX(0); }
.lp-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: var(--oat); border-bottom: 1px solid var(--line); }
.lp-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(78,51,29,.3); }
.lp-url { margin-left: 10px; font-size: 11.5px; color: var(--walnut); background: rgba(255,255,255,.5); padding: 4px 12px; border-radius: 999px; flex: 1; }
.lp-hero { height: 190px; position: relative; display: grid; place-items: end start; }
.lp-hero .lp-price { margin: 16px; background: rgba(22,27,36,.82); color: var(--paper); padding: 8px 14px; border-radius: 10px; font-weight: 700; font-size: 17px; }
.lp-body { padding: 20px 22px 24px; }
.lp-title { font-family: var(--serif); font-size: 26px; color: var(--ink); font-weight: 500; }
.lp-sub { font-size: 14px; color: var(--text-soft); margin-top: 5px; }
.lp-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 16px; }
.lp-thumbs div { aspect-ratio: 1; border-radius: 8px; }
.lp-actions { display: flex; gap: 10px; margin-top: 18px; }
.lp-btn { flex: 1; text-align: center; padding: 12px; border-radius: 10px; font-size: 13.5px; font-weight: 700; }
.lp-btn-1 { background: var(--ink); color: var(--paper); }
.lp-btn-2 { background: transparent; border: 1.5px solid var(--line); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; gap: 7px; }

/* ---------------- HOW IT WORKS ---------------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 50px; counter-reset: s; }
.step { position: relative; padding-top: 22px; }
.step::before { counter-increment: s; content: "0" counter(s); font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--camel-deep); }
.step-line { height: 2px; background: linear-gradient(90deg, var(--camel), transparent); margin: 12px 0 16px; }
.step h3 { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--ink); }
.step p { font-size: 15px; line-height: 1.55; color: var(--text-soft); margin-top: 9px; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; gap: 20px; } }

/* ---------------- SCARCITY BAND ---------------- */
.scarcity { background: var(--ink); color: var(--text-on-dark); border-radius: 26px; padding: 54px 48px; position: relative; overflow: hidden; }
.scarcity::after { content:""; position:absolute; right:-60px; top:-60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(194,138,69,.30), transparent 65%); }
.scarcity-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 820px){ .scarcity-grid { grid-template-columns: 1fr; gap: 36px; } .scarcity { padding: 40px 26px; } }
.scarcity h2 { color: var(--paper); }
.bar-track { height: 12px; border-radius: 999px; background: rgba(236,227,207,.16); overflow: hidden; margin-top: 26px; }
.bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--camel), var(--brass)); width: 0; transition: width 1.6s cubic-bezier(.2,.7,.2,1); }
.bar-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-on-dark-soft); margin-top: 10px; font-weight: 500; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.stat { background: rgba(236,227,207,.06); border: 1px solid rgba(236,227,207,.12); border-radius: 16px; padding: 22px; }
.stat-num { font-family: var(--serif); font-size: 42px; font-weight: 500; color: var(--brass); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-on-dark-soft); margin-top: 8px; font-weight: 500; }

/* ---------------- FINAL CTA ---------------- */
.final { text-align: center; padding: 100px 0; }
.final .wrap { max-width: 760px; }
.final h2 { font-size: clamp(36px, 5vw, 60px); }
.final .hero-form { max-width: 540px; margin: 32px auto 0; }
.final-note { font-size: 13.5px; color: var(--text-soft); margin-top: 18px; }

/* ---------------- FAQ ---------------- */
.faq { max-width: 760px; margin: 44px auto 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 4px; font-family: var(--serif); font-size: 21px; color: var(--ink); }
.faq-q .pm { font-family: var(--sans); font-size: 24px; color: var(--camel-deep); transition: transform .25s ease; flex: none; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-in { padding: 0 4px 22px; font-size: 16px; line-height: 1.6; color: var(--text-soft); }

/* ---------------- FORM ---------------- */
.wf { width: 100%; }
.wf-row { display: flex; gap: 10px; }
.wf-input {
  flex: 1; min-width: 0; font-family: inherit; font-size: 16px; padding: 16px 18px; border-radius: 999px;
  border: 1.5px solid var(--line); background: rgba(255,255,255,.7); color: var(--text); transition: border .2s, box-shadow .2s;
}
.wf-input::placeholder { color: #9a917f; }
.wf-input:focus { outline: none; border-color: var(--camel); box-shadow: 0 0 0 4px rgba(194,138,69,.18); background: #fff; }
.wf-submit { white-space: nowrap; flex: none; }
.wf-roles { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.wf-chip { font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: rgba(255,255,255,.5); color: var(--text-soft); transition: all .18s; }
.wf-chip:hover { border-color: var(--camel); color: var(--walnut); }
.wf-chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.wf-foot { margin-top: 14px; min-height: 18px; }
.wf-note { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-soft); }
.wf-note svg { color: var(--camel-deep); }
.wf-err { font-size: 13.5px; color: #B5482F; font-weight: 600; }

.wf-done { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-md); animation: rise .5s ease both; }
.wf-done.compact { max-width: 540px; margin: 0 auto; }
.wf-done-check { width: 56px; height: 56px; border-radius: 50%; background: #2F7D52; color: #fff; display: grid; place-items: center; margin-bottom: 16px; animation: pop .5s cubic-bezier(.2,1.4,.4,1) both; }
@keyframes pop { from{transform:scale(0); opacity:0} to{transform:scale(1); opacity:1} }
.wf-done-title { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--ink); }
.wf-done-sub { font-size: 16px; line-height: 1.55; color: var(--text-soft); margin-top: 10px; }
.wf-done-sub strong { color: var(--camel-deep); }
.wf-share { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; font-size: 14px; color: var(--text-soft); }
.wf-copy { font-size: 13.5px; font-weight: 700; padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--ink); background: transparent; color: var(--ink); transition: all .18s; }
.wf-copy:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 560px){ .wf-row { flex-direction: column; } .wf-submit { width: 100%; } }

/* ---------------- STICKY CTA ---------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; transform: translateY(120%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  background: rgba(22,27,36,.95); backdrop-filter: blur(8px); border-top: 1px solid rgba(236,227,207,.12);
}
.sticky-cta.show { transform: none; }
.sticky-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 0; }
.sticky-left { display: flex; align-items: center; gap: 14px; color: var(--paper); }
.sticky-left b { font-family: var(--serif); font-size: 17px; font-weight: 600; }
.sticky-left span { font-size: 13px; color: var(--text-on-dark-soft); }
.sticky-spots { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--brass); }
.sticky-spots .live { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); animation: pulse 2s infinite; }
@media (max-width: 560px){ .sticky-left span { display: none; } .sticky-cta .btn { padding: 12px 18px; font-size: 14px; } }

/* ---------------- FOOTER ---------------- */
.footer { padding: 46px 0; border-top: 1px solid var(--line); }
.footer-in { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer p { font-size: 13.5px; color: var(--text-soft); }
.footer-brand { font-family: var(--serif); font-size: 22px; color: var(--ink); }

.section-foot-spacer { height: 70px; }

/* ================= NEW: product sections ================= */

/* dark section secondary tint */
.dark-2 { background: #12161D; }

/* capture grid + phone */
.cap-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
@media (max-width: 900px){ .cap-grid { grid-template-columns: 1fr; gap: 44px; } }
.cap-points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 18px; }
.cap-points li { display: flex; gap: 14px; align-items: flex-start; }
.cap-pt-ico { flex: none; width: 38px; height: 38px; border-radius: 11px; background: rgba(194,138,69,.16); color: var(--brass); display: grid; place-items: center; }
.cap-points strong { display: block; color: var(--paper); font-size: 16.5px; font-weight: 600; }
.cap-points p { color: var(--text-on-dark-soft); font-size: 14.5px; line-height: 1.5; margin-top: 3px; }
.cap-phone-wrap { display: flex; justify-content: center; }

.phone {
  position: relative; width: 300px; max-width: 78vw; aspect-ratio: 9 / 19; background: #05070A;
  border-radius: 42px; padding: 11px; box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 2px rgba(236,227,207,.08);
}
.phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 24px; background: #05070A; border-radius: 999px; z-index: 5; }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: #1a1f27; }
.phone-view { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.02); }
.phone-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,10,.55) 0%, rgba(5,7,10,0) 26%, rgba(5,7,10,0) 58%, rgba(5,7,10,.82) 100%); }

.cap-top { position: absolute; top: 40px; left: 16px; right: 16px; display: flex; justify-content: space-between; align-items: center; z-index: 3; }
.cap-rec { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; letter-spacing: .1em; color: #fff; background: rgba(214,69,55,.92); padding: 4px 9px; border-radius: 999px; }
.cap-rec-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; }
.cap-count { font-size: 11.5px; font-weight: 600; color: #fff; background: rgba(5,7,10,.5); padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(4px); }
.cap-rooms { position: absolute; top: 72px; left: 16px; right: 16px; display: flex; flex-wrap: wrap; gap: 5px; z-index: 3; }
.cap-room { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: rgba(5,7,10,.45); color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.12); }
.cap-room.done { background: rgba(63,164,106,.92); color: #fff; border-color: transparent; }
.cap-room.now { background: var(--camel); color: #fff; border-color: transparent; }

.cap-guide { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; pointer-events: none; animation: rise .4s ease both; }
.cap-arrow { color: #fff; opacity: .95; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); animation: nudgeR 1s ease-in-out infinite; }
.cap-arrow.flip { transform: scaleX(-1); animation: nudgeL 1s ease-in-out infinite; }
@keyframes nudgeR { 0%,100%{ transform: translateX(-6px) } 50%{ transform: translateX(8px) } }
@keyframes nudgeL { 0%,100%{ transform: scaleX(-1) translateX(-6px) } 50%{ transform: scaleX(-1) translateX(8px) } }
.cap-ring { width: 78px; height: 78px; border-radius: 50%; border: 3px solid rgba(255,255,255,.9); box-shadow: 0 0 0 6px rgba(255,255,255,.18); animation: hold 1.4s ease-in-out infinite; }
@keyframes hold { 0%,100%{ transform: scale(.92); opacity:.7 } 50%{ transform: scale(1.04); opacity:1 } }
.cap-tick { width: 76px; height: 76px; border-radius: 50%; background: rgba(63,164,106,.95); color: #fff; display: grid; place-items: center; box-shadow: 0 0 0 8px rgba(63,164,106,.25); animation: pop .4s cubic-bezier(.2,1.4,.4,1) both; }

.cap-voice { position: absolute; left: 14px; right: 14px; bottom: 16px; z-index: 4; display: flex; align-items: center; gap: 9px; background: rgba(5,7,10,.62); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); padding: 10px 12px; border-radius: 16px; }
.cap-voice-ico { flex: none; width: 28px; height: 28px; border-radius: 9px; background: var(--camel); color: #fff; display: grid; place-items: center; }
.cap-voice-txt { flex: 1; font-size: 12.5px; line-height: 1.35; color: #fff; font-weight: 500; }
.cap-wave { display: flex; align-items: center; gap: 2px; height: 20px; flex: none; }
.cap-wave span { width: 2.5px; height: 40%; background: var(--brass); border-radius: 2px; animation: wave .9s ease-in-out infinite; }
@keyframes wave { 0%,100%{ height: 25% } 50%{ height: 95% } }

/* deliverables */
.deliv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
@media (max-width: 900px){ .deliv { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px){ .deliv { grid-template-columns: 1fr; } }
.dcard { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.dcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dcard-wide { grid-column: span 2; }
@media (max-width: 580px){ .dcard-wide { grid-column: span 1; } }
.dcard-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--oat); }
.dcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dcard:hover .dcard-media img { transform: scale(1.04); }
.dcard-tag { position: absolute; top: 10px; right: 10px; display: inline-flex; align-items: center; gap: 5px; background: rgba(20,24,31,.82); color: var(--paper); font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; letter-spacing: .03em; backdrop-filter: blur(4px); }
.dcard-body { display: flex; gap: 12px; padding: 18px 18px 20px; align-items: flex-start; }
.dcard-ico { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--ink); color: var(--paper); display: grid; place-items: center; }
.dcard-body h3 { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); }
.dcard-body p { font-size: 13.5px; line-height: 1.5; color: var(--text-soft); margin-top: 4px; }

/* floor plan svg */
.floorplan { width: 100%; height: 100%; background: var(--ink); display: block; }
.floorplan rect, .floorplan path { fill: none; stroke: var(--brass); stroke-width: 1.6; }
.floorplan .fp-door { stroke-dasharray: 3 3; opacity: .7; }
.floorplan .fp-label { fill: rgba(236,227,207,.55); font: 700 7px var(--sans); letter-spacing: .1em; }
.floorplan .fp-dim { fill: var(--camel); stroke: none; }

/* ai points */
.ai-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.ai-points li { display: flex; gap: 12px; align-items: center; color: var(--text-on-dark); font-size: 16px; }
.ai-pt-ico { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(194,138,69,.2); color: var(--brass); display: grid; place-items: center; }

/* ai card thumb image */
.ai-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* listing page images */
.lp-hero { height: 190px; position: relative; display: grid; place-items: end start; overflow: hidden; }
.lp-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-hero .lp-price { position: relative; z-index: 2; }
.lp-thumbs img { aspect-ratio: 1; width: 100%; border-radius: 8px; object-fit: cover; display: block; }
.lp-feats { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.lp-feat-h { font-family: var(--serif); font-size: 23px; color: var(--ink); }
.lp-feat-s { font-size: 14px; color: var(--text-soft); }

/* vision band */
.vision { padding: 8px 0 40px; }
.vision .wrap { max-width: 880px; text-align: center; }
.vision-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--camel-deep); }
.vision-line { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); line-height: 1.3; color: var(--ink); margin-top: 14px; }

/* 4-up steps */
.steps-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .steps-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .steps-4 { grid-template-columns: 1fr; } }
