/* Base — override dark theme from layout.ejs */
body { background: #fff !important; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 249, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.nav-inner { display: flex; align-items: baseline; gap: 12px; }
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #1e293b;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-tagline {
  font-size: 0.7rem;
  color: #94a3b8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-link {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #64748b;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.nav-link:hover { color: #1e293b; }
.nav-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: #1e293b;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.nav-cta:hover { opacity: 0.8; }

/* HERO — cinematic gradient, light theme */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f4fd 0%, #f0f4ff 40%, #fafbff 70%, #fff 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(99, 126, 230, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left side */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6366f1;
  font-weight: 600;
  margin-bottom: 20px;
  background: rgba(99,126,230,0.08);
  padding: 6px 12px 6px 8px;
  border-radius: 20px;
  border: 1px solid rgba(99,126,230,0.15);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6366f1;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1e293b;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.15s;
}
.btn-demo:hover { border-color: #94a3b8; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.btn-waitlist {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #6366f1;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.btn-waitlist:hover { color: #4f46e5; }

/* Right side — dark input panel */
.hero-panel {
  background: #111318;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,126,230,0.4), transparent);
}
.panel-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 16px;
}
.panel-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.panel-sub {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 28px;
}
.panel-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}
.form-input {
  background: #1a1d24;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #f1f5f9;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-input::placeholder { color: #475569; }
.form-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,126,230,0.15);
}
.form-select-wrap { position: relative; }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background: #1a1d24;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 40px 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #f1f5f9;
  width: 100%;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s;
}
.form-select:focus { border-color: #6366f1; }
.form-select option { background: #1a1d24; color: #f1f5f9; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

/* Duration slider (used in landing page hero panel) */
.duration-live {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #6366f1;
  letter-spacing: 0.04em;
  margin-left: 6px;
}
.duration-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  outline: none;
  cursor: pointer;
  margin: 4px 0;
}
.duration-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6366f1;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
  transition: box-shadow 0.15s;
}
.duration-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(99,102,241,0.25);
}
.duration-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6366f1;
  border: none;
  cursor: pointer;
}
.duration-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.duration-preset {
  padding: 8px 4px;
  background: #1a1d24;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: #64748b;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}
.duration-preset:hover {
  border-color: rgba(99,102,241,0.4);
  color: #f1f5f9;
}
.duration-preset.active {
  background: rgba(99,102,241,0.12);
  border-color: #6366f1;
  color: #6366f1;
}
.duration-estimate {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .duration-presets { grid-template-columns: repeat(2, 1fr); }
}
.btn-generate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #6366f1;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}
.btn-generate:hover { background: #4f46e5; transform: translateY(-1px); }
.btn-generate:active { transform: translateY(0); }
.btn-generate:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.panel-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.72rem;
  color: #64748b;
}
.panel-note svg { color: #6366f1; flex-shrink: 0; }

/* HERO STAT — hidden on new design, kept for reference */
.hero-right { display: none; }

/* HERO STAT — removed from new design */

/* SHOWCASE */
.showcase {
  padding: 80px 40px;
  background: #fff;
  border-top: 1px solid rgba(148,163,184,0.12);
}
.showcase-inner {
  max-width: 900px;
  margin: 0 auto;
}
.showcase-header { text-align: center; margin-bottom: 48px; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6366f1;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.showcase-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #0f172a;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.showcase-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.showcase-player-wrap {
  position: relative;
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.showcase-video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.showcase-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(15,23,42,0.75);
  border: 1px solid rgba(99,126,230,0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.7rem;
  color: #94a3b8;
  backdrop-filter: blur(8px);
  letter-spacing: 0.06em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
/* DEMO ASSEMBLY UI */
.assemble-wrap {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 300px;
  justify-content: center;
}
.assemble-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.assemble-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(99,126,230,0.2);
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#assembleStatus {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f1f5f9;
}
.assemble-progress-bar {
  width: 100%;
  max-width: 400px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.assemble-progress-fill {
  height: 100%;
  background: #6366f1;
  transition: width 0.5s ease;
  border-radius: 2px;
}
.assemble-note {
  font-size: 0.75rem;
  color: #64748b;
}
.showcase-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
}
.placeholder-inner { text-align: center; }
.placeholder-play {
  width: 64px;
  height: 64px;
  background: rgba(99,126,230,0.15);
  border: 1px solid rgba(99,126,230,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.placeholder-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f1f5f9;
  margin-bottom: 6px;
}
.placeholder-note {
  font-size: 0.8rem;
  color: #64748b;
}
.showcase-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 28px 0;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid rgba(148,163,184,0.12);
  border-radius: 8px;
}
.meta-item { text-align: center; padding: 0 40px; }
.meta-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #6366f1;
  letter-spacing: -0.04em;
}
.meta-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 4px;
}
.meta-sep {
  width: 1px;
  height: 40px;
  background: rgba(148,163,184,0.2);
}
.showcase-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.btn-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: #6366f1;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
  transition: all 0.15s;
}
.btn-cta:hover { background: #4f46e5; transform: translateY(-1px); }
.cta-note {
  font-size: 0.75rem;
  color: #64748b;
}

/* PIPELINE */
.pipeline {
  padding: 100px 40px;
  background: #f8fafc;
  border-top: 1px solid rgba(148,163,184,0.12);
  border-bottom: 1px solid rgba(148,163,184,0.12);
}
.pipeline-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pipeline-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pipeline-steps::-webkit-scrollbar { display: none; }
.pipe-step { flex: 1; min-width: 160px; }
.pipe-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: rgba(99,126,230,0.2);
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.pipe-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 8px;
}
.pipe-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}
.pipe-divider {
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin-top: 28px;
  flex-shrink: 0;
}

/* WHO */
.who {
  padding: 100px 40px;
  background: #fff;
}
.who-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.who-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-top: 16px;
}
.who-right { display: flex; flex-direction: column; gap: 20px; }
.who-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid rgba(148,163,184,0.12);
  border-radius: 10px;
}
.who-icon {
  color: #6366f1;
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.who-item strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.who-item p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: #f8fafc;
  border-top: 1px solid rgba(148,163,184,0.12);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.3;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid #6366f1;
  font-style: normal;
}
.manifesto-body {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* CLOSING */
.closing {
  padding: 120px 40px;
  background: linear-gradient(160deg, #e8f4fd 0%, #f0f4ff 40%, #fafbff 70%, #fff 100%);
  text-align: center;
  border-top: 1px solid rgba(148,163,184,0.12);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 40px;
}
.closing-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.closing-cta-primary {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: #6366f1;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
  transition: all 0.15s;
}
.closing-cta-primary:hover { background: #4f46e5; transform: translateY(-1px); }
.closing-cta-secondary {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #1e293b;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
}
.closing-cta-secondary:hover { border-color: #94a3b8; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* WAITLIST */
.waitlist-wrap {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.waitlist-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}
.waitlist-input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(99,102,241,0.25);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.waitlist-input::placeholder { color: #94a3b8; }
.waitlist-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,126,230,0.12);
}
.waitlist-btn {
  padding: 12px 22px;
  background: #6366f1;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
  white-space: nowrap;
}
.waitlist-btn:hover { background: #4f46e5; transform: translateY(-1px); }
.waitlist-btn:active { transform: none; }
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.waitlist-msg {
  font-size: 0.8rem;
  padding: 10px 18px;
  border-radius: 6px;
  width: 100%;
  max-width: 480px;
  text-align: center;
}
.waitlist-msg.success {
  background: rgba(34,197,94,0.1);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.25);
}
.waitlist-msg.error {
  background: rgba(239,68,68,0.1);
  color: #b91c1c;
  border: 1px solid rgba(239,68,68,0.25);
}
.waitlist-count {
  font-size: 0.75rem;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

/* FOOTER */
.footer {
  padding: 32px 40px;
  border-top: 1px solid rgba(148,163,184,0.12);
  background: #fff;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0f172a;
}
.footer-copy {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-tagline { display: none; }
  .nav-link { display: none; }
  .hero { padding: 90px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-sub { max-width: 100%; }
  .hero-panel { padding: 28px 24px; }
  .pipeline { padding: 60px 20px; }
  .pipe-divider { padding: 0 8px; }
  .who-inner { grid-template-columns: 1fr; gap: 40px; }
  .who { padding: 60px 20px; }
  .manifesto { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .meta-item { padding: 0 20px; }
}

html { scroll-behavior: smooth; }