:root{
  --bg:#ffffff;
  --ink:#1f1420;
  --muted:#6a5866;

  --rose:#ff7db5;
  --rose2:#ffb3d4;
  --champ:#fff3f8;

  --lav:#c7b4ff;
  --mint:#bff4e7;

  --card:#ffffffcc;
  --glass:rgba(255,255,255,.65);
  --line:rgba(255,125,181,.18);

  --shadow: 0 28px 90px rgba(63, 17, 48, .14);
  --shadow2: 0 16px 50px rgba(63, 17, 48, .10);

  --r-xl:34px;
  --r-lg:26px;
  --r-md:18px;

  --max:1180px;

  /* === Image sources (safe defaults) ===
     Put your files in /img and keep these names,
     OR swap .jpg to .png here if you want.
  */
  --img-hero: url("/marketing/img/hero.webp");
  --img-moment1: url("/marketing/img/moment1.webp");
  --img-moment2: url("/marketing/img/moment2.webp");
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1100px 700px at 15% -10%, #ffe3f0, transparent 60%),
    radial-gradient(900px 600px at 90% 10%, #e9e2ff, transparent 55%),
    radial-gradient(900px 600px at 50% 110%, #e7fff9, transparent 55%),
    var(--bg);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 22px}

/* Top nav */
.nav{
  position:sticky; top:0; z-index:100;
  backdrop-filter: blur(16px);
  background:rgba(255,255,255,.72);
  border-bottom:1px solid rgba(255,125,181,.12);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;gap:14px;
}
.brand{
  display:flex;gap:12px;align-items:center;
  min-width: 240px;
}
.brand img{
  height:60px;          /* controls nav height nicely */
  width:auto;           /* allows it to stretch wide */
  max-width:320px;      /* prevents it getting silly-large */
  border-radius:0;      /* logos with text usually shouldn't be rounded */
  border:none;          /* remove box look */
  box-shadow:none;
  background:transparent;
  object-fit:contain;
  display:block;
}

.brand .name{
  font-weight:900;
  letter-spacing:-.02em;
  font-size:18px;
}
.brand .tag{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

/* Menu */
.menu{display:flex;align-items:center;gap:14px}
.menu a{
  font-weight:800;
  font-size:13px;
  padding:10px 12px;
  border-radius:999px;
  opacity:.9;
}
.menu a:hover{
  background:rgba(255,125,181,.10);
  opacity:1;
}
.menu .cta{
  background:linear-gradient(135deg,var(--rose),#ff4ea0);
  color:#fff;
  box-shadow: 0 18px 60px rgba(255,78,160,.28);
}
.menu .cta:hover{background:linear-gradient(135deg,#ff4ea0,var(--rose));}

/* Stack "Create" + "Login" so the nav stays tidy as buttons grow */
.nav-ctaStack{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}
.nav-loginLink{
  font-weight:900;
  font-size:12px;
  padding:0;
  border-radius:0;
  opacity:.85;
  text-decoration:none;
}
.nav-loginLink:hover{
  background:transparent;
  text-decoration:underline;
  opacity:1;
}

@media (max-width: 1100px){
  .menu{flex-wrap:wrap;justify-content:flex-end;gap:10px}
  .menu a{padding:8px 10px}
}

@media (max-width: 720px){
  .brand{min-width:unset}
  .nav-ctaStack{align-items:stretch}
}

/* Secondary nav CTA (vendor) */
.menu .cta.secondary{
  background: rgba(255,255,255,.75);
  color: var(--ink);
  border: 1px solid rgba(255,125,181,.22);
  box-shadow: 0 12px 40px rgba(20,10,40,.10);
}
.menu .cta.secondary:hover{
  background: rgba(255,125,181,.10);
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  font-weight:900;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow2);
  white-space: nowrap;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow);}
.btn.primary{
  border:none;
  color:#fff;
  background:linear-gradient(135deg,var(--rose),#ff4ea0);
  box-shadow: 0 22px 70px rgba(255,78,160,.28);
}
.btn.primary:hover{background:linear-gradient(135deg,#ff4ea0,var(--rose));}
.btn.ghost{
  background:rgba(255,255,255,.55);
}

/* Hero */
.hero{
  padding:86px 0 54px;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:40px;
  align-items:center;
}
.kicker{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,125,181,.18), rgba(199,180,255,.18));
  border:1px solid rgba(255,125,181,.18);
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
  color:#5a2a46;
}
.h1{
  margin:16px 0 12px;
  font-family:"Fraunces", serif;
  font-weight:800;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height:1.03;
  letter-spacing:-.03em;
}
.h1 .script{
  font-family:"Great Vibes", cursive;
  font-weight:500;
  font-size:1.05em;
  color:#ff4ea0;
  display:inline-block;
  transform: translateY(2px);
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:16.5px;
  line-height:1.8;
  max-width:560px;
}
.hero-actions{
  display:flex;flex-wrap:wrap;gap:12px;
  margin-top:22px;
}
.hero-note{
  margin-top:14px;
  font-size:13px;
  color:var(--muted);
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  font-weight:700;
}
.pill{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(255,125,181,.14);
}

/* Cute floating decor */
.floats{
  position:absolute; inset:0;
  pointer-events:none;
  overflow:hidden;
}
.float{
  position:absolute;
  opacity:.85;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.08));
  animation: floaty 7s ease-in-out infinite;
  transform: translateZ(0);
}
.float.h1{left:8%; top:18%; font-size:20px; animation-duration:8s}
.float.h2{left:44%; top:12%; font-size:18px; animation-duration:9.5s; opacity:.65}
.float.h3{left:80%; top:24%; font-size:22px; animation-duration:7.5s}
.float.s1{left:15%; top:72%; font-size:18px; animation-duration:10s; opacity:.55}
.float.s2{left:88%; top:78%; font-size:18px; animation-duration:9s; opacity:.55}
@keyframes floaty{
  0%,100%{transform: translateY(0) rotate(-2deg)}
  50%{transform: translateY(-16px) rotate(2deg)}
}

/* ===== SAFE IMAGE FRAMES =====
   These are the key changes: fixed frame sizes + cover + crop.
   Your hero.png/jpg will NEVER change the page height.
*/
.hero-frame{
  position:relative;
  border-radius: var(--r-xl);
  padding:14px;
  background:linear-gradient(135deg, rgba(255,125,181,.22), rgba(199,180,255,.20), rgba(191,244,231,.18));
  box-shadow: var(--shadow);
}

/* frame height is fixed-ish and responsive */
.hero-photo{
  border-radius: calc(var(--r-xl) - 10px);
  overflow:hidden;

  /* DO NOT allow image to affect layout */
  height: clamp(360px, 52vh, 520px);

  position:relative;

  /* Local hero image (safe) + fallback overlay */
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.42)),
    var(--img-hero);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-photo::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 30% 10%, rgba(255,125,181,.35), transparent 60%);
  pointer-events:none;
}

.hero-card{
  position:absolute;
  left:18px; right:18px; bottom:18px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  border:1px solid rgba(255,125,181,.18);
  padding:16px 16px;
  box-shadow: 0 18px 70px rgba(0,0,0,.18);
}
.hero-card .big{
  font-family:"Fraunces", serif;
  font-weight:800;
  font-size:22px;
  margin:0 0 6px;
}
.hero-card .small{
  margin:0;
  color:var(--muted);
  font-weight:700;
  line-height:1.6;
}
.hero-card .minirow{
  margin-top:12px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.mchip{
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(255,125,181,.18);
  font-weight:900;
  font-size:12px;
}

/* Sections */
.section{padding:70px 0}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-family:"Fraunces", serif;
  font-weight:800;
  font-size: 40px;
  letter-spacing:-.03em;
}
.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-weight:700;
  max-width:520px;
}

/* Feature grid */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

/* Auto grid for larger feature lists */
.gridAuto{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
}

/* Auto grid for feature lists (responsive without extra breakpoints) */
.gridAuto{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
}
.card{
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.72);
  border:1px solid rgba(255,125,181,.16);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow2);
  padding:20px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{transform: translateY(-2px); box-shadow: var(--shadow);}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(600px 260px at 20% 0%, rgba(255,125,181,.20), transparent 60%),
    radial-gradient(500px 260px at 85% 20%, rgba(199,180,255,.18), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.card > *{position:relative}
.icon{
  width:54px;height:54px;border-radius:18px;
  background:rgba(255,125,181,.14);
  border:1px solid rgba(255,125,181,.18);
  display:flex;align-items:center;justify-content:center;
  font-size:24px;
  box-shadow: 0 16px 40px rgba(255,78,160,.16);
}
.card h3{
  margin:14px 0 8px;
  font-size:16px;
  font-weight:900;
}
.card p{
  margin:0;
  color:var(--muted);
  font-weight:700;
  line-height:1.7;
  font-size:14px;
}

/* Photo moment sections (also safe frames) */
.moments{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  margin-top:18px;
}
.moment{
  border-radius: var(--r-xl);
  overflow:hidden;

  /* fixed safe frame */
  min-height: 320px;
  height: clamp(320px, 40vh, 440px);

  border:1px solid rgba(255,125,181,.16);
  box-shadow: var(--shadow2);
  position:relative;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Local images */
.moment.big{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.44)),
    var(--img-moment1);
}
.moment.small{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.42)),
    var(--img-moment2);
}

.moment .label{
  position:absolute;
  left:18px; bottom:18px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border:1px solid rgba(255,125,181,.18);
  border-radius:999px;
  padding:12px 14px;
  font-weight:900;
}
/* ===== CreateMySite Wizard (addon) ===== */
.otv-flow-card {
  position: relative;
  overflow: hidden;
}

.otv-flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 740px) {
  .otv-flow-top {
    flex-direction: column;
    align-items: flex-start
  }
}

.otv-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.otv-step-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, opacity .25s ease;
  opacity: .75;
}

.otv-step-dot span {
  font-weight: 800;
  font-size: 13px
}

.otv-step-dot.is-active {
  opacity: 1;
  transform: translateY(-1px) scale(1.04);
  border-color: rgba(216, 166, 183, .55);
}

.otv-step-dot.is-done {
  opacity: 1;
  background: rgba(216, 166, 183, .16);
  border-color: rgba(216, 166, 183, .35);
}

.otv-step-line {
  width: 26px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(216, 166, 183, .25), rgba(216, 166, 183, .45));
  opacity: .7;
}

.otv-flow {
  position: relative;
  overflow: hidden;
}

.otv-flow-track {
  display: flex;
  width: 300%;
  transform: translateX(0%);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.otv-flow-step {
  width: 100%;
  padding: 2px 2px 4px;
  opacity: .98;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease;
}

.otv-step-title {
  font-size: 22px;
  margin: 0;
}

.otv-domain-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.otv-domain-row input {
  flex: 1;
  min-width: 240px;
}

.otv-flow-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 14px;
}

.otv-btn-ghost {
  background: rgba(255, 255, 255, .65);
}

.otv-success-card {
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 16px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.otv-success-url {
  font-weight: 900;
  font-size: 18px;
  margin-top: 6px;
  letter-spacing: .2px;
}

/* CTA banner */
.cta-banner{
  border-radius: var(--r-xl);
  padding:34px 26px;
  background:
    radial-gradient(800px 300px at 15% 0%, rgba(255,125,181,.25), transparent 60%),
    radial-gradient(800px 300px at 90% 10%, rgba(199,180,255,.22), transparent 60%),
    rgba(255,255,255,.70);
  border:1px solid rgba(255,125,181,.18);
  box-shadow: var(--shadow);
  display:grid;
  gap:10px;
  text-align:center;
}
.cta-banner h2{margin:0}
.cta-banner p{margin:0 auto; max-width:720px; font-weight:700}
.cta-banner .hero-actions{justify-content:center}

/* ============================
   OneTrueVow Create Flow Wizard
   ============================ */
.otv-create .container { display:flex; justify-content:center; }
.otv-createShell{
  width:min(860px, 100%);
  margin: 28px auto 0;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 30px 80px rgba(17, 24, 39, .12);
  backdrop-filter: blur(10px);
}

.otv-createHeader{ text-align:center; margin-bottom: 16px; }
.otv-title{
  margin: 0 0 6px;
  letter-spacing: -.02em;
}
.otv-sub{
  margin: 0;
  color: rgba(20,20,20,.70);
  line-height: 1.55;
}

.otv-steps{
  display:flex;
  justify-content:center;
  gap: 14px;
  margin: 18px 0 18px;
  flex-wrap:wrap;
}
.otv-stepDot{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.otv-stepDot span{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 800;
  background: rgba(0,0,0,.06);
}
.otv-stepDot em{
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: rgba(20,20,20,.75);
}
.otv-stepDot.is-active{
  border-color: rgba(216,166,183,.65);
  background: rgba(255,255,255,.85);
}
.otv-stepDot.is-active span{
  background: rgba(216,166,183,.25);
}

.otv-form{ margin-top: 6px; }

.otv-panel{
  display:none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .28s ease, transform .28s ease;
}
.otv-panel.is-active{
  display:block;
  opacity: 1;
  transform: translateX(0);
}

.otv-panelTitle{
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 6px;
  text-align:center;
}
.otv-panelDesc{
  text-align:center;
  color: rgba(20,20,20,.70);
  margin: 0 auto 16px;
  max-width: 640px;
  line-height: 1.55;
}

.otv-field{ margin: 14px 0; }
.otv-field label{
  display:block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(20,20,20,.78);
  margin-bottom: 8px;
}

.otv-field input{
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.otv-field input:focus{
  border-color: rgba(216,166,183,.8);
  box-shadow: 0 18px 44px rgba(216,166,183,.18);
  transform: translateY(-1px);
}

.otv-help{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(20,20,20,.65);
}
.otv-help.ok{ color:#118a48; font-weight: 700; }
.otv-help.bad{ color:#b00020; font-weight: 700; }

.otv-domainRow{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap:wrap;
}
.otv-domainRow input{ flex: 1; min-width: 240px; }
.otv-domainSuffix{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px dashed rgba(216,166,183,.75);
  background: rgba(216,166,183,.12);
  font-weight: 900;
  color: rgba(20,20,20,.72);
  white-space: nowrap;
}

.otv-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 720px){
  .otv-grid2{ grid-template-columns: 1fr; }
}

.otv-actions{
  display:flex;
  justify-content:center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap:wrap;
}
.otv-actions.split{
  justify-content: space-between;
}
@media (max-width:720px){
  .otv-actions.split{ justify-content:center; }
}

.otv-btn{
  appearance:none;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255,255,255,.85);
  font-weight: 900;
  cursor:pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.otv-btn:hover{ transform: translateY(-1px); box-shadow: 0 18px 44px rgba(0,0,0,.12); }
.otv-btn:disabled{ opacity:.55; cursor:not-allowed; transform:none; }
.otv-btn.primary{
  border-color: rgba(216,166,183,.65);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(216,166,183,.14));
}
.otv-btn.ghost{
  background: rgba(255,255,255,.70);
}

.otv-msg{
  margin-top: 12px;
  text-align:center;
  font-weight: 800;
  color: rgba(20,20,20,.75);
}
.otv-msg.bad{ color:#b00020; }
.otv-msg.ok{ color:#118a48; }

.otv-legal{
  margin-top: 16px;
  text-align:center;
  font-size: 12.5px;
  color: rgba(20,20,20,.62);
}

.otv-successIcon{
  font-size: 42px;
  text-align:center;
  margin-top: 6px;
}
.otv-successBox{
  margin: 14px auto 0;
  max-width: 680px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.80);
  padding: 14px 16px;
}
.otv-miniLabel{
  font-size: 12px;
  font-weight: 900;
  color: rgba(20,20,20,.55);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.otv-successUrl{
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(216,166,183,.10);
  border: 1px dashed rgba(216,166,183,.65);
  margin-top: 6px;
  word-break: break-word;
}

/* =========================
   Owner Backend (/backend)
   ========================= */
body.otv-backend{
  background: radial-gradient(900px 500px at 20% 0%, rgba(216,166,183,.22), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(246,238,241,.65), transparent 55%),
              #fff;
}

.otv-shell{
  min-height: 100vh;
  display: grid;
  grid-template-columns: 300px 1fr;
}

.otv-side{
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 18px;
  border-right: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.otv-sideTop{padding:12px 12px 6px}
.otv-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.8);
  font-weight:800; font-size:12px;
}
.otv-title{font-weight:900; font-size:18px; margin-top:10px}
.otv-sub{opacity:.7; font-size:12px; margin-top:3px}

.otv-nav{display:grid; gap:10px; padding: 6px}
.otv-navBtn{
  text-align:left;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.65);
  font-weight:800;
  cursor:pointer;
  transition: .15s transform, .15s box-shadow, .15s background;
}
.otv-navBtn:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,0,0,.08); background:#fff}
.otv-navBtn.is-active{
  background: linear-gradient(135deg, rgba(216,166,183,.35), rgba(246,238,241,.75));
  border-color: rgba(216,166,183,.55);
}

.otv-sideFoot{margin-top:auto; padding: 6px 12px 12px}
.otv-mini{font-size:12px; opacity:.7}

.otv-main{padding: 18px 20px 26px}
.otv-topbar{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap: 14px;
  padding: 8px 6px 16px;
}
.otv-h1{font-size:28px; font-weight:950; letter-spacing:-.02em}
.otv-actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

.otv-content{padding: 6px}
.otv-panel{display:none}
.otv-panel.is-active{display:block}

.otv-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 12px;
}
.otv-grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.otv-stat{
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
  padding: 14px 14px 12px;
}
.otv-statLabel{font-size:12px; opacity:.7; font-weight:800}
.otv-statVal{font-size:26px; font-weight:950; margin-top:8px}

.otv-card{
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.85);
  box-shadow: 0 22px 60px rgba(0,0,0,.08);
  padding: 16px;
}
.otv-cardTitle{font-weight:950; font-size:16px}

.otv-tableWrap{overflow:auto; border-radius: 16px; border:1px solid rgba(0,0,0,.06)}
.otv-table{
  width:100%;
  border-collapse: collapse;
  min-width: 980px;
  background: #fff;
}
.otv-table th, .otv-table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 13px;
}
.otv-table th{font-size:12px; opacity:.75; text-transform:uppercase; letter-spacing:.08em}
.otv-dim{opacity:.6}

.otv-pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid rgba(0,0,0,.08);
  font-weight:900;
  font-size: 12px;
}
.otv-pill.active{background: rgba(17,138,72,.10); border-color: rgba(17,138,72,.25)}
.otv-pill.pending{background: rgba(246,177,70,.18); border-color: rgba(246,177,70,.30)}
.otv-pill.paused{background: rgba(90,99,120,.12); border-color: rgba(90,99,120,.22)}
.otv-pill.deleted{background: rgba(176,0,32,.10); border-color: rgba(176,0,32,.25)}

.otv-links a{font-weight:900; text-decoration:none}
.otv-links a + a{margin-left:10px}

.otv-formRow{display:flex; gap:12px; align-items:flex-end; flex-wrap:wrap}

.otv-alert{
  border-radius: 16px;
  padding: 12px 14px;
  border:1px solid rgba(0,0,0,.08);
}
.otv-alert.ok{background: rgba(17,138,72,.10); border-color: rgba(17,138,72,.25)}
.otv-alert.bad{background: rgba(176,0,32,.10); border-color: rgba(176,0,32,.25)}

body.otv-backend .field input{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  padding: 12px 12px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}

/* Mobile */
@media (max-width: 980px){
  .otv-shell{grid-template-columns: 1fr}
  .otv-side{position:relative;height:auto}
  .otv-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .otv-grid2{grid-template-columns: 1fr}
}


/* Footer */
footer{
  padding:54px 0;
  border-top:1px solid rgba(255,125,181,.12);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(14px);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:24px;
}
footer b{display:block;margin-bottom:10px}
footer a{
  display:block;
  margin:8px 0;
  color:var(--muted);
  font-weight:800;
}
footer a:hover{color:var(--ink)}

/* Mobile */
@media (max-width: 980px){
  .menu{display:none}
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .moments{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}

/* ==========================
   Verify / provisioning UI
   ========================== */
.otv-verify main.section{min-height:calc(100vh - 84px);display:flex;align-items:center}
.otv-loader{display:grid;gap:14px;justify-items:center;text-align:center}
.otv-loader .penguin{
  width:124px;height:124px;border-radius:28px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.65));
  border:1px solid rgba(255,125,181,.22);
  box-shadow: 0 18px 60px rgba(20,10,40,.14);
  display:grid;place-items:center;
  animation: otv-bob 1.35s ease-in-out infinite;
}
.otv-loader .penguin span{font-size:56px;line-height:1}
@keyframes otv-bob{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

.otv-progress{width:min(420px, 92vw);height:14px;border-radius:999px;overflow:hidden;
  background: rgba(255,125,181,.14);border:1px solid rgba(255,125,181,.20);
}
.otv-progress > i{display:block;height:100%;width:0%;background: linear-gradient(90deg, var(--primary), var(--primary2));
  box-shadow: 0 10px 30px rgba(255,125,181,.30);
}
.otv-stepsHint{color:var(--muted);font-weight:800}

.otv-ready{display:none;position:relative}
.otv-ready.is-show{display:block;animation: otv-fadeUp .35s ease both}
@keyframes otv-fadeUp{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

.otv-confetti{position:absolute;inset:-10px;pointer-events:none;overflow:hidden}
.otv-confetti .c{position:absolute;top:-10px;width:10px;height:14px;border-radius:3px;opacity:.95;
  animation: otv-fall var(--d,2.6s) linear forwards;
  transform: translateX(var(--x,0px)) rotate(var(--r,0deg));
}
@keyframes otv-fall{to{transform: translateX(var(--x,0px)) translateY(520px) rotate(calc(var(--r,0deg) + 720deg));opacity:.9}}


/* === Theme Manager additions === */
body.otv-backend .field textarea{
  width:100%;
  min-height: 340px;
  resize: vertical;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  padding: 12px 14px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  line-height: 1.4;
}

body.otv-backend .otv-previewWrap{margin-top: 14px;}
body.otv-backend .otv-previewFrame{
  width:100%;
  height: 520px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}


/* --- Waddles KB Manager additions --- */
.otv-cardSub{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.otv-alertWarn{
  background: rgba(255, 209, 102, .22);
  border-color: rgba(255, 209, 102, .55);
}
.otv-divider{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 14px 0;
  border-radius: 1px;
}


/* --- Homepage feature screenshots (Budget + Seating) --- */
.featureShowcase{
  margin-top:22px;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.showcaseRow{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap:18px;
  align-items:center;
  padding:18px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.62);
  border:1px solid rgba(255,125,181,.14);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(12px);
}
.showcaseRow.reverse{
  grid-template-columns: 1fr 1.05fr;
}
.showcaseRow.reverse .showcaseText{ order:2; }
.showcaseRow.reverse .showcaseMedia{ order:1; }

.showcaseText h2{
  margin:10px 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height:1.15;
}
.showcaseText p{
  margin:0 0 12px;
  color: rgba(22,22,28,.78);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  color: rgba(22,22,28,.78);
  background: rgba(255,125,181,.10);
  border:1px solid rgba(255,125,181,.20);
}
.ticklist{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.ticklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: rgba(22,22,28,.78);
}
.ticklist li:before{
  content:"✨";
  line-height:1.2;
  margin-top:1px;
}

.showcaseMedia{
  border-radius: var(--r-lg);
  overflow:hidden;
  border:1px solid rgba(255,125,181,.16);
  box-shadow: var(--shadow2);
}
.showcaseMedia img{
  width:100%;
  height:auto;
  display:block;
}

@media (max-width: 900px){
  .showcaseRow,
  .showcaseRow.reverse{
    grid-template-columns: 1fr;
  }
  .showcaseRow.reverse .showcaseText,
  .showcaseRow.reverse .showcaseMedia{ order:unset; }
}


/* Contact + FAQ */

.form{display:grid;gap:14px;margin-top:18px}
.field{display:grid;gap:8px}
.label{font-weight:700;color:var(--ink);font-size:14px}
.input, .textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,125,181,.28);
  background:rgba(255,255,255,.82);
  color:var(--ink);
  outline:none;
  box-shadow:0 10px 28px rgba(63,17,48,.06);
  transition:transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.textarea{min-height:160px;resize:vertical}
.input:focus, .textarea:focus{
  border-color:rgba(199,180,255,.75);
  box-shadow:0 18px 45px rgba(63,17,48,.10);
  transform:translateY(-1px);
}
.help{font-size:13px;color:var(--muted)}
.notice{
  border:1px solid rgba(191,244,231,.75);
  background:rgba(191,244,231,.35);
  padding:12px 14px;
  border-radius:16px;
  color:var(--ink);
  box-shadow:0 16px 45px rgba(63,17,48,.08);
}
.notice.error{
  border-color:rgba(255,125,181,.35);
  background:rgba(255,125,181,.12);
}
.faq{display:grid;gap:12px;margin-top:16px}
.faq details{
  border:1px solid rgba(255,125,181,.22);
  background:rgba(255,255,255,.72);
  border-radius:18px;
  padding:12px 14px;
  box-shadow:0 14px 42px rgba(63,17,48,.08);
}
.faq summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary:after{
  content:"+";
  font-weight:900;
  width:30px;height:30px;
  display:grid;place-items:center;
  border-radius:12px;
  background:rgba(199,180,255,.35);
  border:1px solid rgba(199,180,255,.45);
}
.faq details[open] summary:after{content:"–"}
.faq .a{margin:10px 2px 2px;color:var(--muted);line-height:1.65}
